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/pampass.c */
155 bool smb_pam_claim_session(char *user
, char *tty
, char *rhost
);
156 bool smb_pam_close_session(char *user
, char *tty
, char *rhost
);
157 NTSTATUS
smb_pam_accountcheck(const char * user
);
158 NTSTATUS
smb_pam_passcheck(const char * user
, const char * password
);
159 bool smb_pam_passchange(const char * user
, const char * oldpassword
, const char * newpassword
);
160 NTSTATUS
smb_pam_accountcheck(const char * user
);
161 bool smb_pam_claim_session(char *user
, char *tty
, char *rhost
);
162 bool smb_pam_close_session(char *in_user
, char *tty
, char *rhost
);
164 /* The following definitions come from auth/pass_check.c */
166 void dfs_unlogin(void);
167 NTSTATUS
pass_check(const struct passwd
*pass
, const char *user
, const char *password
,
168 int pwlen
, bool (*fn
) (const char *, const char *), bool run_cracker
);
170 /* The following definitions come from auth/token_util.c */
172 bool nt_token_check_sid ( const DOM_SID
*sid
, const NT_USER_TOKEN
*token
);
173 bool nt_token_check_domain_rid( NT_USER_TOKEN
*token
, uint32 rid
);
174 NT_USER_TOKEN
*get_root_nt_token( void );
175 NTSTATUS
add_aliases(const DOM_SID
*domain_sid
,
176 struct nt_user_token
*token
);
177 NTSTATUS
create_builtin_users(const DOM_SID
*sid
);
178 NTSTATUS
create_builtin_administrators(const DOM_SID
*sid
);
179 struct nt_user_token
*create_local_nt_token(TALLOC_CTX
*mem_ctx
,
180 const DOM_SID
*user_sid
,
183 const DOM_SID
*groupsids
);
184 void debug_nt_user_token(int dbg_class
, int dbg_lev
, NT_USER_TOKEN
*token
);
185 void debug_unix_user_token(int dbg_class
, int dbg_lev
, uid_t uid
, gid_t gid
,
186 int n_groups
, gid_t
*groups
);
188 /* The following definitions come from groupdb/mapping.c */
190 NTSTATUS
add_initial_entry(gid_t gid
, const char *sid
, enum lsa_SidType sid_name_use
, const char *nt_name
, const char *comment
);
191 bool get_domain_group_from_sid(DOM_SID sid
, GROUP_MAP
*map
);
192 int smb_create_group(const char *unix_group
, gid_t
*new_gid
);
193 int smb_delete_group(const char *unix_group
);
194 int smb_set_primary_group(const char *unix_group
, const char* unix_user
);
195 int smb_add_user_group(const char *unix_group
, const char *unix_user
);
196 int smb_delete_user_group(const char *unix_group
, const char *unix_user
);
197 NTSTATUS
pdb_default_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
199 NTSTATUS
pdb_default_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
201 NTSTATUS
pdb_default_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
203 NTSTATUS
pdb_default_add_group_mapping_entry(struct pdb_methods
*methods
,
205 NTSTATUS
pdb_default_update_group_mapping_entry(struct pdb_methods
*methods
,
207 NTSTATUS
pdb_default_delete_group_mapping_entry(struct pdb_methods
*methods
,
209 NTSTATUS
pdb_default_enum_group_mapping(struct pdb_methods
*methods
,
210 const DOM_SID
*sid
, enum lsa_SidType sid_name_use
,
211 GROUP_MAP
**pp_rmap
, size_t *p_num_entries
,
213 NTSTATUS
pdb_default_create_alias(struct pdb_methods
*methods
,
214 const char *name
, uint32
*rid
);
215 NTSTATUS
pdb_default_delete_alias(struct pdb_methods
*methods
,
217 NTSTATUS
pdb_default_get_aliasinfo(struct pdb_methods
*methods
,
219 struct acct_info
*info
);
220 NTSTATUS
pdb_default_set_aliasinfo(struct pdb_methods
*methods
,
222 struct acct_info
*info
);
223 NTSTATUS
pdb_default_add_aliasmem(struct pdb_methods
*methods
,
224 const DOM_SID
*alias
, const DOM_SID
*member
);
225 NTSTATUS
pdb_default_del_aliasmem(struct pdb_methods
*methods
,
226 const DOM_SID
*alias
, const DOM_SID
*member
);
227 NTSTATUS
pdb_default_enum_aliasmem(struct pdb_methods
*methods
,
228 const DOM_SID
*alias
, DOM_SID
**pp_members
,
229 size_t *p_num_members
);
230 NTSTATUS
pdb_default_alias_memberships(struct pdb_methods
*methods
,
232 const DOM_SID
*domain_sid
,
233 const DOM_SID
*members
,
235 uint32
**pp_alias_rids
,
236 size_t *p_num_alias_rids
);
237 NTSTATUS
pdb_nop_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
239 NTSTATUS
pdb_nop_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
241 NTSTATUS
pdb_nop_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
243 NTSTATUS
pdb_nop_add_group_mapping_entry(struct pdb_methods
*methods
,
245 NTSTATUS
pdb_nop_update_group_mapping_entry(struct pdb_methods
*methods
,
247 NTSTATUS
pdb_nop_delete_group_mapping_entry(struct pdb_methods
*methods
,
249 NTSTATUS
pdb_nop_enum_group_mapping(struct pdb_methods
*methods
,
250 enum lsa_SidType sid_name_use
,
251 GROUP_MAP
**rmap
, size_t *num_entries
,
253 bool pdb_get_dom_grp_info(const DOM_SID
*sid
, struct acct_info
*info
);
254 bool pdb_set_dom_grp_info(const DOM_SID
*sid
, const struct acct_info
*info
);
255 NTSTATUS
pdb_create_builtin_alias(uint32 rid
);
257 /* The following definitions come from groupdb/mapping_ldb.c */
259 const struct mapping_backend
*groupdb_ldb_init(void);
261 /* The following definitions come from groupdb/mapping_tdb.c */
263 const struct mapping_backend
*groupdb_tdb_init(void);
265 /* The following definitions come from intl/lang_tdb.c */
267 bool lang_tdb_init(const char *lang
);
268 const char *lang_msg(const char *msgid
);
269 void lang_msg_free(const char *msgstr
);
270 char *lang_tdb_current(void);
272 /* The following definitions come from lib/access.c */
274 bool client_match(const char *tok
, const void *item
);
275 bool list_match(const char **list
,const void *item
,
276 bool (*match_fn
)(const char *, const void *));
277 bool allow_access(const char **deny_list
,
278 const char **allow_list
,
281 bool check_access(int sock
, const char **allow_list
, const char **deny_list
);
283 /* The following definitions come from lib/account_pol.c */
285 void account_policy_names_list(const char ***names
, int *num_names
);
286 const char *decode_account_policy_name(int field
);
287 const char *get_account_policy_attr(int field
);
288 const char *account_policy_get_desc(int field
);
289 int account_policy_name_to_fieldnum(const char *name
);
290 bool account_policy_get_default(int account_policy
, uint32
*val
);
291 bool init_account_policy(void);
292 bool account_policy_get(int field
, uint32
*value
);
293 bool account_policy_set(int field
, uint32 value
);
294 bool cache_account_policy_set(int field
, uint32 value
);
295 bool cache_account_policy_get(int field
, uint32
*value
);
296 struct db_context
*get_account_pol_db( void );
298 /* The following definitions come from lib/adt_tree.c */
301 /* The following definitions come from lib/afs.c */
303 char *afs_createtoken_str(const char *username
, const char *cell
);
304 bool afs_login(connection_struct
*conn
);
305 bool afs_login(connection_struct
*conn
);
306 char *afs_createtoken_str(const char *username
, const char *cell
);
308 /* The following definitions come from lib/afs_settoken.c */
310 int afs_syscall( int subcall
,
315 bool afs_settoken_str(const char *token_string
);
316 bool afs_settoken_str(const char *token_string
);
318 /* The following definitions come from lib/audit.c */
320 const char *audit_category_str(uint32 category
);
321 const char *audit_param_str(uint32 category
);
322 const char *audit_description_str(uint32 category
);
323 bool get_audit_category_from_param(const char *param
, uint32
*audit_category
);
324 const char *audit_policy_str(TALLOC_CTX
*mem_ctx
, uint32 policy
);
326 /* The following definitions come from lib/bitmap.c */
328 struct bitmap
*bitmap_allocate(int n
);
329 void bitmap_free(struct bitmap
*bm
);
330 struct bitmap
*bitmap_talloc(TALLOC_CTX
*mem_ctx
, int n
);
331 int bitmap_copy(struct bitmap
* const dst
, const struct bitmap
* const src
);
332 bool bitmap_set(struct bitmap
*bm
, unsigned i
);
333 bool bitmap_clear(struct bitmap
*bm
, unsigned i
);
334 bool bitmap_query(struct bitmap
*bm
, unsigned i
);
335 int bitmap_find(struct bitmap
*bm
, unsigned ofs
);
337 /* The following definitions come from lib/charcnv.c */
339 NTSTATUS
smb_register_charset(struct charset_functions
*funcs
);
340 char lp_failed_convert_char(void);
341 void lazy_initialize_conv(void);
342 void gfree_charcnv(void);
343 void init_iconv(void);
344 size_t convert_string(charset_t from
, charset_t to
,
345 void const *src
, size_t srclen
,
346 void *dest
, size_t destlen
, bool allow_bad_conv
);
347 bool convert_string_allocate(TALLOC_CTX
*ctx
, charset_t from
, charset_t to
,
348 void const *src
, size_t srclen
, void *dst
,
349 size_t *converted_size
, bool allow_bad_conv
);
350 size_t unix_strupper(const char *src
, size_t srclen
, char *dest
, size_t destlen
);
351 char *strdup_upper(const char *s
);
352 char *talloc_strdup_upper(TALLOC_CTX
*ctx
, const char *s
);
353 size_t unix_strlower(const char *src
, size_t srclen
, char *dest
, size_t destlen
);
354 char *strdup_lower(const char *s
);
355 char *talloc_strdup_lower(TALLOC_CTX
*ctx
, const char *s
);
356 size_t ucs2_align(const void *base_ptr
, const void *p
, int flags
);
357 size_t push_ascii(void *dest
, const char *src
, size_t dest_len
, int flags
);
358 size_t push_ascii_fstring(void *dest
, const char *src
);
359 size_t push_ascii_nstring(void *dest
, const char *src
);
360 bool push_ascii_allocate(char **dest
, const char *src
, size_t *converted_size
);
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 bool push_ucs2_allocate(smb_ucs2_t
**dest
, const char *src
,
366 size_t *converted_size
);
367 size_t push_utf8_fstring(void *dest
, const char *src
);
368 bool push_utf8_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
369 size_t *converted_size
);
370 bool push_utf8_allocate(char **dest
, const char *src
, size_t *converted_size
);
371 size_t pull_ucs2(const void *base_ptr
, char *dest
, const void *src
, size_t dest_len
, size_t src_len
, int flags
);
372 size_t pull_ucs2_base_talloc(TALLOC_CTX
*ctx
,
373 const void *base_ptr
,
378 size_t pull_ucs2_fstring(char *dest
, const void *src
);
379 bool push_ucs2_talloc(TALLOC_CTX
*ctx
, smb_ucs2_t
**dest
, const char *src
,
380 size_t *converted_size
);
381 bool pull_ucs2_allocate(char **dest
, const smb_ucs2_t
*src
,
382 size_t *converted_size
);
383 bool pull_utf8_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
384 size_t *converted_size
);
385 bool pull_utf8_allocate(char **dest
, const char *src
, size_t *converted_size
);
386 bool pull_ucs2_talloc(TALLOC_CTX
*ctx
, char **dest
, const smb_ucs2_t
*src
,
387 size_t *converted_size
);
388 bool pull_ascii_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
389 size_t *converted_size
);
390 size_t push_string_fn(const char *function
, unsigned int line
,
391 const void *base_ptr
, uint16 flags2
,
392 void *dest
, const char *src
,
393 size_t dest_len
, int flags
);
394 size_t pull_string_fn(const char *function
,
396 const void *base_ptr
,
403 size_t pull_string_talloc_fn(const char *function
,
406 const void *base_ptr
,
412 size_t align_string(const void *base_ptr
, const char *p
, int flags
);
413 codepoint_t
next_codepoint(const char *str
, size_t *size
);
415 /* The following definitions come from lib/clobber.c */
417 void clobber_region(const char *fn
, unsigned int line
, char *dest
, size_t len
);
419 /* The following definitions come from lib/conn_tdb.c */
421 struct db_record
*connections_fetch_record(TALLOC_CTX
*mem_ctx
,
423 struct db_record
*connections_fetch_entry(TALLOC_CTX
*mem_ctx
,
424 connection_struct
*conn
,
426 int connections_traverse(int (*fn
)(struct db_record
*rec
,
429 int connections_forall(int (*fn
)(struct db_record
*rec
,
430 const struct connections_key
*key
,
431 const struct connections_data
*data
,
434 bool connections_init(bool rw
);
436 /* The following definitions come from lib/dbwrap_util.c */
438 int32_t dbwrap_fetch_int32(struct db_context
*db
, const char *keystr
);
439 int dbwrap_store_int32(struct db_context
*db
, const char *keystr
, int32_t v
);
440 bool dbwrap_fetch_uint32(struct db_context
*db
, const char *keystr
,
442 int dbwrap_store_uint32(struct db_context
*db
, const char *keystr
, uint32_t v
);
443 uint32_t dbwrap_change_uint32_atomic(struct db_context
*db
, const char *keystr
,
444 uint32_t *oldval
, uint32_t change_val
);
445 int32
dbwrap_change_int32_atomic(struct db_context
*db
, const char *keystr
,
446 int32
*oldval
, int32 change_val
);
447 NTSTATUS
dbwrap_trans_store(struct db_context
*db
, TDB_DATA key
, TDB_DATA dbuf
,
449 NTSTATUS
dbwrap_trans_delete(struct db_context
*db
, TDB_DATA key
);
450 NTSTATUS
dbwrap_trans_store_int32(struct db_context
*db
, const char *keystr
,
452 NTSTATUS
dbwrap_trans_store_uint32(struct db_context
*db
, const char *keystr
,
454 NTSTATUS
dbwrap_trans_store_bystring(struct db_context
*db
, const char *key
,
455 TDB_DATA data
, int flags
);
456 NTSTATUS
dbwrap_trans_delete_bystring(struct db_context
*db
, const char *key
);
458 /* The following definitions come from lib/debug.c */
460 void gfree_debugsyms(void);
461 const char *debug_classname_from_index(int ndx
);
462 int debug_add_class(const char *classname
);
463 int debug_lookup_classname(const char *classname
);
464 bool debug_parse_levels(const char *params_str
);
465 void debug_message(struct messaging_context
*msg_ctx
, void *private_data
, uint32_t msg_type
, struct server_id src
, DATA_BLOB
*data
);
466 void debug_init(void);
467 void debug_register_msgs(struct messaging_context
*msg_ctx
);
468 void setup_logging(const char *pname
, bool interactive
);
469 void debug_set_logfile(const char *name
);
470 bool reopen_logs( void );
471 void force_check_log_size( void );
472 bool need_to_check_log_size( void );
473 void check_log_size( void );
474 void dbgflush( void );
475 bool dbghdrclass(int level
, int cls
, const char *location
, const char *func
);
476 bool dbghdr(int level
, const char *location
, const char *func
);
477 TALLOC_CTX
*debug_ctx(void);
479 /* The following definitions come from lib/display_sec.c */
481 char *get_sec_mask_str(TALLOC_CTX
*ctx
, uint32 type
);
482 void display_sec_access(uint32_t *info
);
483 void display_sec_ace_flags(uint8_t flags
);
484 void display_sec_ace(SEC_ACE
*ace
);
485 void display_sec_acl(SEC_ACL
*sec_acl
);
486 void display_acl_type(uint16 type
);
487 void display_sec_desc(SEC_DESC
*sec
);
489 /* The following definitions come from lib/dmallocmsg.c */
491 void register_dmalloc_msgs(struct messaging_context
*msg_ctx
);
493 /* The following definitions come from lib/dprintf.c */
495 void display_set_stderr(void);
497 /* The following definitions come from lib/errmap_unix.c */
499 NTSTATUS
map_nt_error_from_unix(int unix_error
);
500 int map_errno_from_nt_status(NTSTATUS status
);
502 /* The following definitions come from lib/fault.c */
503 void fault_setup(void (*fn
)(void *));
504 void dump_core_setup(const char *progname
);
506 /* The following definitions come from lib/file_id.c */
508 struct file_id
vfs_file_id_from_sbuf(connection_struct
*conn
, const SMB_STRUCT_STAT
*sbuf
);
509 bool file_id_equal(const struct file_id
*id1
, const struct file_id
*id2
);
510 const char *file_id_string_tos(const struct file_id
*id
);
511 void push_file_id_16(char *buf
, const struct file_id
*id
);
512 void push_file_id_24(char *buf
, const struct file_id
*id
);
513 void pull_file_id_24(char *buf
, struct file_id
*id
);
515 /* The following definitions come from lib/gencache.c */
517 bool gencache_init(void);
518 bool gencache_shutdown(void);
519 bool gencache_set(const char *keystr
, const char *value
, time_t timeout
);
520 bool gencache_del(const char *keystr
);
521 bool gencache_get(const char *keystr
, char **valstr
, time_t *timeout
);
522 bool gencache_get_data_blob(const char *keystr
, DATA_BLOB
*blob
, bool *expired
);
523 bool gencache_set_data_blob(const char *keystr
, const DATA_BLOB
*blob
, time_t timeout
);
524 void gencache_iterate(void (*fn
)(const char* key
, const char *value
, time_t timeout
, void* dptr
),
525 void* data
, const char* keystr_pattern
);
526 int gencache_lock_entry( const char *key
);
527 void gencache_unlock_entry( const char *key
);
529 /* The following definitions come from lib/interface.c */
531 bool ismyaddr(const struct sockaddr
*ip
);
532 bool ismyip_v4(struct in_addr ip
);
533 bool is_local_net(const struct sockaddr
*from
);
534 void setup_linklocal_scope_id(struct sockaddr
*pss
);
535 bool is_local_net_v4(struct in_addr from
);
536 int iface_count(void);
537 int iface_count_v4_nl(void);
538 const struct in_addr
*first_ipv4_iface(void);
539 struct interface
*get_interface(int n
);
540 const struct sockaddr_storage
*iface_n_sockaddr_storage(int n
);
541 const struct in_addr
*iface_n_ip_v4(int n
);
542 const struct in_addr
*iface_n_bcast_v4(int n
);
543 const struct sockaddr_storage
*iface_n_bcast(int n
);
544 const struct sockaddr_storage
*iface_ip(const struct sockaddr
*ip
);
545 bool iface_local(const struct sockaddr
*ip
);
546 void load_interfaces(void);
547 void gfree_interfaces(void);
548 bool interfaces_changed(void);
550 /* The following definitions come from lib/ldap_debug_handler.c */
552 void init_ldap_debugging(void);
554 /* The following definitions come from lib/ldap_escape.c */
556 char *escape_ldap_string_alloc(const char *s
);
557 char *escape_rdn_val_string_alloc(const char *s
);
559 /* The following definitions come from lib/module.c */
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 NTSTATUS
smb_load_module(const char *module_name
);
565 int smb_load_modules(const char **modules
);
566 NTSTATUS
smb_probe_module(const char *subsystem
, const char *module
);
567 void init_modules(void);
569 /* The following definitions come from lib/ms_fnmatch.c */
571 int ms_fnmatch(const char *pattern
, const char *string
, bool translate_pattern
,
572 bool is_case_sensitive
);
573 int gen_fnmatch(const char *pattern
, const char *string
);
575 /* The following definitions come from lib/pam_errors.c */
577 NTSTATUS
pam_to_nt_status(int pam_error
);
578 int nt_status_to_pam(NTSTATUS nt_status
);
579 NTSTATUS
pam_to_nt_status(int pam_error
);
580 int nt_status_to_pam(NTSTATUS nt_status
);
582 /* The following definitions come from lib/pidfile.c */
584 pid_t
pidfile_pid(const char *name
);
585 void pidfile_create(const char *program_name
);
587 /* The following definitions come from lib/popt_common.c */
589 void popt_common_set_auth_info(struct user_auth_info
*auth_info
);
591 /* The following definitions come from lib/privileges.c */
593 bool get_privileges_for_sids(SE_PRIV
*privileges
, DOM_SID
*slist
, int scount
);
594 NTSTATUS
privilege_enumerate_accounts(DOM_SID
**sids
, int *num_sids
);
595 NTSTATUS
privilege_enum_sids(const SE_PRIV
*mask
, TALLOC_CTX
*mem_ctx
,
596 DOM_SID
**sids
, int *num_sids
);
597 bool grant_privilege(const DOM_SID
*sid
, const SE_PRIV
*priv_mask
);
598 bool grant_privilege_by_name(DOM_SID
*sid
, const char *name
);
599 bool revoke_privilege(const DOM_SID
*sid
, const SE_PRIV
*priv_mask
);
600 bool revoke_all_privileges( DOM_SID
*sid
);
601 bool revoke_privilege_by_name(DOM_SID
*sid
, const char *name
);
602 NTSTATUS
privilege_create_account(const DOM_SID
*sid
);
603 NTSTATUS
privilege_set_init(PRIVILEGE_SET
*priv_set
);
604 NTSTATUS
privilege_set_init_by_ctx(TALLOC_CTX
*mem_ctx
, PRIVILEGE_SET
*priv_set
);
605 void privilege_set_free(PRIVILEGE_SET
*priv_set
);
606 NTSTATUS
dup_luid_attr(TALLOC_CTX
*mem_ctx
, LUID_ATTR
**new_la
, LUID_ATTR
*old_la
, int count
);
607 bool is_privileged_sid( const DOM_SID
*sid
);
608 bool grant_all_privileges( const DOM_SID
*sid
);
610 /* The following definitions come from lib/privileges_basic.c */
612 bool se_priv_copy( SE_PRIV
*dst
, const SE_PRIV
*src
);
613 bool se_priv_put_all_privileges(SE_PRIV
*mask
);
614 void se_priv_add( SE_PRIV
*mask
, const SE_PRIV
*addpriv
);
615 void se_priv_remove( SE_PRIV
*mask
, const SE_PRIV
*removepriv
);
616 bool se_priv_equal( const SE_PRIV
*mask1
, const SE_PRIV
*mask2
);
617 bool se_priv_from_name( const char *name
, SE_PRIV
*mask
);
618 void dump_se_priv( int dbg_cl
, int dbg_lvl
, const SE_PRIV
*mask
);
619 bool is_privilege_assigned(const SE_PRIV
*privileges
,
620 const SE_PRIV
*check
);
621 const char* get_privilege_dispname( const char *name
);
622 bool user_has_privileges(const NT_USER_TOKEN
*token
, const SE_PRIV
*privilege
);
623 bool user_has_any_privilege(NT_USER_TOKEN
*token
, const SE_PRIV
*privilege
);
624 int count_all_privileges( void );
625 LUID_ATTR
get_privilege_luid( SE_PRIV
*mask
);
626 const char *luid_to_privilege_name(const LUID
*set
);
627 bool se_priv_to_privilege_set( PRIVILEGE_SET
*set
, SE_PRIV
*mask
);
628 bool privilege_set_to_se_priv( SE_PRIV
*mask
, struct lsa_PrivilegeSet
*privset
);
630 /* The following definitions come from lib/readline.c */
632 void smb_readline_done(void);
633 char *smb_readline(const char *prompt
, void (*callback
)(void),
634 char **(completion_fn
)(const char *text
, int start
, int end
));
635 const char *smb_readline_get_line_buffer(void);
636 void smb_readline_ca_char(char c
);
637 int cmd_history(void);
639 /* The following definitions come from lib/recvfile.c */
641 ssize_t
sys_recvfile(int fromfd
,
645 ssize_t
sys_recvfile(int fromfd
,
649 ssize_t
drain_socket(int sockfd
, size_t count
);
651 /* The following definitions come from lib/secdesc.c */
653 bool sec_desc_equal(SEC_DESC
*s1
, SEC_DESC
*s2
);
654 uint32_t get_sec_info(const SEC_DESC
*sd
);
655 SEC_DESC_BUF
*sec_desc_merge(TALLOC_CTX
*ctx
, SEC_DESC_BUF
*new_sdb
, SEC_DESC_BUF
*old_sdb
);
656 SEC_DESC
*make_sec_desc(TALLOC_CTX
*ctx
,
657 enum security_descriptor_revision revision
,
659 const DOM_SID
*owner_sid
, const DOM_SID
*grp_sid
,
660 SEC_ACL
*sacl
, SEC_ACL
*dacl
, size_t *sd_size
);
661 SEC_DESC
*dup_sec_desc(TALLOC_CTX
*ctx
, const SEC_DESC
*src
);
662 NTSTATUS
marshall_sec_desc(TALLOC_CTX
*mem_ctx
,
663 struct security_descriptor
*secdesc
,
664 uint8
**data
, size_t *len
);
665 NTSTATUS
marshall_sec_desc_buf(TALLOC_CTX
*mem_ctx
,
666 struct sec_desc_buf
*secdesc_buf
,
667 uint8_t **data
, size_t *len
);
668 NTSTATUS
unmarshall_sec_desc(TALLOC_CTX
*mem_ctx
, uint8
*data
, size_t len
,
669 struct security_descriptor
**psecdesc
);
670 NTSTATUS
unmarshall_sec_desc_buf(TALLOC_CTX
*mem_ctx
, uint8_t *data
, size_t len
,
671 struct sec_desc_buf
**psecdesc_buf
);
672 SEC_DESC
*make_standard_sec_desc(TALLOC_CTX
*ctx
, const DOM_SID
*owner_sid
, const DOM_SID
*grp_sid
,
673 SEC_ACL
*dacl
, size_t *sd_size
);
674 SEC_DESC_BUF
*make_sec_desc_buf(TALLOC_CTX
*ctx
, size_t len
, SEC_DESC
*sec_desc
);
675 SEC_DESC_BUF
*dup_sec_desc_buf(TALLOC_CTX
*ctx
, SEC_DESC_BUF
*src
);
676 NTSTATUS
sec_desc_add_sid(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, DOM_SID
*sid
, uint32 mask
, size_t *sd_size
);
677 NTSTATUS
sec_desc_mod_sid(SEC_DESC
*sd
, DOM_SID
*sid
, uint32 mask
);
678 NTSTATUS
sec_desc_del_sid(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, DOM_SID
*sid
, size_t *sd_size
);
679 NTSTATUS
se_create_child_secdesc(TALLOC_CTX
*ctx
,
682 const SEC_DESC
*parent_ctr
,
683 const DOM_SID
*owner_sid
,
684 const DOM_SID
*group_sid
,
686 NTSTATUS
se_create_child_secdesc_buf(TALLOC_CTX
*ctx
,
687 SEC_DESC_BUF
**ppsdb
,
688 const SEC_DESC
*parent_ctr
,
691 /* The following definitions come from lib/select.c */
693 void sys_select_signal(char c
);
694 int sys_select(int maxfd
, fd_set
*readfds
, fd_set
*writefds
, fd_set
*errorfds
, struct timeval
*tval
);
695 int sys_select_intr(int maxfd
, fd_set
*readfds
, fd_set
*writefds
, fd_set
*errorfds
, struct timeval
*tval
);
697 /* The following definitions come from lib/sendfile.c */
699 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
701 /* The following definitions come from lib/server_mutex.c */
703 struct named_mutex
*grab_named_mutex(TALLOC_CTX
*mem_ctx
, const char *name
,
706 /* The following definitions come from lib/sharesec.c */
708 SEC_DESC
*get_share_security_default( TALLOC_CTX
*ctx
, size_t *psize
, uint32 def_access
);
709 SEC_DESC
*get_share_security( TALLOC_CTX
*ctx
, const char *servicename
,
711 bool set_share_security(const char *share_name
, SEC_DESC
*psd
);
712 bool delete_share_security(const char *servicename
);
713 bool share_access_check(const NT_USER_TOKEN
*token
, const char *sharename
,
714 uint32 desired_access
);
715 bool parse_usershare_acl(TALLOC_CTX
*ctx
, const char *acl_str
, SEC_DESC
**ppsd
);
717 /* The following definitions come from lib/smbldap.c */
719 int smb_ldap_start_tls(LDAP
*ldap_struct
, int version
);
720 int smb_ldap_setup_conn(LDAP
**ldap_struct
, const char *uri
);
721 int smb_ldap_upgrade_conn(LDAP
*ldap_struct
, int *new_version
) ;
722 int smb_ldap_setup_full_conn(LDAP
**ldap_struct
, const char *uri
);
723 int smbldap_search(struct smbldap_state
*ldap_state
,
724 const char *base
, int scope
, const char *filter
,
725 const char *attrs
[], int attrsonly
,
727 int smbldap_search_paged(struct smbldap_state
*ldap_state
,
728 const char *base
, int scope
, const char *filter
,
729 const char **attrs
, int attrsonly
, int pagesize
,
730 LDAPMessage
**res
, void **cookie
);
731 int smbldap_modify(struct smbldap_state
*ldap_state
, const char *dn
, LDAPMod
*attrs
[]);
732 int smbldap_add(struct smbldap_state
*ldap_state
, const char *dn
, LDAPMod
*attrs
[]);
733 int smbldap_delete(struct smbldap_state
*ldap_state
, const char *dn
);
734 int smbldap_extended_operation(struct smbldap_state
*ldap_state
,
735 LDAP_CONST
char *reqoid
, struct berval
*reqdata
,
736 LDAPControl
**serverctrls
, LDAPControl
**clientctrls
,
737 char **retoidp
, struct berval
**retdatap
);
738 int smbldap_search_suffix (struct smbldap_state
*ldap_state
,
739 const char *filter
, const char **search_attr
,
740 LDAPMessage
** result
);
741 void smbldap_free_struct(struct smbldap_state
**ldap_state
) ;
742 NTSTATUS
smbldap_init(TALLOC_CTX
*mem_ctx
, struct event_context
*event_ctx
,
743 const char *location
,
744 struct smbldap_state
**smbldap_state
);
745 char *smbldap_get_dn(LDAP
*ld
, LDAPMessage
*entry
);
746 bool smbldap_has_control(LDAP
*ld
, const char *control
);
747 bool smbldap_has_extension(LDAP
*ld
, const char *extension
);
748 bool smbldap_has_naming_context(LDAP
*ld
, const char *naming_context
);
749 bool smbldap_set_creds(struct smbldap_state
*ldap_state
, bool anon
, const char *dn
, const char *secret
);
751 /* The following definitions come from lib/smbldap_util.c */
753 NTSTATUS
smbldap_search_domain_info(struct smbldap_state
*ldap_state
,
754 LDAPMessage
** result
, const char *domain_name
,
757 /* The following definitions come from lib/smbrun.c */
759 int smbrun_no_sanitize(const char *cmd
, int *outfd
);
760 int smbrun(const char *cmd
, int *outfd
);
761 int smbrunsecret(const char *cmd
, const char *secret
);
763 /* The following definitions come from lib/sock_exec.c */
765 int sock_exec(const char *prog
);
767 /* The following definitions come from lib/substitute.c */
769 void free_local_machine_name(void);
770 bool set_local_machine_name(const char *local_name
, bool perm
);
771 const char *get_local_machine_name(void);
772 bool set_remote_machine_name(const char *remote_name
, bool perm
);
773 const char *get_remote_machine_name(void);
774 void sub_set_smb_name(const char *name
);
775 void set_current_user_info(const char *smb_name
, const char *unix_name
,
777 const char *get_current_username(void);
778 void standard_sub_basic(const char *smb_name
, const char *domain_name
,
779 char *str
, size_t len
);
780 char *talloc_sub_basic(TALLOC_CTX
*mem_ctx
, const char *smb_name
,
781 const char *domain_name
, const char *str
);
782 char *alloc_sub_basic(const char *smb_name
, const char *domain_name
,
784 char *talloc_sub_specified(TALLOC_CTX
*mem_ctx
,
785 const char *input_string
,
786 const char *username
,
790 char *talloc_sub_advanced(TALLOC_CTX
*mem_ctx
,
791 const char *servicename
, const char *user
,
792 const char *connectpath
, gid_t gid
,
793 const char *smb_name
, const char *domain_name
,
795 void standard_sub_advanced(const char *servicename
, const char *user
,
796 const char *connectpath
, gid_t gid
,
797 const char *smb_name
, const char *domain_name
,
798 char *str
, size_t len
);
799 char *standard_sub_conn(TALLOC_CTX
*ctx
, connection_struct
*conn
, const char *str
);
801 /* The following definitions come from lib/sysacls.c */
803 int sys_acl_get_entry(SMB_ACL_T acl_d
, int entry_id
, SMB_ACL_ENTRY_T
*entry_p
);
804 int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T
*type_p
);
805 int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T
*permset_p
);
806 void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d
);
807 int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d
);
808 int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d
, SMB_ACL_PERM_T perm
);
809 int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d
, SMB_ACL_PERM_T perm
);
810 char *sys_acl_to_text(SMB_ACL_T acl_d
, ssize_t
*len_p
);
811 SMB_ACL_T
sys_acl_init(int count
);
812 int sys_acl_create_entry(SMB_ACL_T
*acl_p
, SMB_ACL_ENTRY_T
*entry_p
);
813 int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T tag_type
);
814 int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d
, void *qual_p
);
815 int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T permset_d
);
816 int sys_acl_free_text(char *text
);
817 int sys_acl_free_acl(SMB_ACL_T acl_d
) ;
818 int sys_acl_free_qualifier(void *qual
, SMB_ACL_TAG_T tagtype
);
819 int sys_acl_valid(SMB_ACL_T acl_d
);
820 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
821 const char *path_p
, SMB_ACL_TYPE_T type
);
822 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
823 int sys_acl_set_file(vfs_handle_struct
*handle
,
824 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
825 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
827 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
829 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
830 const char *path_p
, SMB_ACL_TYPE_T type
);
831 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
832 int sys_acl_set_file(vfs_handle_struct
*handle
,
833 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
834 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
836 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
838 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
839 const char *path_p
, SMB_ACL_TYPE_T type
);
840 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
841 int sys_acl_set_file(vfs_handle_struct
*handle
,
842 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
843 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
845 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
847 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
848 const char *path_p
, SMB_ACL_TYPE_T type
);
849 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
850 int sys_acl_set_file(vfs_handle_struct
*handle
,
851 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
852 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
854 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
856 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
857 const char *path_p
, SMB_ACL_TYPE_T type
);
858 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
859 int sys_acl_set_file(vfs_handle_struct
*handle
,
860 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
861 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
863 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
865 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
866 const char *path_p
, SMB_ACL_TYPE_T type
);
867 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
868 int sys_acl_set_file(vfs_handle_struct
*handle
,
869 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
870 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
872 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
874 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
875 const char *path_p
, SMB_ACL_TYPE_T type
);
876 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
877 int sys_acl_set_file(vfs_handle_struct
*handle
,
878 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
879 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
881 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
883 int no_acl_syscall_error(int err
);
885 /* The following definitions come from lib/sysquotas.c */
887 int sys_get_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
888 int sys_set_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
890 /* The following definitions come from lib/sysquotas_*.c */
892 int sys_get_vfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
893 int sys_set_vfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
895 int sys_get_xfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
896 int sys_set_xfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
898 /* The following definitions come from lib/system.c */
900 void *sys_memalign( size_t align
, size_t size
);
901 int sys_usleep(long usecs
);
902 ssize_t
sys_read(int fd
, void *buf
, size_t count
);
903 ssize_t
sys_write(int fd
, const void *buf
, size_t count
);
904 ssize_t
sys_writev(int fd
, const struct iovec
*iov
, int iovcnt
);
905 ssize_t
sys_pread(int fd
, void *buf
, size_t count
, SMB_OFF_T off
);
906 ssize_t
sys_pwrite(int fd
, const void *buf
, size_t count
, SMB_OFF_T off
);
907 ssize_t
sys_send(int s
, const void *msg
, size_t len
, int flags
);
908 ssize_t
sys_sendto(int s
, const void *msg
, size_t len
, int flags
, const struct sockaddr
*to
, socklen_t tolen
);
909 ssize_t
sys_recv(int fd
, void *buf
, size_t count
, int flags
);
910 ssize_t
sys_recvfrom(int s
, void *buf
, size_t len
, int flags
, struct sockaddr
*from
, socklen_t
*fromlen
);
911 int sys_fcntl_ptr(int fd
, int cmd
, void *arg
);
912 int sys_fcntl_long(int fd
, int cmd
, long arg
);
913 int sys_stat(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
914 int sys_fstat(int fd
,SMB_STRUCT_STAT
*sbuf
);
915 int sys_lstat(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
916 int sys_ftruncate(int fd
, SMB_OFF_T offset
);
917 SMB_OFF_T
sys_lseek(int fd
, SMB_OFF_T offset
, int whence
);
918 int sys_fseek(FILE *fp
, SMB_OFF_T offset
, int whence
);
919 SMB_OFF_T
sys_ftell(FILE *fp
);
920 int sys_creat(const char *path
, mode_t mode
);
921 int sys_open(const char *path
, int oflag
, mode_t mode
);
922 FILE *sys_fopen(const char *path
, const char *type
);
923 void kernel_flock(int fd
, uint32 share_mode
);
924 SMB_STRUCT_DIR
*sys_opendir(const char *name
);
925 SMB_STRUCT_DIRENT
*sys_readdir(SMB_STRUCT_DIR
*dirp
);
926 void sys_seekdir(SMB_STRUCT_DIR
*dirp
, long offset
);
927 long sys_telldir(SMB_STRUCT_DIR
*dirp
);
928 void sys_rewinddir(SMB_STRUCT_DIR
*dirp
);
929 int sys_closedir(SMB_STRUCT_DIR
*dirp
);
930 int sys_mknod(const char *path
, mode_t mode
, SMB_DEV_T dev
);
931 int sys_waitpid(pid_t pid
,int *status
,int options
);
932 char *sys_getwd(char *s
);
933 void set_effective_capability(enum smbd_capability capability
);
934 void drop_effective_capability(enum smbd_capability capability
);
935 long sys_random(void);
936 void sys_srandom(unsigned int seed
);
937 int groups_max(void);
938 int sys_getgroups(int setlen
, gid_t
*gidset
);
939 int sys_setgroups(gid_t
UNUSED(primary_gid
), int setlen
, gid_t
*gidset
);
940 void sys_setpwent(void);
941 struct passwd
*sys_getpwent(void);
942 void sys_endpwent(void);
943 struct passwd
*sys_getpwnam(const char *name
);
944 struct passwd
*sys_getpwuid(uid_t uid
);
945 struct group
*sys_getgrnam(const char *name
);
946 struct group
*sys_getgrgid(gid_t gid
);
947 int sys_popen(const char *command
);
948 int sys_pclose(int fd
);
949 ssize_t
sys_getxattr (const char *path
, const char *name
, void *value
, size_t size
);
950 ssize_t
sys_lgetxattr (const char *path
, const char *name
, void *value
, size_t size
);
951 ssize_t
sys_fgetxattr (int filedes
, const char *name
, void *value
, size_t size
);
952 ssize_t
sys_listxattr (const char *path
, char *list
, size_t size
);
953 ssize_t
sys_llistxattr (const char *path
, char *list
, size_t size
);
954 ssize_t
sys_flistxattr (int filedes
, char *list
, size_t size
);
955 int sys_removexattr (const char *path
, const char *name
);
956 int sys_lremovexattr (const char *path
, const char *name
);
957 int sys_fremovexattr (int filedes
, const char *name
);
958 int sys_setxattr (const char *path
, const char *name
, const void *value
, size_t size
, int flags
);
959 int sys_lsetxattr (const char *path
, const char *name
, const void *value
, size_t size
, int flags
);
960 int sys_fsetxattr (int filedes
, const char *name
, const void *value
, size_t size
, int flags
);
961 uint32
unix_dev_major(SMB_DEV_T dev
);
962 uint32
unix_dev_minor(SMB_DEV_T dev
);
963 int sys_aio_read(SMB_STRUCT_AIOCB
*aiocb
);
964 int sys_aio_write(SMB_STRUCT_AIOCB
*aiocb
);
965 ssize_t
sys_aio_return(SMB_STRUCT_AIOCB
*aiocb
);
966 int sys_aio_cancel(int fd
, SMB_STRUCT_AIOCB
*aiocb
);
967 int sys_aio_error(const SMB_STRUCT_AIOCB
*aiocb
);
968 int sys_aio_fsync(int op
, SMB_STRUCT_AIOCB
*aiocb
);
969 int sys_aio_suspend(const SMB_STRUCT_AIOCB
* const cblist
[], int n
, const struct timespec
*timeout
);
970 int sys_aio_read(SMB_STRUCT_AIOCB
*aiocb
);
971 int sys_aio_write(SMB_STRUCT_AIOCB
*aiocb
);
972 ssize_t
sys_aio_return(SMB_STRUCT_AIOCB
*aiocb
);
973 int sys_aio_cancel(int fd
, SMB_STRUCT_AIOCB
*aiocb
);
974 int sys_aio_error(const SMB_STRUCT_AIOCB
*aiocb
);
975 int sys_aio_fsync(int op
, SMB_STRUCT_AIOCB
*aiocb
);
976 int sys_aio_suspend(const SMB_STRUCT_AIOCB
* const cblist
[], int n
, const struct timespec
*timeout
);
977 int sys_getpeereid( int s
, uid_t
*uid
);
978 int sys_getnameinfo(const struct sockaddr
*psa
,
985 int sys_connect(int fd
, const struct sockaddr
* addr
);
987 /* The following definitions come from lib/system_smbd.c */
989 bool getgroups_unix_user(TALLOC_CTX
*mem_ctx
, const char *user
,
991 gid_t
**ret_groups
, size_t *p_ngroups
);
993 /* The following definitions come from lib/tallocmsg.c */
995 void register_msg_pool_usage(struct messaging_context
*msg_ctx
);
997 /* The following definitions come from lib/time.c */
999 void push_dos_date(uint8_t *buf
, int offset
, time_t unixdate
, int zone_offset
);
1000 void push_dos_date2(uint8_t *buf
,int offset
,time_t unixdate
, int zone_offset
);
1001 void push_dos_date3(uint8_t *buf
,int offset
,time_t unixdate
, int zone_offset
);
1002 time_t pull_dos_date(const uint8_t *date_ptr
, int zone_offset
);
1003 time_t pull_dos_date2(const uint8_t *date_ptr
, int zone_offset
);
1004 time_t pull_dos_date3(const uint8_t *date_ptr
, int zone_offset
);
1005 uint32
convert_time_t_to_uint32(time_t t
);
1006 time_t convert_uint32_to_time_t(uint32 u
);
1007 bool nt_time_is_zero(const NTTIME
*nt
);
1008 time_t generalized_to_unix_time(const char *str
);
1009 int get_server_zone_offset(void);
1010 int set_server_zone_offset(time_t t
);
1011 char *current_timestring(TALLOC_CTX
*ctx
, bool hires
);
1012 void srv_put_dos_date(char *buf
,int offset
,time_t unixdate
);
1013 void srv_put_dos_date2(char *buf
,int offset
, time_t unixdate
);
1014 void srv_put_dos_date3(char *buf
,int offset
,time_t unixdate
);
1015 void put_long_date_timespec(char *p
, struct timespec ts
);
1016 void put_long_date(char *p
, time_t t
);
1017 struct timespec
get_create_timespec(const SMB_STRUCT_STAT
*st
,bool fake_dirs
);
1018 struct timespec
get_atimespec(const SMB_STRUCT_STAT
*pst
);
1019 void set_atimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1020 struct timespec
get_mtimespec(const SMB_STRUCT_STAT
*pst
);
1021 void set_mtimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1022 struct timespec
get_ctimespec(const SMB_STRUCT_STAT
*pst
);
1023 void set_ctimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1024 void dos_filetime_timespec(struct timespec
*tsp
);
1025 time_t srv_make_unix_date(const void *date_ptr
);
1026 time_t srv_make_unix_date2(const void *date_ptr
);
1027 time_t srv_make_unix_date3(const void *date_ptr
);
1028 time_t convert_timespec_to_time_t(struct timespec ts
);
1029 struct timespec
convert_time_t_to_timespec(time_t t
);
1030 struct timespec
convert_timeval_to_timespec(const struct timeval tv
);
1031 struct timeval
convert_timespec_to_timeval(const struct timespec ts
);
1032 struct timespec
timespec_current(void);
1033 struct timespec
timespec_min(const struct timespec
*ts1
,
1034 const struct timespec
*ts2
);
1035 int timespec_compare(const struct timespec
*ts1
, const struct timespec
*ts2
);
1036 struct timespec
interpret_long_date(const char *p
);
1037 void cli_put_dos_date(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1038 void cli_put_dos_date2(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1039 void cli_put_dos_date3(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1040 time_t cli_make_unix_date(struct cli_state
*cli
, const void *date_ptr
);
1041 time_t cli_make_unix_date2(struct cli_state
*cli
, const void *date_ptr
);
1042 time_t cli_make_unix_date3(struct cli_state
*cli
, const void *date_ptr
);
1043 bool nt_time_equals(const NTTIME
*nt1
, const NTTIME
*nt2
);
1044 void TimeInit(void);
1045 void get_process_uptime(struct timeval
*ret_time
);
1046 time_t nt_time_to_unix_abs(const NTTIME
*nt
);
1047 time_t uint64s_nt_time_to_unix_abs(const uint64_t *src
);
1048 void unix_timespec_to_nt_time(NTTIME
*nt
, struct timespec ts
);
1049 void unix_to_nt_time_abs(NTTIME
*nt
, time_t t
);
1050 bool null_mtime(time_t mtime
);
1051 const char *time_to_asc(const time_t t
);
1052 const char *display_time(NTTIME nttime
);
1053 bool nt_time_is_set(const NTTIME
*nt
);
1055 /* The following definitions come from lib/username.c */
1057 char *get_user_home_dir(TALLOC_CTX
*mem_ctx
, const char *user
);
1058 struct passwd
*Get_Pwnam_alloc(TALLOC_CTX
*mem_ctx
, const char *user
);
1060 /* The following definitions come from lib/util.c */
1062 bool all_zero(const uint8_t *ptr
, size_t size
);
1063 bool set_global_myname(const char *myname
);
1064 const char *global_myname(void);
1065 bool set_global_myworkgroup(const char *myworkgroup
);
1066 const char *lp_workgroup(void);
1067 bool set_global_scope(const char *scope
);
1068 const char *global_scope(void);
1069 void gfree_names(void);
1070 void gfree_all( void );
1071 const char *my_netbios_names(int i
);
1072 bool set_netbios_aliases(const char **str_array
);
1073 bool init_names(void);
1074 struct user_auth_info
*user_auth_info_init(TALLOC_CTX
*mem_ctx
);
1075 const char *get_cmdline_auth_info_username(struct user_auth_info
*auth_info
);
1076 void set_cmdline_auth_info_username(struct user_auth_info
*auth_info
,
1077 const char *username
);
1078 void set_cmdline_auth_info_password(struct user_auth_info
*auth_info
,
1079 const char *password
);
1080 const char *get_cmdline_auth_info_password(struct user_auth_info
*auth_info
);
1081 bool set_cmdline_auth_info_signing_state(struct user_auth_info
*auth_info
,
1083 int get_cmdline_auth_info_signing_state(struct user_auth_info
*auth_info
);
1084 void set_cmdline_auth_info_use_kerberos(struct user_auth_info
*auth_info
,
1086 bool get_cmdline_auth_info_use_kerberos(struct user_auth_info
*auth_info
);
1087 void set_cmdline_auth_info_use_krb5_ticket(struct user_auth_info
*auth_info
);
1088 void set_cmdline_auth_info_smb_encrypt(struct user_auth_info
*auth_info
);
1089 void set_cmdline_auth_info_use_machine_account(struct user_auth_info
*auth_info
);
1090 bool get_cmdline_auth_info_got_pass(struct user_auth_info
*auth_info
);
1091 bool get_cmdline_auth_info_smb_encrypt(struct user_auth_info
*auth_info
);
1092 bool get_cmdline_auth_info_use_machine_account(struct user_auth_info
*auth_info
);
1093 struct user_auth_info
*get_cmdline_auth_info_copy(TALLOC_CTX
*mem_ctx
,
1094 struct user_auth_info
*info
);
1095 bool set_cmdline_auth_info_machine_account_creds(struct user_auth_info
*auth_info
);
1096 bool add_gid_to_array_unique(TALLOC_CTX
*mem_ctx
, gid_t gid
,
1097 gid_t
**gids
, size_t *num_gids
);
1098 bool file_exist_stat(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
1099 bool socket_exist(const char *fname
);
1100 bool directory_exist_stat(char *dname
,SMB_STRUCT_STAT
*st
);
1101 uint64_t get_file_size_stat(const SMB_STRUCT_STAT
*sbuf
);
1102 SMB_OFF_T
get_file_size(char *file_name
);
1103 char *attrib_string(uint16 mode
);
1104 void show_msg(char *buf
);
1105 void smb_set_enclen(char *buf
,int len
,uint16 enc_ctx_num
);
1106 void smb_setlen(char *buf
,int len
);
1107 int set_message_bcc(char *buf
,int num_bytes
);
1108 ssize_t
message_push_blob(uint8
**outbuf
, DATA_BLOB blob
);
1109 char *unix_clean_name(TALLOC_CTX
*ctx
, const char *s
);
1110 char *clean_name(TALLOC_CTX
*ctx
, const char *s
);
1111 ssize_t
write_data_at_offset(int fd
, const char *buffer
, size_t N
, SMB_OFF_T pos
);
1112 int set_blocking(int fd
, bool set
);
1113 void smb_msleep(unsigned int t
);
1114 bool reinit_after_fork(struct messaging_context
*msg_ctx
,
1115 struct event_context
*ev_ctx
,
1116 bool parent_longlived
);
1117 bool yesno(const char *p
);
1118 void *malloc_(size_t size
);
1119 void *memalign_array(size_t el_size
, size_t align
, unsigned int count
);
1120 void *calloc_array(size_t size
, size_t nmemb
);
1121 void *Realloc(void *p
, size_t size
, bool free_old_on_error
);
1122 void add_to_large_array(TALLOC_CTX
*mem_ctx
, size_t element_size
,
1123 void *element
, void *_array
, uint32
*num_elements
,
1124 ssize_t
*array_size
);
1125 char *get_myname(TALLOC_CTX
*ctx
);
1126 char *get_mydnsdomname(TALLOC_CTX
*ctx
);
1127 int interpret_protocol(const char *str
,int def
);
1128 char *automount_lookup(TALLOC_CTX
*ctx
, const char *user_name
);
1129 char *automount_lookup(TALLOC_CTX
*ctx
, const char *user_name
);
1130 bool process_exists(const struct server_id pid
);
1131 const char *uidtoname(uid_t uid
);
1132 char *gidtoname(gid_t gid
);
1133 uid_t
nametouid(const char *name
);
1134 gid_t
nametogid(const char *name
);
1135 void smb_panic(const char *const why
);
1136 void log_stack_trace(void);
1137 const char *readdirname(SMB_STRUCT_DIR
*p
);
1138 bool is_in_path(const char *name
, name_compare_entry
*namelist
, bool case_sensitive
);
1139 void set_namearray(name_compare_entry
**ppname_array
, const char *namelist
);
1140 void free_namearray(name_compare_entry
*name_array
);
1141 bool fcntl_lock(int fd
, int op
, SMB_OFF_T offset
, SMB_OFF_T count
, int type
);
1142 bool fcntl_getlock(int fd
, SMB_OFF_T
*poffset
, SMB_OFF_T
*pcount
, int *ptype
, pid_t
*ppid
);
1143 bool is_myname(const char *s
);
1144 bool is_myworkgroup(const char *s
);
1145 void ra_lanman_string( const char *native_lanman
);
1146 const char *get_remote_arch_str(void);
1147 void set_remote_arch(enum remote_arch_types type
);
1148 enum remote_arch_types
get_remote_arch(void);
1149 const char *tab_depth(int level
, int depth
);
1150 int str_checksum(const char *s
);
1151 void zero_free(void *p
, size_t size
);
1152 int set_maxfiles(int requested_max
);
1153 int smb_mkstemp(char *name_template
);
1154 void *smb_xmalloc_array(size_t size
, unsigned int count
);
1155 char *myhostname(void);
1156 char *lock_path(const char *name
);
1157 char *pid_path(const char *name
);
1158 char *lib_path(const char *name
);
1159 char *modules_path(const char *name
);
1160 char *data_path(const char *name
);
1161 char *state_path(const char *name
);
1162 char *cache_path(const char *name
);
1163 const char *shlib_ext(void);
1164 bool parent_dirname(TALLOC_CTX
*mem_ctx
, const char *dir
, char **parent
,
1166 bool ms_has_wild(const char *s
);
1167 bool ms_has_wild_w(const smb_ucs2_t
*s
);
1168 bool mask_match(const char *string
, const char *pattern
, bool is_case_sensitive
);
1169 bool mask_match_search(const char *string
, const char *pattern
, bool is_case_sensitive
);
1170 bool mask_match_list(const char *string
, char **list
, int listLen
, bool is_case_sensitive
);
1171 bool unix_wild_match(const char *pattern
, const char *string
);
1172 bool name_to_fqdn(fstring fqdn
, const char *name
);
1173 void *talloc_append_blob(TALLOC_CTX
*mem_ctx
, void *buf
, DATA_BLOB blob
);
1174 uint32
map_share_mode_to_deny_mode(uint32 share_access
, uint32 private_options
);
1175 pid_t
procid_to_pid(const struct server_id
*proc
);
1176 void set_my_vnn(uint32 vnn
);
1177 uint32
get_my_vnn(void);
1178 struct server_id
pid_to_procid(pid_t pid
);
1179 struct server_id
procid_self(void);
1180 struct server_id
server_id_self(void);
1181 bool procid_equal(const struct server_id
*p1
, const struct server_id
*p2
);
1182 bool cluster_id_equal(const struct server_id
*id1
,
1183 const struct server_id
*id2
);
1184 bool procid_is_me(const struct server_id
*pid
);
1185 struct server_id
interpret_pid(const char *pid_string
);
1186 char *procid_str(TALLOC_CTX
*mem_ctx
, const struct server_id
*pid
);
1187 char *procid_str_static(const struct server_id
*pid
);
1188 bool procid_valid(const struct server_id
*pid
);
1189 bool procid_is_local(const struct server_id
*pid
);
1190 int this_is_smp(void);
1191 bool trans_oob(uint32_t bufsize
, uint32_t offset
, uint32_t length
);
1192 bool is_offset_safe(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1193 char *get_safe_ptr(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1194 char *get_safe_str_ptr(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1195 int get_safe_SVAL(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
, int failval
);
1196 int get_safe_IVAL(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
, int failval
);
1197 void split_domain_user(TALLOC_CTX
*mem_ctx
,
1198 const char *full_name
,
1201 void *_talloc_zero_zeronull(const void *ctx
, size_t size
, const char *name
);
1202 void *_talloc_memdup_zeronull(const void *t
, const void *p
, size_t size
, const char *name
);
1203 void *_talloc_array_zeronull(const void *ctx
, size_t el_size
, unsigned count
, const char *name
);
1204 void *_talloc_zero_array_zeronull(const void *ctx
, size_t el_size
, unsigned count
, const char *name
);
1205 void *talloc_zeronull(const void *context
, size_t size
, const char *name
);
1206 NTSTATUS
split_ntfs_stream_name(TALLOC_CTX
*mem_ctx
, const char *fname
,
1207 char **pbase
, char **pstream
);
1208 bool is_valid_policy_hnd(const POLICY_HND
*hnd
);
1209 bool policy_hnd_equal(const struct policy_handle
*hnd1
,
1210 const struct policy_handle
*hnd2
);
1211 const char *strip_hostname(const char *s
);
1213 /* The following definitions come from lib/util_file.c */
1215 char **file_lines_pload(const char *syscmd
, int *numlines
);
1216 void file_lines_free(char **lines
);
1218 /* The following definitions come from lib/util_nscd.c */
1220 void smb_nscd_flush_user_cache(void);
1221 void smb_nscd_flush_group_cache(void);
1223 /* The following definitions come from lib/util_nttoken.c */
1225 NT_USER_TOKEN
*dup_nt_token(TALLOC_CTX
*mem_ctx
, const NT_USER_TOKEN
*ptoken
);
1226 NTSTATUS
merge_nt_token(TALLOC_CTX
*mem_ctx
,
1227 const struct nt_user_token
*token_1
,
1228 const struct nt_user_token
*token_2
,
1229 struct nt_user_token
**token_out
);
1230 bool token_sid_in_ace(const NT_USER_TOKEN
*token
, const SEC_ACE
*ace
);
1232 /* The following definitions come from lib/util_pw.c */
1234 struct passwd
*tcopy_passwd(TALLOC_CTX
*mem_ctx
, const struct passwd
*from
) ;
1235 void flush_pwnam_cache(void);
1236 struct passwd
*getpwnam_alloc(TALLOC_CTX
*mem_ctx
, const char *name
);
1237 struct passwd
*getpwuid_alloc(TALLOC_CTX
*mem_ctx
, uid_t uid
) ;
1239 /* The following definitions come from lib/util_reg.c */
1241 const char *reg_type_lookup(enum winreg_Type type
);
1242 WERROR
reg_pull_multi_sz(TALLOC_CTX
*mem_ctx
, const void *buf
, size_t len
,
1243 uint32
*num_values
, char ***values
);
1245 /* The following definitions come from lib/util_reg_api.c */
1247 WERROR
registry_pull_value(TALLOC_CTX
*mem_ctx
,
1248 struct registry_value
**pvalue
,
1249 enum winreg_Type type
, uint8
*data
,
1250 uint32 size
, uint32 length
);
1251 WERROR
registry_push_value(TALLOC_CTX
*mem_ctx
,
1252 const struct registry_value
*value
,
1253 DATA_BLOB
*presult
);
1255 /* The following definitions come from lib/util_seaccess.c */
1257 void se_map_generic(uint32
*access_mask
, const struct generic_mapping
*mapping
);
1258 void security_acl_map_generic(struct security_acl
*sa
, const struct generic_mapping
*mapping
);
1259 void se_map_standard(uint32
*access_mask
, struct standard_mapping
*mapping
);
1260 NTSTATUS
se_access_check(const SEC_DESC
*sd
, const NT_USER_TOKEN
*token
,
1261 uint32 acc_desired
, uint32
*acc_granted
);
1262 NTSTATUS
samr_make_sam_obj_sd(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, size_t *sd_size
);
1264 /* The following definitions come from lib/util_sec.c */
1266 void sec_init(void);
1267 uid_t
sec_initial_uid(void);
1268 gid_t
sec_initial_gid(void);
1269 bool non_root_mode(void);
1270 void gain_root_privilege(void);
1271 void gain_root_group_privilege(void);
1272 void set_effective_uid(uid_t uid
);
1273 void set_effective_gid(gid_t gid
);
1274 void save_re_uid(void);
1275 void restore_re_uid_fromroot(void);
1276 void restore_re_uid(void);
1277 void save_re_gid(void);
1278 void restore_re_gid(void);
1279 int set_re_uid(void);
1280 void become_user_permanently(uid_t uid
, gid_t gid
);
1281 bool is_setuid_root(void) ;
1283 /* The following definitions come from lib/util_sid.c */
1285 const char *sid_type_lookup(uint32 sid_type
) ;
1286 NT_USER_TOKEN
*get_system_token(void) ;
1287 const char *get_global_sam_name(void) ;
1288 char *sid_to_fstring(fstring sidstr_out
, const DOM_SID
*sid
);
1289 char *sid_string_talloc(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
);
1290 char *sid_string_dbg(const DOM_SID
*sid
);
1291 char *sid_string_tos(const DOM_SID
*sid
);
1292 bool string_to_sid(DOM_SID
*sidout
, const char *sidstr
);
1293 DOM_SID
*string_sid_talloc(TALLOC_CTX
*mem_ctx
, const char *sidstr
);
1294 bool sid_append_rid(DOM_SID
*sid
, uint32 rid
);
1295 bool sid_compose(DOM_SID
*dst
, const DOM_SID
*domain_sid
, uint32 rid
);
1296 bool sid_split_rid(DOM_SID
*sid
, uint32
*rid
);
1297 bool sid_peek_rid(const DOM_SID
*sid
, uint32
*rid
);
1298 bool sid_peek_check_rid(const DOM_SID
*exp_dom_sid
, const DOM_SID
*sid
, uint32
*rid
);
1299 void sid_copy(DOM_SID
*dst
, const DOM_SID
*src
);
1300 bool sid_linearize(char *outbuf
, size_t len
, const DOM_SID
*sid
);
1301 bool sid_parse(const char *inbuf
, size_t len
, DOM_SID
*sid
);
1302 int sid_compare(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1303 int sid_compare_domain(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1304 bool sid_equal(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1305 bool non_mappable_sid(DOM_SID
*sid
);
1306 char *sid_binstring(const DOM_SID
*sid
);
1307 char *sid_binstring_hex(const DOM_SID
*sid
);
1308 DOM_SID
*sid_dup_talloc(TALLOC_CTX
*ctx
, const DOM_SID
*src
);
1309 NTSTATUS
add_sid_to_array(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1310 DOM_SID
**sids
, size_t *num
);
1311 NTSTATUS
add_sid_to_array_unique(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1312 DOM_SID
**sids
, size_t *num_sids
);
1313 void del_sid_from_array(const DOM_SID
*sid
, DOM_SID
**sids
, size_t *num
);
1314 bool add_rid_to_array_unique(TALLOC_CTX
*mem_ctx
,
1315 uint32 rid
, uint32
**pp_rids
, size_t *p_num
);
1316 bool is_null_sid(const DOM_SID
*sid
);
1317 bool is_sid_in_token(const NT_USER_TOKEN
*token
, const DOM_SID
*sid
);
1318 NTSTATUS
sid_array_from_info3(TALLOC_CTX
*mem_ctx
,
1319 const struct netr_SamInfo3
*info3
,
1320 DOM_SID
**user_sids
,
1321 size_t *num_user_sids
,
1322 bool include_user_group_rid
,
1323 bool skip_ressource_groups
);
1325 /* The following definitions come from lib/util_sock.c */
1327 bool interpret_string_addr_internal(struct addrinfo
**ppres
,
1328 const char *str
, int flags
);
1329 bool is_broadcast_addr(const struct sockaddr
*pss
);
1330 bool interpret_string_addr(struct sockaddr_storage
*pss
,
1333 bool is_loopback_ip_v4(struct in_addr ip
);
1334 bool is_loopback_addr(const struct sockaddr
*pss
);
1335 bool is_zero_addr(const struct sockaddr
*pss
);
1336 void zero_ip_v4(struct in_addr
*ip
);
1337 void zero_sockaddr(struct sockaddr_storage
*pss
);
1338 void in_addr_to_sockaddr_storage(struct sockaddr_storage
*ss
,
1340 bool same_net(const struct sockaddr
*ip1
,
1341 const struct sockaddr
*ip2
,
1342 const struct sockaddr
*mask
);
1343 bool sockaddr_equal(const struct sockaddr
*ip1
,
1344 const struct sockaddr
*ip2
);
1345 bool is_address_any(const struct sockaddr
*psa
);
1346 uint16_t get_sockaddr_port(const struct sockaddr_storage
*pss
);
1347 char *print_sockaddr(char *dest
,
1349 const struct sockaddr_storage
*psa
);
1350 char *print_canonical_sockaddr(TALLOC_CTX
*ctx
,
1351 const struct sockaddr_storage
*pss
);
1352 void set_sockaddr_port(struct sockaddr
*psa
, uint16_t port
);
1353 const char *client_name(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
);
1417 /* The following definitions come from lib/util_str.c */
1419 bool next_token(const char **ptr
, char *buff
, const char *sep
, size_t bufsize
);
1420 bool next_token_talloc(TALLOC_CTX
*ctx
,
1424 bool next_token_no_ltrim_talloc(TALLOC_CTX
*ctx
,
1428 int StrCaseCmp(const char *s
, const char *t
);
1429 int StrnCaseCmp(const char *s
, const char *t
, size_t len
);
1430 bool strnequal(const char *s1
,const char *s2
,size_t n
);
1431 bool strcsequal(const char *s1
,const char *s2
);
1432 void strnorm(char *s
, int case_default
);
1433 bool strisnormal(const char *s
, int case_default
);
1434 char *push_skip_string(char *buf
);
1435 char *skip_string(const char *base
, size_t len
, char *buf
);
1436 size_t str_charnum(const char *s
);
1437 size_t str_ascii_charnum(const char *s
);
1438 bool trim_char(char *s
,char cfront
,char cback
);
1439 bool strhasupper(const char *s
);
1440 bool strhaslower(const char *s
);
1441 char *safe_strcpy_fn(const char *fn
,
1446 char *safe_strcat_fn(const char *fn
,
1451 char *alpha_strcpy_fn(const char *fn
,
1455 const char *other_safe_chars
,
1457 char *StrnCpy_fn(const char *fn
, int line
,char *dest
,const char *src
,size_t n
);
1458 bool in_list(const char *s
, const char *list
, bool casesensitive
);
1459 void string_free(char **s
);
1460 bool string_set(char **dest
,const char *src
);
1461 void string_sub2(char *s
,const char *pattern
, const char *insert
, size_t len
,
1462 bool remove_unsafe_characters
, bool replace_once
,
1463 bool allow_trailing_dollar
);
1464 void string_sub_once(char *s
, const char *pattern
,
1465 const char *insert
, size_t len
);
1466 void string_sub(char *s
,const char *pattern
, const char *insert
, size_t len
);
1467 void fstring_sub(char *s
,const char *pattern
,const char *insert
);
1468 char *realloc_string_sub2(char *string
,
1469 const char *pattern
,
1471 bool remove_unsafe_characters
,
1472 bool allow_trailing_dollar
);
1473 char *realloc_string_sub(char *string
,
1474 const char *pattern
,
1475 const char *insert
);
1476 char *talloc_string_sub2(TALLOC_CTX
*mem_ctx
, const char *src
,
1477 const char *pattern
,
1479 bool remove_unsafe_characters
,
1481 bool allow_trailing_dollar
);
1482 char *talloc_string_sub(TALLOC_CTX
*mem_ctx
,
1484 const char *pattern
,
1485 const char *insert
);
1486 void all_string_sub(char *s
,const char *pattern
,const char *insert
, size_t len
);
1487 char *talloc_all_string_sub(TALLOC_CTX
*ctx
,
1489 const char *pattern
,
1490 const char *insert
);
1491 char *octal_string(int i
);
1492 char *string_truncate(char *s
, unsigned int length
);
1493 char *strchr_m(const char *src
, char c
);
1494 char *strrchr_m(const char *s
, char c
);
1495 char *strnrchr_m(const char *s
, char c
, unsigned int n
);
1496 char *strstr_m(const char *src
, const char *findstr
);
1497 void strlower_m(char *s
);
1498 void strupper_m(char *s
);
1499 size_t strlen_m(const char *s
);
1500 size_t strlen_m_term(const char *s
);
1501 size_t strlen_m_term_null(const char *s
);
1502 char *binary_string_rfc2254(char *buf
, int len
);
1503 char *binary_string(char *buf
, int len
);
1504 int fstr_sprintf(fstring s
, const char *fmt
, ...);
1505 bool str_list_sub_basic( char **list
, const char *smb_name
,
1506 const char *domain_name
);
1507 bool str_list_substitute(char **list
, const char *pattern
, const char *insert
);
1508 bool str_list_check(const char **list
, const char *s
);
1509 bool str_list_check_ci(const char **list
, const char *s
);
1511 char *ipstr_list_make(char **ipstr_list
,
1512 const struct ip_service
*ip_list
,
1514 int ipstr_list_parse(const char *ipstr_list
, struct ip_service
**ip_list
);
1515 void ipstr_list_free(char* ipstr_list
);
1516 void rfc1738_unescape(char *buf
);
1517 DATA_BLOB
base64_decode_data_blob(const char *s
);
1518 void base64_decode_inplace(char *s
);
1519 char *base64_encode_data_blob(TALLOC_CTX
*mem_ctx
, DATA_BLOB data
);
1520 uint64_t STR_TO_SMB_BIG_UINT(const char *nptr
, const char **entptr
);
1521 SMB_OFF_T
conv_str_size(const char * str
);
1522 void string_append(char **left
, const char *right
);
1523 bool add_string_to_array(TALLOC_CTX
*mem_ctx
,
1524 const char *str
, const char ***strings
,
1526 void sprintf_append(TALLOC_CTX
*mem_ctx
, char **string
, ssize_t
*len
,
1527 size_t *bufsize
, const char *fmt
, ...);
1528 int asprintf_strupper_m(char **strp
, const char *fmt
, ...);
1529 char *talloc_asprintf_strupper_m(TALLOC_CTX
*t
, const char *fmt
, ...);
1530 char *talloc_asprintf_strlower_m(TALLOC_CTX
*t
, const char *fmt
, ...);
1531 char *sstring_sub(const char *src
, char front
, char back
);
1532 bool validate_net_name( const char *name
,
1533 const char *invalid_chars
,
1535 char *escape_shell_string(const char *src
);
1536 char **str_list_make_v3(TALLOC_CTX
*mem_ctx
, const char *string
, const char *sep
);
1538 /* The following definitions come from lib/util_unistr.c */
1540 void gfree_case_tables(void);
1541 void load_case_tables(void);
1542 void init_valid_table(void);
1543 size_t dos_PutUniCode(char *dst
,const char *src
, size_t len
, bool null_terminate
);
1544 char *skip_unibuf(char *src
, size_t len
);
1545 int rpcstr_pull(char* dest
, void *src
, int dest_len
, int src_len
, int flags
);
1546 int rpcstr_pull_talloc(TALLOC_CTX
*ctx
,
1551 int rpcstr_pull_unistr2_fstring(char *dest
, UNISTR2
*src
);
1552 char *rpcstr_pull_unistr2_talloc(TALLOC_CTX
*ctx
, const UNISTR2
*src
);
1553 int rpcstr_push(void *dest
, const char *src
, size_t dest_len
, int flags
);
1554 int rpcstr_push_talloc(TALLOC_CTX
*ctx
, smb_ucs2_t
**dest
, const char *src
);
1555 void unistr2_to_ascii(char *dest
, const UNISTR2
*str
, size_t maxlen
);
1556 void unistr3_to_ascii(char *dest
, const UNISTR3
*str
, size_t maxlen
);
1557 char *unistr2_to_ascii_talloc(TALLOC_CTX
*ctx
, const UNISTR2
*str
);
1558 const char *unistr2_static(const UNISTR2
*str
);
1559 smb_ucs2_t
toupper_w(smb_ucs2_t val
);
1560 smb_ucs2_t
tolower_w( smb_ucs2_t val
);
1561 bool islower_w(smb_ucs2_t c
);
1562 bool isupper_w(smb_ucs2_t c
);
1563 bool isvalid83_w(smb_ucs2_t c
);
1564 size_t strlen_w(const smb_ucs2_t
*src
);
1565 size_t strnlen_w(const smb_ucs2_t
*src
, size_t max
);
1566 smb_ucs2_t
*strchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
);
1567 smb_ucs2_t
*strchr_wa(const smb_ucs2_t
*s
, char c
);
1568 smb_ucs2_t
*strrchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
);
1569 smb_ucs2_t
*strnrchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
, unsigned int n
);
1570 smb_ucs2_t
*strstr_w(const smb_ucs2_t
*s
, const smb_ucs2_t
*ins
);
1571 bool strlower_w(smb_ucs2_t
*s
);
1572 bool strupper_w(smb_ucs2_t
*s
);
1573 void strnorm_w(smb_ucs2_t
*s
, int case_default
);
1574 int strcmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
);
1575 int strncmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
, size_t len
);
1576 int strcasecmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
);
1577 int strncasecmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
, size_t len
);
1578 bool strequal_w(const smb_ucs2_t
*s1
, const smb_ucs2_t
*s2
);
1579 bool strnequal_w(const smb_ucs2_t
*s1
,const smb_ucs2_t
*s2
,size_t n
);
1580 smb_ucs2_t
*strdup_w(const smb_ucs2_t
*src
);
1581 smb_ucs2_t
*strndup_w(const smb_ucs2_t
*src
, size_t len
);
1582 smb_ucs2_t
*strncpy_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
, const size_t max
);
1583 smb_ucs2_t
*strncat_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
, const size_t max
);
1584 smb_ucs2_t
*strcat_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
);
1585 void string_replace_w(smb_ucs2_t
*s
, smb_ucs2_t oldc
, smb_ucs2_t newc
);
1586 bool trim_string_w(smb_ucs2_t
*s
, const smb_ucs2_t
*front
,
1587 const smb_ucs2_t
*back
);
1588 int strcmp_wa(const smb_ucs2_t
*a
, const char *b
);
1589 int strncmp_wa(const smb_ucs2_t
*a
, const char *b
, size_t len
);
1590 smb_ucs2_t
*strpbrk_wa(const smb_ucs2_t
*s
, const char *p
);
1591 smb_ucs2_t
*strstr_wa(const smb_ucs2_t
*s
, const char *ins
);
1592 int unistrlen(uint16
*s
);
1593 int unistrcpy(uint16
*dst
, uint16
*src
);
1594 UNISTR2
* ucs2_to_unistr2(TALLOC_CTX
*ctx
, UNISTR2
* dst
, smb_ucs2_t
* src
);
1595 int toupper_ascii(int c
);
1596 int tolower_ascii(int c
);
1597 int isupper_ascii(int c
);
1598 int islower_ascii(int c
);
1600 /* The following definitions come from lib/util_uuid.c */
1602 void smb_uuid_pack(const struct GUID uu
, UUID_FLAT
*ptr
);
1603 void smb_uuid_unpack(const UUID_FLAT in
, struct GUID
*uu
);
1604 char *guid_binstring(const struct GUID
*guid
);
1606 /* The following definitions come from lib/version.c */
1608 const char *samba_version_string(void);
1610 /* The following definitions come from lib/winbind_util.c */
1612 bool winbind_lookup_name(const char *dom_name
, const char *name
, DOM_SID
*sid
,
1613 enum lsa_SidType
*name_type
);
1614 bool winbind_lookup_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1615 const char **domain
, const char **name
,
1616 enum lsa_SidType
*name_type
);
1617 bool winbind_ping(void);
1618 bool winbind_sid_to_uid(uid_t
*puid
, const DOM_SID
*sid
);
1619 bool winbind_uid_to_sid(DOM_SID
*sid
, uid_t uid
);
1620 bool winbind_sid_to_gid(gid_t
*pgid
, const DOM_SID
*sid
);
1621 bool winbind_gid_to_sid(DOM_SID
*sid
, gid_t gid
);
1622 struct passwd
* winbind_getpwnam(const char * sname
);
1623 struct passwd
* winbind_getpwsid(const DOM_SID
*sid
);
1624 wbcErr
wb_is_trusted_domain(const char *domain
);
1625 bool winbind_lookup_rids(TALLOC_CTX
*mem_ctx
,
1626 const DOM_SID
*domain_sid
,
1627 int num_rids
, uint32
*rids
,
1628 const char **domain_name
,
1629 const char ***names
, enum lsa_SidType
**types
);
1630 bool winbind_allocate_uid(uid_t
*uid
);
1631 bool winbind_allocate_gid(gid_t
*gid
);
1632 bool winbind_get_groups(TALLOC_CTX
*mem_ctx
,
1633 const char *account
,
1634 uint32_t *num_groups
,
1636 bool winbind_get_sid_aliases(TALLOC_CTX
*mem_ctx
,
1637 const DOM_SID
*dom_sid
,
1638 const DOM_SID
*members
,
1640 uint32_t **pp_alias_rids
,
1641 size_t *p_num_alias_rids
);
1644 /* The following definitions come from lib/wins_srv.c */
1646 bool wins_srv_is_dead(struct in_addr wins_ip
, struct in_addr src_ip
);
1647 void wins_srv_alive(struct in_addr wins_ip
, struct in_addr src_ip
);
1648 void wins_srv_died(struct in_addr wins_ip
, struct in_addr src_ip
);
1649 unsigned wins_srv_count(void);
1650 char **wins_srv_tags(void);
1651 void wins_srv_tags_free(char **list
);
1652 struct in_addr
wins_srv_ip_tag(const char *tag
, struct in_addr src_ip
);
1653 unsigned wins_srv_count_tag(const char *tag
);
1655 /* The following definitions come from libads/ads_status.c */
1657 ADS_STATUS
ads_build_error(enum ads_error_type etype
,
1658 int rc
, int minor_status
);
1659 ADS_STATUS
ads_build_nt_error(enum ads_error_type etype
,
1660 NTSTATUS nt_status
);
1661 NTSTATUS
ads_ntstatus(ADS_STATUS status
);
1662 const char *ads_errstr(ADS_STATUS status
);
1663 NTSTATUS
gss_err_to_ntstatus(uint32 maj
, uint32 min
);
1665 /* The following definitions come from libads/ads_struct.c */
1667 char *ads_build_path(const char *realm
, const char *sep
, const char *field
, int reverse
);
1668 char *ads_build_dn(const char *realm
);
1669 char *ads_build_domain(const char *dn
);
1670 ADS_STRUCT
*ads_init(const char *realm
,
1671 const char *workgroup
,
1672 const char *ldap_server
);
1673 void ads_destroy(ADS_STRUCT
**ads
);
1675 /* The following definitions come from libads/ads_utils.c */
1677 uint32
ads_acb2uf(uint32 acb
);
1678 uint32
ads_uf2acb(uint32 uf
);
1679 uint32
ads_uf2atype(uint32 uf
);
1680 uint32
ads_gtype2atype(uint32 gtype
);
1681 enum lsa_SidType
ads_atype_map(uint32 atype
);
1683 /* The following definitions come from libads/authdata.c */
1685 struct PAC_LOGON_INFO
*get_logon_info_from_pac(struct PAC_DATA
*pac_data
);
1686 NTSTATUS
kerberos_return_pac(TALLOC_CTX
*mem_ctx
,
1690 time_t *expire_time
,
1691 time_t *renew_till_time
,
1692 const char *cache_name
,
1694 bool add_netbios_addr
,
1695 time_t renewable_time
,
1696 struct PAC_DATA
**pac_ret
);
1697 NTSTATUS
kerberos_return_info3_from_pac(TALLOC_CTX
*mem_ctx
,
1701 time_t *expire_time
,
1702 time_t *renew_till_time
,
1703 const char *cache_name
,
1705 bool add_netbios_addr
,
1706 time_t renewable_time
,
1707 struct netr_SamInfo3
**info3
);
1709 /* The following definitions come from libads/cldap.c */
1710 bool ads_cldap_netlogon(TALLOC_CTX
*mem_ctx
,
1713 uint32_t nt_version
,
1714 struct netlogon_samlogon_response
**reply
);
1715 bool ads_cldap_netlogon_5(TALLOC_CTX
*mem_ctx
,
1718 struct NETLOGON_SAM_LOGON_RESPONSE_EX
*reply5
);
1720 /* The following definitions come from libads/disp_sec.c */
1722 void ads_disp_sd(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, SEC_DESC
*sd
);
1724 /* The following definitions come from libads/dns.c */
1726 NTSTATUS
ads_dns_lookup_ns(TALLOC_CTX
*ctx
,
1727 const char *dnsdomain
,
1728 struct dns_rr_ns
**nslist
,
1730 bool sitename_store(const char *realm
, const char *sitename
);
1731 char *sitename_fetch(const char *realm
);
1732 bool stored_sitename_changed(const char *realm
, const char *sitename
);
1733 NTSTATUS
ads_dns_query_dcs(TALLOC_CTX
*ctx
,
1735 const char *sitename
,
1736 struct dns_rr_srv
**dclist
,
1738 NTSTATUS
ads_dns_query_gcs(TALLOC_CTX
*ctx
,
1740 const char *sitename
,
1741 struct dns_rr_srv
**dclist
,
1743 NTSTATUS
ads_dns_query_kdcs(TALLOC_CTX
*ctx
,
1744 const char *dns_forest_name
,
1745 const char *sitename
,
1746 struct dns_rr_srv
**dclist
,
1748 NTSTATUS
ads_dns_query_pdc(TALLOC_CTX
*ctx
,
1749 const char *dns_domain_name
,
1750 struct dns_rr_srv
**dclist
,
1752 NTSTATUS
ads_dns_query_dcs_guid(TALLOC_CTX
*ctx
,
1753 const char *dns_forest_name
,
1754 const struct GUID
*domain_guid
,
1755 struct dns_rr_srv
**dclist
,
1758 /* The following definitions come from libads/kerberos.c */
1760 int kerberos_kinit_password_ext(const char *principal
,
1761 const char *password
,
1763 time_t *expire_time
,
1764 time_t *renew_till_time
,
1765 const char *cache_name
,
1767 bool add_netbios_addr
,
1768 time_t renewable_time
,
1769 NTSTATUS
*ntstatus
);
1770 int ads_kinit_password(ADS_STRUCT
*ads
);
1771 int ads_kdestroy(const char *cc_name
);
1772 char* kerberos_standard_des_salt( void );
1773 bool kerberos_secrets_store_des_salt( const char* salt
);
1774 char* kerberos_secrets_fetch_des_salt( void );
1775 char *kerberos_get_default_realm_from_ccache( void );
1776 bool kerberos_secrets_store_salting_principal(const char *service
,
1778 const char *principal
);
1779 int kerberos_kinit_password(const char *principal
,
1780 const char *password
,
1782 const char *cache_name
);
1783 bool create_local_private_krb5_conf_for_domain(const char *realm
,
1785 const char *sitename
,
1786 struct sockaddr_storage
*pss
);
1788 /* The following definitions come from libads/kerberos_keytab.c */
1790 int ads_keytab_add_entry(ADS_STRUCT
*ads
, const char *srvPrinc
);
1791 int ads_keytab_flush(ADS_STRUCT
*ads
);
1792 int ads_keytab_create_default(ADS_STRUCT
*ads
);
1793 int ads_keytab_list(const char *keytab_name
);
1795 /* The following definitions come from libads/kerberos_verify.c */
1797 NTSTATUS
ads_verify_ticket(TALLOC_CTX
*mem_ctx
,
1800 const DATA_BLOB
*ticket
,
1802 struct PAC_DATA
**pac_data
,
1804 DATA_BLOB
*session_key
,
1805 bool use_replay_cache
);
1807 /* The following definitions come from libads/krb5_errs.c */
1810 /* The following definitions come from libads/krb5_setpw.c */
1812 ADS_STATUS
ads_krb5_set_password(const char *kdc_host
, const char *princ
,
1813 const char *newpw
, int time_offset
);
1814 ADS_STATUS
kerberos_set_password(const char *kpasswd_server
,
1815 const char *auth_principal
, const char *auth_password
,
1816 const char *target_principal
, const char *new_password
,
1818 ADS_STATUS
ads_set_machine_password(ADS_STRUCT
*ads
,
1819 const char *machine_account
,
1820 const char *password
);
1822 /* The following definitions come from libads/ldap.c */
1824 bool ads_sitename_match(ADS_STRUCT
*ads
);
1825 bool ads_closest_dc(ADS_STRUCT
*ads
);
1826 ADS_STATUS
ads_connect(ADS_STRUCT
*ads
);
1827 ADS_STATUS
ads_connect_user_creds(ADS_STRUCT
*ads
);
1828 ADS_STATUS
ads_connect_gc(ADS_STRUCT
*ads
);
1829 void ads_disconnect(ADS_STRUCT
*ads
);
1830 ADS_STATUS
ads_do_search_all_fn(ADS_STRUCT
*ads
, const char *bind_path
,
1831 int scope
, const char *expr
, const char **attrs
,
1832 bool (*fn
)(ADS_STRUCT
*, char *, void **, void *),
1834 void ads_memfree(ADS_STRUCT
*ads
, void *mem
);
1835 char *ads_parent_dn(const char *dn
);
1836 ADS_MODLIST
ads_init_mods(TALLOC_CTX
*ctx
);
1837 ADS_STATUS
ads_mod_str(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1838 const char *name
, const char *val
);
1839 ADS_STATUS
ads_mod_strlist(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1840 const char *name
, const char **vals
);
1841 ADS_STATUS
ads_gen_mod(ADS_STRUCT
*ads
, const char *mod_dn
, ADS_MODLIST mods
);
1842 ADS_STATUS
ads_gen_add(ADS_STRUCT
*ads
, const char *new_dn
, ADS_MODLIST mods
);
1843 ADS_STATUS
ads_del_dn(ADS_STRUCT
*ads
, char *del_dn
);
1844 char *ads_ou_string(ADS_STRUCT
*ads
, const char *org_unit
);
1845 char *ads_default_ou_string(ADS_STRUCT
*ads
, const char *wknguid
);
1846 ADS_STATUS
ads_add_strlist(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1847 const char *name
, const char **vals
);
1848 uint32
ads_get_kvno(ADS_STRUCT
*ads
, const char *account_name
);
1849 uint32_t ads_get_machine_kvno(ADS_STRUCT
*ads
, const char *machine_name
);
1850 ADS_STATUS
ads_clear_service_principal_names(ADS_STRUCT
*ads
, const char *machine_name
);
1851 ADS_STATUS
ads_add_service_principal_name(ADS_STRUCT
*ads
, const char *machine_name
,
1852 const char *my_fqdn
, const char *spn
);
1853 ADS_STATUS
ads_create_machine_acct(ADS_STRUCT
*ads
, const char *machine_name
,
1854 const char *org_unit
);
1855 ADS_STATUS
ads_move_machine_acct(ADS_STRUCT
*ads
, const char *machine_name
,
1856 const char *org_unit
, bool *moved
);
1857 int ads_count_replies(ADS_STRUCT
*ads
, void *res
);
1858 ADS_STATUS
ads_USN(ADS_STRUCT
*ads
, uint32
*usn
);
1859 ADS_STATUS
ads_current_time(ADS_STRUCT
*ads
);
1860 ADS_STATUS
ads_domain_func_level(ADS_STRUCT
*ads
, uint32
*val
);
1861 ADS_STATUS
ads_domain_sid(ADS_STRUCT
*ads
, DOM_SID
*sid
);
1862 ADS_STATUS
ads_site_dn(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, const char **site_name
);
1863 ADS_STATUS
ads_site_dn_for_machine(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, const char *computer_name
, const char **site_dn
);
1864 ADS_STATUS
ads_upn_suffixes(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, char ***suffixes
, size_t *num_suffixes
);
1865 ADS_STATUS
ads_get_joinable_ous(ADS_STRUCT
*ads
,
1866 TALLOC_CTX
*mem_ctx
,
1869 ADS_STATUS
ads_get_sid_from_extended_dn(TALLOC_CTX
*mem_ctx
,
1870 const char *extended_dn
,
1871 enum ads_extended_dn_flags flags
,
1873 char* ads_get_dnshostname( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
1874 char* ads_get_upn( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
1875 char* ads_get_samaccountname( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
1876 ADS_STATUS
ads_join_realm(ADS_STRUCT
*ads
, const char *machine_name
,
1877 uint32 account_type
, const char *org_unit
);
1878 ADS_STATUS
ads_leave_realm(ADS_STRUCT
*ads
, const char *hostname
);
1879 ADS_STATUS
ads_find_samaccount(ADS_STRUCT
*ads
,
1880 TALLOC_CTX
*mem_ctx
,
1881 const char *samaccountname
,
1883 const char **dn_ret
);
1884 ADS_STATUS
ads_config_path(ADS_STRUCT
*ads
,
1885 TALLOC_CTX
*mem_ctx
,
1886 char **config_path
);
1887 const char *ads_get_extended_right_name_by_guid(ADS_STRUCT
*ads
,
1888 const char *config_path
,
1889 TALLOC_CTX
*mem_ctx
,
1890 const struct GUID
*rights_guid
);
1891 ADS_STATUS
ads_check_ou_dn(TALLOC_CTX
*mem_ctx
,
1893 const char **account_ou
);
1895 /* The following definitions come from libads/ldap_printer.c */
1897 ADS_STATUS
ads_mod_printer_entry(ADS_STRUCT
*ads
, char *prt_dn
,
1898 TALLOC_CTX
*ctx
, const ADS_MODLIST
*mods
);
1899 ADS_STATUS
ads_add_printer_entry(ADS_STRUCT
*ads
, char *prt_dn
,
1900 TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
);
1901 WERROR
get_remote_printer_publishing_data(struct rpc_pipe_client
*cli
,
1902 TALLOC_CTX
*mem_ctx
,
1904 const char *printer
);
1905 bool get_local_printer_publishing_data(TALLOC_CTX
*mem_ctx
,
1907 NT_PRINTER_DATA
*data
);
1909 /* The following definitions come from libads/ldap_schema.c */
1911 ADS_STATUS
ads_get_attrnames_by_oids(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
1912 const char *schema_path
,
1913 const char **OIDs
, size_t num_OIDs
,
1914 char ***OIDs_out
, char ***names
, size_t *count
);
1915 const char *ads_get_attrname_by_guid(ADS_STRUCT
*ads
,
1916 const char *schema_path
,
1917 TALLOC_CTX
*mem_ctx
,
1918 const struct GUID
*schema_guid
);
1919 const char *ads_get_attrname_by_oid(ADS_STRUCT
*ads
, const char *schema_path
, TALLOC_CTX
*mem_ctx
, const char * OID
);
1920 ADS_STATUS
ads_schema_path(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, char **schema_path
);
1921 ADS_STATUS
ads_check_posix_schema_mapping(TALLOC_CTX
*mem_ctx
,
1923 enum wb_posix_mapping map_type
,
1924 struct posix_schema
**s
) ;
1926 /* The following definitions come from libads/ldap_user.c */
1928 ADS_STATUS
ads_add_user_acct(ADS_STRUCT
*ads
, const char *user
,
1929 const char *container
, const char *fullname
);
1930 ADS_STATUS
ads_add_group_acct(ADS_STRUCT
*ads
, const char *group
,
1931 const char *container
, const char *comment
);
1933 /* The following definitions come from libads/ldap_utils.c */
1935 ADS_STATUS
ads_ranged_search(ADS_STRUCT
*ads
,
1936 TALLOC_CTX
*mem_ctx
,
1941 const char *range_attr
,
1943 size_t *num_strings
);
1944 ADS_STATUS
ads_ranged_search_internal(ADS_STRUCT
*ads
,
1945 TALLOC_CTX
*mem_ctx
,
1951 const char *range_attr
,
1953 size_t *num_strings
,
1958 /* The following definitions come from libads/ndr.c */
1960 void ndr_print_ads_auth_flags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
1961 void ndr_print_ads_struct(struct ndr_print
*ndr
, const char *name
, const struct ads_struct
*r
);
1963 /* The following definitions come from libads/sasl.c */
1965 ADS_STATUS
ads_sasl_bind(ADS_STRUCT
*ads
);
1967 /* The following definitions come from libads/sasl_wrapping.c */
1969 ADS_STATUS
ads_setup_sasl_wrapping(ADS_STRUCT
*ads
,
1970 const struct ads_saslwrap_ops
*ops
,
1971 void *private_data
);
1972 ADS_STATUS
ads_setup_sasl_wrapping(ADS_STRUCT
*ads
,
1973 const struct ads_saslwrap_ops
*ops
,
1974 void *private_data
);
1976 /* The following definitions come from libads/util.c */
1978 ADS_STATUS
ads_change_trust_account_password(ADS_STRUCT
*ads
, char *host_principal
);
1979 ADS_STATUS
ads_guess_service_principal(ADS_STRUCT
*ads
,
1980 char **returned_principal
);
1982 /* The following definitions come from libgpo/gpext/gpext.c */
1984 struct gp_extension
*get_gp_extension_list(void);
1985 NTSTATUS
unregister_gp_extension(const char *name
);
1986 NTSTATUS
register_gp_extension(TALLOC_CTX
*gpext_ctx
,
1990 struct gp_extension_methods
*methods
);
1991 NTSTATUS
gp_ext_info_add_entry(TALLOC_CTX
*mem_ctx
,
1993 const char *ext_guid
,
1994 struct gp_extension_reg_table
*table
,
1995 struct gp_extension_reg_info
*info
);
1996 NTSTATUS
shutdown_gp_extensions(void);
1997 NTSTATUS
init_gp_extensions(TALLOC_CTX
*mem_ctx
);
1998 NTSTATUS
free_gp_extensions(void);
1999 void debug_gpext_header(int lvl
,
2002 struct GROUP_POLICY_OBJECT
*gpo
,
2003 const char *extension_guid
,
2004 const char *snapin_guid
);
2005 NTSTATUS
process_gpo_list_with_extension(ADS_STRUCT
*ads
,
2006 TALLOC_CTX
*mem_ctx
,
2008 const struct nt_user_token
*token
,
2009 struct GROUP_POLICY_OBJECT
*gpo_list
,
2010 const char *extension_guid
,
2011 const char *snapin_guid
);
2012 NTSTATUS
gpext_process_extension(ADS_STRUCT
*ads
,
2013 TALLOC_CTX
*mem_ctx
,
2015 const struct nt_user_token
*token
,
2016 struct registry_key
*root_key
,
2017 struct GROUP_POLICY_OBJECT
*gpo
,
2018 const char *extension_guid
,
2019 const char *snapin_guid
);
2021 /* The following definitions come from libgpo/gpo_fetch.c */
2023 NTSTATUS
gpo_explode_filesyspath(TALLOC_CTX
*mem_ctx
,
2024 const char *file_sys_path
,
2029 NTSTATUS
gpo_fetch_files(TALLOC_CTX
*mem_ctx
,
2030 struct cli_state
*cli
,
2031 struct GROUP_POLICY_OBJECT
*gpo
);
2032 NTSTATUS
gpo_get_sysvol_gpt_version(TALLOC_CTX
*mem_ctx
,
2033 const char *unix_path
,
2034 uint32_t *sysvol_version
,
2035 char **display_name
);
2037 /* The following definitions come from libgpo/gpo_filesync.c */
2039 NTSTATUS
gpo_copy_file(TALLOC_CTX
*mem_ctx
,
2040 struct cli_state
*cli
,
2041 const char *nt_path
,
2042 const char *unix_path
);
2043 NTSTATUS
gpo_sync_directories(TALLOC_CTX
*mem_ctx
,
2044 struct cli_state
*cli
,
2045 const char *nt_path
,
2046 const char *local_path
);
2048 /* The following definitions come from libgpo/gpo_ini.c */
2050 NTSTATUS
parse_gpt_ini(TALLOC_CTX
*mem_ctx
,
2051 const char *filename
,
2053 char **display_name
);
2055 /* The following definitions come from libgpo/gpo_ldap.c */
2057 bool ads_parse_gp_ext(TALLOC_CTX
*mem_ctx
,
2058 const char *extension_raw
,
2059 struct GP_EXT
**gp_ext
);
2060 ADS_STATUS
ads_get_gpo_link(ADS_STRUCT
*ads
,
2061 TALLOC_CTX
*mem_ctx
,
2062 const char *link_dn
,
2063 struct GP_LINK
*gp_link_struct
);
2064 ADS_STATUS
ads_add_gpo_link(ADS_STRUCT
*ads
,
2065 TALLOC_CTX
*mem_ctx
,
2066 const char *link_dn
,
2069 ADS_STATUS
ads_delete_gpo_link(ADS_STRUCT
*ads
,
2070 TALLOC_CTX
*mem_ctx
,
2071 const char *link_dn
,
2072 const char *gpo_dn
);
2073 ADS_STATUS
ads_get_gpo(ADS_STRUCT
*ads
,
2074 TALLOC_CTX
*mem_ctx
,
2076 const char *display_name
,
2077 const char *guid_name
,
2078 struct GROUP_POLICY_OBJECT
*gpo
);
2079 ADS_STATUS
ads_get_sid_token(ADS_STRUCT
*ads
,
2080 TALLOC_CTX
*mem_ctx
,
2082 struct nt_user_token
**token
);
2083 ADS_STATUS
ads_get_gpo_list(ADS_STRUCT
*ads
,
2084 TALLOC_CTX
*mem_ctx
,
2087 const struct nt_user_token
*token
,
2088 struct GROUP_POLICY_OBJECT
**gpo_list
);
2090 /* The following definitions come from libgpo/gpo_reg.c */
2092 struct nt_user_token
*registry_create_system_token(TALLOC_CTX
*mem_ctx
);
2093 WERROR
gp_init_reg_ctx(TALLOC_CTX
*mem_ctx
,
2094 const char *initial_path
,
2095 uint32_t desired_access
,
2096 const struct nt_user_token
*token
,
2097 struct gp_registry_context
**reg_ctx
);
2098 void gp_free_reg_ctx(struct gp_registry_context
*reg_ctx
);
2099 WERROR
gp_store_reg_subkey(TALLOC_CTX
*mem_ctx
,
2100 const char *subkeyname
,
2101 struct registry_key
*curr_key
,
2102 struct registry_key
**new_key
);
2103 WERROR
gp_read_reg_subkey(TALLOC_CTX
*mem_ctx
,
2104 struct gp_registry_context
*reg_ctx
,
2105 const char *subkeyname
,
2106 struct registry_key
**key
);
2107 WERROR
gp_store_reg_val_sz(TALLOC_CTX
*mem_ctx
,
2108 struct registry_key
*key
,
2109 const char *val_name
,
2111 WERROR
gp_read_reg_val_sz(TALLOC_CTX
*mem_ctx
,
2112 struct registry_key
*key
,
2113 const char *val_name
,
2115 WERROR
gp_reg_state_store(TALLOC_CTX
*mem_ctx
,
2118 const struct nt_user_token
*token
,
2119 struct GROUP_POLICY_OBJECT
*gpo_list
);
2120 WERROR
gp_reg_state_read(TALLOC_CTX
*mem_ctx
,
2123 struct GROUP_POLICY_OBJECT
**gpo_list
);
2124 WERROR
gp_secure_key(TALLOC_CTX
*mem_ctx
,
2126 struct registry_key
*key
,
2127 const DOM_SID
*sid
);
2128 void dump_reg_val(int lvl
, const char *direction
,
2129 const char *key
, const char *subkey
,
2130 struct registry_value
*val
);
2131 void dump_reg_entry(uint32_t flags
,
2133 struct gp_registry_entry
*entry
);
2134 void dump_reg_entries(uint32_t flags
,
2136 struct gp_registry_entry
*entries
,
2137 size_t num_entries
);
2138 bool add_gp_registry_entry_to_array(TALLOC_CTX
*mem_ctx
,
2139 struct gp_registry_entry
*entry
,
2140 struct gp_registry_entry
**entries
,
2142 WERROR
reg_apply_registry_entry(TALLOC_CTX
*mem_ctx
,
2143 struct registry_key
*root_key
,
2144 struct gp_registry_context
*reg_ctx
,
2145 struct gp_registry_entry
*entry
,
2146 const struct nt_user_token
*token
,
2149 /* The following definitions come from libgpo/gpo_sec.c */
2151 NTSTATUS
gpo_apply_security_filtering(const struct GROUP_POLICY_OBJECT
*gpo
,
2152 const struct nt_user_token
*token
);
2154 /* The following definitions come from libgpo/gpo_util.c */
2156 const char *cse_gpo_guid_string_to_name(const char *guid
);
2157 const char *cse_gpo_name_to_guid_string(const char *name
);
2158 const char *cse_snapin_gpo_guid_string_to_name(const char *guid
);
2159 void dump_gp_ext(struct GP_EXT
*gp_ext
, int debuglevel
);
2160 void dump_gpo(ADS_STRUCT
*ads
,
2161 TALLOC_CTX
*mem_ctx
,
2162 struct GROUP_POLICY_OBJECT
*gpo
,
2164 void dump_gpo_list(ADS_STRUCT
*ads
,
2165 TALLOC_CTX
*mem_ctx
,
2166 struct GROUP_POLICY_OBJECT
*gpo_list
,
2168 void dump_gplink(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, struct GP_LINK
*gp_link
);
2169 ADS_STATUS
gpo_process_a_gpo(ADS_STRUCT
*ads
,
2170 TALLOC_CTX
*mem_ctx
,
2171 const struct nt_user_token
*token
,
2172 struct registry_key
*root_key
,
2173 struct GROUP_POLICY_OBJECT
*gpo
,
2174 const char *extension_guid_filter
,
2176 ADS_STATUS
gpo_process_gpo_list(ADS_STRUCT
*ads
,
2177 TALLOC_CTX
*mem_ctx
,
2178 const struct nt_user_token
*token
,
2179 struct GROUP_POLICY_OBJECT
*gpo_list
,
2180 const char *extensions_guid_filter
,
2182 NTSTATUS
check_refresh_gpo(ADS_STRUCT
*ads
,
2183 TALLOC_CTX
*mem_ctx
,
2185 struct GROUP_POLICY_OBJECT
*gpo
,
2186 struct cli_state
**cli_out
);
2187 NTSTATUS
check_refresh_gpo_list(ADS_STRUCT
*ads
,
2188 TALLOC_CTX
*mem_ctx
,
2190 struct GROUP_POLICY_OBJECT
*gpo_list
);
2191 NTSTATUS
gpo_get_unix_path(TALLOC_CTX
*mem_ctx
,
2192 struct GROUP_POLICY_OBJECT
*gpo
,
2194 char *gpo_flag_str(uint32_t flags
);
2195 NTSTATUS
gp_find_file(TALLOC_CTX
*mem_ctx
,
2197 const char *filename
,
2199 const char **filename_out
);
2200 ADS_STATUS
gp_get_machine_token(ADS_STRUCT
*ads
,
2201 TALLOC_CTX
*mem_ctx
,
2203 struct nt_user_token
**token
);
2205 #include "librpc/gen_ndr/ndr_dfs.h"
2206 #include "librpc/gen_ndr/ndr_dssetup.h"
2207 #include "librpc/gen_ndr/ndr_echo.h"
2208 #include "librpc/gen_ndr/ndr_eventlog.h"
2209 #include "librpc/gen_ndr/ndr_krb5pac.h"
2210 #include "librpc/gen_ndr/ndr_lsa.h"
2211 #include "librpc/gen_ndr/ndr_misc.h"
2212 #include "librpc/gen_ndr/ndr_netlogon.h"
2213 #include "librpc/gen_ndr/ndr_notify.h"
2214 #include "librpc/gen_ndr/ndr_ntsvcs.h"
2215 #include "librpc/gen_ndr/ndr_samr.h"
2216 #include "librpc/gen_ndr/ndr_security.h"
2217 #include "librpc/gen_ndr/ndr_srvsvc.h"
2218 #include "librpc/gen_ndr/ndr_svcctl.h"
2219 #include "librpc/gen_ndr/ndr_winreg.h"
2220 #include "librpc/gen_ndr/ndr_wkssvc.h"
2222 #include "librpc/gen_ndr/srv_dfs.h"
2223 #include "librpc/gen_ndr/srv_dssetup.h"
2224 #include "librpc/gen_ndr/srv_echo.h"
2225 #include "librpc/gen_ndr/srv_eventlog.h"
2226 #include "librpc/gen_ndr/srv_initshutdown.h"
2227 #include "librpc/gen_ndr/srv_lsa.h"
2228 #include "librpc/gen_ndr/srv_netlogon.h"
2229 #include "librpc/gen_ndr/srv_ntsvcs.h"
2230 #include "librpc/gen_ndr/srv_samr.h"
2231 #include "librpc/gen_ndr/srv_srvsvc.h"
2232 #include "librpc/gen_ndr/srv_svcctl.h"
2233 #include "librpc/gen_ndr/srv_winreg.h"
2234 #include "librpc/gen_ndr/srv_wkssvc.h"
2235 #include "librpc/gen_ndr/srv_spoolss.h"
2237 #include "librpc/ndr/libndr.h"
2239 /* The following definitions come from librpc/ndr/util.c */
2241 enum ndr_err_code
ndr_push_server_id(struct ndr_push
*ndr
, int ndr_flags
, const struct server_id
*r
);
2242 enum ndr_err_code
ndr_pull_server_id(struct ndr_pull
*ndr
, int ndr_flags
, struct server_id
*r
);
2243 void ndr_print_server_id(struct ndr_print
*ndr
, const char *name
, const struct server_id
*r
);
2244 enum ndr_err_code
ndr_push_file_id(struct ndr_push
*ndr
, int ndr_flags
, const struct file_id
*r
);
2245 enum ndr_err_code
ndr_pull_file_id(struct ndr_pull
*ndr
, int ndr_flags
, struct file_id
*r
);
2246 void ndr_print_file_id(struct ndr_print
*ndr
, const char *name
, const struct file_id
*r
);
2247 _PUBLIC_
void ndr_print_bool(struct ndr_print
*ndr
, const char *name
, const bool b
);
2248 _PUBLIC_
void ndr_print_sockaddr_storage(struct ndr_print
*ndr
, const char *name
, const struct sockaddr_storage
*ss
);
2249 const char *ndr_errstr(enum ndr_err_code err
);
2251 /* The following definitions come from librpc/ndr/sid.c */
2253 char *dom_sid_string(TALLOC_CTX
*mem_ctx
, const struct dom_sid
*sid
);
2255 /* The following definitions come from librpc/rpc/binding.c */
2257 const char *epm_floor_string(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
);
2258 _PUBLIC_
char *dcerpc_binding_string(TALLOC_CTX
*mem_ctx
, const struct dcerpc_binding
*b
);
2259 _PUBLIC_ NTSTATUS
dcerpc_parse_binding(TALLOC_CTX
*mem_ctx
, const char *s
, struct dcerpc_binding
**b_out
);
2260 _PUBLIC_ NTSTATUS
dcerpc_floor_get_lhs_data(const struct epm_floor
*epm_floor
,
2261 struct ndr_syntax_id
*syntax
);
2262 const char *dcerpc_floor_get_rhs_data(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
);
2263 enum dcerpc_transport_t
dcerpc_transport_by_endpoint_protocol(int prot
);
2264 _PUBLIC_
enum dcerpc_transport_t
dcerpc_transport_by_tower(const struct epm_tower
*tower
);
2265 _PUBLIC_
const char *derpc_transport_string_by_transport(enum dcerpc_transport_t t
);
2266 _PUBLIC_ NTSTATUS
dcerpc_binding_from_tower(TALLOC_CTX
*mem_ctx
,
2267 struct epm_tower
*tower
,
2268 struct dcerpc_binding
**b_out
);
2269 _PUBLIC_ NTSTATUS
dcerpc_binding_build_tower(TALLOC_CTX
*mem_ctx
,
2270 const struct dcerpc_binding
*binding
,
2271 struct epm_tower
*tower
);
2273 /* The following definitions come from librpc/rpc/dcerpc.c */
2275 struct rpc_request
*dcerpc_ndr_request_send(struct dcerpc_pipe
*p
, const struct GUID
*object
,
2276 const struct ndr_interface_table
*table
, uint32_t opnum
,
2277 TALLOC_CTX
*mem_ctx
, void *r
);
2278 NTSTATUS
dcerpc_ndr_request_recv(struct rpc_request
*req
);
2279 _PUBLIC_ NTSTATUS
dcerpc_pipe_connect(TALLOC_CTX
*parent_ctx
, struct dcerpc_pipe
**pp
,
2280 const char *binding_string
, const struct ndr_interface_table
*table
,
2281 struct cli_credentials
*credentials
, struct event_context
*ev
,
2282 struct loadparm_context
*lp_ctx
);
2284 /* The following definitions come from libsmb/cliconnect.c */
2286 ADS_STATUS
cli_session_setup_spnego(struct cli_state
*cli
, const char *user
,
2287 const char *pass
, const char *user_domain
,
2288 const char * dest_realm
);
2290 NTSTATUS
cli_session_setup(struct cli_state
*cli
,
2292 const char *pass
, int passlen
,
2293 const char *ntpass
, int ntpasslen
,
2294 const char *workgroup
);
2295 struct async_req
*cli_session_setup_guest_send(TALLOC_CTX
*mem_ctx
,
2296 struct event_context
*ev
,
2297 struct cli_state
*cli
);
2298 NTSTATUS
cli_session_setup_guest_recv(struct async_req
*req
);
2299 bool cli_ulogoff(struct cli_state
*cli
);
2300 struct async_req
*cli_tcon_andx_send(TALLOC_CTX
*mem_ctx
,
2301 struct event_context
*ev
,
2302 struct cli_state
*cli
,
2303 const char *share
, const char *dev
,
2304 const char *pass
, int passlen
);
2305 NTSTATUS
cli_tcon_andx_recv(struct async_req
*req
);
2306 NTSTATUS
cli_tcon_andx(struct cli_state
*cli
, const char *share
,
2307 const char *dev
, const char *pass
, int passlen
);
2308 bool cli_tdis(struct cli_state
*cli
);
2309 void cli_negprot_sendsync(struct cli_state
*cli
);
2310 NTSTATUS
cli_negprot(struct cli_state
*cli
);
2311 struct async_req
*cli_negprot_send(TALLOC_CTX
*mem_ctx
,
2312 struct event_context
*ev
,
2313 struct cli_state
*cli
);
2314 NTSTATUS
cli_negprot_recv(struct async_req
*req
);
2315 bool cli_session_request(struct cli_state
*cli
,
2316 struct nmb_name
*calling
, struct nmb_name
*called
);
2317 NTSTATUS
cli_connect(struct cli_state
*cli
,
2319 struct sockaddr_storage
*dest_ss
);
2320 NTSTATUS
cli_start_connection(struct cli_state
**output_cli
,
2321 const char *my_name
,
2322 const char *dest_host
,
2323 struct sockaddr_storage
*dest_ss
, int port
,
2324 int signing_state
, int flags
,
2326 NTSTATUS
cli_full_connection(struct cli_state
**output_cli
,
2327 const char *my_name
,
2328 const char *dest_host
,
2329 struct sockaddr_storage
*dest_ss
, int port
,
2330 const char *service
, const char *service_type
,
2331 const char *user
, const char *domain
,
2332 const char *password
, int flags
,
2335 bool attempt_netbios_session_request(struct cli_state
**ppcli
, const char *srchost
, const char *desthost
,
2336 struct sockaddr_storage
*pdest_ss
);
2337 NTSTATUS
cli_raw_tcon(struct cli_state
*cli
,
2338 const char *service
, const char *pass
, const char *dev
,
2339 uint16
*max_xmit
, uint16
*tid
);
2340 struct cli_state
*get_ipc_connect(char *server
,
2341 struct sockaddr_storage
*server_ss
,
2342 const struct user_auth_info
*user_info
);
2343 struct cli_state
*get_ipc_connect_master_ip(TALLOC_CTX
*ctx
,
2344 struct ip_service
*mb_ip
,
2345 const struct user_auth_info
*user_info
,
2346 char **pp_workgroup_out
);
2347 struct cli_state
*get_ipc_connect_master_ip_bcast(TALLOC_CTX
*ctx
,
2348 const struct user_auth_info
*user_info
,
2349 char **pp_workgroup_out
);
2351 /* The following definitions come from libsmb/clidfs.c */
2353 NTSTATUS
cli_cm_force_encryption(struct cli_state
*c
,
2354 const char *username
,
2355 const char *password
,
2357 const char *sharename
);
2358 struct cli_state
*cli_cm_open(TALLOC_CTX
*ctx
,
2359 struct cli_state
*referring_cli
,
2367 void cli_cm_display(const struct cli_state
*c
);
2368 void cli_cm_set_credentials(struct user_auth_info
*auth_info
);
2369 void cli_cm_set_port(int port_number
);
2370 void cli_cm_set_dest_name_type(int type
);
2371 void cli_cm_set_signing_state(int state
);
2372 void cli_cm_set_username(const char *username
);
2373 void cli_cm_set_password(const char *newpass
);
2374 void cli_cm_set_use_kerberos(void);
2375 void cli_cm_set_fallback_after_kerberos(void);
2376 void cli_cm_set_dest_ss(struct sockaddr_storage
*pss
);
2377 bool cli_dfs_get_referral(TALLOC_CTX
*ctx
,
2378 struct cli_state
*cli
,
2380 CLIENT_DFS_REFERRAL
**refs
,
2383 bool cli_resolve_path(TALLOC_CTX
*ctx
,
2384 const char *mountpt
,
2385 struct cli_state
*rootcli
,
2387 struct cli_state
**targetcli
,
2388 char **pp_targetpath
);
2390 /* The following definitions come from libsmb/clidgram.c */
2392 bool cli_send_mailslot(struct messaging_context
*msg_ctx
,
2393 bool unique
, const char *mailslot
,
2396 const char *srcname
, int src_type
,
2397 const char *dstname
, int dest_type
,
2398 const struct sockaddr_storage
*dest_ss
);
2399 bool send_getdc_request(TALLOC_CTX
*mem_ctx
,
2400 struct messaging_context
*msg_ctx
,
2401 struct sockaddr_storage
*dc_ss
,
2402 const char *domain_name
,
2404 uint32_t nt_version
);
2405 bool receive_getdc_response(TALLOC_CTX
*mem_ctx
,
2406 struct sockaddr_storage
*dc_ss
,
2407 const char *domain_name
,
2408 uint32_t *nt_version
,
2409 const char **dc_name
,
2410 struct netlogon_samlogon_response
**reply
);
2412 /* The following definitions come from libsmb/clientgen.c */
2414 int cli_set_message(char *buf
,int num_words
,int num_bytes
,bool zero
);
2415 unsigned int cli_set_timeout(struct cli_state
*cli
, unsigned int timeout
);
2416 void cli_set_port(struct cli_state
*cli
, int port
);
2417 bool cli_receive_smb(struct cli_state
*cli
);
2418 ssize_t
cli_receive_smb_data(struct cli_state
*cli
, char *buffer
, size_t len
);
2419 bool cli_receive_smb_readX_header(struct cli_state
*cli
);
2420 bool cli_send_smb(struct cli_state
*cli
);
2421 bool cli_send_smb_direct_writeX(struct cli_state
*cli
,
2424 void cli_setup_packet_buf(struct cli_state
*cli
, char *buf
);
2425 void cli_setup_packet(struct cli_state
*cli
);
2426 void cli_setup_bcc(struct cli_state
*cli
, void *p
);
2427 NTSTATUS
cli_set_domain(struct cli_state
*cli
, const char *domain
);
2428 NTSTATUS
cli_set_username(struct cli_state
*cli
, const char *username
);
2429 NTSTATUS
cli_set_password(struct cli_state
*cli
, const char *password
);
2430 NTSTATUS
cli_init_creds(struct cli_state
*cli
, const char *username
, const char *domain
, const char *password
);
2431 struct cli_state
*cli_initialise(void);
2432 struct cli_state
*cli_initialise_ex(int signing_state
);
2433 void cli_nt_pipes_close(struct cli_state
*cli
);
2434 void cli_shutdown(struct cli_state
*cli
);
2435 void cli_sockopt(struct cli_state
*cli
, const char *options
);
2436 uint16
cli_setpid(struct cli_state
*cli
, uint16 pid
);
2437 bool cli_set_case_sensitive(struct cli_state
*cli
, bool case_sensitive
);
2438 bool cli_send_keepalive(struct cli_state
*cli
);
2439 struct async_req
*cli_echo_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2440 struct cli_state
*cli
, uint16_t num_echos
,
2442 NTSTATUS
cli_echo_recv(struct async_req
*req
);
2443 NTSTATUS
cli_echo(struct cli_state
*cli
, uint16_t num_echos
, DATA_BLOB data
);
2444 bool cli_ucs2(struct cli_state
*cli
);
2445 bool is_andx_req(uint8_t cmd
);
2447 /* The following definitions come from libsmb/clierror.c */
2449 const char *cli_errstr(struct cli_state
*cli
);
2450 NTSTATUS
cli_nt_error(struct cli_state
*cli
);
2451 void cli_dos_error(struct cli_state
*cli
, uint8
*eclass
, uint32
*ecode
);
2452 int cli_errno(struct cli_state
*cli
);
2453 bool cli_is_error(struct cli_state
*cli
);
2454 bool cli_is_nt_error(struct cli_state
*cli
);
2455 bool cli_is_dos_error(struct cli_state
*cli
);
2456 NTSTATUS
cli_get_nt_error(struct cli_state
*cli
);
2457 void cli_set_nt_error(struct cli_state
*cli
, NTSTATUS status
);
2458 void cli_reset_error(struct cli_state
*cli
);
2460 /* The following definitions come from libsmb/clifile.c */
2462 uint32
unix_perms_to_wire(mode_t perms
);
2463 mode_t
wire_perms_to_unix(uint32 perms
);
2464 bool cli_unix_getfacl(struct cli_state
*cli
, const char *name
, size_t *prb_size
, char **retbuf
);
2465 bool cli_unix_stat(struct cli_state
*cli
, const char *name
, SMB_STRUCT_STAT
*sbuf
);
2466 bool cli_unix_symlink(struct cli_state
*cli
, const char *oldname
, const char *newname
);
2467 bool cli_unix_hardlink(struct cli_state
*cli
, const char *oldname
, const char *newname
);
2468 bool cli_unix_chmod(struct cli_state
*cli
, const char *fname
, mode_t mode
);
2469 bool cli_unix_chown(struct cli_state
*cli
, const char *fname
, uid_t uid
, gid_t gid
);
2470 bool cli_rename(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
2471 bool cli_ntrename(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
2472 bool cli_nt_hardlink(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
2473 bool cli_unlink_full(struct cli_state
*cli
, const char *fname
, uint16 attrs
);
2474 bool cli_unlink(struct cli_state
*cli
, const char *fname
);
2475 bool cli_mkdir(struct cli_state
*cli
, const char *dname
);
2476 bool cli_rmdir(struct cli_state
*cli
, const char *dname
);
2477 int cli_nt_delete_on_close(struct cli_state
*cli
, int fnum
, bool flag
);
2478 int cli_nt_create_full(struct cli_state
*cli
, const char *fname
,
2479 uint32 CreatFlags
, uint32 DesiredAccess
,
2480 uint32 FileAttributes
, uint32 ShareAccess
,
2481 uint32 CreateDisposition
, uint32 CreateOptions
,
2482 uint8 SecuityFlags
);
2483 struct async_req
*cli_ntcreate_send(TALLOC_CTX
*mem_ctx
,
2484 struct event_context
*ev
,
2485 struct cli_state
*cli
,
2487 uint32_t CreatFlags
,
2488 uint32_t DesiredAccess
,
2489 uint32_t FileAttributes
,
2490 uint32_t ShareAccess
,
2491 uint32_t CreateDisposition
,
2492 uint32_t CreateOptions
,
2493 uint8_t SecurityFlags
);
2494 NTSTATUS
cli_ntcreate_recv(struct async_req
*req
, uint16_t *pfnum
);
2495 NTSTATUS
cli_ntcreate(struct cli_state
*cli
,
2497 uint32_t CreatFlags
,
2498 uint32_t DesiredAccess
,
2499 uint32_t FileAttributes
,
2500 uint32_t ShareAccess
,
2501 uint32_t CreateDisposition
,
2502 uint32_t CreateOptions
,
2503 uint8_t SecurityFlags
,
2505 int cli_nt_create(struct cli_state
*cli
, const char *fname
, uint32 DesiredAccess
);
2506 uint8_t *smb_bytes_push_str(uint8_t *buf
, bool ucs2
, const char *str
,
2507 size_t str_len
, size_t *pconverted_size
);
2508 struct async_req
*cli_open_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2509 struct cli_state
*cli
,
2510 const char *fname
, int flags
, int share_mode
);
2511 NTSTATUS
cli_open_recv(struct async_req
*req
, int *fnum
);
2512 int cli_open(struct cli_state
*cli
, const char *fname
, int flags
, int share_mode
);
2513 struct async_req
*cli_close_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2514 struct cli_state
*cli
, int fnum
);
2515 NTSTATUS
cli_close_recv(struct async_req
*req
);
2516 bool cli_close(struct cli_state
*cli
, int fnum
);
2517 bool cli_ftruncate(struct cli_state
*cli
, int fnum
, uint64_t size
);
2518 NTSTATUS
cli_locktype(struct cli_state
*cli
, int fnum
,
2519 uint32 offset
, uint32 len
,
2520 int timeout
, unsigned char locktype
);
2521 bool cli_lock(struct cli_state
*cli
, int fnum
,
2522 uint32 offset
, uint32 len
, int timeout
, enum brl_type lock_type
);
2523 bool cli_unlock(struct cli_state
*cli
, int fnum
, uint32 offset
, uint32 len
);
2524 bool cli_lock64(struct cli_state
*cli
, int fnum
,
2525 uint64_t offset
, uint64_t len
, int timeout
, enum brl_type lock_type
);
2526 bool cli_unlock64(struct cli_state
*cli
, int fnum
, uint64_t offset
, uint64_t len
);
2527 bool cli_posix_lock(struct cli_state
*cli
, int fnum
,
2528 uint64_t offset
, uint64_t len
,
2529 bool wait_lock
, enum brl_type lock_type
);
2530 bool cli_posix_unlock(struct cli_state
*cli
, int fnum
, uint64_t offset
, uint64_t len
);
2531 bool cli_posix_getlock(struct cli_state
*cli
, int fnum
, uint64_t *poffset
, uint64_t *plen
);
2532 bool cli_getattrE(struct cli_state
*cli
, int fd
,
2533 uint16
*attr
, SMB_OFF_T
*size
,
2534 time_t *change_time
,
2535 time_t *access_time
,
2536 time_t *write_time
);
2537 bool cli_getatr(struct cli_state
*cli
, const char *fname
,
2538 uint16
*attr
, SMB_OFF_T
*size
, time_t *write_time
);
2539 bool cli_setattrE(struct cli_state
*cli
, int fd
,
2543 bool cli_setatr(struct cli_state
*cli
, const char *fname
, uint16 attr
, time_t t
);
2544 bool cli_chkpath(struct cli_state
*cli
, const char *path
);
2545 bool cli_dskattr(struct cli_state
*cli
, int *bsize
, int *total
, int *avail
);
2546 int cli_ctemp(struct cli_state
*cli
, const char *path
, char **tmp_path
);
2547 NTSTATUS
cli_raw_ioctl(struct cli_state
*cli
, int fnum
, uint32 code
, DATA_BLOB
*blob
);
2548 bool cli_set_ea_path(struct cli_state
*cli
, const char *path
, const char *ea_name
, const char *ea_val
, size_t ea_len
);
2549 bool cli_set_ea_fnum(struct cli_state
*cli
, int fnum
, const char *ea_name
, const char *ea_val
, size_t ea_len
);
2550 bool cli_get_ea_list_path(struct cli_state
*cli
, const char *path
,
2553 struct ea_struct
**pea_list
);
2554 bool cli_get_ea_list_fnum(struct cli_state
*cli
, int fnum
,
2557 struct ea_struct
**pea_list
);
2558 int cli_posix_open(struct cli_state
*cli
, const char *fname
, int flags
, mode_t mode
);
2559 int cli_posix_mkdir(struct cli_state
*cli
, const char *fname
, mode_t mode
);
2560 bool cli_posix_unlink(struct cli_state
*cli
, const char *fname
);
2561 int cli_posix_rmdir(struct cli_state
*cli
, const char *fname
);
2563 /* The following definitions come from libsmb/clifsinfo.c */
2565 bool cli_unix_extensions_version(struct cli_state
*cli
, uint16
*pmajor
, uint16
*pminor
,
2566 uint32
*pcaplow
, uint32
*pcaphigh
);
2567 bool cli_set_unix_extensions_capabilities(struct cli_state
*cli
, uint16 major
, uint16 minor
,
2568 uint32 caplow
, uint32 caphigh
);
2569 bool cli_get_fs_attr_info(struct cli_state
*cli
, uint32
*fs_attr
);
2570 bool cli_get_fs_volume_info_old(struct cli_state
*cli
, fstring volume_name
, uint32
*pserial_number
);
2571 bool cli_get_fs_volume_info(struct cli_state
*cli
, fstring volume_name
, uint32
*pserial_number
, time_t *pdate
);
2572 bool cli_get_fs_full_size_info(struct cli_state
*cli
,
2573 uint64_t *total_allocation_units
,
2574 uint64_t *caller_allocation_units
,
2575 uint64_t *actual_allocation_units
,
2576 uint64_t *sectors_per_allocation_unit
,
2577 uint64_t *bytes_per_sector
);
2578 bool cli_get_posix_fs_info(struct cli_state
*cli
,
2579 uint32
*optimal_transfer_size
,
2581 uint64_t *total_blocks
,
2582 uint64_t *blocks_available
,
2583 uint64_t *user_blocks_available
,
2584 uint64_t *total_file_nodes
,
2585 uint64_t *free_file_nodes
,
2586 uint64_t *fs_identifier
);
2587 NTSTATUS
cli_raw_ntlm_smb_encryption_start(struct cli_state
*cli
,
2590 const char *domain
);
2591 NTSTATUS
cli_gss_smb_encryption_start(struct cli_state
*cli
);
2592 NTSTATUS
cli_force_encryption(struct cli_state
*c
,
2593 const char *username
,
2594 const char *password
,
2595 const char *domain
);
2597 /* The following definitions come from libsmb/clikrb5.c */
2599 bool unwrap_edata_ntstatus(TALLOC_CTX
*mem_ctx
,
2601 DATA_BLOB
*edata_out
);
2602 bool unwrap_pac(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*auth_data
, DATA_BLOB
*unwrapped_pac_data
);
2603 int cli_krb5_get_ticket(const char *principal
, time_t time_offset
,
2604 DATA_BLOB
*ticket
, DATA_BLOB
*session_key_krb5
,
2605 uint32 extra_ap_opts
, const char *ccname
,
2606 time_t *tgs_expire
);
2608 /* The following definitions come from libsmb/clilist.c */
2610 int cli_list_new(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
2611 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
2612 int cli_list_old(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
2613 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
2614 int cli_list(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
2615 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
2617 /* The following definitions come from libsmb/climessage.c */
2619 int cli_message_start_build(struct cli_state
*cli
, const char *host
, const char *username
);
2620 bool cli_message_start(struct cli_state
*cli
, const char *host
, const char *username
,
2622 int cli_message_text_build(struct cli_state
*cli
, const char *msg
, int len
, int grp
);
2623 bool cli_message_text(struct cli_state
*cli
, const char *msg
, int len
, int grp
);
2624 int cli_message_end_build(struct cli_state
*cli
, int grp
);
2625 bool cli_message_end(struct cli_state
*cli
, int grp
);
2627 /* The following definitions come from libsmb/clioplock.c */
2629 bool cli_oplock_ack(struct cli_state
*cli
, int fnum
, unsigned char level
);
2630 void cli_oplock_handler(struct cli_state
*cli
,
2631 bool (*handler
)(struct cli_state
*, int, unsigned char));
2633 /* The following definitions come from libsmb/cliprint.c */
2635 int cli_print_queue(struct cli_state
*cli
,
2636 void (*fn
)(struct print_job_info
*));
2637 int cli_printjob_del(struct cli_state
*cli
, int job
);
2638 int cli_spl_open(struct cli_state
*cli
, const char *fname
, int flags
, int share_mode
);
2639 bool cli_spl_close(struct cli_state
*cli
, int fnum
);
2641 /* The following definitions come from libsmb/cliquota.c */
2643 bool cli_get_quota_handle(struct cli_state
*cli
, int *quota_fnum
);
2644 void free_ntquota_list(SMB_NTQUOTA_LIST
**qt_list
);
2645 bool cli_get_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
2646 bool cli_set_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
2647 bool cli_list_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_LIST
**pqt_list
);
2648 bool cli_get_fs_quota_info(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
2649 bool cli_set_fs_quota_info(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
2650 void dump_ntquota(SMB_NTQUOTA_STRUCT
*qt
, bool _verbose
, bool _numeric
, void (*_sidtostring
)(fstring str
, DOM_SID
*sid
, bool _numeric
));
2651 void dump_ntquota_list(SMB_NTQUOTA_LIST
**qtl
, bool _verbose
, bool _numeric
, void (*_sidtostring
)(fstring str
, DOM_SID
*sid
, bool _numeric
));
2653 /* The following definitions come from libsmb/clirap.c */
2655 bool cli_api(struct cli_state
*cli
,
2656 char *param
, int prcnt
, int mprcnt
,
2657 char *data
, int drcnt
, int mdrcnt
,
2658 char **rparam
, unsigned int *rprcnt
,
2659 char **rdata
, unsigned int *rdrcnt
);
2660 bool cli_NetWkstaUserLogon(struct cli_state
*cli
,char *user
, char *workstation
);
2661 int cli_RNetShareEnum(struct cli_state
*cli
, void (*fn
)(const char *, uint32
, const char *, void *), void *state
);
2662 bool cli_NetServerEnum(struct cli_state
*cli
, char *workgroup
, uint32 stype
,
2663 void (*fn
)(const char *, uint32
, const char *, void *),
2665 bool cli_oem_change_password(struct cli_state
*cli
, const char *user
, const char *new_password
,
2666 const char *old_password
);
2667 bool cli_qpathinfo(struct cli_state
*cli
,
2669 time_t *change_time
,
2670 time_t *access_time
,
2674 bool cli_setpathinfo(struct cli_state
*cli
, const char *fname
,
2680 bool cli_qpathinfo2(struct cli_state
*cli
, const char *fname
,
2681 struct timespec
*create_time
,
2682 struct timespec
*access_time
,
2683 struct timespec
*write_time
,
2684 struct timespec
*change_time
,
2685 SMB_OFF_T
*size
, uint16
*mode
,
2687 bool cli_qpathinfo_streams(struct cli_state
*cli
, const char *fname
,
2688 TALLOC_CTX
*mem_ctx
,
2689 unsigned int *pnum_streams
,
2690 struct stream_struct
**pstreams
);
2691 bool cli_qfilename(struct cli_state
*cli
, int fnum
, char *name
, size_t namelen
);
2692 bool cli_qfileinfo(struct cli_state
*cli
, int fnum
,
2693 uint16
*mode
, SMB_OFF_T
*size
,
2694 struct timespec
*create_time
,
2695 struct timespec
*access_time
,
2696 struct timespec
*write_time
,
2697 struct timespec
*change_time
,
2699 bool cli_qpathinfo_basic( struct cli_state
*cli
, const char *name
,
2700 SMB_STRUCT_STAT
*sbuf
, uint32
*attributes
);
2701 bool cli_qfileinfo_test(struct cli_state
*cli
, int fnum
, int level
, char **poutdata
, uint32
*poutlen
);
2702 NTSTATUS
cli_qpathinfo_alt_name(struct cli_state
*cli
, const char *fname
, fstring alt_name
);
2704 /* The following definitions come from libsmb/clirap2.c */
2706 int cli_NetGroupDelete(struct cli_state
*cli
, const char *group_name
);
2707 int cli_NetGroupAdd(struct cli_state
*cli
, RAP_GROUP_INFO_1
*grinfo
);
2708 int cli_RNetGroupEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, void *), void *state
);
2709 int cli_RNetGroupEnum0(struct cli_state
*cli
,
2710 void (*fn
)(const char *, void *),
2712 int cli_NetGroupDelUser(struct cli_state
* cli
, const char *group_name
, const char *user_name
);
2713 int cli_NetGroupAddUser(struct cli_state
* cli
, const char *group_name
, const char *user_name
);
2714 int cli_NetGroupGetUsers(struct cli_state
* cli
, const char *group_name
, void (*fn
)(const char *, void *), void *state
);
2715 int cli_NetUserGetGroups(struct cli_state
* cli
, const char *user_name
, void (*fn
)(const char *, void *), void *state
);
2716 int cli_NetUserDelete(struct cli_state
*cli
, const char * user_name
);
2717 int cli_NetUserAdd(struct cli_state
*cli
, RAP_USER_INFO_1
* userinfo
);
2718 int cli_RNetUserEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, const char *, const char *, void *), void *state
);
2719 int cli_RNetUserEnum0(struct cli_state
*cli
,
2720 void (*fn
)(const char *, void *),
2722 int cli_NetFileClose(struct cli_state
*cli
, uint32 file_id
);
2723 int cli_NetFileGetInfo(struct cli_state
*cli
, uint32 file_id
, void (*fn
)(const char *, const char *, uint16
, uint16
, uint32
));
2724 int cli_NetFileEnum(struct cli_state
*cli
, const char * user
,
2725 const char * base_path
,
2726 void (*fn
)(const char *, const char *, uint16
, uint16
,
2728 int cli_NetShareAdd(struct cli_state
*cli
, RAP_SHARE_INFO_2
* sinfo
);
2729 int cli_NetShareDelete(struct cli_state
*cli
, const char * share_name
);
2730 bool cli_get_pdc_name(struct cli_state
*cli
, const char *workgroup
, char **pdc_name
);
2731 bool cli_get_server_domain(struct cli_state
*cli
);
2732 bool cli_get_server_type(struct cli_state
*cli
, uint32
*pstype
);
2733 bool cli_get_server_name(TALLOC_CTX
*mem_ctx
, struct cli_state
*cli
,
2735 bool cli_ns_check_server_type(struct cli_state
*cli
, char *workgroup
, uint32 stype
);
2736 bool cli_NetWkstaUserLogoff(struct cli_state
*cli
, const char *user
, const char *workstation
);
2737 int cli_NetPrintQEnum(struct cli_state
*cli
,
2738 void (*qfn
)(const char*,uint16
,uint16
,uint16
,const char*,const char*,const char*,const char*,const char*,uint16
,uint16
),
2739 void (*jfn
)(uint16
,const char*,const char*,const char*,const char*,uint16
,uint16
,const char*,uint
,uint
,const char*));
2740 int cli_NetPrintQGetInfo(struct cli_state
*cli
, const char *printer
,
2741 void (*qfn
)(const char*,uint16
,uint16
,uint16
,const char*,const char*,const char*,const char*,const char*,uint16
,uint16
),
2742 void (*jfn
)(uint16
,const char*,const char*,const char*,const char*,uint16
,uint16
,const char*,uint
,uint
,const char*));
2743 int cli_RNetServiceEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, void *), void *state
);
2744 int cli_NetSessionEnum(struct cli_state
*cli
, void (*fn
)(char *, char *, uint16
, uint16
, uint16
, uint
, uint
, uint
, char *));
2745 int cli_NetSessionGetInfo(struct cli_state
*cli
, const char *workstation
,
2746 void (*fn
)(const char *, const char *, uint16
, uint16
, uint16
, uint
, uint
, uint
, const char *));
2747 int cli_NetSessionDel(struct cli_state
*cli
, const char *workstation
);
2748 int cli_NetConnectionEnum(struct cli_state
*cli
, const char *qualifier
,
2749 void (*fn
)(uint16_t conid
, uint16_t contype
,
2750 uint16_t numopens
, uint16_t numusers
,
2751 uint32_t contime
, const char *username
,
2752 const char *netname
));
2754 /* The following definitions come from libsmb/clireadwrite.c */
2756 struct async_req
*cli_read_andx_send(TALLOC_CTX
*mem_ctx
,
2757 struct event_context
*ev
,
2758 struct cli_state
*cli
, int fnum
,
2759 off_t offset
, size_t size
);
2760 NTSTATUS
cli_read_andx_recv(struct async_req
*req
, ssize_t
*received
,
2762 struct async_req
*cli_pull_send(TALLOC_CTX
*mem_ctx
,
2763 struct event_context
*ev
,
2764 struct cli_state
*cli
,
2765 uint16_t fnum
, off_t start_offset
,
2766 SMB_OFF_T size
, size_t window_size
,
2767 NTSTATUS (*sink
)(char *buf
, size_t n
,
2770 NTSTATUS
cli_pull_recv(struct async_req
*req
, SMB_OFF_T
*received
);
2771 NTSTATUS
cli_pull(struct cli_state
*cli
, uint16_t fnum
,
2772 off_t start_offset
, SMB_OFF_T size
, size_t window_size
,
2773 NTSTATUS (*sink
)(char *buf
, size_t n
, void *priv
),
2774 void *priv
, SMB_OFF_T
*received
);
2775 ssize_t
cli_read(struct cli_state
*cli
, int fnum
, char *buf
,
2776 off_t offset
, size_t size
);
2777 ssize_t
cli_readraw(struct cli_state
*cli
, int fnum
, char *buf
, off_t offset
, size_t size
);
2778 ssize_t
cli_write(struct cli_state
*cli
,
2779 int fnum
, uint16 write_mode
,
2780 const char *buf
, off_t offset
, size_t size
);
2781 ssize_t
cli_smbwrite(struct cli_state
*cli
,
2782 int fnum
, char *buf
, off_t offset
, size_t size1
);
2783 struct async_req
*cli_write_andx_send(TALLOC_CTX
*mem_ctx
,
2784 struct event_context
*ev
,
2785 struct cli_state
*cli
, uint16_t fnum
,
2786 uint16_t mode
, const uint8_t *buf
,
2787 off_t offset
, size_t size
);
2788 NTSTATUS
cli_write_andx_recv(struct async_req
*req
, size_t *pwritten
);
2790 struct async_req
*cli_push_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2791 struct cli_state
*cli
,
2792 uint16_t fnum
, uint16_t mode
,
2793 off_t start_offset
, size_t window_size
,
2794 size_t (*source
)(uint8_t *buf
, size_t n
,
2797 NTSTATUS
cli_push_recv(struct async_req
*req
);
2798 NTSTATUS
cli_push(struct cli_state
*cli
, uint16_t fnum
, uint16_t mode
,
2799 off_t start_offset
, size_t window_size
,
2800 size_t (*source
)(uint8_t *buf
, size_t n
, void *priv
),
2803 /* The following definitions come from libsmb/clisecdesc.c */
2805 SEC_DESC
*cli_query_secdesc(struct cli_state
*cli
, int fnum
,
2806 TALLOC_CTX
*mem_ctx
);
2807 bool cli_set_secdesc(struct cli_state
*cli
, int fnum
, SEC_DESC
*sd
);
2809 /* The following definitions come from libsmb/clispnego.c */
2811 DATA_BLOB
spnego_gen_negTokenInit(char guid
[16],
2813 const char *principal
);
2814 DATA_BLOB
gen_negTokenInit(const char *OID
, DATA_BLOB blob
);
2815 bool spnego_parse_negTokenInit(DATA_BLOB blob
,
2816 char *OIDs
[ASN1_MAX_OIDS
],
2818 DATA_BLOB
gen_negTokenTarg(const char *OIDs
[], DATA_BLOB blob
);
2819 bool parse_negTokenTarg(DATA_BLOB blob
, char *OIDs
[ASN1_MAX_OIDS
], DATA_BLOB
*secblob
);
2820 DATA_BLOB
spnego_gen_krb5_wrap(const DATA_BLOB ticket
, const uint8 tok_id
[2]);
2821 bool spnego_parse_krb5_wrap(DATA_BLOB blob
, DATA_BLOB
*ticket
, uint8 tok_id
[2]);
2822 int spnego_gen_negTokenTarg(const char *principal
, int time_offset
,
2824 DATA_BLOB
*session_key_krb5
, uint32 extra_ap_opts
,
2825 time_t *expire_time
);
2826 bool spnego_parse_challenge(const DATA_BLOB blob
,
2827 DATA_BLOB
*chal1
, DATA_BLOB
*chal2
);
2828 DATA_BLOB
spnego_gen_auth(DATA_BLOB blob
);
2829 bool spnego_parse_auth(DATA_BLOB blob
, DATA_BLOB
*auth
);
2830 DATA_BLOB
spnego_gen_auth_response(DATA_BLOB
*reply
, NTSTATUS nt_status
,
2831 const char *mechOID
);
2832 bool spnego_parse_auth_response(DATA_BLOB blob
, NTSTATUS nt_status
,
2833 const char *mechOID
,
2836 /* The following definitions come from libsmb/clistr.c */
2838 size_t clistr_push_fn(const char *function
,
2840 struct cli_state
*cli
,
2845 size_t clistr_pull_fn(const char *function
,
2853 size_t clistr_pull_talloc_fn(const char *function
,
2861 size_t clistr_align_out(struct cli_state
*cli
, const void *p
, int flags
);
2862 size_t clistr_align_in(struct cli_state
*cli
, const void *p
, int flags
);
2864 /* The following definitions come from libsmb/clitrans.c */
2866 bool cli_send_trans(struct cli_state
*cli
, int trans
,
2867 const char *pipe_name
,
2869 uint16
*setup
, unsigned int lsetup
, unsigned int msetup
,
2870 const char *param
, unsigned int lparam
, unsigned int mparam
,
2871 const char *data
, unsigned int ldata
, unsigned int mdata
);
2872 bool cli_receive_trans(struct cli_state
*cli
,int trans
,
2873 char **param
, unsigned int *param_len
,
2874 char **data
, unsigned int *data_len
);
2875 bool cli_send_nt_trans(struct cli_state
*cli
,
2878 uint16
*setup
, unsigned int lsetup
, unsigned int msetup
,
2879 char *param
, unsigned int lparam
, unsigned int mparam
,
2880 char *data
, unsigned int ldata
, unsigned int mdata
);
2881 bool cli_receive_nt_trans(struct cli_state
*cli
,
2882 char **param
, unsigned int *param_len
,
2883 char **data
, unsigned int *data_len
);
2884 struct async_req
*cli_trans_send(
2885 TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2886 struct cli_state
*cli
, uint8_t trans_cmd
,
2887 const char *pipe_name
, uint16_t fid
, uint16_t function
, int flags
,
2888 uint16_t *setup
, uint8_t num_setup
, uint8_t max_setup
,
2889 uint8_t *param
, uint32_t num_param
, uint32_t max_param
,
2890 uint8_t *data
, uint32_t num_data
, uint32_t max_data
);
2891 NTSTATUS
cli_trans_recv(struct async_req
*req
, TALLOC_CTX
*mem_ctx
,
2892 uint16_t **setup
, uint8_t *num_setup
,
2893 uint8_t **param
, uint32_t *num_param
,
2894 uint8_t **data
, uint32_t *num_data
);
2895 NTSTATUS
cli_trans(TALLOC_CTX
*mem_ctx
, struct cli_state
*cli
,
2897 const char *pipe_name
, uint16_t fid
, uint16_t function
,
2899 uint16_t *setup
, uint8_t num_setup
, uint8_t max_setup
,
2900 uint8_t *param
, uint32_t num_param
, uint32_t max_param
,
2901 uint8_t *data
, uint32_t num_data
, uint32_t max_data
,
2902 uint16_t **rsetup
, uint8_t *num_rsetup
,
2903 uint8_t **rparam
, uint32_t *num_rparam
,
2904 uint8_t **rdata
, uint32_t *num_rdata
);
2906 /* The following definitions come from libsmb/conncache.c */
2908 NTSTATUS
check_negative_conn_cache_timeout( const char *domain
, const char *server
, unsigned int failed_cache_timeout
);
2909 NTSTATUS
check_negative_conn_cache( const char *domain
, const char *server
);
2910 void add_failed_connection_entry(const char *domain
, const char *server
, NTSTATUS result
) ;
2911 void delete_negative_conn_cache(const char *domain
, const char *server
);
2912 void flush_negative_conn_cache( void );
2913 void flush_negative_conn_cache_for_domain(const char *domain
);
2915 /* The following definitions come from libsmb/credentials.c */
2917 char *credstr(const unsigned char *cred
);
2918 void creds_server_init(uint32 neg_flags
,
2920 struct netr_Credential
*clnt_chal
,
2921 struct netr_Credential
*srv_chal
,
2922 const unsigned char mach_pw
[16],
2923 struct netr_Credential
*init_chal_out
);
2924 bool netlogon_creds_server_check(const struct dcinfo
*dc
,
2925 const struct netr_Credential
*rcv_cli_chal_in
);
2926 bool netlogon_creds_server_step(struct dcinfo
*dc
,
2927 const struct netr_Authenticator
*received_cred
,
2928 struct netr_Authenticator
*cred_out
);
2929 void creds_client_init(uint32 neg_flags
,
2931 struct netr_Credential
*clnt_chal
,
2932 struct netr_Credential
*srv_chal
,
2933 const unsigned char mach_pw
[16],
2934 struct netr_Credential
*init_chal_out
);
2935 bool netlogon_creds_client_check(const struct dcinfo
*dc
,
2936 const struct netr_Credential
*rcv_srv_chal_in
);
2937 void netlogon_creds_client_step(struct dcinfo
*dc
,
2938 struct netr_Authenticator
*next_cred_out
);
2940 /* The following definitions come from ../librpc/rpc/dcerpc_error.c */
2942 const char *dcerpc_errstr(TALLOC_CTX
*mem_ctx
, uint32_t fault_code
);
2944 /* The following definitions come from libsmb/dsgetdcname.c */
2946 void debug_dsdcinfo_flags(int lvl
, uint32_t flags
);
2947 NTSTATUS
dsgetdcname(TALLOC_CTX
*mem_ctx
,
2948 struct messaging_context
*msg_ctx
,
2949 const char *domain_name
,
2950 struct GUID
*domain_guid
,
2951 const char *site_name
,
2953 struct netr_DsRGetDCNameInfo
**info
);
2955 /* The following definitions come from libsmb/errormap.c */
2957 NTSTATUS
dos_to_ntstatus(uint8 eclass
, uint32 ecode
);
2958 void ntstatus_to_dos(NTSTATUS ntstatus
, uint8
*eclass
, uint32
*ecode
);
2959 NTSTATUS
werror_to_ntstatus(WERROR error
);
2960 WERROR
ntstatus_to_werror(NTSTATUS error
);
2961 NTSTATUS
map_nt_error_from_gss(uint32 gss_maj
, uint32 minor
);
2963 /* The following definitions come from libsmb/namecache.c */
2965 bool namecache_enable(void);
2966 bool namecache_store(const char *name
,
2969 struct ip_service
*ip_list
);
2970 bool namecache_fetch(const char *name
,
2972 struct ip_service
**ip_list
,
2974 bool namecache_delete(const char *name
, int name_type
);
2975 void namecache_flush(void);
2976 bool namecache_status_store(const char *keyname
, int keyname_type
,
2977 int name_type
, const struct sockaddr_storage
*keyip
,
2978 const char *srvname
);
2979 bool namecache_status_fetch(const char *keyname
,
2982 const struct sockaddr_storage
*keyip
,
2985 /* The following definitions come from libsmb/namequery.c */
2987 bool saf_store( const char *domain
, const char *servername
);
2988 bool saf_join_store( const char *domain
, const char *servername
);
2989 bool saf_delete( const char *domain
);
2990 char *saf_fetch( const char *domain
);
2991 NODE_STATUS_STRUCT
*node_status_query(int fd
,
2992 struct nmb_name
*name
,
2993 const struct sockaddr_storage
*to_ss
,
2995 struct node_status_extra
*extra
);
2996 bool name_status_find(const char *q_name
,
2999 const struct sockaddr_storage
*to_ss
,
3001 int ip_service_compare(struct ip_service
*ss1
, struct ip_service
*ss2
);
3002 struct sockaddr_storage
*name_query(int fd
,
3007 const struct sockaddr_storage
*to_ss
,
3011 XFILE
*startlmhosts(const char *fname
);
3012 bool getlmhostsent(TALLOC_CTX
*ctx
, XFILE
*fp
, char **pp_name
, int *name_type
,
3013 struct sockaddr_storage
*pss
);
3014 void endlmhosts(XFILE
*fp
);
3015 NTSTATUS
name_resolve_bcast(const char *name
,
3017 struct ip_service
**return_iplist
,
3019 NTSTATUS
resolve_wins(const char *name
,
3021 struct ip_service
**return_iplist
,
3023 NTSTATUS
internal_resolve_name(const char *name
,
3025 const char *sitename
,
3026 struct ip_service
**return_iplist
,
3028 const char *resolve_order
);
3029 bool resolve_name(const char *name
,
3030 struct sockaddr_storage
*return_ss
,
3032 NTSTATUS
resolve_name_list(TALLOC_CTX
*ctx
,
3035 struct sockaddr_storage
**return_ss_arr
,
3036 unsigned int *p_num_entries
);
3037 bool find_master_ip(const char *group
, struct sockaddr_storage
*master_ss
);
3038 bool get_pdc_ip(const char *domain
, struct sockaddr_storage
*pss
);
3039 NTSTATUS
get_sorted_dc_list( const char *domain
,
3040 const char *sitename
,
3041 struct ip_service
**ip_list
,
3044 NTSTATUS
get_kdc_list( const char *realm
,
3045 const char *sitename
,
3046 struct ip_service
**ip_list
,
3049 /* The following definitions come from libsmb/namequery_dc.c */
3051 bool get_dc_name(const char *domain
,
3054 struct sockaddr_storage
*ss_out
);
3056 /* The following definitions come from libsmb/nmblib.c */
3058 void debug_nmb_packet(struct packet_struct
*p
);
3059 void put_name(char *dest
, const char *name
, int pad
, unsigned int name_type
);
3060 char *nmb_namestr(const struct nmb_name
*n
);
3061 struct packet_struct
*copy_packet(struct packet_struct
*packet
);
3062 void free_packet(struct packet_struct
*packet
);
3063 struct packet_struct
*parse_packet(char *buf
,int length
,
3064 enum packet_type packet_type
,
3067 struct packet_struct
*read_packet(int fd
,enum packet_type packet_type
);
3068 void make_nmb_name( struct nmb_name
*n
, const char *name
, int type
);
3069 bool nmb_name_equal(struct nmb_name
*n1
, struct nmb_name
*n2
);
3070 int build_packet(char *buf
, size_t buflen
, struct packet_struct
*p
);
3071 bool send_packet(struct packet_struct
*p
);
3072 struct packet_struct
*receive_packet(int fd
,enum packet_type type
,int t
);
3073 struct packet_struct
*receive_nmb_packet(int fd
, int t
, int trn_id
);
3074 struct packet_struct
*receive_dgram_packet(int fd
, int t
,
3075 const char *mailslot_name
);
3076 bool match_mailslot_name(struct packet_struct
*p
, const char *mailslot_name
);
3077 int matching_len_bits(unsigned char *p1
, unsigned char *p2
, size_t len
);
3078 void sort_query_replies(char *data
, int n
, struct in_addr ip
);
3079 char *name_mangle(TALLOC_CTX
*mem_ctx
, char *In
, char name_type
);
3080 int name_extract(char *buf
,int ofs
, fstring name
);
3081 int name_len(char *s1
);
3083 /* The following definitions come from libsmb/nterr.c */
3085 const char *nt_errstr(NTSTATUS nt_code
);
3086 const char *get_friendly_nt_error_msg(NTSTATUS nt_code
);
3087 const char *get_nt_error_c_code(NTSTATUS nt_code
);
3088 NTSTATUS
nt_status_string_to_code(const char *nt_status_str
);
3089 NTSTATUS
nt_status_squash(NTSTATUS nt_status
);
3091 /* The following definitions come from libsmb/ntlm_check.c */
3093 NTSTATUS
ntlm_password_check(TALLOC_CTX
*mem_ctx
,
3094 const DATA_BLOB
*challenge
,
3095 const DATA_BLOB
*lm_response
,
3096 const DATA_BLOB
*nt_response
,
3097 const DATA_BLOB
*lm_interactive_pwd
,
3098 const DATA_BLOB
*nt_interactive_pwd
,
3099 const char *username
,
3100 const char *client_username
,
3101 const char *client_domain
,
3102 const uint8
*lm_pw
, const uint8
*nt_pw
,
3103 DATA_BLOB
*user_sess_key
,
3104 DATA_BLOB
*lm_sess_key
);
3106 /* The following definitions come from libsmb/ntlmssp.c */
3108 void debug_ntlmssp_flags(uint32 neg_flags
);
3109 NTSTATUS
ntlmssp_set_username(NTLMSSP_STATE
*ntlmssp_state
, const char *user
) ;
3110 NTSTATUS
ntlmssp_set_hashes(NTLMSSP_STATE
*ntlmssp_state
,
3111 const unsigned char lm_hash
[16],
3112 const unsigned char nt_hash
[16]) ;
3113 NTSTATUS
ntlmssp_set_password(NTLMSSP_STATE
*ntlmssp_state
, const char *password
) ;
3114 NTSTATUS
ntlmssp_set_domain(NTLMSSP_STATE
*ntlmssp_state
, const char *domain
) ;
3115 NTSTATUS
ntlmssp_set_workstation(NTLMSSP_STATE
*ntlmssp_state
, const char *workstation
) ;
3116 NTSTATUS
ntlmssp_store_response(NTLMSSP_STATE
*ntlmssp_state
,
3117 DATA_BLOB response
) ;
3118 void ntlmssp_want_feature_list(NTLMSSP_STATE
*ntlmssp_state
, char *feature_list
);
3119 void ntlmssp_want_feature(NTLMSSP_STATE
*ntlmssp_state
, uint32 feature
);
3120 NTSTATUS
ntlmssp_update(NTLMSSP_STATE
*ntlmssp_state
,
3121 const DATA_BLOB in
, DATA_BLOB
*out
) ;
3122 void ntlmssp_end(NTLMSSP_STATE
**ntlmssp_state
);
3123 DATA_BLOB
ntlmssp_weaken_keys(NTLMSSP_STATE
*ntlmssp_state
, TALLOC_CTX
*mem_ctx
);
3124 NTSTATUS
ntlmssp_server_start(NTLMSSP_STATE
**ntlmssp_state
);
3125 NTSTATUS
ntlmssp_client_start(NTLMSSP_STATE
**ntlmssp_state
);
3127 /* The following definitions come from libsmb/ntlmssp_parse.c */
3129 bool msrpc_gen(DATA_BLOB
*blob
,
3130 const char *format
, ...);
3131 bool msrpc_parse(const DATA_BLOB
*blob
,
3132 const char *format
, ...);
3134 /* The following definitions come from libsmb/ntlmssp_sign.c */
3136 NTSTATUS
ntlmssp_sign_packet(NTLMSSP_STATE
*ntlmssp_state
,
3137 const uchar
*data
, size_t length
,
3138 const uchar
*whole_pdu
, size_t pdu_length
,
3140 NTSTATUS
ntlmssp_check_packet(NTLMSSP_STATE
*ntlmssp_state
,
3141 const uchar
*data
, size_t length
,
3142 const uchar
*whole_pdu
, size_t pdu_length
,
3143 const DATA_BLOB
*sig
) ;
3144 NTSTATUS
ntlmssp_seal_packet(NTLMSSP_STATE
*ntlmssp_state
,
3145 uchar
*data
, size_t length
,
3146 uchar
*whole_pdu
, size_t pdu_length
,
3148 NTSTATUS
ntlmssp_unseal_packet(NTLMSSP_STATE
*ntlmssp_state
,
3149 uchar
*data
, size_t length
,
3150 uchar
*whole_pdu
, size_t pdu_length
,
3152 NTSTATUS
ntlmssp_sign_init(NTLMSSP_STATE
*ntlmssp_state
);
3154 /* The following definitions come from libsmb/passchange.c */
3156 NTSTATUS
remote_password_change(const char *remote_machine
, const char *user_name
,
3157 const char *old_passwd
, const char *new_passwd
,
3160 /* The following definitions come from libsmb/samlogon_cache.c */
3162 bool netsamlogon_cache_init(void);
3163 bool netsamlogon_cache_shutdown(void);
3164 void netsamlogon_clear_cached_user(struct netr_SamInfo3
*info3
);
3165 bool netsamlogon_cache_store(const char *username
, struct netr_SamInfo3
*info3
);
3166 struct netr_SamInfo3
*netsamlogon_cache_get(TALLOC_CTX
*mem_ctx
, const DOM_SID
*user_sid
);
3167 bool netsamlogon_cache_have(const DOM_SID
*user_sid
);
3169 /* The following definitions come from libsmb/smb_seal.c */
3171 NTSTATUS
get_enc_ctx_num(const uint8_t *buf
, uint16
*p_enc_ctx_num
);
3172 bool common_encryption_on(struct smb_trans_enc_state
*es
);
3173 NTSTATUS
common_ntlm_decrypt_buffer(NTLMSSP_STATE
*ntlmssp_state
, char *buf
);
3174 NTSTATUS
common_ntlm_encrypt_buffer(NTLMSSP_STATE
*ntlmssp_state
,
3178 NTSTATUS
common_encrypt_buffer(struct smb_trans_enc_state
*es
, char *buffer
, char **buf_out
);
3179 NTSTATUS
common_decrypt_buffer(struct smb_trans_enc_state
*es
, char *buf
);
3180 void common_free_encryption_state(struct smb_trans_enc_state
**pp_es
);
3181 void common_free_enc_buffer(struct smb_trans_enc_state
*es
, char *buf
);
3182 bool cli_encryption_on(struct cli_state
*cli
);
3183 void cli_free_encryption_context(struct cli_state
*cli
);
3184 void cli_free_enc_buffer(struct cli_state
*cli
, char *buf
);
3185 NTSTATUS
cli_decrypt_message(struct cli_state
*cli
);
3186 NTSTATUS
cli_encrypt_message(struct cli_state
*cli
, char *buf
, char **buf_out
);
3188 /* The following definitions come from libsmb/smb_signing.c */
3190 bool cli_simple_set_signing(struct cli_state
*cli
,
3191 const DATA_BLOB user_session_key
,
3192 const DATA_BLOB response
);
3193 bool cli_null_set_signing(struct cli_state
*cli
);
3194 bool cli_temp_set_signing(struct cli_state
*cli
);
3195 void cli_free_signing_context(struct cli_state
*cli
);
3196 void cli_calculate_sign_mac(struct cli_state
*cli
, char *buf
);
3197 bool cli_check_sign_mac(struct cli_state
*cli
, char *buf
);
3198 bool client_set_trans_sign_state_on(struct cli_state
*cli
, uint16 mid
);
3199 bool client_set_trans_sign_state_off(struct cli_state
*cli
, uint16 mid
);
3200 bool client_is_signing_on(struct cli_state
*cli
);
3201 bool srv_oplock_set_signing(bool onoff
);
3202 bool srv_check_sign_mac(const char *inbuf
, bool must_be_ok
);
3203 void srv_calculate_sign_mac(char *outbuf
);
3204 void srv_defer_sign_response(uint16 mid
);
3205 void srv_cancel_sign_response(uint16 mid
, bool cancel
);
3206 void srv_set_signing_negotiated(void);
3207 bool srv_is_signing_active(void);
3208 bool srv_is_signing_negotiated(void);
3209 bool srv_signing_started(void);
3210 void srv_set_signing(const DATA_BLOB user_session_key
, const DATA_BLOB response
);
3212 /* The following definitions come from libsmb/smbdes.c */
3214 void des_crypt56(unsigned char *out
, const unsigned char *in
, const unsigned char *key
, int forw
);
3215 void E_P16(const unsigned char *p14
,unsigned char *p16
);
3216 void E_P24(const unsigned char *p21
, const unsigned char *c8
, unsigned char *p24
);
3217 void D_P16(const unsigned char *p14
, const unsigned char *in
, unsigned char *out
);
3218 void E_old_pw_hash( unsigned char *p14
, const unsigned char *in
, unsigned char *out
);
3219 void des_crypt128(unsigned char out
[8], const unsigned char in
[8], const unsigned char key
[16]);
3220 void des_crypt64(unsigned char out
[8], const unsigned char in
[8], const unsigned char key
[8]);
3221 void des_crypt112(unsigned char out
[8], const unsigned char in
[8], const unsigned char key
[14], int forw
);
3222 void cred_hash3(unsigned char *out
, const unsigned char *in
, const unsigned char *key
, int forw
);
3223 void des_crypt112_16(unsigned char out
[16], unsigned char in
[16], const unsigned char key
[14], int forw
);
3224 void SamOEMhash( unsigned char *data
, const unsigned char key
[16], size_t len
);
3225 void SamOEMhashBlob( unsigned char *data
, size_t len
, DATA_BLOB
*key
);
3226 void sam_pwd_hash(unsigned int rid
, const uchar
*in
, uchar
*out
, int forw
);
3228 /* The following definitions come from libsmb/smbencrypt.c */
3230 void SMBencrypt_hash(const uchar lm_hash
[16], const uchar
*c8
, uchar p24
[24]);
3231 bool SMBencrypt(const char *passwd
, const uchar
*c8
, uchar p24
[24]);
3232 void E_md4hash(const char *passwd
, uchar p16
[16]);
3233 void E_md5hash(const uchar salt
[16], const uchar nthash
[16], uchar hash_out
[16]);
3234 bool E_deshash(const char *passwd
, uchar p16
[16]);
3235 void nt_lm_owf_gen(const char *pwd
, uchar nt_p16
[16], uchar p16
[16]);
3236 bool ntv2_owf_gen(const uchar owf
[16],
3237 const char *user_in
, const char *domain_in
,
3238 bool upper_case_domain
, /* Transform the domain into UPPER case */
3240 void SMBOWFencrypt(const uchar passwd
[16], const uchar
*c8
, uchar p24
[24]);
3241 void NTLMSSPOWFencrypt(const uchar passwd
[8], const uchar
*ntlmchalresp
, uchar p24
[24]);
3242 void SMBNTencrypt_hash(const uchar nt_hash
[16], uchar
*c8
, uchar
*p24
);
3243 void SMBNTencrypt(const char *passwd
, uchar
*c8
, uchar
*p24
);
3244 void SMBOWFencrypt_ntv2(const uchar kr
[16],
3245 const DATA_BLOB
*srv_chal
,
3246 const DATA_BLOB
*cli_chal
,
3247 uchar resp_buf
[16]);
3248 void SMBsesskeygen_ntv2(const uchar kr
[16],
3249 const uchar
* nt_resp
, uint8 sess_key
[16]);
3250 void SMBsesskeygen_ntv1(const uchar kr
[16],
3251 const uchar
* nt_resp
, uint8 sess_key
[16]);
3252 void SMBsesskeygen_lm_sess_key(const uchar lm_hash
[16],
3253 const uchar lm_resp
[24], /* only uses 8 */
3254 uint8 sess_key
[16]);
3255 DATA_BLOB
NTLMv2_generate_names_blob(const char *hostname
,
3256 const char *domain
);
3257 bool SMBNTLMv2encrypt_hash(const char *user
, const char *domain
, const uchar nt_hash
[16],
3258 const DATA_BLOB
*server_chal
,
3259 const DATA_BLOB
*names_blob
,
3260 DATA_BLOB
*lm_response
, DATA_BLOB
*nt_response
,
3261 DATA_BLOB
*user_session_key
) ;
3262 bool SMBNTLMv2encrypt(const char *user
, const char *domain
, const char *password
,
3263 const DATA_BLOB
*server_chal
,
3264 const DATA_BLOB
*names_blob
,
3265 DATA_BLOB
*lm_response
, DATA_BLOB
*nt_response
,
3266 DATA_BLOB
*user_session_key
) ;
3267 bool encode_pw_buffer(uint8 buffer
[516], const char *password
, int string_flags
);
3268 bool decode_pw_buffer(TALLOC_CTX
*ctx
,
3269 uint8 in_buffer
[516],
3273 void encode_or_decode_arc4_passwd_buffer(unsigned char pw_buf
[532], const DATA_BLOB
*psession_key
);
3274 void sess_crypt_blob(DATA_BLOB
*out
, const DATA_BLOB
*in
, const DATA_BLOB
*session_key
, int forward
);
3275 char *decrypt_trustdom_secret(uint8_t nt_hash
[16], DATA_BLOB
*data_in
);
3276 void encode_wkssvc_join_password_buffer(TALLOC_CTX
*mem_ctx
,
3278 DATA_BLOB
*session_key
,
3279 struct wkssvc_PasswordBuffer
**pwd_buf
);
3280 WERROR
decode_wkssvc_join_password_buffer(TALLOC_CTX
*mem_ctx
,
3281 struct wkssvc_PasswordBuffer
*pwd_buf
,
3282 DATA_BLOB
*session_key
,
3284 DATA_BLOB
decrypt_drsuapi_blob(TALLOC_CTX
*mem_ctx
,
3285 const DATA_BLOB
*session_key
,
3288 const DATA_BLOB
*buffer
);
3290 /* The following definitions come from libsmb/smberr.c */
3292 const char *smb_dos_err_name(uint8 e_class
, uint16 num
);
3293 const char *get_dos_error_msg(WERROR result
);
3294 const char *smb_dos_err_class(uint8 e_class
);
3295 char *smb_dos_errstr(char *inbuf
);
3296 WERROR
map_werror_from_unix(int error
);
3298 /* The following definitions come from libsmb/spnego.c */
3300 ssize_t
read_spnego_data(DATA_BLOB data
, SPNEGO_DATA
*token
);
3301 ssize_t
write_spnego_data(DATA_BLOB
*blob
, SPNEGO_DATA
*spnego
);
3302 bool free_spnego_data(SPNEGO_DATA
*spnego
);
3304 /* The following definitions come from libsmb/trustdom_cache.c */
3306 bool trustdom_cache_enable(void);
3307 bool trustdom_cache_shutdown(void);
3308 bool trustdom_cache_store(char* name
, char* alt_name
, const DOM_SID
*sid
,
3310 bool trustdom_cache_fetch(const char* name
, DOM_SID
* sid
);
3311 uint32
trustdom_cache_fetch_timestamp( void );
3312 bool trustdom_cache_store_timestamp( uint32 t
, time_t timeout
);
3313 void trustdom_cache_flush(void);
3314 void update_trustdom_cache( void );
3316 /* The following definitions come from libsmb/trusts_util.c */
3318 NTSTATUS
trust_pw_change_and_store_it(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
3320 unsigned char orig_trust_passwd_hash
[16],
3321 uint32 sec_channel_type
);
3322 NTSTATUS
trust_pw_find_change_and_store_it(struct rpc_pipe_client
*cli
,
3323 TALLOC_CTX
*mem_ctx
,
3324 const char *domain
) ;
3325 bool enumerate_domain_trusts( TALLOC_CTX
*mem_ctx
, const char *domain
,
3326 char ***domain_names
, uint32
*num_domains
,
3329 /* The following definitions come from libsmb/unexpected.c */
3331 void unexpected_packet(struct packet_struct
*p
);
3332 void clear_unexpected(time_t t
);
3333 struct packet_struct
*receive_unexpected(enum packet_type packet_type
, int id
,
3334 const char *mailslot_name
);
3336 /* The following definitions come from locking/brlock.c */
3338 bool brl_same_context(const struct lock_context
*ctx1
,
3339 const struct lock_context
*ctx2
);
3340 NTSTATUS
brl_lock_failed(files_struct
*fsp
, const struct lock_struct
*lock
, bool blocking_lock
);
3341 void brl_init(bool read_only
);
3342 void brl_shutdown(void);
3344 NTSTATUS
brl_lock_windows_default(struct byte_range_lock
*br_lck
,
3345 struct lock_struct
*plock
,
3346 bool blocking_lock
);
3348 NTSTATUS
brl_lock(struct messaging_context
*msg_ctx
,
3349 struct byte_range_lock
*br_lck
,
3351 struct server_id pid
,
3354 enum brl_type lock_type
,
3355 enum brl_flavour lock_flav
,
3358 struct blocking_lock_record
*blr
);
3359 bool brl_unlock(struct messaging_context
*msg_ctx
,
3360 struct byte_range_lock
*br_lck
,
3362 struct server_id pid
,
3365 enum brl_flavour lock_flav
);
3366 bool brl_unlock_windows_default(struct messaging_context
*msg_ctx
,
3367 struct byte_range_lock
*br_lck
,
3368 const struct lock_struct
*plock
);
3369 bool brl_locktest(struct byte_range_lock
*br_lck
,
3371 struct server_id pid
,
3374 enum brl_type lock_type
,
3375 enum brl_flavour lock_flav
);
3376 NTSTATUS
brl_lockquery(struct byte_range_lock
*br_lck
,
3378 struct server_id pid
,
3381 enum brl_type
*plock_type
,
3382 enum brl_flavour lock_flav
);
3383 bool brl_lock_cancel(struct byte_range_lock
*br_lck
,
3385 struct server_id pid
,
3388 enum brl_flavour lock_flav
,
3389 struct blocking_lock_record
*blr
);
3390 bool brl_lock_cancel_default(struct byte_range_lock
*br_lck
,
3391 struct lock_struct
*plock
);
3392 void brl_close_fnum(struct messaging_context
*msg_ctx
,
3393 struct byte_range_lock
*br_lck
);
3394 int brl_forall(void (*fn
)(struct file_id id
, struct server_id pid
,
3395 enum brl_type lock_type
,
3396 enum brl_flavour lock_flav
,
3397 br_off start
, br_off size
,
3398 void *private_data
),
3399 void *private_data
);
3400 struct byte_range_lock
*brl_get_locks(TALLOC_CTX
*mem_ctx
,
3402 struct byte_range_lock
*brl_get_locks_readonly(TALLOC_CTX
*mem_ctx
,
3404 void brl_register_msgs(struct messaging_context
*msg_ctx
);
3406 /* The following definitions come from locking/locking.c */
3408 const char *lock_type_name(enum brl_type lock_type
);
3409 const char *lock_flav_name(enum brl_flavour lock_flav
);
3410 void init_strict_lock_struct(files_struct
*fsp
,
3414 enum brl_type lock_type
,
3415 struct lock_struct
*plock
);
3416 bool strict_lock_default(files_struct
*fsp
,
3417 struct lock_struct
*plock
);
3418 void strict_unlock_default(files_struct
*fsp
,
3419 struct lock_struct
*plock
);
3420 NTSTATUS
query_lock(files_struct
*fsp
,
3424 enum brl_type
*plock_type
,
3425 enum brl_flavour lock_flav
);
3426 struct byte_range_lock
*do_lock(struct messaging_context
*msg_ctx
,
3431 enum brl_type lock_type
,
3432 enum brl_flavour lock_flav
,
3436 struct blocking_lock_record
*blr
);
3437 NTSTATUS
do_unlock(struct messaging_context
*msg_ctx
,
3442 enum brl_flavour lock_flav
);
3443 NTSTATUS
do_lock_cancel(files_struct
*fsp
,
3447 enum brl_flavour lock_flav
,
3448 struct blocking_lock_record
*blr
);
3449 void locking_close_file(struct messaging_context
*msg_ctx
,
3451 bool locking_init(void);
3452 bool locking_init_readonly(void);
3453 bool locking_end(void);
3454 char *share_mode_str(TALLOC_CTX
*ctx
, int num
, const struct share_mode_entry
*e
);
3455 struct share_mode_lock
*get_share_mode_lock(TALLOC_CTX
*mem_ctx
,
3456 const struct file_id id
,
3457 const char *servicepath
,
3459 const struct timespec
*old_write_time
);
3460 struct share_mode_lock
*fetch_share_mode_unlocked(TALLOC_CTX
*mem_ctx
,
3461 const struct file_id id
,
3462 const char *servicepath
,
3464 bool rename_share_filename(struct messaging_context
*msg_ctx
,
3465 struct share_mode_lock
*lck
,
3466 const char *servicepath
,
3467 const char *newname
);
3468 void get_file_infos(struct file_id id
,
3469 bool *delete_on_close
,
3470 struct timespec
*write_time
);
3471 bool is_valid_share_mode_entry(const struct share_mode_entry
*e
);
3472 bool is_deferred_open_entry(const struct share_mode_entry
*e
);
3473 bool is_unused_share_mode_entry(const struct share_mode_entry
*e
);
3474 void set_share_mode(struct share_mode_lock
*lck
, files_struct
*fsp
,
3475 uid_t uid
, uint16 mid
, uint16 op_type
);
3476 void add_deferred_open(struct share_mode_lock
*lck
, uint16 mid
,
3477 struct timeval request_time
,
3479 bool del_share_mode(struct share_mode_lock
*lck
, files_struct
*fsp
);
3480 void del_deferred_open_entry(struct share_mode_lock
*lck
, uint16 mid
);
3481 bool remove_share_oplock(struct share_mode_lock
*lck
, files_struct
*fsp
);
3482 bool downgrade_share_oplock(struct share_mode_lock
*lck
, files_struct
*fsp
);
3483 NTSTATUS
can_set_delete_on_close(files_struct
*fsp
, bool delete_on_close
,
3485 void set_delete_on_close_token(struct share_mode_lock
*lck
, const UNIX_USER_TOKEN
*tok
);
3486 void set_delete_on_close_lck(struct share_mode_lock
*lck
, bool delete_on_close
, const UNIX_USER_TOKEN
*tok
);
3487 bool set_delete_on_close(files_struct
*fsp
, bool delete_on_close
, const UNIX_USER_TOKEN
*tok
);
3488 bool set_sticky_write_time(struct file_id fileid
, struct timespec write_time
);
3489 bool set_write_time(struct file_id fileid
, struct timespec write_time
);
3490 int share_mode_forall(void (*fn
)(const struct share_mode_entry
*, const char *,
3491 const char *, void *),
3492 void *private_data
);
3494 /* The following definitions come from locking/posix.c */
3496 bool is_posix_locked(files_struct
*fsp
,
3497 uint64_t *pu_offset
,
3499 enum brl_type
*plock_type
,
3500 enum brl_flavour lock_flav
);
3501 bool posix_locking_init(bool read_only
);
3502 bool posix_locking_end(void);
3503 void reduce_windows_lock_ref_count(files_struct
*fsp
, unsigned int dcount
);
3504 int fd_close_posix(struct files_struct
*fsp
);
3505 bool set_posix_lock_windows_flavour(files_struct
*fsp
,
3508 enum brl_type lock_type
,
3509 const struct lock_context
*lock_ctx
,
3510 const struct lock_struct
*plocks
,
3513 bool release_posix_lock_windows_flavour(files_struct
*fsp
,
3516 enum brl_type deleted_lock_type
,
3517 const struct lock_context
*lock_ctx
,
3518 const struct lock_struct
*plocks
,
3520 bool set_posix_lock_posix_flavour(files_struct
*fsp
,
3523 enum brl_type lock_type
,
3525 bool release_posix_lock_posix_flavour(files_struct
*fsp
,
3528 const struct lock_context
*lock_ctx
,
3529 const struct lock_struct
*plocks
,
3532 /* The following definitions come from modules/vfs_default.c */
3534 int vfswrap_lstat(vfs_handle_struct
*handle
, const char *path
, SMB_STRUCT_STAT
*sbuf
);
3535 ssize_t
vfswrap_llistxattr(struct vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
);
3536 ssize_t
vfswrap_flistxattr(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, char *list
, size_t size
);
3537 NTSTATUS
vfs_default_init(void);
3539 /* The following definitions come from nmbd/asyncdns.c */
3541 int asyncdns_fd(void);
3542 void kill_async_dns_child(void);
3543 void start_async_dns(void);
3544 void run_dns_queue(void);
3545 bool queue_dns_query(struct packet_struct
*p
,struct nmb_name
*question
);
3546 bool queue_dns_query(struct packet_struct
*p
,struct nmb_name
*question
);
3547 void kill_async_dns_child(void);
3549 /* The following definitions come from nmbd/nmbd.c */
3551 struct event_context
*nmbd_event_context(void);
3552 struct messaging_context
*nmbd_messaging_context(void);
3554 /* The following definitions come from nmbd/nmbd_become_dmb.c */
3556 void add_domain_names(time_t t
);
3558 /* The following definitions come from nmbd/nmbd_become_lmb.c */
3560 void insert_permanent_name_into_unicast( struct subnet_record
*subrec
,
3561 struct nmb_name
*nmbname
, uint16 nb_type
);
3562 void unbecome_local_master_browser(struct subnet_record
*subrec
, struct work_record
*work
,
3563 bool force_new_election
);
3564 void become_local_master_browser(struct subnet_record
*subrec
, struct work_record
*work
);
3565 void set_workgroup_local_master_browser_name( struct work_record
*work
, const char *newname
);
3567 /* The following definitions come from nmbd/nmbd_browserdb.c */
3569 void update_browser_death_time( struct browse_cache_record
*browc
);
3570 struct browse_cache_record
*create_browser_in_lmb_cache( const char *work_name
,
3571 const char *browser_name
,
3572 struct in_addr ip
);
3573 struct browse_cache_record
*find_browser_in_lmb_cache( const char *browser_name
);
3574 void expire_lmb_browsers( time_t t
);
3576 /* The following definitions come from nmbd/nmbd_browsesync.c */
3578 void dmb_expire_and_sync_browser_lists(time_t t
);
3579 void announce_and_sync_with_domain_master_browser( struct subnet_record
*subrec
,
3580 struct work_record
*work
);
3581 void collect_all_workgroup_names_from_wins_server(time_t t
);
3582 void sync_all_dmbs(time_t t
);
3584 /* The following definitions come from nmbd/nmbd_elections.c */
3586 void check_master_browser_exists(time_t t
);
3587 void run_elections(time_t t
);
3588 void process_election(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3589 bool check_elections(void);
3590 void nmbd_message_election(struct messaging_context
*msg
,
3593 struct server_id server_id
,
3596 /* The following definitions come from nmbd/nmbd_incomingdgrams.c */
3598 void tell_become_backup(void);
3599 void process_host_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3600 void process_workgroup_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3601 void process_local_master_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3602 void process_master_browser_announce(struct subnet_record
*subrec
,
3603 struct packet_struct
*p
,char *buf
);
3604 void process_lm_host_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
, int len
);
3605 void process_get_backup_list_request(struct subnet_record
*subrec
,
3606 struct packet_struct
*p
,char *buf
);
3607 void process_reset_browser(struct subnet_record
*subrec
,
3608 struct packet_struct
*p
,char *buf
);
3609 void process_announce_request(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3610 void process_lm_announce_request(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
, int len
);
3612 /* The following definitions come from nmbd/nmbd_incomingrequests.c */
3614 void process_name_release_request(struct subnet_record
*subrec
,
3615 struct packet_struct
*p
);
3616 void process_name_refresh_request(struct subnet_record
*subrec
,
3617 struct packet_struct
*p
);
3618 void process_name_registration_request(struct subnet_record
*subrec
,
3619 struct packet_struct
*p
);
3620 void process_node_status_request(struct subnet_record
*subrec
, struct packet_struct
*p
);
3621 void process_name_query_request(struct subnet_record
*subrec
, struct packet_struct
*p
);
3623 /* The following definitions come from nmbd/nmbd_lmhosts.c */
3625 void load_lmhosts_file(const char *fname
);
3626 bool find_name_in_lmhosts(struct nmb_name
*nmbname
, struct name_record
**namerecp
);
3628 /* The following definitions come from nmbd/nmbd_logonnames.c */
3630 void add_logon_names(void);
3632 /* The following definitions come from nmbd/nmbd_mynames.c */
3634 void register_my_workgroup_one_subnet(struct subnet_record
*subrec
);
3635 bool register_my_workgroup_and_names(void);
3636 void release_wins_names(void);
3637 void refresh_my_names(time_t t
);
3639 /* The following definitions come from nmbd/nmbd_namelistdb.c */
3641 void set_samba_nb_type(void);
3642 void remove_name_from_namelist(struct subnet_record
*subrec
,
3643 struct name_record
*namerec
);
3644 struct name_record
*find_name_on_subnet(struct subnet_record
*subrec
,
3645 const struct nmb_name
*nmbname
,
3647 struct name_record
*find_name_for_remote_broadcast_subnet(struct nmb_name
*nmbname
,
3649 void update_name_ttl( struct name_record
*namerec
, int ttl
);
3650 bool add_name_to_subnet( struct subnet_record
*subrec
,
3655 enum name_source source
,
3657 struct in_addr
*iplist
);
3658 void standard_success_register(struct subnet_record
*subrec
,
3659 struct userdata_struct
*userdata
,
3660 struct nmb_name
*nmbname
, uint16 nb_flags
, int ttl
,
3661 struct in_addr registered_ip
);
3662 void standard_fail_register( struct subnet_record
*subrec
,
3663 struct nmb_name
*nmbname
);
3664 bool find_ip_in_name_record( struct name_record
*namerec
, struct in_addr ip
);
3665 void add_ip_to_name_record( struct name_record
*namerec
, struct in_addr new_ip
);
3666 void remove_ip_from_name_record( struct name_record
*namerec
,
3667 struct in_addr remove_ip
);
3668 void standard_success_release( struct subnet_record
*subrec
,
3669 struct userdata_struct
*userdata
,
3670 struct nmb_name
*nmbname
,
3671 struct in_addr released_ip
);
3672 void expire_names(time_t t
);
3673 void add_samba_names_to_subnet( struct subnet_record
*subrec
);
3674 void dump_name_record( struct name_record
*namerec
, XFILE
*fp
);
3675 void dump_all_namelists(void);
3677 /* The following definitions come from nmbd/nmbd_namequery.c */
3679 bool query_name(struct subnet_record
*subrec
, const char *name
, int type
,
3680 query_name_success_function success_fn
,
3681 query_name_fail_function fail_fn
,
3682 struct userdata_struct
*userdata
);
3683 bool query_name_from_wins_server(struct in_addr ip_to
,
3684 const char *name
, int type
,
3685 query_name_success_function success_fn
,
3686 query_name_fail_function fail_fn
,
3687 struct userdata_struct
*userdata
);
3689 /* The following definitions come from nmbd/nmbd_nameregister.c */
3691 void register_name(struct subnet_record
*subrec
,
3692 const char *name
, int type
, uint16 nb_flags
,
3693 register_name_success_function success_fn
,
3694 register_name_fail_function fail_fn
,
3695 struct userdata_struct
*userdata
);
3696 void wins_refresh_name(struct name_record
*namerec
);
3698 /* The following definitions come from nmbd/nmbd_namerelease.c */
3700 void release_name(struct subnet_record
*subrec
, struct name_record
*namerec
,
3701 release_name_success_function success_fn
,
3702 release_name_fail_function fail_fn
,
3703 struct userdata_struct
*userdata
);
3705 /* The following definitions come from nmbd/nmbd_nodestatus.c */
3707 bool node_status(struct subnet_record
*subrec
, struct nmb_name
*nmbname
,
3708 struct in_addr send_ip
, node_status_success_function success_fn
,
3709 node_status_fail_function fail_fn
, struct userdata_struct
*userdata
);
3711 /* The following definitions come from nmbd/nmbd_packets.c */
3713 uint16
get_nb_flags(char *buf
);
3714 void set_nb_flags(char *buf
, uint16 nb_flags
);
3715 struct response_record
*queue_register_name( struct subnet_record
*subrec
,
3716 response_function resp_fn
,
3717 timeout_response_function timeout_fn
,
3718 register_name_success_function success_fn
,
3719 register_name_fail_function fail_fn
,
3720 struct userdata_struct
*userdata
,
3721 struct nmb_name
*nmbname
,
3723 void queue_wins_refresh(struct nmb_name
*nmbname
,
3724 response_function resp_fn
,
3725 timeout_response_function timeout_fn
,
3727 struct in_addr refresh_ip
,
3729 struct response_record
*queue_register_multihomed_name( struct subnet_record
*subrec
,
3730 response_function resp_fn
,
3731 timeout_response_function timeout_fn
,
3732 register_name_success_function success_fn
,
3733 register_name_fail_function fail_fn
,
3734 struct userdata_struct
*userdata
,
3735 struct nmb_name
*nmbname
,
3737 struct in_addr register_ip
,
3738 struct in_addr wins_ip
);
3739 struct response_record
*queue_release_name( struct subnet_record
*subrec
,
3740 response_function resp_fn
,
3741 timeout_response_function timeout_fn
,
3742 release_name_success_function success_fn
,
3743 release_name_fail_function fail_fn
,
3744 struct userdata_struct
*userdata
,
3745 struct nmb_name
*nmbname
,
3747 struct in_addr release_ip
,
3748 struct in_addr dest_ip
);
3749 struct response_record
*queue_query_name( struct subnet_record
*subrec
,
3750 response_function resp_fn
,
3751 timeout_response_function timeout_fn
,
3752 query_name_success_function success_fn
,
3753 query_name_fail_function fail_fn
,
3754 struct userdata_struct
*userdata
,
3755 struct nmb_name
*nmbname
);
3756 struct response_record
*queue_query_name_from_wins_server( struct in_addr to_ip
,
3757 response_function resp_fn
,
3758 timeout_response_function timeout_fn
,
3759 query_name_success_function success_fn
,
3760 query_name_fail_function fail_fn
,
3761 struct userdata_struct
*userdata
,
3762 struct nmb_name
*nmbname
);
3763 struct response_record
*queue_node_status( struct subnet_record
*subrec
,
3764 response_function resp_fn
,
3765 timeout_response_function timeout_fn
,
3766 node_status_success_function success_fn
,
3767 node_status_fail_function fail_fn
,
3768 struct userdata_struct
*userdata
,
3769 struct nmb_name
*nmbname
,
3770 struct in_addr send_ip
);
3771 void reply_netbios_packet(struct packet_struct
*orig_packet
,
3772 int rcode
, enum netbios_reply_type_code rcv_code
, int opcode
,
3773 int ttl
, char *data
,int len
);
3774 void queue_packet(struct packet_struct
*packet
);
3775 void run_packet_queue(void);
3776 void retransmit_or_expire_response_records(time_t t
);
3777 bool listen_for_packets(bool run_election
);
3778 bool send_mailslot(bool unique
, const char *mailslot
,char *buf
, size_t len
,
3779 const char *srcname
, int src_type
,
3780 const char *dstname
, int dest_type
,
3781 struct in_addr dest_ip
,struct in_addr src_ip
,
3784 /* The following definitions come from nmbd/nmbd_processlogon.c */
3786 void process_logon_packet(struct packet_struct
*p
, char *buf
,int len
,
3787 const char *mailslot
);
3789 /* The following definitions come from nmbd/nmbd_responserecordsdb.c */
3791 void remove_response_record(struct subnet_record
*subrec
,
3792 struct response_record
*rrec
);
3793 struct response_record
*make_response_record( struct subnet_record
*subrec
,
3794 struct packet_struct
*p
,
3795 response_function resp_fn
,
3796 timeout_response_function timeout_fn
,
3797 success_function success_fn
,
3798 fail_function fail_fn
,
3799 struct userdata_struct
*userdata
);
3800 struct response_record
*find_response_record(struct subnet_record
**ppsubrec
,
3802 bool is_refresh_already_queued(struct subnet_record
*subrec
, struct name_record
*namerec
);
3804 /* The following definitions come from nmbd/nmbd_sendannounce.c */
3806 void send_browser_reset(int reset_type
, const char *to_name
, int to_type
, struct in_addr to_ip
);
3807 void broadcast_announce_request(struct subnet_record
*subrec
, struct work_record
*work
);
3808 void announce_my_server_names(time_t t
);
3809 void announce_my_lm_server_names(time_t t
);
3810 void reset_announce_timer(void);
3811 void announce_myself_to_domain_master_browser(time_t t
);
3812 void announce_my_servers_removed(void);
3813 void announce_remote(time_t t
);
3814 void browse_sync_remote(time_t t
);
3816 /* The following definitions come from nmbd/nmbd_serverlistdb.c */
3818 void remove_all_servers(struct work_record
*work
);
3819 struct server_record
*find_server_in_workgroup(struct work_record
*work
, const char *name
);
3820 void remove_server_from_workgroup(struct work_record
*work
, struct server_record
*servrec
);
3821 struct server_record
*create_server_on_workgroup(struct work_record
*work
,
3822 const char *name
,int servertype
,
3823 int ttl
, const char *comment
);
3824 void update_server_ttl(struct server_record
*servrec
, int ttl
);
3825 void expire_servers(struct work_record
*work
, time_t t
);
3826 void write_browse_list_entry(XFILE
*fp
, const char *name
, uint32 rec_type
,
3827 const char *local_master_browser_name
, const char *description
);
3828 void write_browse_list(time_t t
, bool force_write
);
3830 /* The following definitions come from nmbd/nmbd_subnetdb.c */
3832 void close_subnet(struct subnet_record
*subrec
);
3833 struct subnet_record
*make_normal_subnet(const struct interface
*iface
);
3834 bool create_subnets(void);
3835 bool we_are_a_wins_client(void);
3836 struct subnet_record
*get_next_subnet_maybe_unicast(struct subnet_record
*subrec
);
3837 struct subnet_record
*get_next_subnet_maybe_unicast_or_wins_server(struct subnet_record
*subrec
);
3839 /* The following definitions come from nmbd/nmbd_synclists.c */
3841 void sync_browse_lists(struct work_record
*work
,
3842 char *name
, int nm_type
,
3843 struct in_addr ip
, bool local
, bool servers
);
3844 void sync_check_completion(void);
3846 /* The following definitions come from nmbd/nmbd_winsproxy.c */
3848 void make_wins_proxy_name_query_request( struct subnet_record
*subrec
,
3849 struct packet_struct
*incoming_packet
,
3850 struct nmb_name
*question_name
);
3852 /* The following definitions come from nmbd/nmbd_winsserver.c */
3854 struct name_record
*find_name_on_wins_subnet(const struct nmb_name
*nmbname
, bool self_only
);
3855 bool wins_store_changed_namerec(const struct name_record
*namerec
);
3856 bool add_name_to_wins_subnet(const struct name_record
*namerec
);
3857 bool remove_name_from_wins_namelist(struct name_record
*namerec
);
3858 void dump_wins_subnet_namelist(XFILE
*fp
);
3859 bool packet_is_for_wins_server(struct packet_struct
*packet
);
3860 bool initialise_wins(void);
3861 void wins_process_name_refresh_request( struct subnet_record
*subrec
,
3862 struct packet_struct
*p
);
3863 void wins_process_name_registration_request(struct subnet_record
*subrec
,
3864 struct packet_struct
*p
);
3865 void wins_process_multihomed_name_registration_request( struct subnet_record
*subrec
,
3866 struct packet_struct
*p
);
3867 void fetch_all_active_wins_1b_names(void);
3868 void send_wins_name_query_response(int rcode
, struct packet_struct
*p
,
3869 struct name_record
*namerec
);
3870 void wins_process_name_query_request(struct subnet_record
*subrec
,
3871 struct packet_struct
*p
);
3872 void wins_process_name_release_request(struct subnet_record
*subrec
,
3873 struct packet_struct
*p
);
3874 void initiate_wins_processing(time_t t
);
3875 void wins_write_name_record(struct name_record
*namerec
, XFILE
*fp
);
3876 void wins_write_database(time_t t
, bool background
);
3877 void nmbd_wins_new_entry(struct messaging_context
*msg
,
3880 struct server_id server_id
,
3883 /* The following definitions come from nmbd/nmbd_workgroupdb.c */
3885 struct work_record
*find_workgroup_on_subnet(struct subnet_record
*subrec
,
3887 struct work_record
*create_workgroup_on_subnet(struct subnet_record
*subrec
,
3888 const char *name
, int ttl
);
3889 void update_workgroup_ttl(struct work_record
*work
, int ttl
);
3890 void initiate_myworkgroup_startup(struct subnet_record
*subrec
, struct work_record
*work
);
3891 void dump_workgroups(bool force_write
);
3892 void expire_workgroups_and_servers(time_t t
);
3894 /* The following definitions come from param/loadparm.c */
3896 char *lp_smb_ports(void);
3897 char *lp_dos_charset(void);
3898 char *lp_unix_charset(void);
3899 char *lp_display_charset(void);
3900 char *lp_logfile(void);
3901 char *lp_configfile(void);
3902 char *lp_smb_passwd_file(void);
3903 char *lp_private_dir(void);
3904 char *lp_serverstring(void);
3905 int lp_printcap_cache_time(void);
3906 char *lp_addport_cmd(void);
3907 char *lp_enumports_cmd(void);
3908 char *lp_addprinter_cmd(void);
3909 char *lp_deleteprinter_cmd(void);
3910 char *lp_os2_driver_map(void);
3911 char *lp_lockdir(void);
3912 char *lp_statedir(void);
3913 char *lp_cachedir(void);
3914 char *lp_piddir(void);
3915 char *lp_mangling_method(void);
3916 int lp_mangle_prefix(void);
3917 char *lp_utmpdir(void);
3918 char *lp_wtmpdir(void);
3920 char *lp_rootdir(void);
3921 char *lp_defaultservice(void);
3922 char *lp_msg_command(void);
3923 char *lp_get_quota_command(void);
3924 char *lp_set_quota_command(void);
3925 char *lp_auto_services(void);
3926 char *lp_passwd_program(void);
3927 char *lp_passwd_chat(void);
3928 char *lp_passwordserver(void);
3929 char *lp_name_resolve_order(void);
3930 char *lp_realm(void);
3931 const char *lp_afs_username_map(void);
3932 int lp_afs_token_lifetime(void);
3933 char *lp_log_nt_token_command(void);
3934 char *lp_username_map(void);
3935 const char *lp_logon_script(void);
3936 const char *lp_logon_path(void);
3937 const char *lp_logon_drive(void);
3938 const char *lp_logon_home(void);
3939 char *lp_remote_announce(void);
3940 char *lp_remote_browse_sync(void);
3941 const char **lp_wins_server_list(void);
3942 const char **lp_interfaces(void);
3943 const char *lp_socket_address(void);
3944 char *lp_nis_home_map_name(void);
3945 const char **lp_netbios_aliases(void);
3946 const char *lp_passdb_backend(void);
3947 const char **lp_preload_modules(void);
3948 char *lp_panic_action(void);
3949 char *lp_adduser_script(void);
3950 char *lp_renameuser_script(void);
3951 char *lp_deluser_script(void);
3952 const char *lp_guestaccount(void);
3953 char *lp_addgroup_script(void);
3954 char *lp_delgroup_script(void);
3955 char *lp_addusertogroup_script(void);
3956 char *lp_deluserfromgroup_script(void);
3957 char *lp_setprimarygroup_script(void);
3958 char *lp_addmachine_script(void);
3959 char *lp_shutdown_script(void);
3960 char *lp_abort_shutdown_script(void);
3961 char *lp_username_map_script(void);
3962 char *lp_check_password_script(void);
3963 char *lp_wins_hook(void);
3964 const char *lp_template_homedir(void);
3965 const char *lp_template_shell(void);
3966 const char *lp_winbind_separator(void);
3967 int lp_acl_compatibility(void);
3968 bool lp_winbind_enum_users(void);
3969 bool lp_winbind_enum_groups(void);
3970 bool lp_winbind_use_default_domain(void);
3971 bool lp_winbind_trusted_domains_only(void);
3972 bool lp_winbind_nested_groups(void);
3973 int lp_winbind_expand_groups(void);
3974 bool lp_winbind_refresh_tickets(void);
3975 bool lp_winbind_offline_logon(void);
3976 bool lp_winbind_normalize_names(void);
3977 bool lp_winbind_rpc_only(void);
3978 const char **lp_idmap_domains(void);
3979 const char *lp_idmap_backend(void);
3980 char *lp_idmap_alloc_backend(void);
3981 int lp_idmap_cache_time(void);
3982 int lp_idmap_negative_cache_time(void);
3983 int lp_keepalive(void);
3984 bool lp_passdb_expand_explicit(void);
3985 char *lp_ldap_suffix(void);
3986 char *lp_ldap_admin_dn(void);
3987 int lp_ldap_ssl(void);
3988 bool lp_ldap_ssl_ads(void);
3989 int lp_ldap_passwd_sync(void);
3990 bool lp_ldap_delete_dn(void);
3991 int lp_ldap_replication_sleep(void);
3992 int lp_ldap_timeout(void);
3993 int lp_ldap_connection_timeout(void);
3994 int lp_ldap_page_size(void);
3995 int lp_ldap_debug_level(void);
3996 int lp_ldap_debug_threshold(void);
3997 char *lp_add_share_cmd(void);
3998 char *lp_change_share_cmd(void);
3999 char *lp_delete_share_cmd(void);
4000 char *lp_usershare_path(void);
4001 const char **lp_usershare_prefix_allow_list(void);
4002 const char **lp_usershare_prefix_deny_list(void);
4003 const char **lp_eventlog_list(void);
4004 bool lp_registry_shares(void);
4005 bool lp_usershare_allow_guests(void);
4006 bool lp_usershare_owner_only(void);
4007 bool lp_disable_netbios(void);
4008 bool lp_reset_on_zero_vc(void);
4009 bool lp_ms_add_printer_wizard(void);
4010 bool lp_dns_proxy(void);
4011 bool lp_wins_support(void);
4012 bool lp_we_are_a_wins_server(void);
4013 bool lp_wins_proxy(void);
4014 bool lp_local_master(void);
4015 bool lp_domain_logons(void);
4016 const char **lp_init_logon_delayed_hosts(void);
4017 int lp_init_logon_delay(void);
4018 bool lp_load_printers(void);
4019 bool lp_readraw(void);
4020 bool lp_large_readwrite(void);
4021 bool lp_writeraw(void);
4022 bool lp_null_passwords(void);
4023 bool lp_obey_pam_restrictions(void);
4024 bool lp_encrypted_passwords(void);
4025 bool lp_update_encrypted(void);
4026 int lp_client_schannel(void);
4027 int lp_server_schannel(void);
4028 bool lp_syslog_only(void);
4029 bool lp_timestamp_logs(void);
4030 bool lp_debug_prefix_timestamp(void);
4031 bool lp_debug_hires_timestamp(void);
4032 bool lp_debug_pid(void);
4033 bool lp_debug_uid(void);
4034 bool lp_debug_class(void);
4035 bool lp_enable_core_files(void);
4036 bool lp_browse_list(void);
4037 bool lp_nis_home_map(void);
4038 bool lp_bind_interfaces_only(void);
4039 bool lp_pam_password_change(void);
4040 bool lp_unix_password_sync(void);
4041 bool lp_passwd_chat_debug(void);
4042 int lp_passwd_chat_timeout(void);
4043 bool lp_nt_pipe_support(void);
4044 bool lp_nt_status_support(void);
4045 bool lp_stat_cache(void);
4046 int lp_max_stat_cache_size(void);
4047 bool lp_allow_trusted_domains(void);
4048 bool lp_map_untrusted_to_domain(void);
4049 int lp_restrict_anonymous(void);
4050 bool lp_lanman_auth(void);
4051 bool lp_ntlm_auth(void);
4052 bool lp_client_plaintext_auth(void);
4053 bool lp_client_lanman_auth(void);
4054 bool lp_client_ntlmv2_auth(void);
4055 bool lp_host_msdfs(void);
4056 bool lp_kernel_oplocks(void);
4057 bool lp_enhanced_browsing(void);
4058 bool lp_use_mmap(void);
4059 bool lp_unix_extensions(void);
4060 bool lp_use_spnego(void);
4061 bool lp_client_use_spnego(void);
4062 bool lp_hostname_lookups(void);
4063 bool lp_change_notify(const struct share_params
*p
);
4064 bool lp_kernel_change_notify(const struct share_params
*p
);
4065 char * lp_dedicated_keytab_file(void);
4066 int lp_kerberos_method(void);
4067 bool lp_defer_sharing_violations(void);
4068 bool lp_enable_privileges(void);
4069 bool lp_enable_asu_support(void);
4070 int lp_os_level(void);
4071 int lp_max_ttl(void);
4072 int lp_max_wins_ttl(void);
4073 int lp_min_wins_ttl(void);
4074 int lp_max_log_size(void);
4075 int lp_max_open_files(void);
4076 int lp_open_files_db_hash_size(void);
4077 int lp_maxxmit(void);
4078 int lp_maxmux(void);
4079 int lp_passwordlevel(void);
4080 int lp_usernamelevel(void);
4081 int lp_deadtime(void);
4082 bool lp_getwd_cache(void);
4083 int lp_maxprotocol(void);
4084 int lp_minprotocol(void);
4085 int lp_security(void);
4086 const char **lp_auth_methods(void);
4087 bool lp_paranoid_server_security(void);
4088 int lp_maxdisksize(void);
4089 int lp_lpqcachetime(void);
4090 int lp_max_smbd_processes(void);
4091 bool _lp_disable_spoolss(void);
4092 int lp_syslog(void);
4093 int lp_lm_announce(void);
4094 int lp_lm_interval(void);
4095 int lp_machine_password_timeout(void);
4096 int lp_map_to_guest(void);
4097 int lp_oplock_break_wait_time(void);
4098 int lp_lock_spin_time(void);
4099 int lp_usershare_max_shares(void);
4100 const char *lp_socket_options(void);
4101 int lp_config_backend(void);
4102 char *lp_preexec(int );
4103 char *lp_postexec(int );
4104 char *lp_rootpreexec(int );
4105 char *lp_rootpostexec(int );
4106 char *lp_servicename(int );
4107 const char *lp_const_servicename(int );
4108 char *lp_pathname(int );
4109 char *lp_dontdescend(int );
4110 char *lp_username(int );
4111 const char **lp_invalid_users(int );
4112 const char **lp_valid_users(int );
4113 const char **lp_admin_users(int );
4114 const char **lp_svcctl_list(void);
4115 char *lp_cups_options(int );
4116 char *lp_cups_server(void);
4117 char *lp_iprint_server(void);
4118 int lp_cups_connection_timeout(void);
4119 const char *lp_ctdbd_socket(void);
4120 const char **lp_cluster_addresses(void);
4121 bool lp_clustering(void);
4122 char *lp_printcommand(int );
4123 char *lp_lpqcommand(int );
4124 char *lp_lprmcommand(int );
4125 char *lp_lppausecommand(int );
4126 char *lp_lpresumecommand(int );
4127 char *lp_queuepausecommand(int );
4128 char *lp_queueresumecommand(int );
4129 const char *lp_printjob_username(int );
4130 const char **lp_hostsallow(int );
4131 const char **lp_hostsdeny(int );
4132 char *lp_magicscript(int );
4133 char *lp_magicoutput(int );
4134 char *lp_comment(int );
4135 char *lp_force_user(int );
4136 char *lp_force_group(int );
4137 const char **lp_readlist(int );
4138 const char **lp_writelist(int );
4139 const char **lp_printer_admin(int );
4140 char *lp_fstype(int );
4141 const char **lp_vfs_objects(int );
4142 char *lp_msdfs_proxy(int );
4143 char *lp_veto_files(int );
4144 char *lp_hide_files(int );
4145 char *lp_veto_oplocks(int );
4146 bool lp_msdfs_root(int );
4147 char *lp_aio_write_behind(int );
4148 char *lp_dfree_command(int );
4149 bool lp_autoloaded(int );
4150 bool lp_preexec_close(int );
4151 bool lp_rootpreexec_close(int );
4152 int lp_casesensitive(int );
4153 bool lp_preservecase(int );
4154 bool lp_shortpreservecase(int );
4155 bool lp_hide_dot_files(int );
4156 bool lp_hide_special_files(int );
4157 bool lp_hideunreadable(int );
4158 bool lp_hideunwriteable_files(int );
4159 bool lp_browseable(int );
4160 bool lp_access_based_share_enum(int );
4161 bool lp_readonly(int );
4162 bool lp_no_set_dir(int );
4163 bool lp_guest_ok(int );
4164 bool lp_guest_only(int );
4165 bool lp_administrative_share(int );
4166 bool lp_print_ok(int );
4167 bool lp_map_hidden(int );
4168 bool lp_map_archive(int );
4169 bool lp_store_dos_attributes(int );
4170 bool lp_dmapi_support(int );
4171 bool lp_locking(const struct share_params
*p
);
4172 int lp_strict_locking(const struct share_params
*p
);
4173 bool lp_posix_locking(const struct share_params
*p
);
4174 bool lp_share_modes(int );
4175 bool lp_oplocks(int );
4176 bool lp_level2_oplocks(int );
4177 bool lp_onlyuser(int );
4178 bool lp_manglednames(const struct share_params
*p
);
4179 bool lp_widelinks(int );
4180 bool lp_symlinks(int );
4181 bool lp_syncalways(int );
4182 bool lp_strict_allocate(int );
4183 bool lp_strict_sync(int );
4184 bool lp_map_system(int );
4185 bool lp_delete_readonly(int );
4186 bool lp_fake_oplocks(int );
4187 bool lp_recursive_veto_delete(int );
4188 bool lp_dos_filemode(int );
4189 bool lp_dos_filetimes(int );
4190 bool lp_dos_filetime_resolution(int );
4191 bool lp_fake_dir_create_times(int );
4192 bool lp_blocking_locks(int );
4193 bool lp_inherit_perms(int );
4194 bool lp_inherit_acls(int );
4195 bool lp_inherit_owner(int );
4196 bool lp_use_client_driver(int );
4197 bool lp_default_devmode(int );
4198 bool lp_force_printername(int );
4199 bool lp_nt_acl_support(int );
4200 bool lp_force_unknown_acl_user(int );
4201 bool lp_ea_support(int );
4202 bool _lp_use_sendfile(int );
4203 bool lp_profile_acls(int );
4204 bool lp_map_acl_inherit(int );
4205 bool lp_afs_share(int );
4206 bool lp_acl_check_permissions(int );
4207 bool lp_acl_group_control(int );
4208 bool lp_acl_map_full_control(int );
4209 int lp_create_mask(int );
4210 int lp_force_create_mode(int );
4211 int lp_security_mask(int );
4212 int lp_force_security_mode(int );
4213 int lp_dir_mask(int );
4214 int lp_force_dir_mode(int );
4215 int lp_dir_security_mask(int );
4216 int lp_force_dir_security_mode(int );
4217 int lp_max_connections(int );
4218 int lp_defaultcase(int );
4219 int lp_minprintspace(int );
4220 int lp_printing(int );
4221 int lp_max_reported_jobs(int );
4222 int lp_oplock_contention_limit(int );
4223 int lp_csc_policy(int );
4224 int lp_write_cache_size(int );
4225 int lp_block_size(int );
4226 int lp_dfree_cache_time(int );
4227 int lp_allocation_roundup_size(int );
4228 int lp_aio_read_size(int );
4229 int lp_aio_write_size(int );
4230 int lp_map_readonly(int );
4231 int lp_directory_name_cache_size(int );
4232 int lp_smb_encrypt(int );
4233 char lp_magicchar(const struct share_params
*p
);
4234 int lp_winbind_cache_time(void);
4235 int lp_winbind_reconnect_delay(void);
4236 const char **lp_winbind_nss_info(void);
4237 int lp_algorithmic_rid_base(void);
4238 int lp_name_cache_timeout(void);
4239 int lp_client_signing(void);
4240 int lp_server_signing(void);
4241 int lp_client_ldap_sasl_wrapping(void);
4242 char *lp_parm_talloc_string(int snum
, const char *type
, const char *option
, const char *def
);
4243 const char *lp_parm_const_string(int snum
, const char *type
, const char *option
, const char *def
);
4244 const char **lp_parm_string_list(int snum
, const char *type
, const char *option
, const char **def
);
4245 int lp_parm_int(int snum
, const char *type
, const char *option
, int def
);
4246 unsigned long lp_parm_ulong(int snum
, const char *type
, const char *option
, unsigned long def
);
4247 bool lp_parm_bool(int snum
, const char *type
, const char *option
, bool def
);
4248 int lp_parm_enum(int snum
, const char *type
, const char *option
,
4249 const struct enum_list
*_enum
, int def
);
4250 bool lp_add_home(const char *pszHomename
, int iDefaultService
,
4251 const char *user
, const char *pszHomedir
);
4252 int lp_add_service(const char *pszService
, int iDefaultService
);
4253 bool lp_add_printer(const char *pszPrintername
, int iDefaultService
);
4254 bool lp_parameter_is_valid(const char *pszParmName
);
4255 bool lp_parameter_is_global(const char *pszParmName
);
4256 bool lp_parameter_is_canonical(const char *parm_name
);
4257 bool lp_canonicalize_parameter(const char *parm_name
, const char **canon_parm
,
4259 bool lp_canonicalize_parameter_with_value(const char *parm_name
,
4261 const char **canon_parm
,
4262 const char **canon_val
);
4263 void show_parameter_list(void);
4264 bool lp_string_is_valid_boolean(const char *parm_value
);
4265 bool lp_invert_boolean(const char *str
, const char **inverse_str
);
4266 bool lp_canonicalize_boolean(const char *str
, const char**canon_str
);
4267 bool service_ok(int iService
);
4268 bool lp_config_backend_is_registry(void);
4269 bool lp_config_backend_is_file(void);
4270 bool lp_file_list_changed(void);
4271 bool lp_idmap_uid(uid_t
*low
, uid_t
*high
);
4272 bool lp_idmap_gid(gid_t
*low
, gid_t
*high
);
4273 const char *lp_ldap_machine_suffix(void);
4274 const char *lp_ldap_user_suffix(void);
4275 const char *lp_ldap_group_suffix(void);
4276 const char *lp_ldap_idmap_suffix(void);
4277 void *lp_local_ptr_by_snum(int snum
, void *ptr
);
4278 bool lp_do_parameter(int snum
, const char *pszParmName
, const char *pszParmValue
);
4279 void init_locals(void);
4280 bool lp_is_default(int snum
, struct parm_struct
*parm
);
4281 bool dump_a_parameter(int snum
, char *parm_name
, FILE * f
, bool isGlobal
);
4282 struct parm_struct
*lp_get_parameter(const char *param_name
);
4283 struct parm_struct
*lp_next_parameter(int snum
, int *i
, int allparameters
);
4284 bool lp_snum_ok(int iService
);
4285 void lp_add_one_printer(const char *name
, const char *comment
, void *pdata
);
4286 bool lp_loaded(void);
4287 void lp_killunused(bool (*snumused
) (int));
4288 void lp_kill_all_services(void);
4289 void lp_killservice(int iServiceIn
);
4290 const char* server_role_str(uint32 role
);
4291 enum usershare_err
parse_usershare_file(TALLOC_CTX
*ctx
,
4292 SMB_STRUCT_STAT
*psbuf
,
4293 const char *servicename
,
4297 char **pp_sharepath
,
4300 bool *pallow_guest
);
4301 int load_usershare_service(const char *servicename
);
4302 int load_usershare_shares(void);
4303 void gfree_loadparm(void);
4304 void lp_set_in_client(bool b
);
4305 bool lp_is_in_client(void);
4306 bool lp_load_ex(const char *pszFname
,
4310 bool initialize_globals
,
4311 bool allow_include_registry
,
4312 bool allow_registry_shares
);
4313 bool lp_load(const char *pszFname
,
4317 bool initialize_globals
);
4318 bool lp_load_initial_only(const char *pszFname
);
4319 bool lp_load_with_registry_shares(const char *pszFname
,
4323 bool initialize_globals
);
4324 int lp_numservices(void);
4325 void lp_dump(FILE *f
, bool show_defaults
, int maxtoprint
);
4326 void lp_dump_one(FILE * f
, bool show_defaults
, int snum
);
4327 int lp_servicenumber(const char *pszServiceName
);
4328 bool share_defined(const char *service_name
);
4329 struct share_params
*get_share_params(TALLOC_CTX
*mem_ctx
,
4330 const char *sharename
);
4331 struct share_iterator
*share_list_all(TALLOC_CTX
*mem_ctx
);
4332 struct share_params
*next_share(struct share_iterator
*list
);
4333 struct share_params
*next_printer(struct share_iterator
*list
);
4334 struct share_params
*snum2params_static(int snum
);
4335 const char *volume_label(int snum
);
4336 int lp_server_role(void);
4337 bool lp_domain_master(void);
4338 bool lp_preferred_master(void);
4339 void lp_remove_service(int snum
);
4340 void lp_copy_service(int snum
, const char *new_name
);
4341 int lp_default_server_announce(void);
4342 int lp_major_announce_version(void);
4343 int lp_minor_announce_version(void);
4344 void lp_set_name_resolve_order(const char *new_order
);
4345 const char *lp_printername(int snum
);
4346 void lp_set_logfile(const char *name
);
4347 int lp_maxprintjobs(int snum
);
4348 const char *lp_printcapname(void);
4349 bool lp_disable_spoolss( void );
4350 void lp_set_spoolss_state( uint32 state
);
4351 uint32
lp_get_spoolss_state( void );
4352 bool lp_use_sendfile(int snum
);
4353 void set_use_sendfile(int snum
, bool val
);
4354 void set_store_dos_attributes(int snum
, bool val
);
4355 void lp_set_mangling_method(const char *new_method
);
4356 bool lp_posix_pathnames(void);
4357 void lp_set_posix_pathnames(void);
4358 enum brl_flavour
lp_posix_cifsu_locktype(files_struct
*fsp
);
4359 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val
);
4360 int lp_min_receive_file_size(void);
4361 char* lp_perfcount_module(void);
4364 /* The following definitions come from param/params.c */
4366 bool pm_process( const char *FileName
,
4367 bool (*sfunc
)(const char *, void *),
4368 bool (*pfunc
)(const char *, const char *, void *),
4371 /* The following definitions come from param/util.c */
4373 uint32
get_int_param( const char* param
);
4374 char* get_string_param( const char* param
);
4376 /* The following definitions come from passdb/login_cache.c */
4378 bool login_cache_init(void);
4379 bool login_cache_shutdown(void);
4380 LOGIN_CACHE
* login_cache_read(struct samu
*sampass
);
4381 bool login_cache_write(const struct samu
*sampass
, LOGIN_CACHE entry
);
4382 bool login_cache_delentry(const struct samu
*sampass
);
4384 /* The following definitions come from passdb/lookup_sid.c */
4386 bool lookup_name(TALLOC_CTX
*mem_ctx
,
4387 const char *full_name
, int flags
,
4388 const char **ret_domain
, const char **ret_name
,
4389 DOM_SID
*ret_sid
, enum lsa_SidType
*ret_type
);
4390 bool lookup_name_smbconf(TALLOC_CTX
*mem_ctx
,
4391 const char *full_name
, int flags
,
4392 const char **ret_domain
, const char **ret_name
,
4393 DOM_SID
*ret_sid
, enum lsa_SidType
*ret_type
);
4394 NTSTATUS
lookup_sids(TALLOC_CTX
*mem_ctx
, int num_sids
,
4395 const DOM_SID
**sids
, int level
,
4396 struct lsa_dom_info
**ret_domains
,
4397 struct lsa_name_info
**ret_names
);
4398 bool lookup_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
4399 const char **ret_domain
, const char **ret_name
,
4400 enum lsa_SidType
*ret_type
);
4401 void store_uid_sid_cache(const DOM_SID
*psid
, uid_t uid
);
4402 void store_gid_sid_cache(const DOM_SID
*psid
, gid_t gid
);
4403 void uid_to_sid(DOM_SID
*psid
, uid_t uid
);
4404 void gid_to_sid(DOM_SID
*psid
, gid_t gid
);
4405 bool sid_to_uid(const DOM_SID
*psid
, uid_t
*puid
);
4406 bool sid_to_gid(const DOM_SID
*psid
, gid_t
*pgid
);
4408 /* The following definitions come from passdb/machine_sid.c */
4410 DOM_SID
*get_global_sam_sid(void);
4411 void reset_global_sam_sid(void) ;
4412 bool sid_check_is_domain(const DOM_SID
*sid
);
4413 bool sid_check_is_in_our_domain(const DOM_SID
*sid
);
4415 /* The following definitions come from passdb/passdb.c */
4417 const char *my_sam_name(void);
4418 struct samu
*samu_new( TALLOC_CTX
*ctx
);
4419 NTSTATUS
samu_set_unix(struct samu
*user
, const struct passwd
*pwd
);
4420 NTSTATUS
samu_alloc_rid_unix(struct samu
*user
, const struct passwd
*pwd
);
4421 char *pdb_encode_acct_ctrl(uint32 acct_ctrl
, size_t length
);
4422 uint32
pdb_decode_acct_ctrl(const char *p
);
4423 void pdb_sethexpwd(char p
[33], const unsigned char *pwd
, uint32 acct_ctrl
);
4424 bool pdb_gethexpwd(const char *p
, unsigned char *pwd
);
4425 void pdb_sethexhours(char *p
, const unsigned char *hours
);
4426 bool pdb_gethexhours(const char *p
, unsigned char *hours
);
4427 int algorithmic_rid_base(void);
4428 uid_t
algorithmic_pdb_user_rid_to_uid(uint32 user_rid
);
4429 uid_t
max_algorithmic_uid(void);
4430 uint32
algorithmic_pdb_uid_to_user_rid(uid_t uid
);
4431 gid_t
pdb_group_rid_to_gid(uint32 group_rid
);
4432 gid_t
max_algorithmic_gid(void);
4433 uint32
algorithmic_pdb_gid_to_group_rid(gid_t gid
);
4434 bool algorithmic_pdb_rid_is_user(uint32 rid
);
4435 bool lookup_global_sam_name(const char *name
, int flags
, uint32_t *rid
,
4436 enum lsa_SidType
*type
);
4437 NTSTATUS
local_password_change(const char *user_name
,
4439 const char *new_passwd
,
4442 bool init_samu_from_buffer(struct samu
*sampass
, uint32_t level
,
4443 uint8
*buf
, uint32 buflen
);
4444 uint32
init_buffer_from_samu (uint8
**buf
, struct samu
*sampass
, bool size_only
);
4445 bool pdb_copy_sam_account(struct samu
*dst
, struct samu
*src
);
4446 bool pdb_update_bad_password_count(struct samu
*sampass
, bool *updated
);
4447 bool pdb_update_autolock_flag(struct samu
*sampass
, bool *updated
);
4448 bool pdb_increment_bad_password_count(struct samu
*sampass
);
4449 bool is_dc_trusted_domain_situation(const char *domain_name
);
4450 bool get_trust_pw_clear(const char *domain
, char **ret_pwd
,
4451 const char **account_name
, uint32
*channel
);
4452 bool get_trust_pw_hash(const char *domain
, uint8 ret_pwd
[16],
4453 const char **account_name
, uint32
*channel
);
4454 struct samr_LogonHours
get_logon_hours_from_pdb(TALLOC_CTX
*mem_ctx
,
4457 /* The following definitions come from passdb/pdb_compat.c */
4459 uint32
pdb_get_user_rid (const struct samu
*sampass
);
4460 uint32
pdb_get_group_rid (struct samu
*sampass
);
4461 bool pdb_set_user_sid_from_rid (struct samu
*sampass
, uint32 rid
, enum pdb_value_state flag
);
4462 bool pdb_set_group_sid_from_rid (struct samu
*sampass
, uint32 grid
, enum pdb_value_state flag
);
4464 /* The following definitions come from passdb/pdb_get_set.c */
4466 uint32
pdb_get_acct_ctrl(const struct samu
*sampass
);
4467 time_t pdb_get_logon_time(const struct samu
*sampass
);
4468 time_t pdb_get_logoff_time(const struct samu
*sampass
);
4469 time_t pdb_get_kickoff_time(const struct samu
*sampass
);
4470 time_t pdb_get_bad_password_time(const struct samu
*sampass
);
4471 time_t pdb_get_pass_last_set_time(const struct samu
*sampass
);
4472 time_t pdb_get_pass_can_change_time(const struct samu
*sampass
);
4473 time_t pdb_get_pass_can_change_time_noncalc(const struct samu
*sampass
);
4474 time_t pdb_get_pass_must_change_time(const struct samu
*sampass
);
4475 bool pdb_get_pass_can_change(const struct samu
*sampass
);
4476 uint16
pdb_get_logon_divs(const struct samu
*sampass
);
4477 uint32
pdb_get_hours_len(const struct samu
*sampass
);
4478 const uint8
*pdb_get_hours(const struct samu
*sampass
);
4479 const uint8
*pdb_get_nt_passwd(const struct samu
*sampass
);
4480 const uint8
*pdb_get_lanman_passwd(const struct samu
*sampass
);
4481 const uint8
*pdb_get_pw_history(const struct samu
*sampass
, uint32
*current_hist_len
);
4482 const char *pdb_get_plaintext_passwd(const struct samu
*sampass
);
4483 const DOM_SID
*pdb_get_user_sid(const struct samu
*sampass
);
4484 const DOM_SID
*pdb_get_group_sid(struct samu
*sampass
);
4485 enum pdb_value_state
pdb_get_init_flags(const struct samu
*sampass
, enum pdb_elements element
);
4486 const char *pdb_get_username(const struct samu
*sampass
);
4487 const char *pdb_get_domain(const struct samu
*sampass
);
4488 const char *pdb_get_nt_username(const struct samu
*sampass
);
4489 const char *pdb_get_fullname(const struct samu
*sampass
);
4490 const char *pdb_get_homedir(const struct samu
*sampass
);
4491 const char *pdb_get_dir_drive(const struct samu
*sampass
);
4492 const char *pdb_get_logon_script(const struct samu
*sampass
);
4493 const char *pdb_get_profile_path(const struct samu
*sampass
);
4494 const char *pdb_get_acct_desc(const struct samu
*sampass
);
4495 const char *pdb_get_workstations(const struct samu
*sampass
);
4496 const char *pdb_get_comment(const struct samu
*sampass
);
4497 const char *pdb_get_munged_dial(const struct samu
*sampass
);
4498 uint16
pdb_get_bad_password_count(const struct samu
*sampass
);
4499 uint16
pdb_get_logon_count(const struct samu
*sampass
);
4500 uint32
pdb_get_unknown_6(const struct samu
*sampass
);
4501 void *pdb_get_backend_private_data(const struct samu
*sampass
, const struct pdb_methods
*my_methods
);
4502 bool pdb_set_acct_ctrl(struct samu
*sampass
, uint32 acct_ctrl
, enum pdb_value_state flag
);
4503 bool pdb_set_logon_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4504 bool pdb_set_logoff_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4505 bool pdb_set_kickoff_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4506 bool pdb_set_bad_password_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4507 bool pdb_set_pass_can_change_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4508 bool pdb_set_pass_must_change_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4509 bool pdb_set_pass_last_set_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4510 bool pdb_set_hours_len(struct samu
*sampass
, uint32 len
, enum pdb_value_state flag
);
4511 bool pdb_set_logon_divs(struct samu
*sampass
, uint16 hours
, enum pdb_value_state flag
);
4512 bool pdb_set_init_flags(struct samu
*sampass
, enum pdb_elements element
, enum pdb_value_state value_flag
);
4513 bool pdb_set_user_sid(struct samu
*sampass
, const DOM_SID
*u_sid
, enum pdb_value_state flag
);
4514 bool pdb_set_user_sid_from_string(struct samu
*sampass
, fstring u_sid
, enum pdb_value_state flag
);
4515 bool pdb_set_group_sid(struct samu
*sampass
, const DOM_SID
*g_sid
, enum pdb_value_state flag
);
4516 bool pdb_set_username(struct samu
*sampass
, const char *username
, enum pdb_value_state flag
);
4517 bool pdb_set_domain(struct samu
*sampass
, const char *domain
, enum pdb_value_state flag
);
4518 bool pdb_set_nt_username(struct samu
*sampass
, const char *nt_username
, enum pdb_value_state flag
);
4519 bool pdb_set_fullname(struct samu
*sampass
, const char *full_name
, enum pdb_value_state flag
);
4520 bool pdb_set_logon_script(struct samu
*sampass
, const char *logon_script
, enum pdb_value_state flag
);
4521 bool pdb_set_profile_path(struct samu
*sampass
, const char *profile_path
, enum pdb_value_state flag
);
4522 bool pdb_set_dir_drive(struct samu
*sampass
, const char *dir_drive
, enum pdb_value_state flag
);
4523 bool pdb_set_homedir(struct samu
*sampass
, const char *home_dir
, enum pdb_value_state flag
);
4524 bool pdb_set_acct_desc(struct samu
*sampass
, const char *acct_desc
, enum pdb_value_state flag
);
4525 bool pdb_set_workstations(struct samu
*sampass
, const char *workstations
, enum pdb_value_state flag
);
4526 bool pdb_set_comment(struct samu
*sampass
, const char *comment
, enum pdb_value_state flag
);
4527 bool pdb_set_munged_dial(struct samu
*sampass
, const char *munged_dial
, enum pdb_value_state flag
);
4528 bool pdb_set_nt_passwd(struct samu
*sampass
, const uint8 pwd
[NT_HASH_LEN
], enum pdb_value_state flag
);
4529 bool pdb_set_lanman_passwd(struct samu
*sampass
, const uint8 pwd
[LM_HASH_LEN
], enum pdb_value_state flag
);
4530 bool pdb_set_pw_history(struct samu
*sampass
, const uint8
*pwd
, uint32 historyLen
, enum pdb_value_state flag
);
4531 bool pdb_set_plaintext_pw_only(struct samu
*sampass
, const char *password
, enum pdb_value_state flag
);
4532 bool pdb_set_bad_password_count(struct samu
*sampass
, uint16 bad_password_count
, enum pdb_value_state flag
);
4533 bool pdb_set_logon_count(struct samu
*sampass
, uint16 logon_count
, enum pdb_value_state flag
);
4534 bool pdb_set_unknown_6(struct samu
*sampass
, uint32 unkn
, enum pdb_value_state flag
);
4535 bool pdb_set_hours(struct samu
*sampass
, const uint8
*hours
, enum pdb_value_state flag
);
4536 bool pdb_set_backend_private_data(struct samu
*sampass
, void *private_data
,
4537 void (*free_fn
)(void **),
4538 const struct pdb_methods
*my_methods
,
4539 enum pdb_value_state flag
);
4540 bool pdb_set_pass_can_change(struct samu
*sampass
, bool canchange
);
4541 bool pdb_set_plaintext_passwd(struct samu
*sampass
, const char *plaintext
);
4542 uint32
pdb_build_fields_present(struct samu
*sampass
);
4544 /* The following definitions come from passdb/pdb_interface.c */
4546 NTSTATUS
smb_register_passdb(int version
, const char *name
, pdb_init_function init
) ;
4547 struct pdb_init_function_entry
*pdb_find_backend_entry(const char *name
);
4548 struct event_context
*pdb_get_event_context(void);
4549 NTSTATUS
make_pdb_method_name(struct pdb_methods
**methods
, const char *selected
);
4550 bool pdb_getsampwnam(struct samu
*sam_acct
, const char *username
) ;
4551 bool guest_user_info( struct samu
*user
);
4552 bool pdb_getsampwsid(struct samu
*sam_acct
, const DOM_SID
*sid
) ;
4553 NTSTATUS
pdb_create_user(TALLOC_CTX
*mem_ctx
, const char *name
, uint32 flags
,
4555 NTSTATUS
pdb_delete_user(TALLOC_CTX
*mem_ctx
, struct samu
*sam_acct
);
4556 NTSTATUS
pdb_add_sam_account(struct samu
*sam_acct
) ;
4557 NTSTATUS
pdb_update_sam_account(struct samu
*sam_acct
) ;
4558 NTSTATUS
pdb_delete_sam_account(struct samu
*sam_acct
) ;
4559 NTSTATUS
pdb_rename_sam_account(struct samu
*oldname
, const char *newname
);
4560 NTSTATUS
pdb_update_login_attempts(struct samu
*sam_acct
, bool success
);
4561 bool pdb_getgrsid(GROUP_MAP
*map
, DOM_SID sid
);
4562 bool pdb_getgrgid(GROUP_MAP
*map
, gid_t gid
);
4563 bool pdb_getgrnam(GROUP_MAP
*map
, const char *name
);
4564 NTSTATUS
pdb_create_dom_group(TALLOC_CTX
*mem_ctx
, const char *name
,
4566 NTSTATUS
pdb_delete_dom_group(TALLOC_CTX
*mem_ctx
, uint32 rid
);
4567 NTSTATUS
pdb_add_group_mapping_entry(GROUP_MAP
*map
);
4568 NTSTATUS
pdb_update_group_mapping_entry(GROUP_MAP
*map
);
4569 NTSTATUS
pdb_delete_group_mapping_entry(DOM_SID sid
);
4570 bool pdb_enum_group_mapping(const DOM_SID
*sid
, enum lsa_SidType sid_name_use
, GROUP_MAP
**pp_rmap
,
4571 size_t *p_num_entries
, bool unix_only
);
4572 NTSTATUS
pdb_enum_group_members(TALLOC_CTX
*mem_ctx
,
4574 uint32
**pp_member_rids
,
4575 size_t *p_num_members
);
4576 NTSTATUS
pdb_enum_group_memberships(TALLOC_CTX
*mem_ctx
, struct samu
*user
,
4577 DOM_SID
**pp_sids
, gid_t
**pp_gids
,
4578 size_t *p_num_groups
);
4579 NTSTATUS
pdb_set_unix_primary_group(TALLOC_CTX
*mem_ctx
, struct samu
*user
);
4580 NTSTATUS
pdb_add_groupmem(TALLOC_CTX
*mem_ctx
, uint32 group_rid
,
4582 NTSTATUS
pdb_del_groupmem(TALLOC_CTX
*mem_ctx
, uint32 group_rid
,
4584 NTSTATUS
pdb_create_alias(const char *name
, uint32
*rid
);
4585 NTSTATUS
pdb_delete_alias(const DOM_SID
*sid
);
4586 NTSTATUS
pdb_get_aliasinfo(const DOM_SID
*sid
, struct acct_info
*info
);
4587 NTSTATUS
pdb_set_aliasinfo(const DOM_SID
*sid
, struct acct_info
*info
);
4588 NTSTATUS
pdb_add_aliasmem(const DOM_SID
*alias
, const DOM_SID
*member
);
4589 NTSTATUS
pdb_del_aliasmem(const DOM_SID
*alias
, const DOM_SID
*member
);
4590 NTSTATUS
pdb_enum_aliasmem(const DOM_SID
*alias
,
4591 DOM_SID
**pp_members
, size_t *p_num_members
);
4592 NTSTATUS
pdb_enum_alias_memberships(TALLOC_CTX
*mem_ctx
,
4593 const DOM_SID
*domain_sid
,
4594 const DOM_SID
*members
, size_t num_members
,
4595 uint32
**pp_alias_rids
,
4596 size_t *p_num_alias_rids
);
4597 NTSTATUS
pdb_lookup_rids(const DOM_SID
*domain_sid
,
4601 enum lsa_SidType
*attrs
);
4602 NTSTATUS
pdb_lookup_names(const DOM_SID
*domain_sid
,
4606 enum lsa_SidType
*attrs
);
4607 bool pdb_get_account_policy(int policy_index
, uint32
*value
);
4608 bool pdb_set_account_policy(int policy_index
, uint32 value
);
4609 bool pdb_get_seq_num(time_t *seq_num
);
4610 bool pdb_uid_to_rid(uid_t uid
, uint32
*rid
);
4611 bool pdb_uid_to_sid(uid_t uid
, DOM_SID
*sid
);
4612 bool pdb_gid_to_sid(gid_t gid
, DOM_SID
*sid
);
4613 bool pdb_sid_to_id(const DOM_SID
*sid
, union unid_t
*id
,
4614 enum lsa_SidType
*type
);
4615 bool pdb_rid_algorithm(void);
4616 bool pdb_new_rid(uint32
*rid
);
4617 bool initialize_password_db(bool reload
, struct event_context
*event_ctx
);
4618 struct pdb_search
*pdb_search_init(TALLOC_CTX
*mem_ctx
,
4619 enum pdb_search_type type
);
4620 struct pdb_search
*pdb_search_users(TALLOC_CTX
*mem_ctx
, uint32 acct_flags
);
4621 struct pdb_search
*pdb_search_groups(TALLOC_CTX
*mem_ctx
);
4622 struct pdb_search
*pdb_search_aliases(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
);
4623 uint32
pdb_search_entries(struct pdb_search
*search
,
4624 uint32 start_idx
, uint32 max_entries
,
4625 struct samr_displayentry
**result
);
4626 bool pdb_get_trusteddom_pw(const char *domain
, char** pwd
, DOM_SID
*sid
,
4627 time_t *pass_last_set_time
);
4628 bool pdb_set_trusteddom_pw(const char* domain
, const char* pwd
,
4629 const DOM_SID
*sid
);
4630 bool pdb_del_trusteddom_pw(const char *domain
);
4631 NTSTATUS
pdb_enum_trusteddoms(TALLOC_CTX
*mem_ctx
, uint32
*num_domains
,
4632 struct trustdom_info
***domains
);
4633 NTSTATUS
make_pdb_method( struct pdb_methods
**methods
) ;
4635 /* The following definitions come from passdb/pdb_ldap.c */
4637 const char** get_userattr_list( TALLOC_CTX
*mem_ctx
, int schema_ver
);
4638 int ldapsam_search_suffix_by_name(struct ldapsam_privates
*ldap_state
,
4640 LDAPMessage
** result
,
4642 const char **talloc_attrs(TALLOC_CTX
*mem_ctx
, ...);
4643 NTSTATUS
pdb_init_ldapsam_compat(struct pdb_methods
**pdb_method
, const char *location
);
4644 NTSTATUS
pdb_init_ldapsam(struct pdb_methods
**pdb_method
, const char *location
);
4645 NTSTATUS
pdb_ldap_init(void);
4647 /* The following definitions come from passdb/pdb_nds.c */
4649 int pdb_nds_get_password(
4650 struct smbldap_state
*ldap_state
,
4654 int pdb_nds_set_password(
4655 struct smbldap_state
*ldap_state
,
4658 NTSTATUS
pdb_nds_init(void);
4660 /* The following definitions come from passdb/pdb_smbpasswd.c */
4662 NTSTATUS
pdb_smbpasswd_init(void) ;
4664 /* The following definitions come from passdb/pdb_wbc_sam.c */
4666 NTSTATUS
pdb_wbc_sam_init(void);
4668 /* The following definitions come from passdb/pdb_tdb.c */
4670 bool init_sam_from_buffer_v2(struct samu
*sampass
, uint8
*buf
, uint32 buflen
);
4671 NTSTATUS
pdb_tdbsam_init(void);
4673 /* The following definitions come from passdb/secrets.c */
4675 bool secrets_init(void);
4676 struct db_context
*secrets_db_ctx(void);
4677 void secrets_shutdown(void);
4678 void *secrets_fetch(const char *key
, size_t *size
);
4679 bool secrets_store(const char *key
, const void *data
, size_t size
);
4680 bool secrets_delete(const char *key
);
4681 bool secrets_store_domain_sid(const char *domain
, const DOM_SID
*sid
);
4682 bool secrets_fetch_domain_sid(const char *domain
, DOM_SID
*sid
);
4683 bool secrets_store_domain_guid(const char *domain
, struct GUID
*guid
);
4684 bool secrets_fetch_domain_guid(const char *domain
, struct GUID
*guid
);
4685 void *secrets_get_trust_account_lock(TALLOC_CTX
*mem_ctx
, const char *domain
);
4686 uint32
get_default_sec_channel(void);
4687 bool secrets_fetch_trust_account_password_legacy(const char *domain
,
4689 time_t *pass_last_set_time
,
4691 bool secrets_fetch_trust_account_password(const char *domain
, uint8 ret_pwd
[16],
4692 time_t *pass_last_set_time
,
4694 bool secrets_fetch_trusted_domain_password(const char *domain
, char** pwd
,
4695 DOM_SID
*sid
, time_t *pass_last_set_time
);
4696 bool secrets_store_trusted_domain_password(const char* domain
, const char* pwd
,
4697 const DOM_SID
*sid
);
4698 bool secrets_delete_machine_password(const char *domain
);
4699 bool secrets_delete_machine_password_ex(const char *domain
);
4700 bool secrets_delete_domain_sid(const char *domain
);
4701 bool secrets_store_machine_password(const char *pass
, const char *domain
, uint32 sec_channel
);
4702 char *secrets_fetch_machine_password(const char *domain
,
4703 time_t *pass_last_set_time
,
4705 bool trusted_domain_password_delete(const char *domain
);
4706 bool secrets_store_ldap_pw(const char* dn
, char* pw
);
4707 bool fetch_ldap_pw(char **dn
, char** pw
);
4708 NTSTATUS
secrets_trusted_domains(TALLOC_CTX
*mem_ctx
, uint32
*num_domains
,
4709 struct trustdom_info
***domains
);
4710 bool secrets_store_afs_keyfile(const char *cell
, const struct afs_keyfile
*keyfile
);
4711 bool secrets_fetch_afs_key(const char *cell
, struct afs_key
*result
);
4712 void secrets_fetch_ipc_userpass(char **username
, char **domain
, char **password
);
4713 bool secrets_store_schannel_session_info(TALLOC_CTX
*mem_ctx
,
4714 const char *remote_machine
,
4715 const struct dcinfo
*pdc
);
4716 bool secrets_restore_schannel_session_info(TALLOC_CTX
*mem_ctx
,
4717 const char *remote_machine
,
4718 struct dcinfo
**ppdc
);
4719 bool secrets_store_generic(const char *owner
, const char *key
, const char *secret
);
4720 char *secrets_fetch_generic(const char *owner
, const char *key
);
4721 bool secrets_store_local_schannel_key(uint8_t schannel_key
[16]);
4722 bool secrets_fetch_local_schannel_key(uint8_t schannel_key
[16]);
4724 /* The following definitions come from passdb/util_builtin.c */
4726 bool lookup_builtin_rid(TALLOC_CTX
*mem_ctx
, uint32 rid
, const char **name
);
4727 bool lookup_builtin_name(const char *name
, uint32
*rid
);
4728 const char *builtin_domain_name(void);
4729 bool sid_check_is_builtin(const DOM_SID
*sid
);
4730 bool sid_check_is_in_builtin(const DOM_SID
*sid
);
4732 /* The following definitions come from passdb/util_unixsids.c */
4734 bool sid_check_is_unix_users(const DOM_SID
*sid
);
4735 bool sid_check_is_in_unix_users(const DOM_SID
*sid
);
4736 bool uid_to_unix_users_sid(uid_t uid
, DOM_SID
*sid
);
4737 bool gid_to_unix_groups_sid(gid_t gid
, DOM_SID
*sid
);
4738 const char *unix_users_domain_name(void);
4739 bool lookup_unix_user_name(const char *name
, DOM_SID
*sid
);
4740 bool sid_check_is_unix_groups(const DOM_SID
*sid
);
4741 bool sid_check_is_in_unix_groups(const DOM_SID
*sid
);
4742 const char *unix_groups_domain_name(void);
4743 bool lookup_unix_group_name(const char *name
, DOM_SID
*sid
);
4745 /* The following definitions come from passdb/util_wellknown.c */
4747 bool sid_check_is_wellknown_domain(const DOM_SID
*sid
, const char **name
);
4748 bool sid_check_is_in_wellknown_domain(const DOM_SID
*sid
);
4749 bool lookup_wellknown_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
4750 const char **domain
, const char **name
);
4751 bool lookup_wellknown_name(TALLOC_CTX
*mem_ctx
, const char *name
,
4752 DOM_SID
*sid
, const char **domain
);
4754 /* The following definitions come from printing/load.c */
4756 void load_printers(void);
4758 /* The following definitions come from printing/lpq_parse.c */
4760 bool parse_lpq_entry(enum printing_types printing_type
,char *line
,
4761 print_queue_struct
*buf
,
4762 print_status_struct
*status
,bool first
);
4764 /* The following definitions come from printing/notify.c */
4766 int print_queue_snum(const char *qname
);
4767 void print_notify_send_messages(struct messaging_context
*msg_ctx
,
4768 unsigned int timeout
);
4769 void notify_printer_status_byname(const char *sharename
, uint32 status
);
4770 void notify_printer_status(int snum
, uint32 status
);
4771 void notify_job_status_byname(const char *sharename
, uint32 jobid
, uint32 status
,
4773 void notify_job_status(const char *sharename
, uint32 jobid
, uint32 status
);
4774 void notify_job_total_bytes(const char *sharename
, uint32 jobid
,
4776 void notify_job_total_pages(const char *sharename
, uint32 jobid
,
4778 void notify_job_username(const char *sharename
, uint32 jobid
, char *name
);
4779 void notify_job_name(const char *sharename
, uint32 jobid
, char *name
);
4780 void notify_job_submitted(const char *sharename
, uint32 jobid
,
4782 void notify_printer_driver(int snum
, char *driver_name
);
4783 void notify_printer_comment(int snum
, char *comment
);
4784 void notify_printer_sharename(int snum
, char *share_name
);
4785 void notify_printer_printername(int snum
, char *printername
);
4786 void notify_printer_port(int snum
, char *port_name
);
4787 void notify_printer_location(int snum
, char *location
);
4788 void notify_printer_byname( const char *printername
, uint32 change
, const char *value
);
4790 /* The following definitions come from printing/nt_printing.c */
4792 bool nt_printing_init(struct messaging_context
*msg_ctx
);
4793 uint32
update_c_setprinter(bool initialize
);
4794 uint32
get_c_setprinter(void);
4795 int get_builtin_ntforms(nt_forms_struct
**list
);
4796 bool get_a_builtin_ntform_by_string(const char *form_name
, nt_forms_struct
*form
);
4797 int get_ntforms(nt_forms_struct
**list
);
4798 int write_ntforms(nt_forms_struct
**list
, int number
);
4799 bool add_a_form(nt_forms_struct
**list
, struct spoolss_AddFormInfo1
*form
, int *count
);
4800 bool delete_a_form(nt_forms_struct
**list
, const char *del_name
, int *count
, WERROR
*ret
);
4801 void update_a_form(nt_forms_struct
**list
, struct spoolss_AddFormInfo1
*form
, int count
);
4802 int get_ntdrivers(fstring
**list
, const char *architecture
, uint32 version
);
4803 const char *get_short_archi(const char *long_archi
);
4804 WERROR
clean_up_driver_struct(struct pipes_struct
*rpc_pipe
,
4805 NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract
,
4807 WERROR
move_driver_to_download_area(struct pipes_struct
*p
,
4808 NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract
,
4809 uint32 level
, WERROR
*perr
);
4810 int pack_devicemode(NT_DEVICEMODE
*nt_devmode
, uint8
*buf
, int buflen
);
4811 uint32
del_a_printer(const char *sharename
);
4812 NT_DEVICEMODE
*construct_nt_devicemode(const fstring default_devicename
);
4813 NT_DEVICEMODE
*dup_nt_devicemode(NT_DEVICEMODE
*nt_devicemode
);
4814 void free_nt_devicemode(NT_DEVICEMODE
**devmode_ptr
);
4815 int unpack_devicemode(NT_DEVICEMODE
**nt_devmode
, const uint8
*buf
, int buflen
);
4816 int add_new_printer_key( NT_PRINTER_DATA
*data
, const char *name
);
4817 int delete_printer_key( NT_PRINTER_DATA
*data
, const char *name
);
4818 int lookup_printerkey( NT_PRINTER_DATA
*data
, const char *name
);
4819 int get_printer_subkeys( NT_PRINTER_DATA
*data
, const char* key
, fstring
**subkeys
);
4820 WERROR
nt_printer_publish(Printer_entry
*print_hnd
, int snum
, int action
);
4821 WERROR
check_published_printers(void);
4822 bool is_printer_published(Printer_entry
*print_hnd
, int snum
,
4824 WERROR
nt_printer_publish(Printer_entry
*print_hnd
, int snum
, int action
);
4825 WERROR
check_published_printers(void);
4826 bool is_printer_published(Printer_entry
*print_hnd
, int snum
,
4828 WERROR
delete_all_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
);
4829 WERROR
delete_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
);
4830 WERROR
add_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
,
4831 uint32 type
, uint8
*data
, int real_len
);
4832 REGISTRY_VALUE
* get_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
);
4833 WERROR
mod_a_printer(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
);
4834 bool set_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
);
4835 bool del_driver_init(char *drivername
);
4836 WERROR
save_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
, uint8
*data
, uint32 data_len
);
4837 WERROR
get_a_printer( Printer_entry
*print_hnd
,
4838 NT_PRINTER_INFO_LEVEL
**pp_printer
,
4840 const char *sharename
);
4841 WERROR
get_a_printer_search( Printer_entry
*print_hnd
,
4842 NT_PRINTER_INFO_LEVEL
**pp_printer
,
4844 const char *sharename
);
4845 uint32
free_a_printer(NT_PRINTER_INFO_LEVEL
**pp_printer
, uint32 level
);
4846 uint32
add_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
);
4847 WERROR
get_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL
*driver
, uint32 level
,
4848 fstring drivername
, const char *architecture
, uint32 version
);
4849 uint32
free_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
);
4850 bool printer_driver_in_use ( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
);
4851 bool printer_driver_files_in_use ( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info
);
4852 WERROR
delete_printer_driver(struct pipes_struct
*rpc_pipe
,
4853 NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
,
4854 uint32 version
, bool delete_files
);
4855 WERROR
nt_printing_setsec(const char *sharename
, SEC_DESC_BUF
*secdesc_ctr
);
4856 bool nt_printing_getsec(TALLOC_CTX
*ctx
, const char *sharename
, SEC_DESC_BUF
**secdesc_ctr
);
4857 void map_printer_permissions(SEC_DESC
*sd
);
4858 void map_job_permissions(SEC_DESC
*sd
);
4859 bool print_access_check(struct auth_serversupplied_info
*server_info
, int snum
,
4861 bool print_time_access_check(const char *servicename
);
4862 char* get_server_name( Printer_entry
*printer
);
4864 /* The following definitions come from printing/pcap.c */
4866 bool pcap_cache_add_specific(struct pcap_cache
**ppcache
, const char *name
, const char *comment
);
4867 void pcap_cache_destroy_specific(struct pcap_cache
**ppcache
);
4868 bool pcap_cache_add(const char *name
, const char *comment
);
4869 bool pcap_cache_loaded(void);
4870 void pcap_cache_replace(const struct pcap_cache
*cache
);
4871 void pcap_cache_reload(void);
4872 bool pcap_printername_ok(const char *printername
);
4873 void pcap_printer_fn_specific(const struct pcap_cache
*, void (*fn
)(const char *, const char *, void *), void *);
4874 void pcap_printer_fn(void (*fn
)(const char *, const char *, void *), void *);
4876 /* The following definitions come from printing/print_aix.c */
4878 bool aix_cache_reload(void);
4880 /* The following definitions come from printing/print_cups.c */
4882 bool cups_cache_reload(void);
4883 bool cups_pull_comment_location(NT_PRINTER_INFO_LEVEL_2
*printer
);
4885 /* The following definitions come from printing/print_generic.c */
4888 /* The following definitions come from printing/print_iprint.c */
4890 bool iprint_cache_reload(void);
4892 /* The following definitions come from printing/print_svid.c */
4894 bool sysv_cache_reload(void);
4896 /* The following definitions come from printing/printfsp.c */
4898 NTSTATUS
print_fsp_open(struct smb_request
*req
, connection_struct
*conn
,
4900 uint16_t current_vuid
, files_struct
*fsp
,
4901 SMB_STRUCT_STAT
*psbuf
);
4902 void print_fsp_end(files_struct
*fsp
, enum file_close_type close_type
);
4904 /* The following definitions come from printing/printing.c */
4906 uint16
pjobid_to_rap(const char* sharename
, uint32 jobid
);
4907 bool rap_to_pjobid(uint16 rap_jobid
, fstring sharename
, uint32
*pjobid
);
4908 bool print_backend_init(struct messaging_context
*msg_ctx
);
4909 void printing_end(void);
4910 int unpack_pjob( uint8
*buf
, int buflen
, struct printjob
*pjob
);
4911 uint32
sysjob_to_jobid(int unix_jobid
);
4912 void pjob_delete(const char* sharename
, uint32 jobid
);
4913 void start_background_queue(void);
4914 bool print_notify_register_pid(int snum
);
4915 bool print_notify_deregister_pid(int snum
);
4916 bool print_job_exists(const char* sharename
, uint32 jobid
);
4917 int print_job_fd(const char* sharename
, uint32 jobid
);
4918 char *print_job_fname(const char* sharename
, uint32 jobid
);
4919 NT_DEVICEMODE
*print_job_devmode(const char* sharename
, uint32 jobid
);
4920 bool print_job_set_place(const char *sharename
, uint32 jobid
, int place
);
4921 bool print_job_set_name(const char *sharename
, uint32 jobid
, char *name
);
4922 bool print_job_delete(struct auth_serversupplied_info
*server_info
, int snum
,
4923 uint32 jobid
, WERROR
*errcode
);
4924 bool print_job_pause(struct auth_serversupplied_info
*server_info
, int snum
,
4925 uint32 jobid
, WERROR
*errcode
);
4926 bool print_job_resume(struct auth_serversupplied_info
*server_info
, int snum
,
4927 uint32 jobid
, WERROR
*errcode
);
4928 ssize_t
print_job_write(int snum
, uint32 jobid
, const char *buf
, SMB_OFF_T pos
, size_t size
);
4929 int print_queue_length(int snum
, print_status_struct
*pstatus
);
4930 uint32
print_job_start(struct auth_serversupplied_info
*server_info
, int snum
,
4931 const char *jobname
, NT_DEVICEMODE
*nt_devmode
);
4932 void print_job_endpage(int snum
, uint32 jobid
);
4933 bool print_job_end(int snum
, uint32 jobid
, enum file_close_type close_type
);
4934 int print_queue_status(int snum
,
4935 print_queue_struct
**ppqueue
,
4936 print_status_struct
*status
);
4937 bool print_queue_pause(struct auth_serversupplied_info
*server_info
, int snum
,
4939 bool print_queue_resume(struct auth_serversupplied_info
*server_info
, int snum
,
4941 bool print_queue_purge(struct auth_serversupplied_info
*server_info
, int snum
,
4944 /* The following definitions come from printing/printing_db.c */
4946 struct tdb_print_db
*get_print_db_byname(const char *printername
);
4947 void release_print_db( struct tdb_print_db
*pdb
);
4948 void close_all_print_db(void);
4949 TDB_DATA
get_printer_notify_pid_list(TDB_CONTEXT
*tdb
, const char *printer_name
, bool cleanlist
);
4951 /* The following definitions come from profile/profile.c */
4953 void set_profile_level(int level
, struct server_id src
);
4954 bool profile_setup(struct messaging_context
*msg_ctx
, bool rdonly
);
4956 /* The following definitions come from registry/reg_api.c */
4958 WERROR
reg_openhive(TALLOC_CTX
*mem_ctx
, const char *hive
,
4959 uint32 desired_access
,
4960 const struct nt_user_token
*token
,
4961 struct registry_key
**pkey
);
4962 WERROR
reg_openkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*parent
,
4963 const char *name
, uint32 desired_access
,
4964 struct registry_key
**pkey
);
4965 WERROR
reg_enumkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
4966 uint32 idx
, char **name
, NTTIME
*last_write_time
);
4967 WERROR
reg_enumvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
4968 uint32 idx
, char **pname
, struct registry_value
**pval
);
4969 WERROR
reg_queryvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
4970 const char *name
, struct registry_value
**pval
);
4971 WERROR
reg_queryinfokey(struct registry_key
*key
, uint32_t *num_subkeys
,
4972 uint32_t *max_subkeylen
, uint32_t *max_subkeysize
,
4973 uint32_t *num_values
, uint32_t *max_valnamelen
,
4974 uint32_t *max_valbufsize
, uint32_t *secdescsize
,
4975 NTTIME
*last_changed_time
);
4976 WERROR
reg_createkey(TALLOC_CTX
*ctx
, struct registry_key
*parent
,
4977 const char *subkeypath
, uint32 desired_access
,
4978 struct registry_key
**pkey
,
4979 enum winreg_CreateAction
*paction
);
4980 WERROR
reg_deletekey(struct registry_key
*parent
, const char *path
);
4981 WERROR
reg_setvalue(struct registry_key
*key
, const char *name
,
4982 const struct registry_value
*val
);
4983 WERROR
reg_deletevalue(struct registry_key
*key
, const char *name
);
4984 WERROR
reg_getkeysecurity(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
4985 struct security_descriptor
**psecdesc
);
4986 WERROR
reg_setkeysecurity(struct registry_key
*key
,
4987 struct security_descriptor
*psecdesc
);
4988 WERROR
reg_getversion(uint32_t *version
);
4989 WERROR
reg_restorekey(struct registry_key
*key
, const char *fname
);
4990 WERROR
reg_savekey(struct registry_key
*key
, const char *fname
);
4991 WERROR
reg_deleteallvalues(struct registry_key
*key
);
4992 WERROR
reg_open_path(TALLOC_CTX
*mem_ctx
, const char *orig_path
,
4993 uint32 desired_access
, const struct nt_user_token
*token
,
4994 struct registry_key
**pkey
);
4995 WERROR
reg_deletekey_recursive(TALLOC_CTX
*ctx
,
4996 struct registry_key
*parent
,
4998 WERROR
reg_deletesubkeys_recursive(TALLOC_CTX
*ctx
,
4999 struct registry_key
*parent
,
5001 WERROR
reg_create_path(TALLOC_CTX
*mem_ctx
, const char *orig_path
,
5002 uint32 desired_access
,
5003 const struct nt_user_token
*token
,
5004 enum winreg_CreateAction
*paction
,
5005 struct registry_key
**pkey
);
5006 WERROR
reg_delete_path(const struct nt_user_token
*token
,
5007 const char *orig_path
);
5009 /* The following definitions come from registry/reg_backend_current_version.c */
5012 /* The following definitions come from registry/reg_backend_db.c */
5014 WERROR
init_registry_key(const char *add_path
);
5015 WERROR
init_registry_data(void);
5016 WERROR
regdb_init(void);
5017 WERROR
regdb_open( void );
5018 int regdb_close( void );
5019 WERROR
regdb_transaction_start(void);
5020 WERROR
regdb_transaction_commit(void);
5021 WERROR
regdb_transaction_cancel(void);
5022 int regdb_get_seqnum(void);
5023 bool regdb_store_keys(const char *key
, struct regsubkey_ctr
*ctr
);
5024 int regdb_fetch_keys(const char *key
, struct regsubkey_ctr
*ctr
);
5025 int regdb_fetch_values( const char* key
, REGVAL_CTR
*values
);
5026 bool regdb_store_values( const char *key
, REGVAL_CTR
*values
);
5027 bool regdb_subkeys_need_update(struct regsubkey_ctr
*subkeys
);
5028 bool regdb_values_need_update(REGVAL_CTR
*values
);
5030 /* The following definitions come from registry/reg_backend_hkpt_params.c */
5033 /* The following definitions come from registry/reg_backend_netlogon_params.c */
5036 /* The following definitions come from registry/reg_backend_perflib.c */
5039 /* The following definitions come from registry/reg_backend_printing.c */
5042 /* The following definitions come from registry/reg_backend_prod_options.c */
5045 /* The following definitions come from registry/reg_backend_shares.c */
5048 /* The following definitions come from registry/reg_backend_smbconf.c */
5051 /* The following definitions come from registry/reg_backend_tcpip_params.c */
5054 /* The following definitions come from registry/reg_cachehook.c */
5056 WERROR
reghook_cache_init(void);
5057 WERROR
reghook_cache_add(const char *keyname
, REGISTRY_OPS
*ops
);
5058 REGISTRY_OPS
*reghook_cache_find(const char *keyname
);
5059 void reghook_dump_cache( int debuglevel
);
5061 /* The following definitions come from registry/reg_dispatcher.c */
5063 bool store_reg_keys( REGISTRY_KEY
*key
, struct regsubkey_ctr
*subkeys
);
5064 bool store_reg_values( REGISTRY_KEY
*key
, REGVAL_CTR
*val
);
5065 WERROR
create_reg_subkey(REGISTRY_KEY
*key
, const char *subkey
);
5066 WERROR
delete_reg_subkey(REGISTRY_KEY
*key
, const char *subkey
);
5067 int fetch_reg_keys( REGISTRY_KEY
*key
, struct regsubkey_ctr
*subkey_ctr
);
5068 int fetch_reg_values( REGISTRY_KEY
*key
, REGVAL_CTR
*val
);
5069 bool regkey_access_check( REGISTRY_KEY
*key
, uint32 requested
, uint32
*granted
,
5070 const struct nt_user_token
*token
);
5071 WERROR
regkey_get_secdesc(TALLOC_CTX
*mem_ctx
, REGISTRY_KEY
*key
,
5072 struct security_descriptor
**psecdesc
);
5073 WERROR
regkey_set_secdesc(REGISTRY_KEY
*key
,
5074 struct security_descriptor
*psecdesc
);
5075 bool reg_subkeys_need_update(REGISTRY_KEY
*key
, struct regsubkey_ctr
*subkeys
);
5076 bool reg_values_need_update(REGISTRY_KEY
*key
, REGVAL_CTR
*values
);
5078 /* The following definitions come from registry/reg_eventlog.c */
5080 bool eventlog_init_keys(void);
5081 bool eventlog_add_source( const char *eventlog
, const char *sourcename
,
5082 const char *messagefile
);
5084 /* The following definitions come from registry/reg_init_basic.c */
5086 WERROR
registry_init_common(void);
5087 WERROR
registry_init_basic(void);
5089 /* The following definitions come from registry/reg_init_full.c */
5091 WERROR
registry_init_full(void);
5093 /* The following definitions come from registry/reg_init_smbconf.c */
5095 NTSTATUS
registry_create_admin_token(TALLOC_CTX
*mem_ctx
,
5096 NT_USER_TOKEN
**ptoken
);
5097 WERROR
registry_init_smbconf(const char *keyname
);
5099 /* The following definitions come from registry/reg_objects.c */
5101 WERROR
regsubkey_ctr_init(TALLOC_CTX
*mem_ctx
, struct regsubkey_ctr
**ctr
);
5102 WERROR
regsubkey_ctr_set_seqnum(struct regsubkey_ctr
*ctr
, int seqnum
);
5103 int regsubkey_ctr_get_seqnum(struct regsubkey_ctr
*ctr
);
5104 WERROR
regsubkey_ctr_addkey( struct regsubkey_ctr
*ctr
, const char *keyname
);
5105 WERROR
regsubkey_ctr_delkey( struct regsubkey_ctr
*ctr
, const char *keyname
);
5106 bool regsubkey_ctr_key_exists( struct regsubkey_ctr
*ctr
, const char *keyname
);
5107 int regsubkey_ctr_numkeys( struct regsubkey_ctr
*ctr
);
5108 char* regsubkey_ctr_specific_key( struct regsubkey_ctr
*ctr
, uint32 key_index
);
5109 int regval_ctr_numvals( REGVAL_CTR
*ctr
);
5110 REGISTRY_VALUE
* dup_registry_value( REGISTRY_VALUE
*val
);
5111 void free_registry_value( REGISTRY_VALUE
*val
);
5112 uint8
* regval_data_p( REGISTRY_VALUE
*val
);
5113 uint32
regval_size( REGISTRY_VALUE
*val
);
5114 char* regval_name( REGISTRY_VALUE
*val
);
5115 uint32
regval_type( REGISTRY_VALUE
*val
);
5116 REGISTRY_VALUE
* regval_ctr_specific_value( REGVAL_CTR
*ctr
, uint32 idx
);
5117 bool regval_ctr_key_exists( REGVAL_CTR
*ctr
, const char *value
);
5118 REGISTRY_VALUE
*regval_compose(TALLOC_CTX
*ctx
, const char *name
, uint16 type
,
5119 const char *data_p
, size_t size
);
5120 int regval_ctr_addvalue( REGVAL_CTR
*ctr
, const char *name
, uint16 type
,
5121 const char *data_p
, size_t size
);
5122 int regval_ctr_copyvalue( REGVAL_CTR
*ctr
, REGISTRY_VALUE
*val
);
5123 int regval_ctr_delvalue( REGVAL_CTR
*ctr
, const char *name
);
5124 REGISTRY_VALUE
* regval_ctr_getvalue( REGVAL_CTR
*ctr
, const char *name
);
5125 uint32
regval_dword( REGISTRY_VALUE
*val
);
5126 char *regval_sz(REGISTRY_VALUE
*val
);
5128 /* The following definitions come from registry/reg_perfcount.c */
5130 void perfcount_init_keys( void );
5131 uint32
reg_perfcount_get_base_index(void);
5132 uint32
reg_perfcount_get_last_counter(uint32 base_index
);
5133 uint32
reg_perfcount_get_last_help(uint32 last_counter
);
5134 uint32
reg_perfcount_get_counter_help(uint32 base_index
, char **retbuf
);
5135 uint32
reg_perfcount_get_counter_names(uint32 base_index
, char **retbuf
);
5136 bool _reg_perfcount_get_counter_data(TDB_DATA key
, TDB_DATA
*data
);
5137 bool _reg_perfcount_get_instance_info(PERF_INSTANCE_DEFINITION
*inst
,
5140 PERF_OBJECT_TYPE
*obj
,
5141 TDB_CONTEXT
*names
);
5142 bool _reg_perfcount_add_instance(PERF_OBJECT_TYPE
*obj
,
5145 TDB_CONTEXT
*names
);
5146 uint32
reg_perfcount_get_perf_data_block(uint32 base_index
,
5148 PERF_DATA_BLOCK
*block
,
5149 const char *object_ids
);
5150 WERROR
reg_perfcount_get_hkpd(prs_struct
*ps
, uint32 max_buf_size
, uint32
*outbuf_len
, const char *object_ids
);
5152 /* The following definitions come from registry/reg_util.c */
5154 bool reg_split_path(char *path
, char **base
, char **new_path
);
5155 bool reg_split_key(char *path
, char **base
, char **key
);
5156 char *normalize_reg_path(TALLOC_CTX
*ctx
, const char *keyname
);
5157 void normalize_dbkey(char *key
);
5158 char *reg_remaining_path(TALLOC_CTX
*ctx
, const char *key
);
5159 int regval_convert_multi_sz( uint16
*multi_string
, size_t byte_len
, char ***values
);
5160 size_t regval_build_multi_sz( char **values
, uint16
**buffer
);
5162 /* The following definitions come from registry/reg_util_legacy.c */
5164 WERROR
regkey_open_internal( TALLOC_CTX
*ctx
, REGISTRY_KEY
**regkey
,
5166 const struct nt_user_token
*token
,
5167 uint32 access_desired
);
5169 /* The following definitions come from registry/regfio.c */
5172 /* The following definitions come from rpc_client/cli_lsarpc.c */
5174 NTSTATUS
rpccli_lsa_open_policy(struct rpc_pipe_client
*cli
,
5175 TALLOC_CTX
*mem_ctx
,
5176 bool sec_qos
, uint32 des_access
,
5178 NTSTATUS
rpccli_lsa_open_policy2(struct rpc_pipe_client
*cli
,
5179 TALLOC_CTX
*mem_ctx
, bool sec_qos
,
5180 uint32 des_access
, POLICY_HND
*pol
);
5181 NTSTATUS
rpccli_lsa_lookup_sids(struct rpc_pipe_client
*cli
,
5182 TALLOC_CTX
*mem_ctx
,
5185 const DOM_SID
*sids
,
5188 enum lsa_SidType
**ptypes
);
5189 NTSTATUS
rpccli_lsa_lookup_names(struct rpc_pipe_client
*cli
,
5190 TALLOC_CTX
*mem_ctx
,
5191 POLICY_HND
*pol
, int num_names
,
5193 const char ***dom_names
,
5196 enum lsa_SidType
**types
);
5197 bool fetch_domain_sid( char *domain
, char *remote_machine
, DOM_SID
*psid
);
5199 /* The following definitions come from rpc_client/cli_netlogon.c */
5201 NTSTATUS
rpccli_netlogon_setup_creds(struct rpc_pipe_client
*cli
,
5202 const char *server_name
,
5204 const char *clnt_name
,
5205 const char *machine_account
,
5206 const unsigned char machine_pwd
[16],
5207 enum netr_SchannelType sec_chan_type
,
5208 uint32_t *neg_flags_inout
);
5209 NTSTATUS
rpccli_netlogon_sam_logon(struct rpc_pipe_client
*cli
,
5210 TALLOC_CTX
*mem_ctx
,
5211 uint32 logon_parameters
,
5213 const char *username
,
5214 const char *password
,
5215 const char *workstation
,
5217 NTSTATUS
rpccli_netlogon_sam_network_logon(struct rpc_pipe_client
*cli
,
5218 TALLOC_CTX
*mem_ctx
,
5219 uint32 logon_parameters
,
5221 const char *username
,
5223 const char *workstation
,
5224 const uint8 chal
[8],
5225 DATA_BLOB lm_response
,
5226 DATA_BLOB nt_response
,
5227 struct netr_SamInfo3
**info3
);
5228 NTSTATUS
rpccli_netlogon_sam_network_logon_ex(struct rpc_pipe_client
*cli
,
5229 TALLOC_CTX
*mem_ctx
,
5230 uint32 logon_parameters
,
5232 const char *username
,
5234 const char *workstation
,
5235 const uint8 chal
[8],
5236 DATA_BLOB lm_response
,
5237 DATA_BLOB nt_response
,
5238 struct netr_SamInfo3
**info3
);
5239 NTSTATUS
rpccli_netlogon_set_trust_password(struct rpc_pipe_client
*cli
,
5240 TALLOC_CTX
*mem_ctx
,
5241 const unsigned char orig_trust_passwd_hash
[16],
5242 const char *new_trust_pwd_cleartext
,
5243 const unsigned char new_trust_passwd_hash
[16],
5244 uint32_t sec_channel_type
);
5246 /* The following definitions come from rpc_client/cli_pipe.c */
5248 struct async_req
*rpc_api_pipe_req_send(TALLOC_CTX
*mem_ctx
,
5249 struct event_context
*ev
,
5250 struct rpc_pipe_client
*cli
,
5252 prs_struct
*req_data
);
5253 NTSTATUS
rpc_api_pipe_req_recv(struct async_req
*req
, TALLOC_CTX
*mem_ctx
,
5254 prs_struct
*reply_pdu
);
5255 NTSTATUS
rpc_api_pipe_req(TALLOC_CTX
*mem_ctx
, struct rpc_pipe_client
*cli
,
5257 prs_struct
*in_data
,
5258 prs_struct
*out_data
);
5259 struct async_req
*rpc_pipe_bind_send(TALLOC_CTX
*mem_ctx
,
5260 struct event_context
*ev
,
5261 struct rpc_pipe_client
*cli
,
5262 struct cli_pipe_auth_data
*auth
);
5263 NTSTATUS
rpc_pipe_bind_recv(struct async_req
*req
);
5264 NTSTATUS
rpc_pipe_bind(struct rpc_pipe_client
*cli
,
5265 struct cli_pipe_auth_data
*auth
);
5266 unsigned int rpccli_set_timeout(struct rpc_pipe_client
*cli
,
5267 unsigned int timeout
);
5268 bool rpccli_get_pwd_hash(struct rpc_pipe_client
*cli
, uint8_t nt_hash
[16]);
5269 NTSTATUS
rpccli_anon_bind_data(TALLOC_CTX
*mem_ctx
,
5270 struct cli_pipe_auth_data
**presult
);
5271 NTSTATUS
rpccli_ntlmssp_bind_data(TALLOC_CTX
*mem_ctx
,
5272 enum pipe_auth_type auth_type
,
5273 enum pipe_auth_level auth_level
,
5275 const char *username
,
5276 const char *password
,
5277 struct cli_pipe_auth_data
**presult
);
5278 NTSTATUS
rpccli_schannel_bind_data(TALLOC_CTX
*mem_ctx
, const char *domain
,
5279 enum pipe_auth_level auth_level
,
5280 const uint8_t sess_key
[16],
5281 struct cli_pipe_auth_data
**presult
);
5282 NTSTATUS
rpccli_kerberos_bind_data(TALLOC_CTX
*mem_ctx
,
5283 enum pipe_auth_level auth_level
,
5284 const char *service_princ
,
5285 const char *username
,
5286 const char *password
,
5287 struct cli_pipe_auth_data
**presult
);
5288 NTSTATUS
rpc_pipe_open_tcp(TALLOC_CTX
*mem_ctx
, const char *host
,
5289 const struct ndr_syntax_id
*abstract_syntax
,
5290 struct rpc_pipe_client
**presult
);
5291 NTSTATUS
rpc_pipe_open_ncalrpc(TALLOC_CTX
*mem_ctx
, const char *socket_path
,
5292 const struct ndr_syntax_id
*abstract_syntax
,
5293 struct rpc_pipe_client
**presult
);
5294 NTSTATUS
rpc_pipe_open_internal(TALLOC_CTX
*mem_ctx
, const struct ndr_syntax_id
*abstract_syntax
,
5295 NTSTATUS (*dispatch
) (struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
, const struct ndr_interface_table
*table
, uint32_t opnum
, void *r
),
5296 struct auth_serversupplied_info
*serversupplied_info
,
5297 struct rpc_pipe_client
**presult
);
5298 NTSTATUS
cli_rpc_pipe_open_noauth(struct cli_state
*cli
,
5299 const struct ndr_syntax_id
*interface
,
5300 struct rpc_pipe_client
**presult
);
5301 NTSTATUS
cli_rpc_pipe_open_ntlmssp(struct cli_state
*cli
,
5302 const struct ndr_syntax_id
*interface
,
5303 enum pipe_auth_level auth_level
,
5305 const char *username
,
5306 const char *password
,
5307 struct rpc_pipe_client
**presult
);
5308 NTSTATUS
cli_rpc_pipe_open_spnego_ntlmssp(struct cli_state
*cli
,
5309 const struct ndr_syntax_id
*interface
,
5310 enum pipe_auth_level auth_level
,
5312 const char *username
,
5313 const char *password
,
5314 struct rpc_pipe_client
**presult
);
5315 NTSTATUS
get_schannel_session_key(struct cli_state
*cli
,
5318 struct rpc_pipe_client
**presult
);
5319 NTSTATUS
cli_rpc_pipe_open_schannel_with_key(struct cli_state
*cli
,
5320 const struct ndr_syntax_id
*interface
,
5321 enum pipe_auth_level auth_level
,
5323 const struct dcinfo
*pdc
,
5324 struct rpc_pipe_client
**presult
);
5325 NTSTATUS
cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state
*cli
,
5326 const struct ndr_syntax_id
*interface
,
5327 enum pipe_auth_level auth_level
,
5329 const char *username
,
5330 const char *password
,
5331 struct rpc_pipe_client
**presult
);
5332 NTSTATUS
cli_rpc_pipe_open_schannel(struct cli_state
*cli
,
5333 const struct ndr_syntax_id
*interface
,
5334 enum pipe_auth_level auth_level
,
5336 struct rpc_pipe_client
**presult
);
5337 NTSTATUS
cli_rpc_pipe_open_krb5(struct cli_state
*cli
,
5338 const struct ndr_syntax_id
*interface
,
5339 enum pipe_auth_level auth_level
,
5340 const char *service_princ
,
5341 const char *username
,
5342 const char *password
,
5343 struct rpc_pipe_client
**presult
);
5344 NTSTATUS
cli_get_session_key(TALLOC_CTX
*mem_ctx
,
5345 struct rpc_pipe_client
*cli
,
5346 DATA_BLOB
*session_key
);
5347 NTSTATUS
rpc_pipe_open_local(TALLOC_CTX
*mem_ctx
,
5348 struct rpc_cli_smbd_conn
*conn
,
5349 const struct ndr_syntax_id
*syntax
,
5350 struct rpc_pipe_client
**presult
);
5352 /* The following definitions come from rpc_client/rpc_transport_np.c */
5354 struct async_req
*rpc_transport_np_init_send(TALLOC_CTX
*mem_ctx
,
5355 struct event_context
*ev
,
5356 struct cli_state
*cli
,
5357 const struct ndr_syntax_id
*abstract_syntax
);
5358 NTSTATUS
rpc_transport_np_init_recv(struct async_req
*req
,
5359 TALLOC_CTX
*mem_ctx
,
5360 struct rpc_cli_transport
**presult
);
5361 NTSTATUS
rpc_transport_np_init(TALLOC_CTX
*mem_ctx
, struct cli_state
*cli
,
5362 const struct ndr_syntax_id
*abstract_syntax
,
5363 struct rpc_cli_transport
**presult
);
5364 struct cli_state
*rpc_pipe_np_smb_conn(struct rpc_pipe_client
*p
);
5366 /* The following definitions come from rpc_client/rpc_transport_smbd.c */
5368 struct async_req
*rpc_cli_smbd_conn_init_send(TALLOC_CTX
*mem_ctx
,
5369 struct event_context
*ev
,
5370 void (*stdout_callback
)(char *buf
,
5374 NTSTATUS
rpc_cli_smbd_conn_init_recv(struct async_req
*req
,
5375 TALLOC_CTX
*mem_ctx
,
5376 struct rpc_cli_smbd_conn
**pconn
);
5377 NTSTATUS
rpc_cli_smbd_conn_init(TALLOC_CTX
*mem_ctx
,
5378 struct rpc_cli_smbd_conn
**pconn
,
5379 void (*stdout_callback
)(char *buf
,
5384 struct async_req
*rpc_transport_smbd_init_send(TALLOC_CTX
*mem_ctx
,
5385 struct event_context
*ev
,
5386 struct rpc_cli_smbd_conn
*conn
,
5387 const struct ndr_syntax_id
*abstract_syntax
);
5388 NTSTATUS
rpc_transport_smbd_init_recv(struct async_req
*req
,
5389 TALLOC_CTX
*mem_ctx
,
5390 struct rpc_cli_transport
**presult
);
5391 NTSTATUS
rpc_transport_smbd_init(TALLOC_CTX
*mem_ctx
,
5392 struct rpc_cli_smbd_conn
*conn
,
5393 const struct ndr_syntax_id
*abstract_syntax
,
5394 struct rpc_cli_transport
**presult
);
5396 /* The following definitions come from rpc_client/rpc_transport_sock.c */
5398 NTSTATUS
rpc_transport_sock_init(TALLOC_CTX
*mem_ctx
, int fd
,
5399 struct rpc_cli_transport
**presult
);
5401 /* The following definitions come from rpc_client/cli_reg.c */
5403 NTSTATUS
rpccli_winreg_Connect(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
5404 uint32 reg_type
, uint32 access_mask
,
5405 POLICY_HND
*reg_hnd
);
5407 /* The following definitions come from rpc_client/cli_samr.c */
5409 NTSTATUS
rpccli_samr_chgpasswd_user(struct rpc_pipe_client
*cli
,
5410 TALLOC_CTX
*mem_ctx
,
5411 struct policy_handle
*user_handle
,
5412 const char *newpassword
,
5413 const char *oldpassword
);
5414 NTSTATUS
rpccli_samr_chgpasswd_user2(struct rpc_pipe_client
*cli
,
5415 TALLOC_CTX
*mem_ctx
,
5416 const char *username
,
5417 const char *newpassword
,
5418 const char *oldpassword
);
5419 NTSTATUS
rpccli_samr_chng_pswd_auth_crap(struct rpc_pipe_client
*cli
,
5420 TALLOC_CTX
*mem_ctx
,
5421 const char *username
,
5422 DATA_BLOB new_nt_password_blob
,
5423 DATA_BLOB old_nt_hash_enc_blob
,
5424 DATA_BLOB new_lm_password_blob
,
5425 DATA_BLOB old_lm_hash_enc_blob
);
5426 NTSTATUS
rpccli_samr_chgpasswd_user3(struct rpc_pipe_client
*cli
,
5427 TALLOC_CTX
*mem_ctx
,
5428 const char *username
,
5429 const char *newpassword
,
5430 const char *oldpassword
,
5431 struct samr_DomInfo1
**dominfo1
,
5432 struct samr_ChangeReject
**reject
);
5433 void get_query_dispinfo_params(int loop_count
, uint32
*max_entries
,
5435 NTSTATUS
rpccli_try_samr_connects(struct rpc_pipe_client
*cli
,
5436 TALLOC_CTX
*mem_ctx
,
5437 uint32_t access_mask
,
5438 POLICY_HND
*connect_pol
);
5440 /* The following definitions come from rpc_client/cli_spoolss.c */
5442 WERROR
rpccli_spoolss_openprinter_ex(struct rpc_pipe_client
*cli
,
5443 TALLOC_CTX
*mem_ctx
,
5444 const char *printername
,
5445 uint32_t access_desired
,
5446 struct policy_handle
*handle
);
5447 WERROR
rpccli_spoolss_getprinterdriver2(struct rpc_pipe_client
*cli
,
5448 TALLOC_CTX
*mem_ctx
,
5449 struct policy_handle
*handle
,
5450 const char *architecture
,
5453 uint32_t client_major_version
,
5454 uint32_t client_minor_version
,
5455 union spoolss_DriverInfo
*info
,
5456 uint32_t *server_major_version
,
5457 uint32_t *server_minor_version
);
5458 WERROR
rpccli_spoolss_addprinterex(struct rpc_pipe_client
*cli
,
5459 TALLOC_CTX
*mem_ctx
,
5460 struct spoolss_SetPrinterInfoCtr
*info_ctr
);
5461 WERROR
rpccli_spoolss_getprinter(struct rpc_pipe_client
*cli
,
5462 TALLOC_CTX
*mem_ctx
,
5463 struct policy_handle
*handle
,
5466 union spoolss_PrinterInfo
*info
);
5467 WERROR
rpccli_spoolss_getjob(struct rpc_pipe_client
*cli
,
5468 TALLOC_CTX
*mem_ctx
,
5469 struct policy_handle
*handle
,
5473 union spoolss_JobInfo
*info
);
5474 WERROR
rpccli_spoolss_enumforms(struct rpc_pipe_client
*cli
,
5475 TALLOC_CTX
*mem_ctx
,
5476 struct policy_handle
*handle
,
5480 union spoolss_FormInfo
**info
);
5481 WERROR
rpccli_spoolss_enumprintprocessors(struct rpc_pipe_client
*cli
,
5482 TALLOC_CTX
*mem_ctx
,
5483 const char *servername
,
5484 const char *environment
,
5488 union spoolss_PrintProcessorInfo
**info
);
5489 WERROR
rpccli_spoolss_enumprintprocessordatatypes(struct rpc_pipe_client
*cli
,
5490 TALLOC_CTX
*mem_ctx
,
5491 const char *servername
,
5492 const char *print_processor_name
,
5496 union spoolss_PrintProcDataTypesInfo
**info
);
5497 WERROR
rpccli_spoolss_enumports(struct rpc_pipe_client
*cli
,
5498 TALLOC_CTX
*mem_ctx
,
5499 const char *servername
,
5503 union spoolss_PortInfo
**info
);
5504 WERROR
rpccli_spoolss_enummonitors(struct rpc_pipe_client
*cli
,
5505 TALLOC_CTX
*mem_ctx
,
5506 const char *servername
,
5510 union spoolss_MonitorInfo
**info
);
5511 WERROR
rpccli_spoolss_enumjobs(struct rpc_pipe_client
*cli
,
5512 TALLOC_CTX
*mem_ctx
,
5513 struct policy_handle
*handle
,
5519 union spoolss_JobInfo
**info
);
5520 WERROR
rpccli_spoolss_enumprinterdrivers(struct rpc_pipe_client
*cli
,
5521 TALLOC_CTX
*mem_ctx
,
5523 const char *environment
,
5527 union spoolss_DriverInfo
**info
);
5528 WERROR
rpccli_spoolss_enumprinters(struct rpc_pipe_client
*cli
,
5529 TALLOC_CTX
*mem_ctx
,
5535 union spoolss_PrinterInfo
**info
);
5536 WERROR
rpccli_spoolss_getprinterdata(struct rpc_pipe_client
*cli
,
5537 TALLOC_CTX
*mem_ctx
,
5538 struct policy_handle
*handle
,
5539 const char *value_name
,
5541 enum winreg_Type
*type
,
5542 union spoolss_PrinterData
*data
);
5543 WERROR
rpccli_spoolss_enumprinterkey(struct rpc_pipe_client
*cli
,
5544 TALLOC_CTX
*mem_ctx
,
5545 struct policy_handle
*handle
,
5546 const char *key_name
,
5547 const char ***key_buffer
,
5549 WERROR
rpccli_spoolss_enumprinterdataex(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
5550 POLICY_HND
*hnd
, const char *keyname
,
5553 /* The following definitions come from rpc_client/init_spoolss.c */
5555 bool init_systemtime(struct spoolss_Time
*r
,
5556 struct tm
*unixtime
);
5557 WERROR
pull_spoolss_PrinterData(TALLOC_CTX
*mem_ctx
,
5558 const DATA_BLOB
*blob
,
5559 union spoolss_PrinterData
*data
,
5560 enum winreg_Type type
);
5561 WERROR
push_spoolss_PrinterData(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
,
5562 enum winreg_Type type
,
5563 union spoolss_PrinterData
*data
);
5565 /* The following definitions come from rpc_client/init_lsa.c */
5567 void init_lsa_String(struct lsa_String
*name
, const char *s
);
5568 void init_lsa_StringLarge(struct lsa_StringLarge
*name
, const char *s
);
5569 void init_lsa_AsciiString(struct lsa_AsciiString
*name
, const char *s
);
5570 void init_lsa_AsciiStringLarge(struct lsa_AsciiStringLarge
*name
, const char *s
);
5572 /* The following definitions come from rpc_client/init_netlogon.c */
5574 void init_netr_SamBaseInfo(struct netr_SamBaseInfo
*r
,
5578 NTTIME last_password_change
,
5579 NTTIME allow_password_change
,
5580 NTTIME force_password_change
,
5581 const char *account_name
,
5582 const char *full_name
,
5583 const char *logon_script
,
5584 const char *profile_path
,
5585 const char *home_directory
,
5586 const char *home_drive
,
5587 uint16_t logon_count
,
5588 uint16_t bad_password_count
,
5590 uint32_t primary_gid
,
5591 struct samr_RidWithAttributeArray groups
,
5592 uint32_t user_flags
,
5593 struct netr_UserSessionKey key
,
5594 const char *logon_server
,
5596 struct dom_sid2
*domain_sid
,
5597 struct netr_LMSessionKey LMSessKey
,
5598 uint32_t acct_flags
);
5599 void init_netr_SamInfo3(struct netr_SamInfo3
*r
,
5603 NTTIME last_password_change
,
5604 NTTIME allow_password_change
,
5605 NTTIME force_password_change
,
5606 const char *account_name
,
5607 const char *full_name
,
5608 const char *logon_script
,
5609 const char *profile_path
,
5610 const char *home_directory
,
5611 const char *home_drive
,
5612 uint16_t logon_count
,
5613 uint16_t bad_password_count
,
5615 uint32_t primary_gid
,
5616 struct samr_RidWithAttributeArray groups
,
5617 uint32_t user_flags
,
5618 struct netr_UserSessionKey key
,
5619 const char *logon_server
,
5621 struct dom_sid2
*domain_sid
,
5622 struct netr_LMSessionKey LMSessKey
,
5623 uint32_t acct_flags
,
5625 struct netr_SidAttr
*sids
);
5626 NTSTATUS
serverinfo_to_SamInfo3(struct auth_serversupplied_info
*server_info
,
5627 uint8_t *pipe_session_key
,
5628 size_t pipe_session_key_len
,
5629 struct netr_SamInfo3
*sam3
);
5630 void init_netr_IdentityInfo(struct netr_IdentityInfo
*r
,
5631 const char *domain_name
,
5632 uint32_t parameter_control
,
5633 uint32_t logon_id_low
,
5634 uint32_t logon_id_high
,
5635 const char *account_name
,
5636 const char *workstation
);
5637 void init_netr_NetworkInfo(struct netr_NetworkInfo
*r
,
5638 const char *domain_name
,
5639 uint32_t parameter_control
,
5640 uint32_t logon_id_low
,
5641 uint32_t logon_id_high
,
5642 const char *account_name
,
5643 const char *workstation
,
5644 uint8_t challenge
[8],
5645 struct netr_ChallengeResponse nt
,
5646 struct netr_ChallengeResponse lm
);
5647 void init_netr_PasswordInfo(struct netr_PasswordInfo
*r
,
5648 const char *domain_name
,
5649 uint32_t parameter_control
,
5650 uint32_t logon_id_low
,
5651 uint32_t logon_id_high
,
5652 const char *account_name
,
5653 const char *workstation
,
5654 struct samr_Password lmpassword
,
5655 struct samr_Password ntpassword
);
5656 void init_netr_CryptPassword(const char *pwd
,
5657 unsigned char session_key
[16],
5658 struct netr_CryptPassword
*pwd_buf
);
5660 /* The following definitions come from rpc_client/init_samr.c */
5662 void init_samr_CryptPasswordEx(const char *pwd
,
5663 DATA_BLOB
*session_key
,
5664 struct samr_CryptPasswordEx
*pwd_buf
);
5665 void init_samr_CryptPassword(const char *pwd
,
5666 DATA_BLOB
*session_key
,
5667 struct samr_CryptPassword
*pwd_buf
);
5669 /* The following definitions come from rpc_client/ndr.c */
5671 NTSTATUS
cli_do_rpc_ndr(struct rpc_pipe_client
*cli
,
5672 TALLOC_CTX
*mem_ctx
,
5673 const struct ndr_interface_table
*table
,
5674 uint32 opnum
, void *r
);
5676 /* The following definitions come from rpc_parse/parse_misc.c */
5678 bool smb_io_time(const char *desc
, NTTIME
*nttime
, prs_struct
*ps
, int depth
);
5679 bool smb_io_nttime(const char *desc
, prs_struct
*ps
, int depth
, NTTIME
*nttime
);
5680 bool smb_io_dom_sid(const char *desc
, DOM_SID
*sid
, prs_struct
*ps
, int depth
);
5681 bool smb_io_uuid(const char *desc
, struct GUID
*uuid
,
5682 prs_struct
*ps
, int depth
);
5683 void init_unistr(UNISTR
*str
, const char *buf
);
5684 bool smb_io_unistr(const char *desc
, UNISTR
*uni
, prs_struct
*ps
, int depth
);
5685 bool smb_io_buffer5(const char *desc
, BUFFER5
*buf5
, prs_struct
*ps
, int depth
);
5686 void init_buf_unistr2(UNISTR2
*str
, uint32
*ptr
, const char *buf
);
5687 void copy_unistr2(UNISTR2
*str
, const UNISTR2
*from
);
5688 void init_unistr2(UNISTR2
*str
, const char *buf
, enum unistr2_term_codes flags
);
5689 void init_unistr2_w(TALLOC_CTX
*ctx
, UNISTR2
*str
, const smb_ucs2_t
*buf
);
5690 void init_unistr2_from_unistr(TALLOC_CTX
*ctx
, UNISTR2
*to
, const UNISTR
*from
);
5691 void init_unistr2_from_datablob(UNISTR2
*str
, DATA_BLOB
*blob
) ;
5692 bool prs_io_unistr2_p(const char *desc
, prs_struct
*ps
, int depth
, UNISTR2
**uni2
);
5693 bool prs_io_unistr2(const char *desc
, prs_struct
*ps
, int depth
, UNISTR2
*uni2
);
5694 bool smb_io_unistr2(const char *desc
, UNISTR2
*uni2
, uint32 buffer
, prs_struct
*ps
, int depth
);
5695 bool smb_io_pol_hnd(const char *desc
, POLICY_HND
*pol
, prs_struct
*ps
, int depth
);
5696 void init_unistr3(UNISTR3
*str
, const char *buf
);
5697 bool smb_io_unistr3(const char *desc
, UNISTR3
*name
, prs_struct
*ps
, int depth
);
5698 bool prs_uint64(const char *name
, prs_struct
*ps
, int depth
, uint64
*data64
);
5699 uint32
str_len_uni(UNISTR
*source
);
5700 bool policy_handle_is_valid(const POLICY_HND
*hnd
);
5702 /* The following definitions come from rpc_parse/parse_prs.c */
5704 void prs_dump(const char *name
, int v
, prs_struct
*ps
);
5705 void prs_dump_before(const char *name
, int v
, prs_struct
*ps
);
5706 void prs_dump_region(const char *name
, int v
, prs_struct
*ps
,
5707 int from_off
, int to_off
);
5708 void prs_debug(prs_struct
*ps
, int depth
, const char *desc
, const char *fn_name
);
5709 bool prs_init(prs_struct
*ps
, uint32 size
, TALLOC_CTX
*ctx
, bool io
);
5710 void prs_mem_free(prs_struct
*ps
);
5711 void prs_mem_clear(prs_struct
*ps
);
5712 char *prs_alloc_mem_(prs_struct
*ps
, size_t size
, unsigned int count
);
5713 char *prs_alloc_mem(prs_struct
*ps
, size_t size
, unsigned int count
);
5714 TALLOC_CTX
*prs_get_mem_context(prs_struct
*ps
);
5715 void prs_give_memory(prs_struct
*ps
, char *buf
, uint32 size
, bool is_dynamic
);
5716 char *prs_take_memory(prs_struct
*ps
, uint32
*psize
);
5717 bool prs_set_buffer_size(prs_struct
*ps
, uint32 newsize
);
5718 bool prs_grow(prs_struct
*ps
, uint32 extra_space
);
5719 bool prs_force_grow(prs_struct
*ps
, uint32 extra_space
);
5720 char *prs_data_p(prs_struct
*ps
);
5721 uint32
prs_data_size(prs_struct
*ps
);
5722 uint32
prs_offset(prs_struct
*ps
);
5723 bool prs_set_offset(prs_struct
*ps
, uint32 offset
);
5724 bool prs_append_prs_data(prs_struct
*dst
, prs_struct
*src
);
5725 bool prs_append_some_data(prs_struct
*dst
, void *src_base
, uint32_t start
,
5727 bool prs_append_some_prs_data(prs_struct
*dst
, prs_struct
*src
, int32 start
, uint32 len
);
5728 bool prs_copy_data_in(prs_struct
*dst
, const char *src
, uint32 len
);
5729 bool prs_copy_data_out(char *dst
, prs_struct
*src
, uint32 len
);
5730 bool prs_copy_all_data_out(char *dst
, prs_struct
*src
);
5731 void prs_set_endian_data(prs_struct
*ps
, bool endian
);
5732 bool prs_align(prs_struct
*ps
);
5733 bool prs_align_uint16(prs_struct
*ps
);
5734 bool prs_align_uint64(prs_struct
*ps
);
5735 bool prs_align_custom(prs_struct
*ps
, uint8 boundary
);
5736 bool prs_align_needed(prs_struct
*ps
, uint32 needed
);
5737 char *prs_mem_get(prs_struct
*ps
, uint32 extra_size
);
5738 void prs_switch_type(prs_struct
*ps
, bool io
);
5739 void prs_force_dynamic(prs_struct
*ps
);
5740 void prs_set_session_key(prs_struct
*ps
, const char sess_key
[16]);
5741 bool prs_uint8(const char *name
, prs_struct
*ps
, int depth
, uint8
*data8
);
5742 bool prs_pointer( const char *name
, prs_struct
*ps
, int depth
,
5743 void *dta
, size_t data_size
,
5744 bool (*prs_fn
)(const char*, prs_struct
*, int, void*) );
5745 bool prs_uint16(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
);
5746 bool prs_uint32(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
);
5747 bool prs_int32(const char *name
, prs_struct
*ps
, int depth
, int32
*data32
);
5748 bool prs_ntstatus(const char *name
, prs_struct
*ps
, int depth
, NTSTATUS
*status
);
5749 bool prs_dcerpc_status(const char *name
, prs_struct
*ps
, int depth
, NTSTATUS
*status
);
5750 bool prs_werror(const char *name
, prs_struct
*ps
, int depth
, WERROR
*status
);
5751 bool prs_uint8s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint8
*data8s
, int len
);
5752 bool prs_uint16s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint16
*data16s
, int len
);
5753 bool prs_uint16uni(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint16
*data16s
, int len
);
5754 bool prs_uint32s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint32
*data32s
, int len
);
5755 bool prs_buffer5(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, BUFFER5
*str
);
5756 bool prs_unistr2(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, UNISTR2
*str
);
5757 bool prs_unistr3(bool charmode
, const char *name
, UNISTR3
*str
, prs_struct
*ps
, int depth
);
5758 bool prs_unistr(const char *name
, prs_struct
*ps
, int depth
, UNISTR
*str
);
5759 bool prs_string(const char *name
, prs_struct
*ps
, int depth
, char *str
, int max_buf_size
);
5760 bool prs_string_alloc(const char *name
, prs_struct
*ps
, int depth
, const char **str
);
5761 bool prs_uint16_pre(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
, uint32
*offset
);
5762 bool prs_uint16_post(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
,
5763 uint32 ptr_uint16
, uint32 start_offset
);
5764 bool prs_uint32_pre(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
, uint32
*offset
);
5765 bool prs_uint32_post(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
,
5766 uint32 ptr_uint32
, uint32 data_size
);
5767 int tdb_prs_store(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, prs_struct
*ps
);
5768 int tdb_prs_fetch(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, prs_struct
*ps
, TALLOC_CTX
*mem_ctx
);
5769 bool prs_hash1(prs_struct
*ps
, uint32 offset
, int len
);
5770 void schannel_encode(struct schannel_auth_struct
*a
, enum pipe_auth_level auth_level
,
5771 enum schannel_direction direction
,
5772 RPC_AUTH_SCHANNEL_CHK
* verf
,
5773 char *data
, size_t data_len
);
5774 bool schannel_decode(struct schannel_auth_struct
*a
, enum pipe_auth_level auth_level
,
5775 enum schannel_direction direction
,
5776 RPC_AUTH_SCHANNEL_CHK
* verf
, char *data
, size_t data_len
);
5777 bool prs_init_data_blob(prs_struct
*prs
, DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
);
5778 bool prs_data_blob(prs_struct
*prs
, DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
);
5780 /* The following definitions come from rpc_parse/parse_rpc.c */
5782 const char *get_pipe_name_from_iface(const struct ndr_syntax_id
*interface
);
5783 void init_rpc_hdr(RPC_HDR
*hdr
, enum RPC_PKT_TYPE pkt_type
, uint8 flags
,
5784 uint32 call_id
, int data_len
, int auth_len
);
5785 bool smb_io_rpc_hdr(const char *desc
, RPC_HDR
*rpc
, prs_struct
*ps
, int depth
);
5786 void init_rpc_context(RPC_CONTEXT
*rpc_ctx
, uint16 context_id
,
5787 const RPC_IFACE
*abstract
, const RPC_IFACE
*transfer
);
5788 void init_rpc_hdr_rb(RPC_HDR_RB
*rpc
,
5789 uint16 max_tsize
, uint16 max_rsize
, uint32 assoc_gid
,
5790 RPC_CONTEXT
*context
);
5791 bool smb_io_rpc_context(const char *desc
, RPC_CONTEXT
*rpc_ctx
, prs_struct
*ps
, int depth
);
5792 bool smb_io_rpc_hdr_rb(const char *desc
, RPC_HDR_RB
*rpc
, prs_struct
*ps
, int depth
);
5793 void init_rpc_hdr_ba(RPC_HDR_BA
*rpc
,
5794 uint16 max_tsize
, uint16 max_rsize
, uint32 assoc_gid
,
5795 const char *pipe_addr
,
5796 uint8 num_results
, uint16 result
, uint16 reason
,
5797 RPC_IFACE
*transfer
);
5798 bool smb_io_rpc_hdr_ba(const char *desc
, RPC_HDR_BA
*rpc
, prs_struct
*ps
, int depth
);
5799 void init_rpc_hdr_req(RPC_HDR_REQ
*hdr
, uint32 alloc_hint
, uint16 opnum
);
5800 bool smb_io_rpc_hdr_req(const char *desc
, RPC_HDR_REQ
*rpc
, prs_struct
*ps
, int depth
);
5801 bool smb_io_rpc_hdr_resp(const char *desc
, RPC_HDR_RESP
*rpc
, prs_struct
*ps
, int depth
);
5802 bool smb_io_rpc_hdr_fault(const char *desc
, RPC_HDR_FAULT
*rpc
, prs_struct
*ps
, int depth
);
5803 void init_rpc_hdr_auth(RPC_HDR_AUTH
*rai
,
5804 uint8 auth_type
, uint8 auth_level
,
5806 uint32 auth_context_id
);
5807 bool smb_io_rpc_hdr_auth(const char *desc
, RPC_HDR_AUTH
*rai
, prs_struct
*ps
, int depth
);
5808 bool rpc_auth_verifier_chk(RPC_AUTH_VERIFIER
*rav
,
5809 const char *signature
, uint32 msg_type
);
5810 void init_rpc_auth_verifier(RPC_AUTH_VERIFIER
*rav
,
5811 const char *signature
, uint32 msg_type
);
5812 bool smb_io_rpc_auth_verifier(const char *desc
, RPC_AUTH_VERIFIER
*rav
, prs_struct
*ps
, int depth
);
5813 bool smb_io_rpc_schannel_verifier(const char *desc
, RPC_AUTH_VERIFIER
*rav
, prs_struct
*ps
, int depth
);
5814 void init_rpc_auth_schannel_neg(RPC_AUTH_SCHANNEL_NEG
*neg
,
5815 const char *domain
, const char *myname
);
5816 bool smb_io_rpc_auth_schannel_neg(const char *desc
, RPC_AUTH_SCHANNEL_NEG
*neg
,
5817 prs_struct
*ps
, int depth
);
5818 bool smb_io_rpc_auth_schannel_chk(const char *desc
, int auth_len
,
5819 RPC_AUTH_SCHANNEL_CHK
* chk
,
5820 prs_struct
*ps
, int depth
);
5822 /* The following definitions come from rpc_parse/parse_sec.c */
5824 bool sec_io_desc(const char *desc
, SEC_DESC
**ppsd
, prs_struct
*ps
, int depth
);
5825 bool sec_io_desc_buf(const char *desc
, SEC_DESC_BUF
**ppsdb
, prs_struct
*ps
, int depth
);
5827 /* The following definitions come from rpc_parse/parse_spoolss.c */
5829 bool spoolss_io_system_time(const char *desc
, prs_struct
*ps
, int depth
, SYSTEMTIME
*systime
);
5830 bool make_systemtime(SYSTEMTIME
*systime
, struct tm
*unixtime
);
5831 bool spoolss_io_devmode(const char *desc
, prs_struct
*ps
, int depth
, DEVICEMODE
*devmode
);
5832 uint32
spoolss_size_printer_enum_values(PRINTER_ENUM_VALUES
*p
);
5833 bool make_spoolss_buffer5(TALLOC_CTX
*mem_ctx
, BUFFER5
*buf5
, uint32 len
, uint16
*src
);
5834 bool make_spoolss_q_enumprinterdataex(SPOOL_Q_ENUMPRINTERDATAEX
*q_u
,
5835 const POLICY_HND
*hnd
, const char *key
,
5837 bool spoolss_io_q_enumprinterdataex(const char *desc
, SPOOL_Q_ENUMPRINTERDATAEX
*q_u
, prs_struct
*ps
, int depth
);
5838 bool spoolss_io_r_enumprinterdataex(const char *desc
, SPOOL_R_ENUMPRINTERDATAEX
*r_u
, prs_struct
*ps
, int depth
);
5840 /* The following definitions come from rpc_server/srv_eventlog_lib.c */
5842 TDB_CONTEXT
*elog_init_tdb( char *tdbfilename
);
5843 char *elog_tdbname(TALLOC_CTX
*ctx
, const char *name
);
5844 int elog_tdb_size( TDB_CONTEXT
* tdb
, int *MaxSize
, int *Retention
);
5845 bool prune_eventlog( TDB_CONTEXT
* tdb
);
5846 ELOG_TDB
*elog_open_tdb( const char *logname
, bool force_clear
, bool read_only
);
5847 int elog_close_tdb( ELOG_TDB
*etdb
, bool force_close
);
5848 bool parse_logentry( TALLOC_CTX
*mem_ctx
, char *line
, struct eventlog_Record_tdb
*entry
, bool * eor
);
5849 size_t fixup_eventlog_record_tdb(struct eventlog_Record_tdb
*r
);
5850 struct eventlog_Record_tdb
*evlog_pull_record_tdb(TALLOC_CTX
*mem_ctx
,
5852 uint32_t record_number
);
5853 NTSTATUS
evlog_push_record_tdb(TALLOC_CTX
*mem_ctx
,
5855 struct eventlog_Record_tdb
*r
,
5856 uint32_t *record_number
);
5857 NTSTATUS
evlog_push_record(TALLOC_CTX
*mem_ctx
,
5859 struct EVENTLOGRECORD
*r
,
5860 uint32_t *record_number
);
5861 struct EVENTLOGRECORD
*evlog_pull_record(TALLOC_CTX
*mem_ctx
,
5863 uint32_t record_number
);
5864 NTSTATUS
evlog_evt_entry_to_tdb_entry(TALLOC_CTX
*mem_ctx
,
5865 const struct EVENTLOGRECORD
*e
,
5866 struct eventlog_Record_tdb
*t
);
5867 NTSTATUS
evlog_tdb_entry_to_evt_entry(TALLOC_CTX
*mem_ctx
,
5868 const struct eventlog_Record_tdb
*t
,
5869 struct EVENTLOGRECORD
*e
);
5871 /* The following definitions come from rpc_server/srv_eventlog_nt.c */
5873 /* The following definitions come from rpc_server/srv_lsa_hnd.c */
5875 bool init_pipe_handle_list(pipes_struct
*p
,
5876 const struct ndr_syntax_id
*syntax
);
5877 bool create_policy_hnd(pipes_struct
*p
, POLICY_HND
*hnd
, void *data_ptr
);
5878 bool find_policy_by_hnd(pipes_struct
*p
, POLICY_HND
*hnd
, void **data_p
);
5879 bool close_policy_hnd(pipes_struct
*p
, POLICY_HND
*hnd
);
5880 void close_policy_by_pipe(pipes_struct
*p
);
5881 bool pipe_access_check(pipes_struct
*p
);
5883 /* The following definitions come from rpc_server/srv_pipe.c */
5885 bool create_next_pdu(pipes_struct
*p
);
5886 bool api_pipe_bind_auth3(pipes_struct
*p
, prs_struct
*rpc_in_p
);
5887 bool setup_fault_pdu(pipes_struct
*p
, NTSTATUS status
);
5888 bool setup_cancel_ack_reply(pipes_struct
*p
, prs_struct
*rpc_in_p
);
5889 bool check_bind_req(struct pipes_struct
*p
, RPC_IFACE
* abstract
,
5890 RPC_IFACE
* transfer
, uint32 context_id
);
5891 NTSTATUS
rpc_pipe_register_commands(int version
, const char *clnt
,
5893 const struct ndr_syntax_id
*interface
,
5894 const struct api_struct
*cmds
, int size
);
5895 NTSTATUS
rpc_srv_register(int version
, const char *clnt
,
5897 const struct ndr_interface_table
*iface
,
5898 const struct api_struct
*cmds
, int size
);
5899 bool is_known_pipename(const char *cli_filename
, struct ndr_syntax_id
*syntax
);
5900 bool api_pipe_bind_req(pipes_struct
*p
, prs_struct
*rpc_in_p
);
5901 bool api_pipe_alter_context(pipes_struct
*p
, prs_struct
*rpc_in_p
);
5902 bool api_pipe_ntlmssp_auth_process(pipes_struct
*p
, prs_struct
*rpc_in
,
5903 uint32
*p_ss_padding_len
, NTSTATUS
*pstatus
);
5904 bool api_pipe_schannel_process(pipes_struct
*p
, prs_struct
*rpc_in
, uint32
*p_ss_padding_len
);
5905 void free_pipe_rpc_context( PIPE_RPC_FNS
*list
);
5906 bool api_pipe_request(pipes_struct
*p
);
5908 /* The following definitions come from rpc_server/srv_pipe_hnd.c */
5910 pipes_struct
*get_first_internal_pipe(void);
5911 pipes_struct
*get_next_internal_pipe(pipes_struct
*p
);
5913 bool fsp_is_np(struct files_struct
*fsp
);
5914 NTSTATUS
np_open(TALLOC_CTX
*mem_ctx
, const char *name
,
5915 const char *client_address
,
5916 struct auth_serversupplied_info
*server_info
,
5917 struct fake_file_handle
**phandle
);
5918 struct tevent_req
*np_write_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
5919 struct fake_file_handle
*handle
,
5920 const uint8_t *data
, size_t len
);
5921 NTSTATUS
np_write_recv(struct tevent_req
*req
, ssize_t
*pnwritten
);
5922 struct async_req
*np_read_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
5923 struct fake_file_handle
*handle
,
5924 uint8_t *data
, size_t len
);
5925 NTSTATUS
np_read_recv(struct async_req
*req
, ssize_t
*nread
,
5926 bool *is_data_outstanding
);
5928 /* The following definitions come from rpc_server/srv_samr_util.c */
5930 void copy_id20_to_sam_passwd(struct samu
*to
,
5931 struct samr_UserInfo20
*from
);
5932 void copy_id21_to_sam_passwd(const char *log_prefix
,
5934 struct samr_UserInfo21
*from
);
5935 void copy_id23_to_sam_passwd(struct samu
*to
,
5936 struct samr_UserInfo23
*from
);
5937 void copy_id25_to_sam_passwd(struct samu
*to
,
5938 struct samr_UserInfo25
*from
);
5940 /* The following definitions come from rpc_server/srv_spoolss.c */
5942 void spoolss2_get_pipe_fns( struct api_struct
**fns
, int *n_fns
);
5943 NTSTATUS
rpc_spoolss2_init(void);
5945 /* The following definitions come from rpc_server/srv_spoolss_nt.c */
5947 WERROR
delete_printer_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, const char *sharename
);
5948 void do_drv_upgrade_printer(struct messaging_context
*msg
,
5951 struct server_id server_id
,
5953 void update_monitored_printq_cache( void );
5954 void reset_all_printerdata(struct messaging_context
*msg
,
5957 struct server_id server_id
,
5959 bool convert_devicemode(const char *printername
, const DEVICEMODE
*devmode
,
5960 NT_DEVICEMODE
**pp_nt_devmode
);
5961 WERROR
set_printer_dataex( NT_PRINTER_INFO_LEVEL
*printer
, const char *key
, const char *value
,
5962 uint32 type
, uint8
*data
, int real_len
);
5963 void spoolss_notify_server_name(int snum
,
5964 struct spoolss_Notify
*data
,
5965 print_queue_struct
*queue
,
5966 NT_PRINTER_INFO_LEVEL
*printer
,
5967 TALLOC_CTX
*mem_ctx
);
5968 void spoolss_notify_printer_name(int snum
,
5969 struct spoolss_Notify
*data
,
5970 print_queue_struct
*queue
,
5971 NT_PRINTER_INFO_LEVEL
*printer
,
5972 TALLOC_CTX
*mem_ctx
);
5973 void spoolss_notify_share_name(int snum
,
5974 struct spoolss_Notify
*data
,
5975 print_queue_struct
*queue
,
5976 NT_PRINTER_INFO_LEVEL
*printer
,
5977 TALLOC_CTX
*mem_ctx
);
5978 void spoolss_notify_port_name(int snum
,
5979 struct spoolss_Notify
*data
,
5980 print_queue_struct
*queue
,
5981 NT_PRINTER_INFO_LEVEL
*printer
,
5982 TALLOC_CTX
*mem_ctx
);
5983 void spoolss_notify_driver_name(int snum
,
5984 struct spoolss_Notify
*data
,
5985 print_queue_struct
*queue
,
5986 NT_PRINTER_INFO_LEVEL
*printer
,
5987 TALLOC_CTX
*mem_ctx
);
5988 void spoolss_notify_comment(int snum
,
5989 struct spoolss_Notify
*data
,
5990 print_queue_struct
*queue
,
5991 NT_PRINTER_INFO_LEVEL
*printer
,
5992 TALLOC_CTX
*mem_ctx
);
5993 void spoolss_notify_location(int snum
,
5994 struct spoolss_Notify
*data
,
5995 print_queue_struct
*queue
,
5996 NT_PRINTER_INFO_LEVEL
*printer
,
5997 TALLOC_CTX
*mem_ctx
);
5998 void spoolss_notify_sepfile(int snum
,
5999 struct spoolss_Notify
*data
,
6000 print_queue_struct
*queue
,
6001 NT_PRINTER_INFO_LEVEL
*printer
,
6002 TALLOC_CTX
*mem_ctx
);
6003 void spoolss_notify_print_processor(int snum
,
6004 struct spoolss_Notify
*data
,
6005 print_queue_struct
*queue
,
6006 NT_PRINTER_INFO_LEVEL
*printer
,
6007 TALLOC_CTX
*mem_ctx
);
6008 void spoolss_notify_parameters(int snum
,
6009 struct spoolss_Notify
*data
,
6010 print_queue_struct
*queue
,
6011 NT_PRINTER_INFO_LEVEL
*printer
,
6012 TALLOC_CTX
*mem_ctx
);
6013 void spoolss_notify_datatype(int snum
,
6014 struct spoolss_Notify
*data
,
6015 print_queue_struct
*queue
,
6016 NT_PRINTER_INFO_LEVEL
*printer
,
6017 TALLOC_CTX
*mem_ctx
);
6018 void spoolss_notify_attributes(int snum
,
6019 struct spoolss_Notify
*data
,
6020 print_queue_struct
*queue
,
6021 NT_PRINTER_INFO_LEVEL
*printer
,
6022 TALLOC_CTX
*mem_ctx
);
6023 void spoolss_notify_cjobs(int snum
,
6024 struct spoolss_Notify
*data
,
6025 print_queue_struct
*queue
,
6026 NT_PRINTER_INFO_LEVEL
*printer
,
6027 TALLOC_CTX
*mem_ctx
);
6028 void construct_info_data(struct spoolss_Notify
*info_data
,
6029 enum spoolss_NotifyType type
,
6030 enum spoolss_Field field
,
6032 DEVICEMODE
*construct_dev_mode(const char *servicename
);
6033 struct spoolss_DeviceMode
*construct_dev_mode_new(TALLOC_CTX
*mem_ctx
,
6034 const char *servicename
);
6035 WERROR
add_port_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, const char *portname
, const char *uri
);
6036 bool add_printer_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, NT_PRINTER_INFO_LEVEL
*printer
);
6037 WERROR
enumports_hook(TALLOC_CTX
*ctx
, int *count
, char ***lines
);
6038 WERROR
_spoolss_enumprinterdataex(pipes_struct
*p
, SPOOL_Q_ENUMPRINTERDATAEX
*q_u
, SPOOL_R_ENUMPRINTERDATAEX
*r_u
);
6040 /* The following definitions come from rpc_server/srv_srvsvc_nt.c */
6042 char *valid_share_pathname(TALLOC_CTX
*ctx
, const char *dos_pathname
);
6044 /* The following definitions come from rpc_server/srv_svcctl_nt.c */
6046 bool init_service_op_table( void );
6048 /* The following definitions come from rpcclient/cmd_dfs.c */
6051 /* The following definitions come from rpcclient/cmd_dssetup.c */
6054 /* The following definitions come from rpcclient/cmd_echo.c */
6057 /* The following definitions come from rpcclient/cmd_lsarpc.c */
6060 /* The following definitions come from rpcclient/cmd_netlogon.c */
6063 /* The following definitions come from rpcclient/cmd_ntsvcs.c */
6066 /* The following definitions come from rpcclient/cmd_samr.c */
6069 /* The following definitions come from rpcclient/cmd_shutdown.c */
6072 /* The following definitions come from rpcclient/cmd_spoolss.c */
6075 /* The following definitions come from rpcclient/cmd_srvsvc.c */
6078 /* The following definitions come from rpcclient/cmd_test.c */
6081 /* The following definitions come from rpcclient/cmd_wkssvc.c */
6084 /* The following definitions come from rpcclient/rpcclient.c */
6087 /* The following definitions come from services/services_db.c */
6089 void svcctl_init_keys( void );
6090 SEC_DESC
*svcctl_get_secdesc( TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
6091 bool svcctl_set_secdesc( TALLOC_CTX
*ctx
, const char *name
, SEC_DESC
*sec_desc
, NT_USER_TOKEN
*token
);
6092 const char *svcctl_lookup_dispname(TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
6093 const char *svcctl_lookup_description(TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
6094 REGVAL_CTR
*svcctl_fetch_regvalues( const char *name
, NT_USER_TOKEN
*token
);
6096 /* The following definitions come from services/svc_netlogon.c */
6099 /* The following definitions come from services/svc_rcinit.c */
6102 /* The following definitions come from services/svc_spoolss.c */
6105 /* The following definitions come from services/svc_winreg.c */
6108 /* The following definitions come from services/svc_wins.c */
6111 /* The following definitions come from smbd/aio.c */
6113 void initialize_async_io_handler(void);
6114 bool schedule_aio_read_and_X(connection_struct
*conn
,
6115 struct smb_request
*req
,
6116 files_struct
*fsp
, SMB_OFF_T startpos
,
6118 bool schedule_aio_write_and_X(connection_struct
*conn
,
6119 struct smb_request
*req
,
6120 files_struct
*fsp
, char *data
,
6123 int wait_for_aio_completion(files_struct
*fsp
);
6124 void cancel_aio_by_fsp(files_struct
*fsp
);
6125 void smbd_aio_complete_mid(unsigned int mid
);
6127 /* The following definitions come from smbd/blocking.c */
6129 void process_blocking_lock_queue(void);
6130 bool push_blocking_lock_request( struct byte_range_lock
*br_lck
,
6131 struct smb_request
*req
,
6136 enum brl_type lock_type
,
6137 enum brl_flavour lock_flav
,
6140 uint32 blocking_pid
);
6141 void cancel_pending_lock_requests_by_fid(files_struct
*fsp
, struct byte_range_lock
*br_lck
);
6142 void remove_pending_lock_requests_by_mid(int mid
);
6143 bool blocking_lock_was_deferred(int mid
);
6144 struct blocking_lock_record
*blocking_lock_cancel(files_struct
*fsp
,
6148 enum brl_flavour lock_flav
,
6149 unsigned char locktype
,
6152 /* The following definitions come from smbd/change_trust_pw.c */
6154 NTSTATUS
change_trust_account_password( const char *domain
, const char *remote_machine
);
6156 /* The following definitions come from smbd/chgpasswd.c */
6158 bool chgpasswd(const char *name
, const struct passwd
*pass
,
6159 const char *oldpass
, const char *newpass
, bool as_root
);
6160 bool chgpasswd(const char *name
, const struct passwd
*pass
,
6161 const char *oldpass
, const char *newpass
, bool as_root
);
6162 bool check_lanman_password(char *user
, uchar
* pass1
,
6163 uchar
* pass2
, struct samu
**hnd
);
6164 bool change_lanman_password(struct samu
*sampass
, uchar
*pass2
);
6165 NTSTATUS
pass_oem_change(char *user
,
6166 uchar password_encrypted_with_lm_hash
[516],
6167 const uchar old_lm_hash_encrypted
[16],
6168 uchar password_encrypted_with_nt_hash
[516],
6169 const uchar old_nt_hash_encrypted
[16],
6170 uint32
*reject_reason
);
6171 NTSTATUS
change_oem_password(struct samu
*hnd
, char *old_passwd
, char *new_passwd
, bool as_root
, uint32
*samr_reject_reason
);
6173 /* The following definitions come from smbd/close.c */
6175 void set_close_write_time(struct files_struct
*fsp
, struct timespec ts
);
6176 NTSTATUS
close_file(struct smb_request
*req
, files_struct
*fsp
,
6177 enum file_close_type close_type
);
6178 void msg_close_file(struct messaging_context
*msg_ctx
,
6181 struct server_id server_id
,
6183 NTSTATUS
delete_all_streams(connection_struct
*conn
, const char *fname
);
6185 /* The following definitions come from smbd/conn.c */
6187 void conn_init(void);
6188 int conn_num_open(void);
6189 bool conn_snum_used(int snum
);
6190 connection_struct
*conn_find(unsigned cnum
);
6191 connection_struct
*conn_new(void);
6192 bool conn_close_all(void);
6193 bool conn_idle_all(time_t t
);
6194 void conn_clear_vuid_caches(uint16 vuid
);
6195 void conn_free_internal(connection_struct
*conn
);
6196 void conn_free(connection_struct
*conn
);
6197 void msg_force_tdis(struct messaging_context
*msg
,
6200 struct server_id server_id
,
6203 /* The following definitions come from smbd/connection.c */
6205 bool yield_connection(connection_struct
*conn
, const char *name
);
6206 int count_current_connections( const char *sharename
, bool clear
);
6207 int count_all_current_connections(void);
6208 bool claim_connection(connection_struct
*conn
, const char *name
,
6210 bool register_message_flags(bool doreg
, uint32 msg_flags
);
6212 /* The following definitions come from smbd/dfree.c */
6214 uint64_t sys_disk_free(connection_struct
*conn
, const char *path
, bool small_query
,
6215 uint64_t *bsize
,uint64_t *dfree
,uint64_t *dsize
);
6216 uint64_t get_dfree_info(connection_struct
*conn
,
6223 /* The following definitions come from smbd/dir.c */
6225 bool make_dir_struct(TALLOC_CTX
*ctx
,
6233 void init_dptrs(void);
6234 char *dptr_path(int key
);
6235 char *dptr_wcard(int key
);
6236 uint16
dptr_attr(int key
);
6237 void dptr_close(int *key
);
6238 void dptr_closecnum(connection_struct
*conn
);
6239 void dptr_idlecnum(connection_struct
*conn
);
6240 void dptr_closepath(char *path
,uint16 spid
);
6241 NTSTATUS
dptr_create(connection_struct
*conn
, const char *path
, bool old_handle
, bool expect_close
,uint16 spid
,
6242 const char *wcard
, bool wcard_has_wild
, uint32 attr
, struct dptr_struct
**dptr_ret
);
6243 int dptr_CloseDir(struct dptr_struct
*dptr
);
6244 void dptr_SeekDir(struct dptr_struct
*dptr
, long offset
);
6245 long dptr_TellDir(struct dptr_struct
*dptr
);
6246 bool dptr_has_wild(struct dptr_struct
*dptr
);
6247 int dptr_dnum(struct dptr_struct
*dptr
);
6248 const char *dptr_ReadDirName(TALLOC_CTX
*ctx
,
6249 struct dptr_struct
*dptr
,
6251 SMB_STRUCT_STAT
*pst
);
6252 bool dptr_SearchDir(struct dptr_struct
*dptr
, const char *name
, long *poffset
, SMB_STRUCT_STAT
*pst
);
6253 void dptr_DirCacheAdd(struct dptr_struct
*dptr
, const char *name
, long offset
);
6254 void dptr_init_search_op(struct dptr_struct
*dptr
);
6255 bool dptr_fill(char *buf1
,unsigned int key
);
6256 struct dptr_struct
*dptr_fetch(char *buf
,int *num
);
6257 struct dptr_struct
*dptr_fetch_lanman2(int dptr_num
);
6258 bool dir_check_ftype(connection_struct
*conn
, uint32 mode
, uint32 dirtype
);
6259 bool get_dir_entry(TALLOC_CTX
*ctx
,
6260 connection_struct
*conn
,
6263 char **pp_fname_out
,
6268 bool ask_sharemode
);
6269 bool is_visible_file(connection_struct
*conn
, const char *dir_path
, const char *name
, SMB_STRUCT_STAT
*pst
, bool use_veto
);
6270 struct smb_Dir
*OpenDir(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
6271 const char *name
, const char *mask
, uint32 attr
);
6272 const char *ReadDirName(struct smb_Dir
*dirp
, long *poffset
,
6273 SMB_STRUCT_STAT
*sbuf
);
6274 void RewindDir(struct smb_Dir
*dirp
, long *poffset
);
6275 void SeekDir(struct smb_Dir
*dirp
, long offset
);
6276 long TellDir(struct smb_Dir
*dirp
);
6277 void DirCacheAdd(struct smb_Dir
*dirp
, const char *name
, long offset
);
6278 bool SearchDir(struct smb_Dir
*dirp
, const char *name
, long *poffset
);
6279 NTSTATUS
can_delete_directory(struct connection_struct
*conn
,
6280 const char *dirname
);
6282 /* The following definitions come from smbd/dmapi.c */
6284 const void *dmapi_get_current_session(void);
6285 bool dmapi_have_session(void);
6286 bool dmapi_new_session(void);
6287 bool dmapi_destroy_session(void);
6288 uint32
dmapi_file_flags(const char * const path
);
6290 /* The following definitions come from smbd/dnsregister.c */
6292 bool smbd_setup_mdns_registration(struct tevent_context
*ev
,
6293 TALLOC_CTX
*mem_ctx
,
6296 /* The following definitions come from smbd/dosmode.c */
6298 mode_t
unix_mode(connection_struct
*conn
, int dosmode
, const char *fname
,
6299 const char *inherit_from_dir
);
6300 uint32
dos_mode_msdfs(connection_struct
*conn
, const char *path
,SMB_STRUCT_STAT
*sbuf
);
6301 int dos_attributes_to_stat_dos_flags(uint32_t dosmode
);
6302 uint32
dos_mode(connection_struct
*conn
, const char *path
,SMB_STRUCT_STAT
*sbuf
);
6303 int file_set_dosmode(connection_struct
*conn
, const char *fname
,
6304 uint32 dosmode
, SMB_STRUCT_STAT
*st
,
6305 const char *parent_dir
,
6307 int file_ntimes(connection_struct
*conn
, const char *fname
,
6308 struct smb_file_time
*ft
);
6309 bool set_sticky_write_time_path(connection_struct
*conn
, const char *fname
,
6310 struct file_id fileid
, const struct timespec mtime
);
6311 bool set_sticky_write_time_fsp(struct files_struct
*fsp
, const struct timespec mtime
);
6312 bool update_write_time(struct files_struct
*fsp
);
6314 /* The following definitions come from smbd/error.c */
6316 bool use_nt_status(void);
6317 void error_packet_set(char *outbuf
, uint8 eclass
, uint32 ecode
, NTSTATUS ntstatus
, int line
, const char *file
);
6318 int error_packet(char *outbuf
, uint8 eclass
, uint32 ecode
, NTSTATUS ntstatus
, int line
, const char *file
);
6319 void reply_nt_error(struct smb_request
*req
, NTSTATUS ntstatus
,
6320 int line
, const char *file
);
6321 void reply_force_nt_error(struct smb_request
*req
, NTSTATUS ntstatus
,
6322 int line
, const char *file
);
6323 void reply_dos_error(struct smb_request
*req
, uint8 eclass
, uint32 ecode
,
6324 int line
, const char *file
);
6325 void reply_both_error(struct smb_request
*req
, uint8 eclass
, uint32 ecode
,
6326 NTSTATUS status
, int line
, const char *file
);
6327 void reply_openerror(struct smb_request
*req
, NTSTATUS status
);
6328 void reply_unix_error(struct smb_request
*req
, uint8 defclass
, uint32 defcode
,
6329 NTSTATUS defstatus
, int line
, const char *file
);
6331 /* The following definitions come from smbd/fake_file.c */
6333 enum FAKE_FILE_TYPE
is_fake_file(const char *fname
);
6334 NTSTATUS
open_fake_file(struct smb_request
*req
, connection_struct
*conn
,
6335 uint16_t current_vuid
,
6336 enum FAKE_FILE_TYPE fake_file_type
,
6339 files_struct
**result
);
6340 NTSTATUS
close_fake_file(struct smb_request
*req
, files_struct
*fsp
);
6342 /* The following definitions come from smbd/file_access.c */
6344 bool can_access_file_acl(struct connection_struct
*conn
,
6346 uint32_t access_mask
);
6347 bool can_delete_file_in_directory(connection_struct
*conn
, const char *fname
);
6348 bool can_access_file_data(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
, uint32 access_mask
);
6349 bool can_write_to_file(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
);
6350 bool directory_has_default_acl(connection_struct
*conn
, const char *fname
);
6352 /* The following definitions come from smbd/fileio.c */
6354 ssize_t
read_file(files_struct
*fsp
,char *data
,SMB_OFF_T pos
,size_t n
);
6355 void trigger_write_time_update(struct files_struct
*fsp
);
6356 void trigger_write_time_update_immediate(struct files_struct
*fsp
);
6357 ssize_t
write_file(struct smb_request
*req
,
6362 void delete_write_cache(files_struct
*fsp
);
6363 void set_filelen_write_cache(files_struct
*fsp
, SMB_OFF_T file_size
);
6364 ssize_t
flush_write_cache(files_struct
*fsp
, enum flush_reason_enum reason
);
6365 NTSTATUS
sync_file(connection_struct
*conn
, files_struct
*fsp
, bool write_through
);
6366 int fsp_stat(files_struct
*fsp
, SMB_STRUCT_STAT
*pst
);
6368 /* The following definitions come from smbd/filename.c */
6370 NTSTATUS
unix_convert(TALLOC_CTX
*ctx
,
6371 connection_struct
*conn
,
6372 const char *orig_path
,
6373 bool allow_wcard_last_component
,
6374 char **pp_conv_path
,
6375 char **pp_saved_last_component
,
6376 SMB_STRUCT_STAT
*pst
);
6377 NTSTATUS
check_name(connection_struct
*conn
, const char *name
);
6378 int get_real_filename(connection_struct
*conn
, const char *path
,
6379 const char *name
, TALLOC_CTX
*mem_ctx
,
6382 /* The following definitions come from smbd/files.c */
6384 NTSTATUS
file_new(struct smb_request
*req
, connection_struct
*conn
,
6385 files_struct
**result
);
6386 void file_close_conn(connection_struct
*conn
);
6387 void file_close_pid(uint16 smbpid
, int vuid
);
6388 void file_init(void);
6389 void file_close_user(int vuid
);
6390 void file_dump_open_table(void);
6391 files_struct
*file_find_fd(int fd
);
6392 files_struct
*file_find_dif(struct file_id id
, unsigned long gen_id
);
6393 files_struct
*file_find_fsp(files_struct
*orig_fsp
);
6394 files_struct
*file_find_di_first(struct file_id id
);
6395 files_struct
*file_find_di_next(files_struct
*start_fsp
);
6396 files_struct
*file_find_print(void);
6397 bool file_find_subpath(files_struct
*dir_fsp
);
6398 void file_sync_all(connection_struct
*conn
);
6399 void file_free(struct smb_request
*req
, files_struct
*fsp
);
6400 files_struct
*file_fnum(uint16 fnum
);
6401 files_struct
*file_fsp(struct smb_request
*req
, uint16 fid
);
6402 void dup_file_fsp(struct smb_request
*req
, files_struct
*from
,
6403 uint32 access_mask
, uint32 share_access
,
6404 uint32 create_options
, files_struct
*to
);
6406 /* The following definitions come from smbd/ipc.c */
6408 void send_trans_reply(connection_struct
*conn
,
6409 struct smb_request
*req
,
6410 char *rparam
, int rparam_len
,
6411 char *rdata
, int rdata_len
,
6412 bool buffer_too_large
);
6413 void reply_trans(struct smb_request
*req
);
6414 void reply_transs(struct smb_request
*req
);
6416 /* The following definitions come from smbd/lanman.c */
6418 void api_reply(connection_struct
*conn
, uint16 vuid
,
6419 struct smb_request
*req
,
6420 char *data
, char *params
,
6421 int tdscnt
, int tpscnt
,
6422 int mdrcnt
, int mprcnt
);
6424 /* The following definitions come from smbd/mangle.c */
6426 void mangle_reset_cache(void);
6427 void mangle_change_to_posix(void);
6428 bool mangle_is_mangled(const char *s
, const struct share_params
*p
);
6429 bool mangle_is_8_3(const char *fname
, bool check_case
,
6430 const struct share_params
*p
);
6431 bool mangle_is_8_3_wildcards(const char *fname
, bool check_case
,
6432 const struct share_params
*p
);
6433 bool mangle_must_mangle(const char *fname
,
6434 const struct share_params
*p
);
6435 bool mangle_lookup_name_from_8_3(TALLOC_CTX
*ctx
,
6437 char **out
, /* talloced on the given context. */
6438 const struct share_params
*p
);
6439 bool name_to_8_3(const char *in
,
6442 const struct share_params
*p
);
6444 /* The following definitions come from smbd/mangle_hash.c */
6446 const struct mangle_fns
*mangle_hash_init(void);
6448 /* The following definitions come from smbd/mangle_hash2.c */
6450 const struct mangle_fns
*mangle_hash2_init(void);
6451 const struct mangle_fns
*posix_mangle_init(void);
6453 /* The following definitions come from smbd/map_username.c */
6455 bool map_username(fstring user
);
6457 /* The following definitions come from smbd/message.c */
6459 void reply_sends(struct smb_request
*req
);
6460 void reply_sendstrt(struct smb_request
*req
);
6461 void reply_sendtxt(struct smb_request
*req
);
6462 void reply_sendend(struct smb_request
*req
);
6464 /* The following definitions come from smbd/msdfs.c */
6466 bool is_msdfs_link(connection_struct
*conn
,
6468 SMB_STRUCT_STAT
*sbufp
);
6469 NTSTATUS
get_referred_path(TALLOC_CTX
*ctx
,
6470 const char *dfs_path
,
6471 struct junction_map
*jucn
,
6473 bool *self_referralp
);
6474 int setup_dfs_referral(connection_struct
*orig_conn
,
6475 const char *dfs_path
,
6476 int max_referral_level
,
6477 char **ppdata
, NTSTATUS
*pstatus
);
6478 bool create_junction(TALLOC_CTX
*ctx
,
6479 const char *dfs_path
,
6480 struct junction_map
*jucn
);
6481 bool create_msdfs_link(const struct junction_map
*jucn
);
6482 bool remove_msdfs_link(const struct junction_map
*jucn
);
6483 struct junction_map
*enum_msdfs_links(TALLOC_CTX
*ctx
, size_t *p_num_jn
);
6484 NTSTATUS
resolve_dfspath(TALLOC_CTX
*ctx
,
6485 connection_struct
*conn
,
6487 const char *name_in
,
6488 char **pp_name_out
);
6489 NTSTATUS
resolve_dfspath_wcard(TALLOC_CTX
*ctx
,
6490 connection_struct
*conn
,
6492 const char *name_in
,
6494 bool *ppath_contains_wcard
);
6495 NTSTATUS
create_conn_struct(TALLOC_CTX
*ctx
,
6496 connection_struct
**pconn
,
6499 struct auth_serversupplied_info
*server_info
,
6502 /* The following definitions come from smbd/negprot.c */
6504 void reply_negprot(struct smb_request
*req
);
6506 /* The following definitions come from smbd/notify.c */
6508 void change_notify_reply(connection_struct
*conn
,
6509 struct smb_request
*req
, uint32 max_param
,
6510 struct notify_change_buf
*notify_buf
);
6511 NTSTATUS
change_notify_create(struct files_struct
*fsp
, uint32 filter
,
6513 NTSTATUS
change_notify_add_request(struct smb_request
*req
,
6515 uint32 filter
, bool recursive
,
6516 struct files_struct
*fsp
);
6517 void remove_pending_change_notify_requests_by_mid(uint16 mid
);
6518 void remove_pending_change_notify_requests_by_fid(files_struct
*fsp
,
6520 void notify_fname(connection_struct
*conn
, uint32 action
, uint32 filter
,
6522 char *notify_filter_string(TALLOC_CTX
*mem_ctx
, uint32 filter
);
6523 struct sys_notify_context
*sys_notify_context_create(connection_struct
*conn
,
6524 TALLOC_CTX
*mem_ctx
,
6525 struct event_context
*ev
);
6526 NTSTATUS
sys_notify_watch(struct sys_notify_context
*ctx
,
6527 struct notify_entry
*e
,
6528 void (*callback
)(struct sys_notify_context
*ctx
,
6530 struct notify_event
*ev
),
6531 void *private_data
, void *handle
);
6533 /* The following definitions come from smbd/notify_inotify.c */
6535 NTSTATUS
inotify_watch(struct sys_notify_context
*ctx
,
6536 struct notify_entry
*e
,
6537 void (*callback
)(struct sys_notify_context
*ctx
,
6539 struct notify_event
*ev
),
6543 /* The following definitions come from smbd/notify_internal.c */
6545 struct notify_context
*notify_init(TALLOC_CTX
*mem_ctx
, struct server_id server
,
6546 struct messaging_context
*messaging_ctx
,
6547 struct event_context
*ev
,
6548 connection_struct
*conn
);
6549 NTSTATUS
notify_add(struct notify_context
*notify
, struct notify_entry
*e0
,
6550 void (*callback
)(void *, const struct notify_event
*),
6551 void *private_data
);
6552 NTSTATUS
notify_remove(struct notify_context
*notify
, void *private_data
);
6553 void notify_trigger(struct notify_context
*notify
,
6554 uint32_t action
, uint32_t filter
, const char *path
);
6556 /* The following definitions come from smbd/ntquotas.c */
6558 int vfs_get_ntquota(files_struct
*fsp
, enum SMB_QUOTA_TYPE qtype
, DOM_SID
*psid
, SMB_NTQUOTA_STRUCT
*qt
);
6559 int vfs_set_ntquota(files_struct
*fsp
, enum SMB_QUOTA_TYPE qtype
, DOM_SID
*psid
, SMB_NTQUOTA_STRUCT
*qt
);
6560 int vfs_get_user_ntquota_list(files_struct
*fsp
, SMB_NTQUOTA_LIST
**qt_list
);
6561 void *init_quota_handle(TALLOC_CTX
*mem_ctx
);
6563 /* The following definitions come from smbd/nttrans.c */
6565 void send_nt_replies(connection_struct
*conn
,
6566 struct smb_request
*req
, NTSTATUS nt_error
,
6567 char *params
, int paramsize
,
6568 char *pdata
, int datasize
);
6569 bool is_ntfs_stream_name(const char *fname
);
6570 void reply_ntcreate_and_X(struct smb_request
*req
);
6571 void reply_ntcancel(struct smb_request
*req
);
6572 void reply_ntrename(struct smb_request
*req
);
6573 void reply_nttrans(struct smb_request
*req
);
6574 void reply_nttranss(struct smb_request
*req
);
6576 /* The following definitions come from smbd/open.c */
6578 NTSTATUS
smb1_file_se_access_check(const struct security_descriptor
*sd
,
6579 const NT_USER_TOKEN
*token
,
6580 uint32_t access_desired
,
6581 uint32_t *access_granted
);
6582 NTSTATUS
fd_close(files_struct
*fsp
);
6583 void change_file_owner_to_parent(connection_struct
*conn
,
6584 const char *inherit_from_dir
,
6586 NTSTATUS
change_dir_owner_to_parent(connection_struct
*conn
,
6587 const char *inherit_from_dir
,
6589 SMB_STRUCT_STAT
*psbuf
);
6590 bool is_executable(const char *fname
);
6591 bool is_stat_open(uint32 access_mask
);
6592 bool request_timed_out(struct timeval request_time
,
6593 struct timeval timeout
);
6594 bool open_match_attributes(connection_struct
*conn
,
6596 uint32 old_dos_attr
,
6597 uint32 new_dos_attr
,
6598 mode_t existing_unx_mode
,
6599 mode_t new_unx_mode
,
6600 mode_t
*returned_unx_mode
);
6601 NTSTATUS
fcb_or_dos_open(struct smb_request
*req
,
6602 connection_struct
*conn
,
6603 files_struct
*fsp_to_dup_into
,
6609 uint32 share_access
,
6610 uint32 create_options
);
6611 bool map_open_params_to_ntcreate(const char *fname
, int deny_mode
, int open_func
,
6612 uint32
*paccess_mask
,
6613 uint32
*pshare_mode
,
6614 uint32
*pcreate_disposition
,
6615 uint32
*pcreate_options
);
6616 NTSTATUS
open_file_fchmod(struct smb_request
*req
, connection_struct
*conn
,
6618 SMB_STRUCT_STAT
*psbuf
, files_struct
**result
);
6619 NTSTATUS
close_file_fchmod(struct smb_request
*req
, files_struct
*fsp
);
6620 NTSTATUS
create_directory(connection_struct
*conn
, struct smb_request
*req
, const char *directory
);
6621 void msg_file_was_renamed(struct messaging_context
*msg
,
6624 struct server_id server_id
,
6626 struct case_semantics_state
;
6627 struct case_semantics_state
*set_posix_case_semantics(TALLOC_CTX
*mem_ctx
,
6628 connection_struct
*conn
);
6629 NTSTATUS
open_streams_for_delete(connection_struct
*conn
,
6631 NTSTATUS
create_file_default(connection_struct
*conn
,
6632 struct smb_request
*req
,
6633 uint16_t root_dir_fid
,
6635 uint32_t create_file_flags
,
6636 uint32_t access_mask
,
6637 uint32_t share_access
,
6638 uint32_t create_disposition
,
6639 uint32_t create_options
,
6640 uint32_t file_attributes
,
6641 uint32_t oplock_request
,
6642 uint64_t allocation_size
,
6643 struct security_descriptor
*sd
,
6644 struct ea_list
*ea_list
,
6646 files_struct
**result
,
6648 SMB_STRUCT_STAT
*psbuf
);
6649 NTSTATUS
get_relative_fid_filename(connection_struct
*conn
,
6650 struct smb_request
*req
,
6651 uint16_t root_dir_fid
,
6652 const char *fname
, char **new_fname
);
6654 /* The following definitions come from smbd/oplock.c */
6656 int32
get_number_of_exclusive_open_oplocks(void);
6657 void break_kernel_oplock(struct messaging_context
*msg_ctx
, files_struct
*fsp
);
6658 bool set_file_oplock(files_struct
*fsp
, int oplock_type
);
6659 void release_file_oplock(files_struct
*fsp
);
6660 bool remove_oplock(files_struct
*fsp
);
6661 bool downgrade_oplock(files_struct
*fsp
);
6662 bool should_notify_deferred_opens(void);
6663 void reply_to_oplock_break_requests(files_struct
*fsp
);
6664 void process_oplock_async_level2_break_message(struct messaging_context
*msg_ctx
,
6667 struct server_id src
,
6669 void contend_level2_oplocks_begin(files_struct
*fsp
,
6670 enum level2_contention_type type
);
6671 void contend_level2_oplocks_end(files_struct
*fsp
,
6672 enum level2_contention_type type
);
6673 void share_mode_entry_to_message(char *msg
, const struct share_mode_entry
*e
);
6674 void message_to_share_mode_entry(struct share_mode_entry
*e
, char *msg
);
6675 bool init_oplocks(struct messaging_context
*msg_ctx
);
6677 /* The following definitions come from smbd/oplock_irix.c */
6679 struct kernel_oplocks
*irix_init_kernel_oplocks(TALLOC_CTX
*mem_ctx
) ;
6681 /* The following definitions come from smbd/oplock_linux.c */
6683 void linux_set_lease_capability(void);
6684 int linux_set_lease_sighandler(int fd
);
6685 int linux_setlease(int fd
, int leasetype
);
6686 struct kernel_oplocks
*linux_init_kernel_oplocks(TALLOC_CTX
*mem_ctx
) ;
6688 /* The following definitions come from smbd/oplock_onefs.c */
6690 struct kernel_oplocks
*onefs_init_kernel_oplocks(TALLOC_CTX
*mem_ctx
);
6692 /* The following definitions come from smbd/password.c */
6694 user_struct
*get_valid_user_struct(uint16 vuid
);
6695 bool is_partial_auth_vuid(uint16 vuid
);
6696 user_struct
*get_partial_auth_user_struct(uint16 vuid
);
6697 void invalidate_vuid(uint16 vuid
);
6698 void invalidate_all_vuids(void);
6699 int register_initial_vuid(void);
6700 int register_existing_vuid(uint16 vuid
,
6701 auth_serversupplied_info
*server_info
,
6702 DATA_BLOB response_blob
,
6703 const char *smb_name
);
6704 void add_session_user(const char *user
);
6705 void add_session_workgroup(const char *workgroup
);
6706 const char *get_session_workgroup(void);
6707 bool user_in_netgroup(const char *user
, const char *ngname
);
6708 bool user_in_list(const char *user
,const char **list
);
6709 bool authorise_login(int snum
, fstring user
, DATA_BLOB password
,
6712 /* The following definitions come from smbd/pipes.c */
6714 NTSTATUS
open_np_file(struct smb_request
*smb_req
, const char *name
,
6715 struct files_struct
**pfsp
);
6716 void reply_open_pipe_and_X(connection_struct
*conn
, struct smb_request
*req
);
6717 void reply_pipe_write(struct smb_request
*req
);
6718 void reply_pipe_write_and_X(struct smb_request
*req
);
6719 void reply_pipe_read_and_X(struct smb_request
*req
);
6720 void reply_pipe_close(connection_struct
*conn
, struct smb_request
*req
);
6722 /* The following definitions come from smbd/posix_acls.c */
6724 void create_file_sids(const SMB_STRUCT_STAT
*psbuf
, DOM_SID
*powner_sid
, DOM_SID
*pgroup_sid
);
6725 bool nt4_compatible_acls(void);
6726 NTSTATUS
unpack_nt_owners(int snum
, uid_t
*puser
, gid_t
*pgrp
, uint32 security_info_sent
, const SEC_DESC
*psd
);
6727 SMB_ACL_T
free_empty_sys_acl(connection_struct
*conn
, SMB_ACL_T the_acl
);
6728 NTSTATUS
posix_fget_nt_acl(struct files_struct
*fsp
, uint32_t security_info
,
6730 NTSTATUS
posix_get_nt_acl(struct connection_struct
*conn
, const char *name
,
6731 uint32_t security_info
, SEC_DESC
**ppdesc
);
6732 int try_chown(connection_struct
*conn
, const char *fname
, uid_t uid
, gid_t gid
);
6733 NTSTATUS
append_parent_acl(files_struct
*fsp
,
6734 const SEC_DESC
*pcsd
,
6735 SEC_DESC
**pp_new_sd
);
6736 NTSTATUS
set_nt_acl(files_struct
*fsp
, uint32 security_info_sent
, const SEC_DESC
*psd
);
6737 int get_acl_group_bits( connection_struct
*conn
, const char *fname
, mode_t
*mode
);
6738 int chmod_acl(connection_struct
*conn
, const char *name
, mode_t mode
);
6739 int inherit_access_posix_acl(connection_struct
*conn
, const char *inherit_from_dir
,
6740 const char *name
, mode_t mode
);
6741 int fchmod_acl(files_struct
*fsp
, mode_t mode
);
6742 bool set_unix_posix_default_acl(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
,
6743 uint16 num_def_acls
, const char *pdata
);
6744 bool set_unix_posix_acl(connection_struct
*conn
, files_struct
*fsp
, const char *fname
, uint16 num_acls
, const char *pdata
);
6745 SEC_DESC
*get_nt_acl_no_snum( TALLOC_CTX
*ctx
, const char *fname
);
6747 /* The following definitions come from smbd/process.c */
6749 void smbd_setup_sig_term_handler(void);
6750 void smbd_setup_sig_hup_handler(void);
6751 bool srv_send_smb(int fd
, char *buffer
, bool do_encrypt
,
6752 struct smb_perfcount_data
*pcd
);
6753 int srv_set_message(char *buf
,
6757 void init_smb_request(struct smb_request
*req
,
6759 size_t unread_bytes
,
6761 void remove_deferred_open_smb_message(uint16 mid
);
6762 void schedule_deferred_open_smb_message(uint16 mid
);
6763 bool open_was_deferred(uint16 mid
);
6764 struct pending_message_list
*get_open_deferred_message(uint16 mid
);
6765 bool push_deferred_smb_message(struct smb_request
*req
,
6766 struct timeval request_time
,
6767 struct timeval timeout
,
6768 char *private_data
, size_t priv_len
);
6769 struct idle_event
*event_add_idle(struct event_context
*event_ctx
,
6770 TALLOC_CTX
*mem_ctx
,
6771 struct timeval interval
,
6773 bool (*handler
)(const struct timeval
*now
,
6774 void *private_data
),
6775 void *private_data
);
6776 NTSTATUS
allow_new_trans(struct trans_state
*list
, int mid
);
6777 void reply_outbuf(struct smb_request
*req
, uint8 num_words
, uint32 num_bytes
);
6778 const char *smb_fn_name(int type
);
6779 void add_to_common_flags2(uint32 v
);
6780 void remove_from_common_flags2(uint32 v
);
6781 void construct_reply_common_req(struct smb_request
*req
, char *outbuf
);
6782 size_t req_wct_ofs(struct smb_request
*req
);
6783 void chain_reply(struct smb_request
*req
);
6784 bool req_is_in_chain(struct smb_request
*req
);
6785 void check_reload(time_t t
);
6786 void smbd_process(void);
6788 /* The following definitions come from smbd/quotas.c */
6790 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6791 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6792 bool disk_quotas(const char *path
,
6796 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6797 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6798 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6799 bool disk_quotas_vxfs(const char *name
, char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6800 bool disk_quotas(const char *path
,uint64_t *bsize
,uint64_t *dfree
,uint64_t *dsize
);
6801 bool disk_quotas(const char *path
,uint64_t *bsize
,uint64_t *dfree
,uint64_t *dsize
);
6803 /* The following definitions come from smbd/reply.c */
6805 NTSTATUS
check_path_syntax(char *path
);
6806 NTSTATUS
check_path_syntax_wcard(char *path
, bool *p_contains_wcard
);
6807 NTSTATUS
check_path_syntax_posix(char *path
);
6808 size_t srvstr_get_path_wcard(TALLOC_CTX
*ctx
,
6816 bool *contains_wcard
);
6817 size_t srvstr_get_path(TALLOC_CTX
*ctx
,
6825 size_t srvstr_get_path_req_wcard(TALLOC_CTX
*mem_ctx
, struct smb_request
*req
,
6826 char **pp_dest
, const char *src
, int flags
,
6827 NTSTATUS
*err
, bool *contains_wcard
);
6828 size_t srvstr_get_path_req(TALLOC_CTX
*mem_ctx
, struct smb_request
*req
,
6829 char **pp_dest
, const char *src
, int flags
,
6831 bool check_fsp_open(connection_struct
*conn
, struct smb_request
*req
,
6833 bool check_fsp(connection_struct
*conn
, struct smb_request
*req
,
6835 bool check_fsp_ntquota_handle(connection_struct
*conn
, struct smb_request
*req
,
6837 bool fsp_belongs_conn(connection_struct
*conn
, struct smb_request
*req
,
6839 void reply_special(char *inbuf
);
6840 void reply_tcon(struct smb_request
*req
);
6841 void reply_tcon_and_X(struct smb_request
*req
);
6842 void reply_unknown_new(struct smb_request
*req
, uint8 type
);
6843 void reply_ioctl(struct smb_request
*req
);
6844 void reply_checkpath(struct smb_request
*req
);
6845 void reply_getatr(struct smb_request
*req
);
6846 void reply_setatr(struct smb_request
*req
);
6847 void reply_dskattr(struct smb_request
*req
);
6848 void reply_search(struct smb_request
*req
);
6849 void reply_fclose(struct smb_request
*req
);
6850 void reply_open(struct smb_request
*req
);
6851 void reply_open_and_X(struct smb_request
*req
);
6852 void reply_ulogoffX(struct smb_request
*req
);
6853 void reply_mknew(struct smb_request
*req
);
6854 void reply_ctemp(struct smb_request
*req
);
6855 NTSTATUS
unlink_internals(connection_struct
*conn
, struct smb_request
*req
,
6856 uint32 dirtype
, const char *name_in
, bool has_wild
);
6857 void reply_unlink(struct smb_request
*req
);
6858 void reply_readbraw(struct smb_request
*req
);
6859 void reply_lockread(struct smb_request
*req
);
6860 void reply_read(struct smb_request
*req
);
6861 void reply_read_and_X(struct smb_request
*req
);
6862 void error_to_writebrawerr(struct smb_request
*req
);
6863 void reply_writebraw(struct smb_request
*req
);
6864 void reply_writeunlock(struct smb_request
*req
);
6865 void reply_write(struct smb_request
*req
);
6866 bool is_valid_writeX_buffer(const uint8_t *inbuf
);
6867 void reply_write_and_X(struct smb_request
*req
);
6868 void reply_lseek(struct smb_request
*req
);
6869 void reply_flush(struct smb_request
*req
);
6870 void reply_exit(struct smb_request
*req
);
6871 void reply_close(struct smb_request
*req
);
6872 void reply_writeclose(struct smb_request
*req
);
6873 void reply_lock(struct smb_request
*req
);
6874 void reply_unlock(struct smb_request
*req
);
6875 void reply_tdis(struct smb_request
*req
);
6876 void reply_echo(struct smb_request
*req
);
6877 void reply_printopen(struct smb_request
*req
);
6878 void reply_printclose(struct smb_request
*req
);
6879 void reply_printqueue(struct smb_request
*req
);
6880 void reply_printwrite(struct smb_request
*req
);
6881 void reply_mkdir(struct smb_request
*req
);
6882 NTSTATUS
rmdir_internals(TALLOC_CTX
*ctx
,
6883 connection_struct
*conn
,
6884 const char *directory
);
6885 void reply_rmdir(struct smb_request
*req
);
6886 NTSTATUS
rename_internals_fsp(connection_struct
*conn
,
6889 const char *newname_last_component
,
6891 bool replace_if_exists
);
6892 NTSTATUS
rename_internals(TALLOC_CTX
*ctx
,
6893 connection_struct
*conn
,
6894 struct smb_request
*req
,
6895 const char *name_in
,
6896 const char *newname_in
,
6898 bool replace_if_exists
,
6901 uint32_t access_mask
);
6902 void reply_mv(struct smb_request
*req
);
6903 NTSTATUS
copy_file(TALLOC_CTX
*ctx
,
6904 connection_struct
*conn
,
6909 bool target_is_directory
);
6910 void reply_copy(struct smb_request
*req
);
6911 uint32
get_lock_pid(const uint8_t *data
, int data_offset
,
6912 bool large_file_format
);
6913 uint64_t get_lock_count(const uint8_t *data
, int data_offset
,
6914 bool large_file_format
);
6915 uint64_t get_lock_offset(const uint8_t *data
, int data_offset
,
6916 bool large_file_format
, bool *err
);
6917 void reply_lockingX(struct smb_request
*req
);
6918 void reply_readbmpx(struct smb_request
*req
);
6919 void reply_readbs(struct smb_request
*req
);
6920 void reply_setattrE(struct smb_request
*req
);
6921 void reply_writebmpx(struct smb_request
*req
);
6922 void reply_writebs(struct smb_request
*req
);
6923 void reply_getattrE(struct smb_request
*req
);
6925 /* The following definitions come from smbd/seal.c */
6927 uint16_t srv_enc_ctx(void);
6928 bool is_encrypted_packet(const uint8_t *inbuf
);
6929 void srv_free_enc_buffer(char *buf
);
6930 NTSTATUS
srv_decrypt_buffer(char *buf
);
6931 NTSTATUS
srv_encrypt_buffer(char *buf
, char **buf_out
);
6932 NTSTATUS
srv_request_encryption_setup(connection_struct
*conn
,
6933 unsigned char **ppdata
,
6934 size_t *p_data_size
,
6935 unsigned char **pparam
,
6936 size_t *p_param_size
);
6937 NTSTATUS
srv_encryption_start(connection_struct
*conn
);
6938 void server_encryption_shutdown(void);
6940 /* The following definitions come from smbd/sec_ctx.c */
6942 bool unix_token_equal(const UNIX_USER_TOKEN
*t1
, const UNIX_USER_TOKEN
*t2
);
6943 bool push_sec_ctx(void);
6944 void set_sec_ctx(uid_t uid
, gid_t gid
, int ngroups
, gid_t
*groups
, NT_USER_TOKEN
*token
);
6945 void set_root_sec_ctx(void);
6946 bool pop_sec_ctx(void);
6947 void init_sec_ctx(void);
6949 /* The following definitions come from smbd/server.c */
6951 int smbd_server_fd(void);
6952 int get_client_fd(void);
6953 struct event_context
*smbd_event_context(void);
6954 struct messaging_context
*smbd_messaging_context(void);
6955 struct memcache
*smbd_memcache(void);
6956 void reload_printers(void);
6957 bool reload_services(bool test
);
6958 void exit_server(const char *const explanation
);
6959 void exit_server_cleanly(const char *const explanation
);
6960 void exit_server_fault(void);
6962 /* The following definitions come from smbd/service.c */
6964 bool set_conn_connectpath(connection_struct
*conn
, const char *connectpath
);
6965 bool set_current_service(connection_struct
*conn
, uint16 flags
, bool do_chdir
);
6966 void load_registry_shares(void);
6967 int add_home_service(const char *service
, const char *username
, const char *homedir
);
6968 int find_service(fstring service
);
6969 connection_struct
*make_connection(const char *service_in
, DATA_BLOB password
,
6970 const char *pdev
, uint16 vuid
,
6972 void close_cnum(connection_struct
*conn
, uint16 vuid
);
6974 /* The following definitions come from smbd/session.c */
6976 bool session_init(void);
6977 bool session_claim(user_struct
*vuser
);
6978 void session_yield(user_struct
*vuser
);
6979 int list_sessions(TALLOC_CTX
*mem_ctx
, struct sessionid
**session_list
);
6981 /* The following definitions come from smbd/sesssetup.c */
6983 NTSTATUS
parse_spnego_mechanisms(DATA_BLOB blob_in
,
6984 DATA_BLOB
*pblob_out
,
6985 char **kerb_mechOID
);
6986 void reply_sesssetup_and_X(struct smb_request
*req
);
6988 /* The following definitions come from smbd/share_access.c */
6990 bool token_contains_name_in_list(const char *username
,
6992 const char *sharename
,
6993 const struct nt_user_token
*token
,
6995 bool user_ok_token(const char *username
, const char *domain
,
6996 const struct nt_user_token
*token
, int snum
);
6997 bool is_share_read_only_for_token(const char *username
,
6999 const struct nt_user_token
*token
,
7000 connection_struct
*conn
);
7002 /* The following definitions come from smbd/srvstr.c */
7004 size_t srvstr_push_fn(const char *function
, unsigned int line
,
7005 const char *base_ptr
, uint16 smb_flags2
, void *dest
,
7006 const char *src
, int dest_len
, int flags
);
7007 ssize_t
message_push_string(uint8
**outbuf
, const char *str
, int flags
);
7009 /* The following definitions come from smbd/statcache.c */
7011 void stat_cache_add( const char *full_orig_name
,
7012 char *translated_path
,
7013 bool case_sensitive
);
7014 bool stat_cache_lookup(connection_struct
*conn
,
7018 SMB_STRUCT_STAT
*pst
);
7019 void send_stat_cache_delete_message(const char *name
);
7020 void stat_cache_delete(const char *name
);
7021 unsigned int fast_string_hash(TDB_DATA
*key
);
7022 bool reset_stat_cache( void );
7024 /* The following definitions come from smbd/statvfs.c */
7026 int sys_statvfs(const char *path
, vfs_statvfs_struct
*statbuf
);
7028 /* The following definitions come from smbd/trans2.c */
7030 uint64_t smb_roundup(connection_struct
*conn
, uint64_t val
);
7031 NTSTATUS
get_ea_value(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
7032 files_struct
*fsp
, const char *fname
,
7033 const char *ea_name
, struct ea_struct
*pea
);
7034 NTSTATUS
get_ea_names_from_file(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
7035 files_struct
*fsp
, const char *fname
,
7036 char ***pnames
, size_t *pnum_names
);
7037 NTSTATUS
set_ea(connection_struct
*conn
, files_struct
*fsp
, const char *fname
, struct ea_list
*ea_list
);
7038 struct ea_list
*read_ea_list_entry(TALLOC_CTX
*ctx
, const char *pdata
, size_t data_size
, size_t *pbytes_used
);
7039 void send_trans2_replies(connection_struct
*conn
,
7040 struct smb_request
*req
,
7045 int max_data_bytes
);
7046 unsigned char *create_volume_objectid(connection_struct
*conn
, unsigned char objid
[16]);
7047 NTSTATUS
hardlink_internals(TALLOC_CTX
*ctx
,
7048 connection_struct
*conn
,
7049 const char *oldname_in
,
7050 const char *newname_in
);
7051 NTSTATUS
smb_set_file_time(connection_struct
*conn
,
7054 const SMB_STRUCT_STAT
*psbuf
,
7055 struct smb_file_time
*ft
,
7056 bool setting_write_time
);
7057 void reply_findclose(struct smb_request
*req
);
7058 void reply_findnclose(struct smb_request
*req
);
7059 void reply_trans2(struct smb_request
*req
);
7060 void reply_transs2(struct smb_request
*req
);
7062 /* The following definitions come from smbd/uid.c */
7064 bool change_to_guest(void);
7065 void conn_clear_vuid_cache(connection_struct
*conn
, uint16_t vuid
);
7066 bool change_to_user(connection_struct
*conn
, uint16 vuid
);
7067 bool change_to_root_user(void);
7068 bool become_authenticated_pipe_user(pipes_struct
*p
);
7069 bool unbecome_authenticated_pipe_user(void);
7070 void become_root(void);
7071 void unbecome_root(void);
7072 bool become_user(connection_struct
*conn
, uint16 vuid
);
7073 bool unbecome_user(void);
7075 /* The following definitions come from smbd/utmp.c */
7077 void sys_utmp_claim(const char *username
, const char *hostname
,
7078 const char *ip_addr_str
,
7079 const char *id_str
, int id_num
);
7080 void sys_utmp_yield(const char *username
, const char *hostname
,
7081 const char *ip_addr_str
,
7082 const char *id_str
, int id_num
);
7083 void sys_utmp_yield(const char *username
, const char *hostname
,
7084 const char *ip_addr_str
,
7085 const char *id_str
, int id_num
);
7086 void sys_utmp_claim(const char *username
, const char *hostname
,
7087 const char *ip_addr_str
,
7088 const char *id_str
, int id_num
);
7090 /* The following definitions come from smbd/vfs.c */
7092 NTSTATUS
smb_register_vfs(int version
, const char *name
, const vfs_op_tuple
*vfs_op_tuples
);
7093 bool vfs_init_custom(connection_struct
*conn
, const char *vfs_object
);
7094 void *vfs_add_fsp_extension_notype(vfs_handle_struct
*handle
,
7095 files_struct
*fsp
, size_t ext_size
,
7096 void (*destroy_fn
)(void *p_data
));
7097 void vfs_remove_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
7098 void *vfs_memctx_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
7099 void *vfs_fetch_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
7100 bool smbd_vfs_init(connection_struct
*conn
);
7101 bool vfs_directory_exist(connection_struct
*conn
, const char *dname
, SMB_STRUCT_STAT
*st
);
7102 bool vfs_object_exist(connection_struct
*conn
,const char *fname
,SMB_STRUCT_STAT
*sbuf
);
7103 bool vfs_file_exist(connection_struct
*conn
, const char *fname
,SMB_STRUCT_STAT
*sbuf
);
7104 ssize_t
vfs_read_data(files_struct
*fsp
, char *buf
, size_t byte_count
);
7105 ssize_t
vfs_pread_data(files_struct
*fsp
, char *buf
,
7106 size_t byte_count
, SMB_OFF_T offset
);
7107 ssize_t
vfs_write_data(struct smb_request
*req
,
7111 ssize_t
vfs_pwrite_data(struct smb_request
*req
,
7116 int vfs_allocate_file_space(files_struct
*fsp
, uint64_t len
);
7117 int vfs_set_filelen(files_struct
*fsp
, SMB_OFF_T len
);
7118 int vfs_fill_sparse(files_struct
*fsp
, SMB_OFF_T len
);
7119 SMB_OFF_T
vfs_transfer_file(files_struct
*in
, files_struct
*out
, SMB_OFF_T n
);
7120 char *vfs_readdirname(connection_struct
*conn
, void *p
, SMB_STRUCT_STAT
*sbuf
);
7121 int vfs_ChDir(connection_struct
*conn
, const char *path
);
7122 char *vfs_GetWd(TALLOC_CTX
*ctx
, connection_struct
*conn
);
7123 NTSTATUS
check_reduced_name(connection_struct
*conn
, const char *fname
);
7125 /* The following definitions come from torture/denytest.c */
7127 bool torture_denytest1(int dummy
);
7128 bool torture_denytest2(int dummy
);
7130 /* The following definitions come from torture/mangle_test.c */
7132 bool torture_mangle(int dummy
);
7134 /* The following definitions come from torture/nbio.c */
7136 double nbio_total(void);
7137 void nb_alarm(int ignore
);
7138 void nbio_shmem(int n
);
7139 void nb_setup(struct cli_state
*cli
);
7140 void nb_unlink(const char *fname
);
7141 void nb_createx(const char *fname
,
7142 unsigned create_options
, unsigned create_disposition
, int handle
);
7143 void nb_writex(int handle
, int offset
, int size
, int ret_size
);
7144 void nb_readx(int handle
, int offset
, int size
, int ret_size
);
7145 void nb_close(int handle
);
7146 void nb_rmdir(const char *fname
);
7147 void nb_rename(const char *oldname
, const char *newname
);
7148 void nb_qpathinfo(const char *fname
);
7149 void nb_qfileinfo(int fnum
);
7150 void nb_qfsinfo(int level
);
7151 void nb_findfirst(const char *mask
);
7152 void nb_flush(int fnum
);
7153 void nb_deltree(const char *dname
);
7154 void nb_cleanup(void);
7156 /* The following definitions come from torture/scanner.c */
7158 bool torture_trans2_scan(int dummy
);
7159 bool torture_nttrans_scan(int dummy
);
7161 /* The following definitions come from torture/torture.c */
7163 void start_timer(void);
7164 double end_timer(void);
7165 void *shm_setup(int size
);
7166 bool smbcli_parse_unc(const char *unc_name
, TALLOC_CTX
*mem_ctx
,
7167 char **hostname
, char **sharename
);
7168 void torture_open_connection_free_unclist(char **unc_list
);
7169 bool torture_open_connection(struct cli_state
**c
, int conn_index
);
7170 bool torture_cli_session_setup2(struct cli_state
*cli
, uint16
*new_vuid
);
7171 bool torture_close_connection(struct cli_state
*c
);
7172 bool torture_ioctl_test(int dummy
);
7173 bool torture_chkpath_test(int dummy
);
7175 /* The following definitions come from torture/utable.c */
7177 bool torture_utable(int dummy
);
7178 bool torture_casetable(int dummy
);
7180 /* The following definitions come from utils/passwd_util.c */
7182 char *stdin_new_passwd( void);
7183 char *get_pass( const char *prompt
, bool stdin_get
);
7185 /* The following definitions come from winbindd/idmap.c */
7187 bool idmap_is_offline(void);
7188 bool idmap_is_online(void);
7189 NTSTATUS
smb_register_idmap(int version
, const char *name
,
7190 struct idmap_methods
*methods
);
7191 NTSTATUS
smb_register_idmap_alloc(int version
, const char *name
,
7192 struct idmap_alloc_methods
*methods
);
7193 void idmap_close(void);
7194 NTSTATUS
idmap_init_cache(void);
7195 NTSTATUS
idmap_allocate_uid(struct unixid
*id
);
7196 NTSTATUS
idmap_allocate_gid(struct unixid
*id
);
7197 NTSTATUS
idmap_set_uid_hwm(struct unixid
*id
);
7198 NTSTATUS
idmap_set_gid_hwm(struct unixid
*id
);
7199 NTSTATUS
idmap_backends_unixid_to_sid(const char *domname
,
7201 NTSTATUS
idmap_backends_sid_to_unixid(const char *domname
,
7203 NTSTATUS
idmap_new_mapping(const struct dom_sid
*psid
, enum id_type type
,
7204 struct unixid
*pxid
);
7205 NTSTATUS
idmap_set_mapping(const struct id_map
*map
);
7206 NTSTATUS
idmap_remove_mapping(const struct id_map
*map
);
7208 /* The following definitions come from winbindd/idmap_cache.c */
7210 bool idmap_cache_find_sid2uid(const struct dom_sid
*sid
, uid_t
*puid
,
7212 bool idmap_cache_find_uid2sid(uid_t uid
, struct dom_sid
*sid
, bool *expired
);
7213 void idmap_cache_set_sid2uid(const struct dom_sid
*sid
, uid_t uid
);
7214 bool idmap_cache_find_sid2gid(const struct dom_sid
*sid
, gid_t
*pgid
,
7216 bool idmap_cache_find_gid2sid(gid_t gid
, struct dom_sid
*sid
, bool *expired
);
7217 void idmap_cache_set_sid2gid(const struct dom_sid
*sid
, gid_t gid
);
7220 /* The following definitions come from winbindd/idmap_nss.c */
7222 NTSTATUS
idmap_nss_init(void);
7224 /* The following definitions come from winbindd/idmap_passdb.c */
7226 NTSTATUS
idmap_passdb_init(void);
7228 /* The following definitions come from winbindd/idmap_tdb.c */
7230 bool idmap_tdb_tdb_close(TDB_CONTEXT
*tdbctx
);
7231 NTSTATUS
idmap_alloc_tdb_init(void);
7232 NTSTATUS
idmap_tdb_init(void);
7234 /* The following definitions come from winbindd/idmap_util.c */
7236 NTSTATUS
idmap_uid_to_sid(const char *domname
, DOM_SID
*sid
, uid_t uid
);
7237 NTSTATUS
idmap_gid_to_sid(const char *domname
, DOM_SID
*sid
, gid_t gid
);
7238 NTSTATUS
idmap_sid_to_uid(const char *dom_name
, DOM_SID
*sid
, uid_t
*uid
);
7239 NTSTATUS
idmap_sid_to_gid(const char *domname
, DOM_SID
*sid
, gid_t
*gid
);
7241 /* The following definitions come from winbindd/nss_info.c */
7244 /* The following definitions come from winbindd/nss_info_template.c */
7246 NTSTATUS
nss_info_template_init( void );
7250 #endif /* _PROTO_H_ */