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 NTSTATUS
auth_domain_init(void) ;
48 /* The following definitions come from auth/auth_ntlmssp.c */
50 NTSTATUS
auth_ntlmssp_start(AUTH_NTLMSSP_STATE
**auth_ntlmssp_state
);
51 void auth_ntlmssp_end(AUTH_NTLMSSP_STATE
**auth_ntlmssp_state
);
52 NTSTATUS
auth_ntlmssp_update(AUTH_NTLMSSP_STATE
*auth_ntlmssp_state
,
53 const DATA_BLOB request
, DATA_BLOB
*reply
) ;
55 /* The following definitions come from auth/auth_sam.c */
57 NTSTATUS
auth_sam_init(void);
59 /* The following definitions come from auth/auth_server.c */
61 NTSTATUS
auth_server_init(void);
63 /* The following definitions come from auth/auth_unix.c */
65 NTSTATUS
auth_unix_init(void);
67 /* The following definitions come from auth/auth_util.c */
69 NTSTATUS
make_user_info_map(auth_usersupplied_info
**user_info
,
71 const char *client_domain
,
72 const char *wksta_name
,
73 DATA_BLOB
*lm_pwd
, DATA_BLOB
*nt_pwd
,
74 DATA_BLOB
*lm_interactive_pwd
, DATA_BLOB
*nt_interactive_pwd
,
77 bool make_user_info_netlogon_network(auth_usersupplied_info
**user_info
,
79 const char *client_domain
,
80 const char *wksta_name
,
81 uint32 logon_parameters
,
82 const uchar
*lm_network_pwd
,
84 const uchar
*nt_network_pwd
,
86 bool make_user_info_netlogon_interactive(auth_usersupplied_info
**user_info
,
88 const char *client_domain
,
89 const char *wksta_name
,
90 uint32 logon_parameters
,
92 const uchar lm_interactive_pwd
[16],
93 const uchar nt_interactive_pwd
[16],
94 const uchar
*dc_sess_key
);
95 bool make_user_info_for_reply(auth_usersupplied_info
**user_info
,
97 const char *client_domain
,
99 DATA_BLOB plaintext_password
);
100 NTSTATUS
make_user_info_for_reply_enc(auth_usersupplied_info
**user_info
,
101 const char *smb_name
,
102 const char *client_domain
,
103 DATA_BLOB lm_resp
, DATA_BLOB nt_resp
);
104 bool make_user_info_guest(auth_usersupplied_info
**user_info
) ;
105 NTSTATUS
make_server_info_sam(auth_serversupplied_info
**server_info
,
106 struct samu
*sampass
);
107 NTSTATUS
create_local_token(auth_serversupplied_info
*server_info
);
108 NTSTATUS
create_token_from_username(TALLOC_CTX
*mem_ctx
, const char *username
,
110 uid_t
*uid
, gid_t
*gid
,
111 char **found_username
,
112 struct nt_user_token
**token
);
113 bool user_in_group_sid(const char *username
, const DOM_SID
*group_sid
);
114 bool user_in_group(const char *username
, const char *groupname
);
115 NTSTATUS
make_server_info_pw(auth_serversupplied_info
**server_info
,
118 NTSTATUS
make_serverinfo_from_username(TALLOC_CTX
*mem_ctx
,
119 const char *username
,
121 struct auth_serversupplied_info
**presult
);
122 struct auth_serversupplied_info
*copy_serverinfo(TALLOC_CTX
*mem_ctx
,
123 auth_serversupplied_info
*src
);
124 bool init_guest_info(void);
125 NTSTATUS
make_server_info_guest(TALLOC_CTX
*mem_ctx
,
126 auth_serversupplied_info
**server_info
);
127 bool copy_current_user(struct current_user
*dst
, struct current_user
*src
);
128 struct passwd
*smb_getpwnam( TALLOC_CTX
*mem_ctx
, char *domuser
,
129 fstring save_username
, bool create
);
130 NTSTATUS
make_server_info_info3(TALLOC_CTX
*mem_ctx
,
131 const char *sent_nt_username
,
133 auth_serversupplied_info
**server_info
,
134 struct netr_SamInfo3
*info3
);
135 NTSTATUS
make_server_info_wbcAuthUserInfo(TALLOC_CTX
*mem_ctx
,
136 const char *sent_nt_username
,
138 const struct wbcAuthUserInfo
*info
,
139 auth_serversupplied_info
**server_info
);
140 void free_user_info(auth_usersupplied_info
**user_info
);
141 bool make_auth_methods(struct auth_context
*auth_context
, auth_methods
**auth_method
) ;
142 bool is_trusted_domain(const char* dom_name
);
144 /* The following definitions come from auth/auth_winbind.c */
146 NTSTATUS
auth_winbind_init(void);
148 /* The following definitions come from auth/pampass.c */
150 bool smb_pam_claim_session(char *user
, char *tty
, char *rhost
);
151 bool smb_pam_close_session(char *user
, char *tty
, char *rhost
);
152 NTSTATUS
smb_pam_accountcheck(const char * user
);
153 NTSTATUS
smb_pam_passcheck(const char * user
, const char * password
);
154 bool smb_pam_passchange(const char * user
, const char * oldpassword
, const char * newpassword
);
155 NTSTATUS
smb_pam_accountcheck(const char * user
);
156 bool smb_pam_claim_session(char *user
, char *tty
, char *rhost
);
157 bool smb_pam_close_session(char *in_user
, char *tty
, char *rhost
);
159 /* The following definitions come from auth/pass_check.c */
161 void dfs_unlogin(void);
162 NTSTATUS
pass_check(const struct passwd
*pass
, const char *user
, const char *password
,
163 int pwlen
, bool (*fn
) (const char *, const char *), bool run_cracker
);
165 /* The following definitions come from auth/token_util.c */
167 bool nt_token_check_sid ( const DOM_SID
*sid
, const NT_USER_TOKEN
*token
);
168 bool nt_token_check_domain_rid( NT_USER_TOKEN
*token
, uint32 rid
);
169 NT_USER_TOKEN
*get_root_nt_token( void );
170 NTSTATUS
add_aliases(const DOM_SID
*domain_sid
,
171 struct nt_user_token
*token
);
172 struct nt_user_token
*create_local_nt_token(TALLOC_CTX
*mem_ctx
,
173 const DOM_SID
*user_sid
,
176 const DOM_SID
*groupsids
);
177 void debug_nt_user_token(int dbg_class
, int dbg_lev
, NT_USER_TOKEN
*token
);
178 void debug_unix_user_token(int dbg_class
, int dbg_lev
, uid_t uid
, gid_t gid
,
179 int n_groups
, gid_t
*groups
);
181 /* The following definitions come from dynconfig.c */
183 const char *get_dyn_CONFIGFILE(void);
184 const char *set_dyn_CONFIGFILE(const char *newpath
);
185 const char *get_dyn_LOGFILEBASE(void);
186 const char *set_dyn_LOGFILEBASE(const char *newpath
);
187 const char *get_dyn_LMHOSTSFILE(void);
188 const char *set_dyn_LMHOSTSFILE(const char *newpath
);
189 const char *get_dyn_CODEPAGEDIR(void);
190 const char *set_dyn_CODEPAGEDIR(const char *newpath
);
191 const char *get_dyn_LIBDIR(void);
192 const char *set_dyn_LIBDIR(const char *newpath
);
193 const char *get_dyn_SHLIBEXT(void);
194 const char *set_dyn_SHLIBEXT(const char *newpath
);
195 const char *get_dyn_LOCKDIR(void);
196 const char *set_dyn_LOCKDIR(const char *newpath
);
197 const char *get_dyn_PIDDIR(void);
198 const char *set_dyn_PIDDIR(const char *newpath
);
199 const char *get_dyn_SMB_PASSWD_FILE(void);
200 const char *set_dyn_SMB_PASSWD_FILE(const char *newpath
);
201 const char *get_dyn_PRIVATE_DIR(void);
202 const char *set_dyn_PRIVATE_DIR(const char *newpath
);
203 const char *get_dyn_STATEDIR(void);
204 const char *get_dyn_CACHEDIR(void);
206 /* The following definitions come from groupdb/mapping.c */
208 NTSTATUS
add_initial_entry(gid_t gid
, const char *sid
, enum lsa_SidType sid_name_use
, const char *nt_name
, const char *comment
);
209 bool get_domain_group_from_sid(DOM_SID sid
, GROUP_MAP
*map
);
210 int smb_create_group(const char *unix_group
, gid_t
*new_gid
);
211 int smb_delete_group(const char *unix_group
);
212 int smb_set_primary_group(const char *unix_group
, const char* unix_user
);
213 int smb_add_user_group(const char *unix_group
, const char *unix_user
);
214 int smb_delete_user_group(const char *unix_group
, const char *unix_user
);
215 NTSTATUS
pdb_default_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
217 NTSTATUS
pdb_default_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
219 NTSTATUS
pdb_default_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
221 NTSTATUS
pdb_default_add_group_mapping_entry(struct pdb_methods
*methods
,
223 NTSTATUS
pdb_default_update_group_mapping_entry(struct pdb_methods
*methods
,
225 NTSTATUS
pdb_default_delete_group_mapping_entry(struct pdb_methods
*methods
,
227 NTSTATUS
pdb_default_enum_group_mapping(struct pdb_methods
*methods
,
228 const DOM_SID
*sid
, enum lsa_SidType sid_name_use
,
229 GROUP_MAP
**pp_rmap
, size_t *p_num_entries
,
231 NTSTATUS
pdb_default_create_alias(struct pdb_methods
*methods
,
232 const char *name
, uint32
*rid
);
233 NTSTATUS
pdb_default_delete_alias(struct pdb_methods
*methods
,
235 NTSTATUS
pdb_default_get_aliasinfo(struct pdb_methods
*methods
,
237 struct acct_info
*info
);
238 NTSTATUS
pdb_default_set_aliasinfo(struct pdb_methods
*methods
,
240 struct acct_info
*info
);
241 NTSTATUS
pdb_default_add_aliasmem(struct pdb_methods
*methods
,
242 const DOM_SID
*alias
, const DOM_SID
*member
);
243 NTSTATUS
pdb_default_del_aliasmem(struct pdb_methods
*methods
,
244 const DOM_SID
*alias
, const DOM_SID
*member
);
245 NTSTATUS
pdb_default_enum_aliasmem(struct pdb_methods
*methods
,
246 const DOM_SID
*alias
, DOM_SID
**pp_members
,
247 size_t *p_num_members
);
248 NTSTATUS
pdb_default_alias_memberships(struct pdb_methods
*methods
,
250 const DOM_SID
*domain_sid
,
251 const DOM_SID
*members
,
253 uint32
**pp_alias_rids
,
254 size_t *p_num_alias_rids
);
255 NTSTATUS
pdb_nop_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
257 NTSTATUS
pdb_nop_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
259 NTSTATUS
pdb_nop_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
261 NTSTATUS
pdb_nop_add_group_mapping_entry(struct pdb_methods
*methods
,
263 NTSTATUS
pdb_nop_update_group_mapping_entry(struct pdb_methods
*methods
,
265 NTSTATUS
pdb_nop_delete_group_mapping_entry(struct pdb_methods
*methods
,
267 NTSTATUS
pdb_nop_enum_group_mapping(struct pdb_methods
*methods
,
268 enum lsa_SidType sid_name_use
,
269 GROUP_MAP
**rmap
, size_t *num_entries
,
271 bool pdb_get_dom_grp_info(const DOM_SID
*sid
, struct acct_info
*info
);
272 bool pdb_set_dom_grp_info(const DOM_SID
*sid
, const struct acct_info
*info
);
273 NTSTATUS
pdb_create_builtin_alias(uint32 rid
);
275 /* The following definitions come from groupdb/mapping_ldb.c */
277 const struct mapping_backend
*groupdb_ldb_init(void);
279 /* The following definitions come from groupdb/mapping_tdb.c */
281 const struct mapping_backend
*groupdb_tdb_init(void);
283 /* The following definitions come from intl/lang_tdb.c */
285 bool lang_tdb_init(const char *lang
);
286 const char *lang_msg(const char *msgid
);
287 void lang_msg_free(const char *msgstr
);
288 char *lang_tdb_current(void);
290 /* The following definitions come from lib/access.c */
292 bool allow_access(const char **deny_list
,
293 const char **allow_list
,
296 bool check_access(int sock
, const char **allow_list
, const char **deny_list
);
298 /* The following definitions come from lib/account_pol.c */
300 void account_policy_names_list(const char ***names
, int *num_names
);
301 const char *decode_account_policy_name(int field
);
302 const char *get_account_policy_attr(int field
);
303 const char *account_policy_get_desc(int field
);
304 int account_policy_name_to_fieldnum(const char *name
);
305 bool account_policy_get_default(int account_policy
, uint32
*val
);
306 bool init_account_policy(void);
307 bool account_policy_get(int field
, uint32
*value
);
308 bool account_policy_set(int field
, uint32 value
);
309 bool cache_account_policy_set(int field
, uint32 value
);
310 bool cache_account_policy_get(int field
, uint32
*value
);
311 struct db_context
*get_account_pol_db( void );
313 /* The following definitions come from lib/adt_tree.c */
316 /* The following definitions come from lib/afs.c */
318 char *afs_createtoken_str(const char *username
, const char *cell
);
319 bool afs_login(connection_struct
*conn
);
320 bool afs_login(connection_struct
*conn
);
321 char *afs_createtoken_str(const char *username
, const char *cell
);
323 /* The following definitions come from lib/afs_settoken.c */
325 int afs_syscall( int subcall
,
330 bool afs_settoken_str(const char *token_string
);
331 bool afs_settoken_str(const char *token_string
);
333 /* The following definitions come from lib/arc4.c */
335 void smb_arc4_init(unsigned char arc4_state_out
[258], const unsigned char *key
, size_t keylen
);
336 void smb_arc4_crypt(unsigned char arc4_state_inout
[258], unsigned char *data
, size_t len
);
338 /* The following definitions come from lib/audit.c */
340 const char *audit_category_str(uint32 category
);
341 const char *audit_param_str(uint32 category
);
342 const char *audit_description_str(uint32 category
);
343 bool get_audit_category_from_param(const char *param
, uint32
*audit_category
);
344 const char *audit_policy_str(TALLOC_CTX
*mem_ctx
, uint32 policy
);
346 /* The following definitions come from lib/bitmap.c */
348 struct bitmap
*bitmap_allocate(int n
);
349 void bitmap_free(struct bitmap
*bm
);
350 struct bitmap
*bitmap_talloc(TALLOC_CTX
*mem_ctx
, int n
);
351 int bitmap_copy(struct bitmap
* const dst
, const struct bitmap
* const src
);
352 bool bitmap_set(struct bitmap
*bm
, unsigned i
);
353 bool bitmap_clear(struct bitmap
*bm
, unsigned i
);
354 bool bitmap_query(struct bitmap
*bm
, unsigned i
);
355 int bitmap_find(struct bitmap
*bm
, unsigned ofs
);
357 /* The following definitions come from lib/charcnv.c */
359 char lp_failed_convert_char(void);
360 void lazy_initialize_conv(void);
361 void gfree_charcnv(void);
362 void init_iconv(void);
363 size_t convert_string(charset_t from
, charset_t to
,
364 void const *src
, size_t srclen
,
365 void *dest
, size_t destlen
, bool allow_bad_conv
);
366 bool convert_string_allocate(TALLOC_CTX
*ctx
, charset_t from
, charset_t to
,
367 void const *src
, size_t srclen
, void *dst
,
368 size_t *converted_size
, bool allow_bad_conv
);
369 bool convert_string_talloc(TALLOC_CTX
*ctx
, charset_t from
, charset_t to
,
370 void const *src
, size_t srclen
, void *dst
,
371 size_t *converted_size
, bool allow_bad_conv
);
372 size_t unix_strupper(const char *src
, size_t srclen
, char *dest
, size_t destlen
);
373 char *strdup_upper(const char *s
);
374 char *talloc_strdup_upper(TALLOC_CTX
*ctx
, const char *s
);
375 size_t unix_strlower(const char *src
, size_t srclen
, char *dest
, size_t destlen
);
376 char *strdup_lower(const char *s
);
377 char *talloc_strdup_lower(TALLOC_CTX
*ctx
, const char *s
);
378 size_t ucs2_align(const void *base_ptr
, const void *p
, int flags
);
379 size_t push_ascii(void *dest
, const char *src
, size_t dest_len
, int flags
);
380 size_t push_ascii_fstring(void *dest
, const char *src
);
381 size_t push_ascii_nstring(void *dest
, const char *src
);
382 bool push_ascii_allocate(char **dest
, const char *src
, size_t *converted_size
);
383 size_t pull_ascii(char *dest
, const void *src
, size_t dest_len
, size_t src_len
, int flags
);
384 size_t pull_ascii_fstring(char *dest
, const void *src
);
385 size_t pull_ascii_nstring(char *dest
, size_t dest_len
, const void *src
);
386 size_t push_ucs2(const void *base_ptr
, void *dest
, const char *src
, size_t dest_len
, int flags
);
387 bool push_ucs2_allocate(smb_ucs2_t
**dest
, const char *src
,
388 size_t *converted_size
);
389 size_t push_utf8_fstring(void *dest
, const char *src
);
390 bool push_utf8_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
391 size_t *converted_size
);
392 bool push_utf8_allocate(char **dest
, const char *src
, size_t *converted_size
);
393 size_t pull_ucs2(const void *base_ptr
, char *dest
, const void *src
, size_t dest_len
, size_t src_len
, int flags
);
394 size_t pull_ucs2_base_talloc(TALLOC_CTX
*ctx
,
395 const void *base_ptr
,
400 size_t pull_ucs2_fstring(char *dest
, const void *src
);
401 bool push_ucs2_talloc(TALLOC_CTX
*ctx
, smb_ucs2_t
**dest
, const char *src
,
402 size_t *converted_size
);
403 bool pull_ucs2_allocate(char **dest
, const smb_ucs2_t
*src
,
404 size_t *converted_size
);
405 bool pull_utf8_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
406 size_t *converted_size
);
407 bool pull_utf8_allocate(char **dest
, const char *src
, size_t *converted_size
);
408 bool pull_ucs2_talloc(TALLOC_CTX
*ctx
, char **dest
, const smb_ucs2_t
*src
,
409 size_t *converted_size
);
410 bool pull_ascii_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
411 size_t *converted_size
);
412 size_t push_string_fn(const char *function
, unsigned int line
,
413 const void *base_ptr
, uint16 flags2
,
414 void *dest
, const char *src
,
415 size_t dest_len
, int flags
);
416 size_t pull_string_fn(const char *function
,
418 const void *base_ptr
,
425 size_t pull_string_talloc_fn(const char *function
,
428 const void *base_ptr
,
434 size_t align_string(const void *base_ptr
, const char *p
, int flags
);
435 codepoint_t
next_codepoint(const char *str
, size_t *size
);
437 /* The following definitions come from lib/clobber.c */
439 void clobber_region(const char *fn
, unsigned int line
, char *dest
, size_t len
);
441 /* The following definitions come from lib/conn_tdb.c */
443 struct db_record
*connections_fetch_record(TALLOC_CTX
*mem_ctx
,
445 struct db_record
*connections_fetch_entry(TALLOC_CTX
*mem_ctx
,
446 connection_struct
*conn
,
448 int connections_traverse(int (*fn
)(struct db_record
*rec
,
451 int connections_forall(int (*fn
)(struct db_record
*rec
,
452 const struct connections_key
*key
,
453 const struct connections_data
*data
,
456 bool connections_init(bool rw
);
458 /* The following definitions come from lib/crc32.c */
460 uint32
crc32_calc_buffer(const char *buf
, size_t size
);
462 /* The following definitions come from lib/data_blob.c */
464 DATA_BLOB
data_blob(const void *p
, size_t length
);
465 DATA_BLOB
data_blob_talloc(TALLOC_CTX
*mem_ctx
, const void *p
, size_t length
);
466 void data_blob_free(DATA_BLOB
*d
);
467 void data_blob_clear(DATA_BLOB
*d
);
468 void data_blob_clear_free(DATA_BLOB
*d
);
469 DATA_BLOB
data_blob_string_const(const char *str
);
470 DATA_BLOB
data_blob_const(const void *p
, size_t length
);
471 DATA_BLOB
data_blob_talloc_zero(TALLOC_CTX
*mem_ctx
, size_t length
);
472 _PUBLIC_
char *data_blob_hex_string(TALLOC_CTX
*mem_ctx
, const DATA_BLOB
*blob
);
474 /* The following definitions come from lib/dbwrap_util.c */
476 int32_t dbwrap_fetch_int32(struct db_context
*db
, const char *keystr
);
477 int dbwrap_store_int32(struct db_context
*db
, const char *keystr
, int32_t v
);
478 bool dbwrap_fetch_uint32(struct db_context
*db
, const char *keystr
,
480 bool dbwrap_store_uint32(struct db_context
*db
, const char *keystr
, uint32_t v
);
481 uint32_t dbwrap_change_uint32_atomic(struct db_context
*db
, const char *keystr
,
482 uint32_t *oldval
, uint32_t change_val
);
483 int32
dbwrap_change_int32_atomic(struct db_context
*db
, const char *keystr
,
484 int32
*oldval
, int32 change_val
);
485 NTSTATUS
dbwrap_trans_store(struct db_context
*db
, TDB_DATA key
, TDB_DATA dbuf
,
487 NTSTATUS
dbwrap_trans_delete(struct db_context
*db
, TDB_DATA key
);
488 NTSTATUS
dbwrap_trans_store_int32(struct db_context
*db
, const char *keystr
,
490 NTSTATUS
dbwrap_trans_store_uint32(struct db_context
*db
, const char *keystr
,
492 NTSTATUS
dbwrap_trans_store_bystring(struct db_context
*db
, const char *key
,
493 TDB_DATA data
, int flags
);
494 NTSTATUS
dbwrap_trans_delete_bystring(struct db_context
*db
, const char *key
);
496 /* The following definitions come from lib/debug.c */
498 void gfree_debugsyms(void);
499 const char *debug_classname_from_index(int ndx
);
500 int debug_add_class(const char *classname
);
501 int debug_lookup_classname(const char *classname
);
502 bool debug_parse_levels(const char *params_str
);
503 void debug_init(void);
504 void debug_register_msgs(struct messaging_context
*msg_ctx
);
505 void setup_logging(const char *pname
, bool interactive
);
506 void debug_set_logfile(const char *name
);
507 bool reopen_logs( void );
508 void force_check_log_size( void );
509 bool need_to_check_log_size( void );
510 void check_log_size( void );
511 void dbgflush( void );
512 bool dbghdr(int level
, int cls
, const char *file
, const char *func
, int line
);
513 TALLOC_CTX
*debug_ctx(void);
515 /* The following definitions come from lib/display_sec.c */
517 char *get_sec_mask_str(TALLOC_CTX
*ctx
, uint32 type
);
518 void display_sec_access(SEC_ACCESS
*info
);
519 void display_sec_ace_flags(uint8_t flags
);
520 void display_sec_ace(SEC_ACE
*ace
);
521 void display_sec_acl(SEC_ACL
*sec_acl
);
522 void display_acl_type(uint16 type
);
523 void display_sec_desc(SEC_DESC
*sec
);
525 /* The following definitions come from lib/dmallocmsg.c */
527 void register_dmalloc_msgs(struct messaging_context
*msg_ctx
);
529 /* The following definitions come from lib/dprintf.c */
531 void display_set_stderr(void);
533 /* The following definitions come from lib/errmap_unix.c */
535 NTSTATUS
map_nt_error_from_unix(int unix_error
);
537 /* The following definitions come from lib/events.c */
539 struct timed_event
*event_add_timed(struct event_context
*event_ctx
,
542 const char *event_name
,
543 void (*handler
)(struct event_context
*event_ctx
,
544 struct timed_event
*te
,
545 const struct timeval
*now
,
548 struct fd_event
*event_add_fd(struct event_context
*event_ctx
,
550 int fd
, uint16_t flags
,
551 void (*handler
)(struct event_context
*event_ctx
,
552 struct fd_event
*event
,
556 void event_fd_set_writeable(struct fd_event
*fde
);
557 void event_fd_set_not_writeable(struct fd_event
*fde
);
558 void event_fd_set_readable(struct fd_event
*fde
);
559 void event_fd_set_not_readable(struct fd_event
*fde
);
560 bool event_add_to_select_args(struct event_context
*event_ctx
,
561 const struct timeval
*now
,
562 fd_set
*read_fds
, fd_set
*write_fds
,
563 struct timeval
*timeout
, int *maxfd
);
564 bool events_pending(struct event_context
*event_ctx
);
565 bool run_events(struct event_context
*event_ctx
,
566 int selrtn
, fd_set
*read_fds
, fd_set
*write_fds
);
567 struct timeval
*get_timed_events_timeout(struct event_context
*event_ctx
,
568 struct timeval
*to_ret
);
569 int event_loop_once(struct event_context
*ev
);
570 struct event_context
*event_context_init(TALLOC_CTX
*mem_ctx
);
571 int set_event_dispatch_time(struct event_context
*event_ctx
,
572 const char *event_name
, struct timeval when
);
573 int cancel_named_event(struct event_context
*event_ctx
,
574 const char *event_name
);
575 void dump_event_list(struct event_context
*event_ctx
);
577 /* The following definitions come from lib/fault.c */
579 void fault_setup(void (*fn
)(void *));
580 void dump_core_setup(const char *progname
);
582 /* The following definitions come from lib/file_id.c */
584 struct file_id
file_id_create_dev(SMB_DEV_T dev
, SMB_INO_T inode
);
585 struct file_id
vfs_file_id_from_sbuf(connection_struct
*conn
, const SMB_STRUCT_STAT
*sbuf
);
586 bool file_id_equal(const struct file_id
*id1
, const struct file_id
*id2
);
587 const char *file_id_string_tos(const struct file_id
*id
);
588 void push_file_id_16(char *buf
, const struct file_id
*id
);
589 void pull_file_id_16(char *buf
, struct file_id
*id
);
591 /* The following definitions come from lib/fsusage.c */
593 int sys_fsusage(const char *path
, SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
);
595 /* The following definitions come from lib/gencache.c */
597 bool gencache_init(void);
598 bool gencache_shutdown(void);
599 bool gencache_set(const char *keystr
, const char *value
, time_t timeout
);
600 bool gencache_del(const char *keystr
);
601 bool gencache_get(const char *keystr
, char **valstr
, time_t *timeout
);
602 bool gencache_get_data_blob(const char *keystr
, DATA_BLOB
*blob
, bool *expired
);
603 bool gencache_set_data_blob(const char *keystr
, const DATA_BLOB
*blob
, time_t timeout
);
604 void gencache_iterate(void (*fn
)(const char* key
, const char *value
, time_t timeout
, void* dptr
),
605 void* data
, const char* keystr_pattern
);
606 int gencache_lock_entry( const char *key
);
607 void gencache_unlock_entry( const char *key
);
609 /* The following definitions come from lib/genrand.c */
611 void set_rand_reseed_callback(void (*fn
)(int *));
612 void set_need_random_reseed(void);
613 void generate_random_buffer( unsigned char *out
, int len
);
614 char *generate_random_str(size_t len
);
616 /* The following definitions come from lib/hmacmd5.c */
618 void hmac_md5_init_rfc2104(const unsigned char *key
, int key_len
, HMACMD5Context
*ctx
);
619 void hmac_md5_init_limK_to_64(const unsigned char* key
, int key_len
,
620 HMACMD5Context
*ctx
);
621 void hmac_md5_update(const unsigned char *text
, int text_len
, HMACMD5Context
*ctx
);
622 void hmac_md5_final(unsigned char *digest
, HMACMD5Context
*ctx
);
623 void hmac_md5( unsigned char key
[16], const unsigned char *data
, int data_len
,
624 unsigned char *digest
);
626 /* The following definitions come from lib/iconv.c */
628 NTSTATUS
smb_register_charset(struct charset_functions
*funcs
) ;
629 size_t smb_iconv(smb_iconv_t cd
,
630 const char **inbuf
, size_t *inbytesleft
,
631 char **outbuf
, size_t *outbytesleft
);
632 smb_iconv_t
smb_iconv_open(const char *tocode
, const char *fromcode
);
633 int smb_iconv_close (smb_iconv_t cd
);
635 /* The following definitions come from lib/interface.c */
637 bool ismyaddr(const struct sockaddr_storage
*ip
);
638 bool ismyip_v4(struct in_addr ip
);
639 bool is_local_net(const struct sockaddr_storage
*from
);
640 void setup_linklocal_scope_id(struct sockaddr_storage
*pss
);
641 bool is_local_net_v4(struct in_addr from
);
642 int iface_count(void);
643 int iface_count_v4(void);
644 const struct in_addr
*first_ipv4_iface(void);
645 struct interface
*get_interface(int n
);
646 const struct sockaddr_storage
*iface_n_sockaddr_storage(int n
);
647 const struct in_addr
*iface_n_ip_v4(int n
);
648 const struct in_addr
*iface_n_bcast_v4(int n
);
649 const struct sockaddr_storage
*iface_n_bcast(int n
);
650 const struct sockaddr_storage
*iface_ip(const struct sockaddr_storage
*ip
);
651 bool iface_local(const struct sockaddr_storage
*ip
);
652 void load_interfaces(void);
653 void gfree_interfaces(void);
654 bool interfaces_changed(void);
656 /* The following definitions come from lib/ldap_debug_handler.c */
658 void init_ldap_debugging(void);
660 /* The following definitions come from lib/ldap_escape.c */
662 char *escape_ldap_string_alloc(const char *s
);
663 char *escape_rdn_val_string_alloc(const char *s
);
665 /* The following definitions come from lib/md4.c */
667 void mdfour(unsigned char *out
, const unsigned char *in
, int n
);
669 /* The following definitions come from lib/md5.c */
671 void MD5Init(struct MD5Context
*ctx
);
672 void MD5Update(struct MD5Context
*ctx
, unsigned char const *buf
, unsigned len
);
673 void MD5Final(unsigned char digest
[16], struct MD5Context
*ctx
);
675 /* The following definitions come from lib/module.c */
677 NTSTATUS
smb_load_module(const char *module_name
);
678 int smb_load_modules(const char **modules
);
679 NTSTATUS
smb_probe_module(const char *subsystem
, const char *module
);
680 NTSTATUS
smb_load_module(const char *module_name
);
681 int smb_load_modules(const char **modules
);
682 NTSTATUS
smb_probe_module(const char *subsystem
, const char *module
);
683 void init_modules(void);
685 /* The following definitions come from lib/ms_fnmatch.c */
687 int ms_fnmatch(const char *pattern
, const char *string
, bool translate_pattern
,
688 bool is_case_sensitive
);
689 int gen_fnmatch(const char *pattern
, const char *string
);
691 /* The following definitions come from lib/pam_errors.c */
693 NTSTATUS
pam_to_nt_status(int pam_error
);
694 int nt_status_to_pam(NTSTATUS nt_status
);
695 NTSTATUS
pam_to_nt_status(int pam_error
);
696 int nt_status_to_pam(NTSTATUS nt_status
);
698 /* The following definitions come from lib/pidfile.c */
700 pid_t
pidfile_pid(const char *name
);
701 void pidfile_create(const char *program_name
);
703 /* The following definitions come from lib/popt_common.c */
706 /* The following definitions come from lib/privileges.c */
708 bool get_privileges_for_sids(SE_PRIV
*privileges
, DOM_SID
*slist
, int scount
);
709 NTSTATUS
privilege_enumerate_accounts(DOM_SID
**sids
, int *num_sids
);
710 NTSTATUS
privilege_enum_sids(const SE_PRIV
*mask
, TALLOC_CTX
*mem_ctx
,
711 DOM_SID
**sids
, int *num_sids
);
712 bool grant_privilege(const DOM_SID
*sid
, const SE_PRIV
*priv_mask
);
713 bool grant_privilege_by_name(DOM_SID
*sid
, const char *name
);
714 bool revoke_privilege(const DOM_SID
*sid
, const SE_PRIV
*priv_mask
);
715 bool revoke_all_privileges( DOM_SID
*sid
);
716 bool revoke_privilege_by_name(DOM_SID
*sid
, const char *name
);
717 NTSTATUS
privilege_create_account(const DOM_SID
*sid
);
718 NTSTATUS
privilege_set_init(PRIVILEGE_SET
*priv_set
);
719 NTSTATUS
privilege_set_init_by_ctx(TALLOC_CTX
*mem_ctx
, PRIVILEGE_SET
*priv_set
);
720 void privilege_set_free(PRIVILEGE_SET
*priv_set
);
721 NTSTATUS
dup_luid_attr(TALLOC_CTX
*mem_ctx
, LUID_ATTR
**new_la
, LUID_ATTR
*old_la
, int count
);
722 bool is_privileged_sid( const DOM_SID
*sid
);
723 bool grant_all_privileges( const DOM_SID
*sid
);
725 /* The following definitions come from lib/privileges_basic.c */
727 bool se_priv_copy( SE_PRIV
*dst
, const SE_PRIV
*src
);
728 bool se_priv_put_all_privileges(SE_PRIV
*mask
);
729 void se_priv_add( SE_PRIV
*mask
, const SE_PRIV
*addpriv
);
730 void se_priv_remove( SE_PRIV
*mask
, const SE_PRIV
*removepriv
);
731 bool se_priv_equal( const SE_PRIV
*mask1
, const SE_PRIV
*mask2
);
732 bool se_priv_from_name( const char *name
, SE_PRIV
*mask
);
733 void dump_se_priv( int dbg_cl
, int dbg_lvl
, const SE_PRIV
*mask
);
734 bool is_privilege_assigned(const SE_PRIV
*privileges
,
735 const SE_PRIV
*check
);
736 const char* get_privilege_dispname( const char *name
);
737 bool user_has_privileges(const NT_USER_TOKEN
*token
, const SE_PRIV
*privilege
);
738 bool user_has_any_privilege(NT_USER_TOKEN
*token
, const SE_PRIV
*privilege
);
739 int count_all_privileges( void );
740 LUID_ATTR
get_privilege_luid( SE_PRIV
*mask
);
741 const char *luid_to_privilege_name(const LUID
*set
);
742 bool se_priv_to_privilege_set( PRIVILEGE_SET
*set
, SE_PRIV
*mask
);
743 bool privilege_set_to_se_priv( SE_PRIV
*mask
, struct lsa_PrivilegeSet
*privset
);
745 /* The following definitions come from lib/readline.c */
747 char *smb_readline(const char *prompt
, void (*callback
)(void),
748 char **(completion_fn
)(const char *text
, int start
, int end
));
749 const char *smb_readline_get_line_buffer(void);
750 void smb_readline_ca_char(char c
);
751 int cmd_history(void);
753 /* The following definitions come from lib/recvfile.c */
755 ssize_t
sys_recvfile(int fromfd
,
759 ssize_t
sys_recvfile(int fromfd
,
763 ssize_t
drain_socket(int sockfd
, size_t count
);
765 /* The following definitions come from lib/secace.c */
767 bool sec_ace_object(uint8 type
);
768 void sec_ace_copy(SEC_ACE
*ace_dest
, SEC_ACE
*ace_src
);
769 void init_sec_ace(SEC_ACE
*t
, const DOM_SID
*sid
, enum security_ace_type type
,
770 uint32 mask
, uint8 flag
);
771 NTSTATUS
sec_ace_add_sid(TALLOC_CTX
*ctx
, SEC_ACE
**pp_new
, SEC_ACE
*old
, unsigned *num
, DOM_SID
*sid
, uint32 mask
);
772 NTSTATUS
sec_ace_mod_sid(SEC_ACE
*ace
, size_t num
, DOM_SID
*sid
, uint32 mask
);
773 NTSTATUS
sec_ace_del_sid(TALLOC_CTX
*ctx
, SEC_ACE
**pp_new
, SEC_ACE
*old
, uint32
*num
, DOM_SID
*sid
);
774 bool sec_ace_equal(SEC_ACE
*s1
, SEC_ACE
*s2
);
775 int nt_ace_inherit_comp( SEC_ACE
*a1
, SEC_ACE
*a2
);
776 int nt_ace_canon_comp( SEC_ACE
*a1
, SEC_ACE
*a2
);
777 void dacl_sort_into_canonical_order(SEC_ACE
*srclist
, unsigned int num_aces
);
778 bool token_sid_in_ace(const NT_USER_TOKEN
*token
, const SEC_ACE
*ace
);
780 /* The following definitions come from lib/secacl.c */
782 SEC_ACL
*make_sec_acl(TALLOC_CTX
*ctx
, enum security_acl_revision revision
,
783 int num_aces
, SEC_ACE
*ace_list
);
784 SEC_ACL
*dup_sec_acl(TALLOC_CTX
*ctx
, SEC_ACL
*src
);
785 bool sec_acl_equal(SEC_ACL
*s1
, SEC_ACL
*s2
);
787 /* The following definitions come from lib/secdesc.c */
789 bool sec_desc_equal(SEC_DESC
*s1
, SEC_DESC
*s2
);
790 SEC_DESC_BUF
*sec_desc_merge(TALLOC_CTX
*ctx
, SEC_DESC_BUF
*new_sdb
, SEC_DESC_BUF
*old_sdb
);
791 SEC_DESC
*make_sec_desc(TALLOC_CTX
*ctx
,
792 enum security_descriptor_revision revision
,
794 const DOM_SID
*owner_sid
, const DOM_SID
*grp_sid
,
795 SEC_ACL
*sacl
, SEC_ACL
*dacl
, size_t *sd_size
);
796 SEC_DESC
*dup_sec_desc(TALLOC_CTX
*ctx
, const SEC_DESC
*src
);
797 NTSTATUS
marshall_sec_desc(TALLOC_CTX
*mem_ctx
,
798 struct security_descriptor
*secdesc
,
799 uint8
**data
, size_t *len
);
800 NTSTATUS
unmarshall_sec_desc(TALLOC_CTX
*mem_ctx
, uint8
*data
, size_t len
,
801 struct security_descriptor
**psecdesc
);
802 SEC_DESC
*make_standard_sec_desc(TALLOC_CTX
*ctx
, const DOM_SID
*owner_sid
, const DOM_SID
*grp_sid
,
803 SEC_ACL
*dacl
, size_t *sd_size
);
804 SEC_DESC_BUF
*make_sec_desc_buf(TALLOC_CTX
*ctx
, size_t len
, SEC_DESC
*sec_desc
);
805 SEC_DESC_BUF
*dup_sec_desc_buf(TALLOC_CTX
*ctx
, SEC_DESC_BUF
*src
);
806 NTSTATUS
sec_desc_add_sid(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, DOM_SID
*sid
, uint32 mask
, size_t *sd_size
);
807 NTSTATUS
sec_desc_mod_sid(SEC_DESC
*sd
, DOM_SID
*sid
, uint32 mask
);
808 NTSTATUS
sec_desc_del_sid(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, DOM_SID
*sid
, size_t *sd_size
);
809 SEC_DESC_BUF
*se_create_child_secdesc(TALLOC_CTX
*ctx
, SEC_DESC
*parent_ctr
,
810 bool child_container
);
811 void init_sec_access(uint32
*t
, uint32 mask
);
813 /* The following definitions come from lib/select.c */
815 void sys_select_signal(char c
);
816 int sys_select(int maxfd
, fd_set
*readfds
, fd_set
*writefds
, fd_set
*errorfds
, struct timeval
*tval
);
817 int sys_select_intr(int maxfd
, fd_set
*readfds
, fd_set
*writefds
, fd_set
*errorfds
, struct timeval
*tval
);
819 /* The following definitions come from lib/sendfile.c */
821 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
822 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
823 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
824 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
825 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
826 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
827 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
829 /* The following definitions come from lib/server_mutex.c */
831 struct named_mutex
*grab_named_mutex(TALLOC_CTX
*mem_ctx
, const char *name
,
834 /* The following definitions come from lib/sharesec.c */
836 SEC_DESC
*get_share_security_default( TALLOC_CTX
*ctx
, size_t *psize
, uint32 def_access
);
837 SEC_DESC
*get_share_security( TALLOC_CTX
*ctx
, const char *servicename
,
839 bool set_share_security(const char *share_name
, SEC_DESC
*psd
);
840 bool delete_share_security(const char *servicename
);
841 bool share_access_check(const NT_USER_TOKEN
*token
, const char *sharename
,
842 uint32 desired_access
);
843 bool parse_usershare_acl(TALLOC_CTX
*ctx
, const char *acl_str
, SEC_DESC
**ppsd
);
845 /* The following definitions come from lib/signal.c */
847 void BlockSignals(bool block
,int signum
);
848 void (*CatchSignal(int signum
,void (*handler
)(int )))(int);
849 void CatchChild(void);
850 void CatchChildLeaveStatus(void);
852 /* The following definitions come from lib/smbldap.c */
854 int smb_ldap_start_tls(LDAP
*ldap_struct
, int version
);
855 int smb_ldap_setup_conn(LDAP
**ldap_struct
, const char *uri
);
856 int smb_ldap_upgrade_conn(LDAP
*ldap_struct
, int *new_version
) ;
857 int smb_ldap_setup_full_conn(LDAP
**ldap_struct
, const char *uri
);
858 int smbldap_search(struct smbldap_state
*ldap_state
,
859 const char *base
, int scope
, const char *filter
,
860 const char *attrs
[], int attrsonly
,
862 int smbldap_search_paged(struct smbldap_state
*ldap_state
,
863 const char *base
, int scope
, const char *filter
,
864 const char **attrs
, int attrsonly
, int pagesize
,
865 LDAPMessage
**res
, void **cookie
);
866 int smbldap_modify(struct smbldap_state
*ldap_state
, const char *dn
, LDAPMod
*attrs
[]);
867 int smbldap_add(struct smbldap_state
*ldap_state
, const char *dn
, LDAPMod
*attrs
[]);
868 int smbldap_delete(struct smbldap_state
*ldap_state
, const char *dn
);
869 int smbldap_extended_operation(struct smbldap_state
*ldap_state
,
870 LDAP_CONST
char *reqoid
, struct berval
*reqdata
,
871 LDAPControl
**serverctrls
, LDAPControl
**clientctrls
,
872 char **retoidp
, struct berval
**retdatap
);
873 int smbldap_search_suffix (struct smbldap_state
*ldap_state
,
874 const char *filter
, const char **search_attr
,
875 LDAPMessage
** result
);
876 void smbldap_free_struct(struct smbldap_state
**ldap_state
) ;
877 NTSTATUS
smbldap_init(TALLOC_CTX
*mem_ctx
, struct event_context
*event_ctx
,
878 const char *location
,
879 struct smbldap_state
**smbldap_state
);
880 char *smbldap_get_dn(LDAP
*ld
, LDAPMessage
*entry
);
881 bool smbldap_has_control(LDAP
*ld
, const char *control
);
882 bool smbldap_has_extension(LDAP
*ld
, const char *extension
);
883 bool smbldap_has_naming_context(LDAP
*ld
, const char *naming_context
);
884 bool smbldap_set_creds(struct smbldap_state
*ldap_state
, bool anon
, const char *dn
, const char *secret
);
886 /* The following definitions come from lib/smbldap_util.c */
888 NTSTATUS
smbldap_search_domain_info(struct smbldap_state
*ldap_state
,
889 LDAPMessage
** result
, const char *domain_name
,
892 /* The following definitions come from lib/smbrun.c */
894 int smbrun_no_sanitize(const char *cmd
, int *outfd
);
895 int smbrun(const char *cmd
, int *outfd
);
896 int smbrunsecret(const char *cmd
, const char *secret
);
898 /* The following definitions come from lib/sock_exec.c */
900 int sock_exec(const char *prog
);
902 /* The following definitions come from lib/substitute.c */
904 void free_local_machine_name(void);
905 bool set_local_machine_name(const char *local_name
, bool perm
);
906 const char *get_local_machine_name(void);
907 bool set_remote_machine_name(const char *remote_name
, bool perm
);
908 const char *get_remote_machine_name(void);
909 void sub_set_smb_name(const char *name
);
910 void set_current_user_info(const char *smb_name
, const char *unix_name
,
911 const char *full_name
, const char *domain
);
912 const char *get_current_username(void);
913 void standard_sub_basic(const char *smb_name
, const char *domain_name
,
914 char *str
, size_t len
);
915 char *talloc_sub_basic(TALLOC_CTX
*mem_ctx
, const char *smb_name
,
916 const char *domain_name
, const char *str
);
917 char *alloc_sub_basic(const char *smb_name
, const char *domain_name
,
919 char *talloc_sub_specified(TALLOC_CTX
*mem_ctx
,
920 const char *input_string
,
921 const char *username
,
925 char *talloc_sub_advanced(TALLOC_CTX
*mem_ctx
,
926 const char *servicename
, const char *user
,
927 const char *connectpath
, gid_t gid
,
928 const char *smb_name
, const char *domain_name
,
930 void standard_sub_advanced(const char *servicename
, const char *user
,
931 const char *connectpath
, gid_t gid
,
932 const char *smb_name
, const char *domain_name
,
933 char *str
, size_t len
);
934 char *standard_sub_conn(TALLOC_CTX
*ctx
, connection_struct
*conn
, const char *str
);
936 /* The following definitions come from lib/sysacls.c */
938 int sys_acl_get_entry(SMB_ACL_T acl_d
, int entry_id
, SMB_ACL_ENTRY_T
*entry_p
);
939 int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T
*type_p
);
940 int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T
*permset_p
);
941 void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d
);
942 int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d
);
943 int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d
, SMB_ACL_PERM_T perm
);
944 int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d
, SMB_ACL_PERM_T perm
);
945 char *sys_acl_to_text(SMB_ACL_T acl_d
, ssize_t
*len_p
);
946 SMB_ACL_T
sys_acl_init(int count
);
947 int sys_acl_create_entry(SMB_ACL_T
*acl_p
, SMB_ACL_ENTRY_T
*entry_p
);
948 int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T tag_type
);
949 int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d
, void *qual_p
);
950 int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T permset_d
);
951 int sys_acl_free_text(char *text
);
952 int sys_acl_free_acl(SMB_ACL_T acl_d
) ;
953 int sys_acl_free_qualifier(void *qual
, SMB_ACL_TAG_T tagtype
);
954 int sys_acl_valid(SMB_ACL_T acl_d
);
955 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
956 const char *path_p
, SMB_ACL_TYPE_T type
);
957 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
958 int sys_acl_set_file(vfs_handle_struct
*handle
,
959 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
960 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
962 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
964 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
965 const char *path_p
, SMB_ACL_TYPE_T type
);
966 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
967 int sys_acl_set_file(vfs_handle_struct
*handle
,
968 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
969 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
971 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
973 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
974 const char *path_p
, SMB_ACL_TYPE_T type
);
975 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
976 int sys_acl_set_file(vfs_handle_struct
*handle
,
977 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
978 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
980 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
982 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
983 const char *path_p
, SMB_ACL_TYPE_T type
);
984 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
985 int sys_acl_set_file(vfs_handle_struct
*handle
,
986 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
987 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
989 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
991 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
992 const char *path_p
, SMB_ACL_TYPE_T type
);
993 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
994 int sys_acl_set_file(vfs_handle_struct
*handle
,
995 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
996 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
998 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1000 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
1001 const char *path_p
, SMB_ACL_TYPE_T type
);
1002 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
1003 int sys_acl_set_file(vfs_handle_struct
*handle
,
1004 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
1005 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
1007 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1009 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
1010 const char *path_p
, SMB_ACL_TYPE_T type
);
1011 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
1012 int sys_acl_set_file(vfs_handle_struct
*handle
,
1013 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
1014 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
1016 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1018 int no_acl_syscall_error(int err
);
1020 /* The following definitions come from lib/sysquotas.c */
1022 int sys_get_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
1023 int sys_set_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
1025 /* The following definitions come from lib/sysquotas_4A.c */
1027 int sys_get_vfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
1028 int sys_set_vfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
1030 /* The following definitions come from lib/sysquotas_linux.c */
1032 int sys_get_vfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
1033 int sys_set_vfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
1035 /* The following definitions come from lib/sysquotas_xfs.c */
1037 int sys_get_xfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
1038 int sys_set_xfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
1040 /* The following definitions come from lib/system.c */
1042 void *sys_memalign( size_t align
, size_t size
);
1043 int sys_usleep(long usecs
);
1044 ssize_t
sys_read(int fd
, void *buf
, size_t count
);
1045 ssize_t
sys_write(int fd
, const void *buf
, size_t count
);
1046 ssize_t
sys_pread(int fd
, void *buf
, size_t count
, SMB_OFF_T off
);
1047 ssize_t
sys_pwrite(int fd
, const void *buf
, size_t count
, SMB_OFF_T off
);
1048 ssize_t
sys_send(int s
, const void *msg
, size_t len
, int flags
);
1049 ssize_t
sys_sendto(int s
, const void *msg
, size_t len
, int flags
, const struct sockaddr
*to
, socklen_t tolen
);
1050 ssize_t
sys_recv(int fd
, void *buf
, size_t count
, int flags
);
1051 ssize_t
sys_recvfrom(int s
, void *buf
, size_t len
, int flags
, struct sockaddr
*from
, socklen_t
*fromlen
);
1052 int sys_fcntl_ptr(int fd
, int cmd
, void *arg
);
1053 int sys_fcntl_long(int fd
, int cmd
, long arg
);
1054 int sys_stat(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
1055 int sys_fstat(int fd
,SMB_STRUCT_STAT
*sbuf
);
1056 int sys_lstat(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
1057 int sys_ftruncate(int fd
, SMB_OFF_T offset
);
1058 SMB_OFF_T
sys_lseek(int fd
, SMB_OFF_T offset
, int whence
);
1059 int sys_fseek(FILE *fp
, SMB_OFF_T offset
, int whence
);
1060 SMB_OFF_T
sys_ftell(FILE *fp
);
1061 int sys_creat(const char *path
, mode_t mode
);
1062 int sys_open(const char *path
, int oflag
, mode_t mode
);
1063 FILE *sys_fopen(const char *path
, const char *type
);
1064 void kernel_flock(int fd
, uint32 share_mode
);
1065 SMB_STRUCT_DIR
*sys_opendir(const char *name
);
1066 SMB_STRUCT_DIRENT
*sys_readdir(SMB_STRUCT_DIR
*dirp
);
1067 void sys_seekdir(SMB_STRUCT_DIR
*dirp
, long offset
);
1068 long sys_telldir(SMB_STRUCT_DIR
*dirp
);
1069 void sys_rewinddir(SMB_STRUCT_DIR
*dirp
);
1070 int sys_closedir(SMB_STRUCT_DIR
*dirp
);
1071 int sys_mknod(const char *path
, mode_t mode
, SMB_DEV_T dev
);
1072 char *sys_realpath(const char *path
, char *resolved_path
);
1073 int sys_waitpid(pid_t pid
,int *status
,int options
);
1074 char *sys_getwd(char *s
);
1075 int sys_symlink(const char *oldpath
, const char *newpath
);
1076 int sys_readlink(const char *path
, char *buf
, size_t bufsiz
);
1077 int sys_link(const char *oldpath
, const char *newpath
);
1078 int sys_chown(const char *fname
,uid_t uid
,gid_t gid
);
1079 int sys_lchown(const char *fname
,uid_t uid
,gid_t gid
);
1080 int sys_chroot(const char *dname
);
1081 void set_effective_capability(enum smbd_capability capability
);
1082 void drop_effective_capability(enum smbd_capability capability
);
1083 long sys_random(void);
1084 void sys_srandom(unsigned int seed
);
1085 int groups_max(void);
1086 int sys_getgroups(int setlen
, gid_t
*gidset
);
1087 int sys_setgroups(gid_t
UNUSED(primary_gid
), int setlen
, gid_t
*gidset
);
1088 void sys_setpwent(void);
1089 struct passwd
*sys_getpwent(void);
1090 void sys_endpwent(void);
1091 struct passwd
*sys_getpwnam(const char *name
);
1092 struct passwd
*sys_getpwuid(uid_t uid
);
1093 struct group
*sys_getgrnam(const char *name
);
1094 struct group
*sys_getgrgid(gid_t gid
);
1095 pid_t
sys_fork(void);
1096 pid_t
sys_getpid(void);
1097 int sys_popen(const char *command
);
1098 int sys_pclose(int fd
);
1099 void *sys_dlopen(const char *name
, int flags
);
1100 void *sys_dlsym(void *handle
, const char *symbol
);
1101 int sys_dlclose (void *handle
);
1102 const char *sys_dlerror(void);
1103 int sys_dup2(int oldfd
, int newfd
) ;
1104 ssize_t
sys_getxattr (const char *path
, const char *name
, void *value
, size_t size
);
1105 ssize_t
sys_lgetxattr (const char *path
, const char *name
, void *value
, size_t size
);
1106 ssize_t
sys_fgetxattr (int filedes
, const char *name
, void *value
, size_t size
);
1107 ssize_t
sys_listxattr (const char *path
, char *list
, size_t size
);
1108 ssize_t
sys_llistxattr (const char *path
, char *list
, size_t size
);
1109 ssize_t
sys_flistxattr (int filedes
, char *list
, size_t size
);
1110 int sys_removexattr (const char *path
, const char *name
);
1111 int sys_lremovexattr (const char *path
, const char *name
);
1112 int sys_fremovexattr (int filedes
, const char *name
);
1113 int sys_setxattr (const char *path
, const char *name
, const void *value
, size_t size
, int flags
);
1114 int sys_lsetxattr (const char *path
, const char *name
, const void *value
, size_t size
, int flags
);
1115 int sys_fsetxattr (int filedes
, const char *name
, const void *value
, size_t size
, int flags
);
1116 uint32
unix_dev_major(SMB_DEV_T dev
);
1117 uint32
unix_dev_minor(SMB_DEV_T dev
);
1118 int sys_aio_read(SMB_STRUCT_AIOCB
*aiocb
);
1119 int sys_aio_write(SMB_STRUCT_AIOCB
*aiocb
);
1120 ssize_t
sys_aio_return(SMB_STRUCT_AIOCB
*aiocb
);
1121 int sys_aio_cancel(int fd
, SMB_STRUCT_AIOCB
*aiocb
);
1122 int sys_aio_error(const SMB_STRUCT_AIOCB
*aiocb
);
1123 int sys_aio_fsync(int op
, SMB_STRUCT_AIOCB
*aiocb
);
1124 int sys_aio_suspend(const SMB_STRUCT_AIOCB
* const cblist
[], int n
, const struct timespec
*timeout
);
1125 int sys_aio_read(SMB_STRUCT_AIOCB
*aiocb
);
1126 int sys_aio_write(SMB_STRUCT_AIOCB
*aiocb
);
1127 ssize_t
sys_aio_return(SMB_STRUCT_AIOCB
*aiocb
);
1128 int sys_aio_cancel(int fd
, SMB_STRUCT_AIOCB
*aiocb
);
1129 int sys_aio_error(const SMB_STRUCT_AIOCB
*aiocb
);
1130 int sys_aio_fsync(int op
, SMB_STRUCT_AIOCB
*aiocb
);
1131 int sys_aio_suspend(const SMB_STRUCT_AIOCB
* const cblist
[], int n
, const struct timespec
*timeout
);
1132 int sys_getpeereid( int s
, uid_t
*uid
);
1133 int sys_getnameinfo(const struct sockaddr
*psa
,
1140 int sys_connect(int fd
, const struct sockaddr
* addr
);
1142 /* The following definitions come from lib/system_smbd.c */
1144 bool getgroups_unix_user(TALLOC_CTX
*mem_ctx
, const char *user
,
1146 gid_t
**ret_groups
, size_t *p_ngroups
);
1148 /* The following definitions come from lib/tallocmsg.c */
1150 void register_msg_pool_usage(struct messaging_context
*msg_ctx
);
1152 /* The following definitions come from lib/time.c */
1154 time_t get_time_t_max(void);
1155 void GetTimeOfDay(struct timeval
*tval
);
1156 time_t nt_time_to_unix(NTTIME nt
);
1157 void unix_to_nt_time(NTTIME
*nt
, time_t t
);
1158 bool null_time(time_t t
);
1159 bool null_nttime(NTTIME t
);
1160 bool null_timespec(struct timespec ts
);
1161 void push_dos_date(uint8_t *buf
, int offset
, time_t unixdate
, int zone_offset
);
1162 void push_dos_date2(uint8_t *buf
,int offset
,time_t unixdate
, int zone_offset
);
1163 void push_dos_date3(uint8_t *buf
,int offset
,time_t unixdate
, int zone_offset
);
1164 time_t pull_dos_date(const uint8_t *date_ptr
, int zone_offset
);
1165 time_t pull_dos_date2(const uint8_t *date_ptr
, int zone_offset
);
1166 time_t pull_dos_date3(const uint8_t *date_ptr
, int zone_offset
);
1167 char *http_timestring(time_t t
);
1168 char *timestring(TALLOC_CTX
*mem_ctx
, time_t t
);
1169 const char *nt_time_string(TALLOC_CTX
*mem_ctx
, NTTIME nt
);
1170 NTTIME
nttime_from_string(const char *s
);
1171 int64_t usec_time_diff(struct timeval
*tv1
, struct timeval
*tv2
);
1172 struct timeval
timeval_zero(void);
1173 bool timeval_is_zero(const struct timeval
*tv
);
1174 struct timeval
timeval_current(void);
1175 struct timeval
timeval_set(uint32_t secs
, uint32_t usecs
);
1176 struct timeval
timeval_add(const struct timeval
*tv
,
1177 uint32_t secs
, uint32_t usecs
);
1178 struct timeval
timeval_sum(const struct timeval
*tv1
,
1179 const struct timeval
*tv2
);
1180 struct timeval
timeval_current_ofs(uint32_t secs
, uint32_t usecs
);
1181 int timeval_compare(const struct timeval
*tv1
, const struct timeval
*tv2
);
1182 bool timeval_expired(const struct timeval
*tv
);
1183 double timeval_elapsed2(const struct timeval
*tv1
, const struct timeval
*tv2
);
1184 double timeval_elapsed(const struct timeval
*tv
);
1185 struct timeval
timeval_min(const struct timeval
*tv1
,
1186 const struct timeval
*tv2
);
1187 struct timeval
timeval_max(const struct timeval
*tv1
,
1188 const struct timeval
*tv2
);
1189 struct timeval
timeval_until(const struct timeval
*tv1
,
1190 const struct timeval
*tv2
);
1191 NTTIME
timeval_to_nttime(const struct timeval
*tv
);
1192 uint32
convert_time_t_to_uint32(time_t t
);
1193 time_t convert_uint32_to_time_t(uint32 u
);
1194 int get_time_zone(time_t t
);
1195 bool nt_time_is_zero(const NTTIME
*nt
);
1196 time_t generalized_to_unix_time(const char *str
);
1197 int get_server_zone_offset(void);
1198 int set_server_zone_offset(time_t t
);
1199 char *current_timestring(TALLOC_CTX
*ctx
, bool hires
);
1200 void srv_put_dos_date(char *buf
,int offset
,time_t unixdate
);
1201 void srv_put_dos_date2(char *buf
,int offset
, time_t unixdate
);
1202 void srv_put_dos_date3(char *buf
,int offset
,time_t unixdate
);
1203 void put_long_date_timespec(char *p
, struct timespec ts
);
1204 void put_long_date(char *p
, time_t t
);
1205 time_t get_create_time(const SMB_STRUCT_STAT
*st
,bool fake_dirs
);
1206 struct timespec
get_create_timespec(const SMB_STRUCT_STAT
*st
,bool fake_dirs
);
1207 struct timespec
get_atimespec(const SMB_STRUCT_STAT
*pst
);
1208 void set_atimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1209 struct timespec
get_mtimespec(const SMB_STRUCT_STAT
*pst
);
1210 void set_mtimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1211 struct timespec
get_ctimespec(const SMB_STRUCT_STAT
*pst
);
1212 void set_ctimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1213 void dos_filetime_timespec(struct timespec
*tsp
);
1214 time_t srv_make_unix_date(const void *date_ptr
);
1215 time_t srv_make_unix_date2(const void *date_ptr
);
1216 time_t srv_make_unix_date3(const void *date_ptr
);
1217 time_t convert_timespec_to_time_t(struct timespec ts
);
1218 struct timespec
convert_time_t_to_timespec(time_t t
);
1219 struct timespec
convert_timeval_to_timespec(const struct timeval tv
);
1220 struct timeval
convert_timespec_to_timeval(const struct timespec ts
);
1221 struct timespec
timespec_current(void);
1222 struct timespec
timespec_min(const struct timespec
*ts1
,
1223 const struct timespec
*ts2
);
1224 int timespec_compare(const struct timespec
*ts1
, const struct timespec
*ts2
);
1225 struct timespec
interpret_long_date(const char *p
);
1226 void cli_put_dos_date(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1227 void cli_put_dos_date2(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1228 void cli_put_dos_date3(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1229 time_t cli_make_unix_date(struct cli_state
*cli
, const void *date_ptr
);
1230 time_t cli_make_unix_date2(struct cli_state
*cli
, const void *date_ptr
);
1231 time_t cli_make_unix_date3(struct cli_state
*cli
, const void *date_ptr
);
1232 struct timespec
nt_time_to_unix_timespec(NTTIME
*nt
);
1233 bool nt_time_equals(const NTTIME
*nt1
, const NTTIME
*nt2
);
1234 void TimeInit(void);
1235 void get_process_uptime(struct timeval
*ret_time
);
1236 time_t nt_time_to_unix_abs(const NTTIME
*nt
);
1237 void unix_timespec_to_nt_time(NTTIME
*nt
, struct timespec ts
);
1238 void unix_to_nt_time_abs(NTTIME
*nt
, time_t t
);
1239 bool null_mtime(time_t mtime
);
1240 const char *time_to_asc(const time_t t
);
1241 const char *display_time(NTTIME nttime
);
1242 bool nt_time_is_set(const NTTIME
*nt
);
1244 /* The following definitions come from lib/ufc.c */
1246 char *ufc_crypt(const char *key
,const char *salt
);
1248 /* The following definitions come from lib/username.c */
1250 char *get_user_home_dir(TALLOC_CTX
*mem_ctx
, const char *user
);
1251 struct passwd
*Get_Pwnam_alloc(TALLOC_CTX
*mem_ctx
, const char *user
);
1253 /* The following definitions come from lib/util.c */
1255 bool set_global_myname(const char *myname
);
1256 const char *global_myname(void);
1257 bool set_global_myworkgroup(const char *myworkgroup
);
1258 const char *lp_workgroup(void);
1259 bool set_global_scope(const char *scope
);
1260 const char *global_scope(void);
1261 void gfree_names(void);
1262 void gfree_all( void );
1263 const char *my_netbios_names(int i
);
1264 bool set_netbios_aliases(const char **str_array
);
1265 bool init_names(void);
1266 const char *get_cmdline_auth_info_username(void);
1267 void set_cmdline_auth_info_username(const char *username
);
1268 const char *get_cmdline_auth_info_password(void);
1269 void set_cmdline_auth_info_password(const char *password
);
1270 bool set_cmdline_auth_info_signing_state(const char *arg
);
1271 int get_cmdline_auth_info_signing_state(void);
1272 bool get_cmdline_auth_info_use_kerberos(void);
1273 void set_cmdline_auth_info_use_krb5_ticket(void);
1274 void set_cmdline_auth_info_smb_encrypt(void);
1275 void set_cmdline_auth_info_use_machine_account(void);
1276 bool get_cmdline_auth_info_got_pass(void);
1277 bool get_cmdline_auth_info_smb_encrypt(void);
1278 bool get_cmdline_auth_info_use_machine_account(void);
1279 bool get_cmdline_auth_info_copy(struct user_auth_info
*info
);
1280 bool set_cmdline_auth_info_machine_account_creds(void);
1281 const char *tmpdir(void);
1282 bool add_gid_to_array_unique(TALLOC_CTX
*mem_ctx
, gid_t gid
,
1283 gid_t
**gids
, size_t *num_gids
);
1284 const char *get_numlist(const char *p
, uint32
**num
, int *count
);
1285 bool file_exist(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
1286 bool socket_exist(const char *fname
);
1287 time_t file_modtime(const char *fname
);
1288 bool directory_exist(char *dname
,SMB_STRUCT_STAT
*st
);
1289 SMB_OFF_T
get_file_size(char *file_name
);
1290 char *attrib_string(uint16 mode
);
1291 void show_msg(char *buf
);
1292 void smb_set_enclen(char *buf
,int len
,uint16 enc_ctx_num
);
1293 void smb_setlen(char *buf
,int len
);
1294 int set_message_bcc(char *buf
,int num_bytes
);
1295 ssize_t
message_push_blob(uint8
**outbuf
, DATA_BLOB blob
);
1296 char *unix_clean_name(TALLOC_CTX
*ctx
, const char *s
);
1297 char *clean_name(TALLOC_CTX
*ctx
, const char *s
);
1298 void close_low_fds(bool stderr_too
);
1299 ssize_t
write_data_at_offset(int fd
, const char *buffer
, size_t N
, SMB_OFF_T pos
);
1300 int set_blocking(int fd
, bool set
);
1301 void smb_msleep(unsigned int t
);
1302 void become_daemon(bool Fork
, bool no_process_group
);
1303 bool reinit_after_fork(struct messaging_context
*msg_ctx
,
1304 bool parent_longlived
);
1305 bool yesno(const char *p
);
1306 void *malloc_(size_t size
);
1307 void *malloc_array(size_t el_size
, unsigned int count
);
1308 void *memalign_array(size_t el_size
, size_t align
, unsigned int count
);
1309 void *calloc_array(size_t size
, size_t nmemb
);
1310 void *Realloc(void *p
, size_t size
, bool free_old_on_error
);
1311 void *realloc_array(void *p
, size_t el_size
, unsigned int count
, bool free_old_on_error
);
1312 void add_to_large_array(TALLOC_CTX
*mem_ctx
, size_t element_size
,
1313 void *element
, void *_array
, uint32
*num_elements
,
1314 ssize_t
*array_size
);
1315 void safe_free(void *p
);
1316 char *get_myname(TALLOC_CTX
*ctx
);
1317 char *get_mydnsdomname(TALLOC_CTX
*ctx
);
1318 int interpret_protocol(const char *str
,int def
);
1319 char *automount_lookup(TALLOC_CTX
*ctx
, const char *user_name
);
1320 char *automount_lookup(TALLOC_CTX
*ctx
, const char *user_name
);
1321 bool process_exists(const struct server_id pid
);
1322 bool process_exists_by_pid(pid_t pid
);
1323 const char *uidtoname(uid_t uid
);
1324 char *gidtoname(gid_t gid
);
1325 uid_t
nametouid(const char *name
);
1326 gid_t
nametogid(const char *name
);
1327 void smb_panic(const char *const why
);
1328 void log_stack_trace(void);
1329 const char *readdirname(SMB_STRUCT_DIR
*p
);
1330 bool is_in_path(const char *name
, name_compare_entry
*namelist
, bool case_sensitive
);
1331 void set_namearray(name_compare_entry
**ppname_array
, const char *namelist
);
1332 void free_namearray(name_compare_entry
*name_array
);
1333 bool fcntl_lock(int fd
, int op
, SMB_OFF_T offset
, SMB_OFF_T count
, int type
);
1334 bool fcntl_getlock(int fd
, SMB_OFF_T
*poffset
, SMB_OFF_T
*pcount
, int *ptype
, pid_t
*ppid
);
1335 bool is_myname(const char *s
);
1336 bool is_myworkgroup(const char *s
);
1337 void ra_lanman_string( const char *native_lanman
);
1338 const char *get_remote_arch_str(void);
1339 void set_remote_arch(enum remote_arch_types type
);
1340 enum remote_arch_types
get_remote_arch(void);
1341 void print_asc(int level
, const unsigned char *buf
,int len
);
1342 void dump_data(int level
, const unsigned char *buf1
,int len
);
1343 void dump_data_pw(const char *msg
, const uchar
* data
, size_t len
);
1344 const char *tab_depth(int level
, int depth
);
1345 int str_checksum(const char *s
);
1346 void zero_free(void *p
, size_t size
);
1347 int set_maxfiles(int requested_max
);
1348 int smb_mkstemp(char *name_template
);
1349 void *smb_xmalloc_array(size_t size
, unsigned int count
);
1350 void *smb_xmemdup(const void *p
, size_t size
);
1351 char *smb_xstrdup(const char *s
);
1352 char *smb_xstrndup(const char *s
, size_t n
);
1353 void *memdup(const void *p
, size_t size
);
1354 char *myhostname(void);
1355 char *lock_path(const char *name
);
1356 char *pid_path(const char *name
);
1357 char *lib_path(const char *name
);
1358 char *data_path(const char *name
);
1359 char *state_path(const char *name
);
1360 const char *shlib_ext(void);
1361 char *parent_dirname(const char *path
);
1362 bool parent_dirname_talloc(TALLOC_CTX
*mem_ctx
, const char *dir
,
1363 char **parent
, const char **name
);
1364 bool ms_has_wild(const char *s
);
1365 bool ms_has_wild_w(const smb_ucs2_t
*s
);
1366 bool mask_match(const char *string
, const char *pattern
, bool is_case_sensitive
);
1367 bool mask_match_search(const char *string
, const char *pattern
, bool is_case_sensitive
);
1368 bool mask_match_list(const char *string
, char **list
, int listLen
, bool is_case_sensitive
);
1369 bool unix_wild_match(const char *pattern
, const char *string
);
1370 bool name_to_fqdn(fstring fqdn
, const char *name
);
1371 void *talloc_check_name_abort(const void *ptr
, const char *name
);
1372 uint32
map_share_mode_to_deny_mode(uint32 share_access
, uint32 private_options
);
1373 pid_t
procid_to_pid(const struct server_id
*proc
);
1374 void set_my_vnn(uint32 vnn
);
1375 uint32
get_my_vnn(void);
1376 struct server_id
pid_to_procid(pid_t pid
);
1377 struct server_id
procid_self(void);
1378 struct server_id
server_id_self(void);
1379 bool procid_equal(const struct server_id
*p1
, const struct server_id
*p2
);
1380 bool cluster_id_equal(const struct server_id
*id1
,
1381 const struct server_id
*id2
);
1382 bool procid_is_me(const struct server_id
*pid
);
1383 struct server_id
interpret_pid(const char *pid_string
);
1384 char *procid_str(TALLOC_CTX
*mem_ctx
, const struct server_id
*pid
);
1385 char *procid_str_static(const struct server_id
*pid
);
1386 bool procid_valid(const struct server_id
*pid
);
1387 bool procid_is_local(const struct server_id
*pid
);
1388 int this_is_smp(void);
1389 bool is_offset_safe(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1390 char *get_safe_ptr(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1391 char *get_safe_str_ptr(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1392 int get_safe_SVAL(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
, int failval
);
1393 int get_safe_IVAL(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
, int failval
);
1394 void split_domain_user(TALLOC_CTX
*mem_ctx
,
1395 const char *full_name
,
1398 void *_talloc_zero_zeronull(const void *ctx
, size_t size
, const char *name
);
1399 void *_talloc_memdup_zeronull(const void *t
, const void *p
, size_t size
, const char *name
);
1400 void *_talloc_array_zeronull(const void *ctx
, size_t el_size
, unsigned count
, const char *name
);
1401 void *_talloc_zero_array_zeronull(const void *ctx
, size_t el_size
, unsigned count
, const char *name
);
1402 void *talloc_zeronull(const void *context
, size_t size
, const char *name
);
1403 NTSTATUS
split_ntfs_stream_name(TALLOC_CTX
*mem_ctx
, const char *fname
,
1404 char **pbase
, char **pstream
);
1405 bool is_valid_policy_hnd(const POLICY_HND
*hnd
);
1406 const char *strip_hostname(const char *s
);
1408 /* The following definitions come from lib/util_file.c */
1410 char *fgets_slash(char *s2
,int maxlen
,XFILE
*f
);
1411 char *fd_load(int fd
, size_t *psize
, size_t maxsize
);
1412 char *file_load(const char *fname
, size_t *size
, size_t maxsize
);
1413 bool unmap_file(void* start
, size_t size
);
1414 void *map_file(char *fname
, size_t size
);
1415 char **file_lines_load(const char *fname
, int *numlines
, size_t maxsize
);
1416 char **fd_lines_load(int fd
, int *numlines
, size_t maxsize
);
1417 char **file_lines_pload(char *syscmd
, int *numlines
);
1418 void file_lines_free(char **lines
);
1419 void file_lines_slashcont(char **lines
);
1420 bool file_save(const char *fname
, void *packet
, size_t length
);
1422 /* The following definitions come from lib/util_nscd.c */
1424 void smb_nscd_flush_user_cache(void);
1425 void smb_nscd_flush_group_cache(void);
1427 /* The following definitions come from lib/util_nttoken.c */
1429 NT_USER_TOKEN
*dup_nt_token(TALLOC_CTX
*mem_ctx
, const NT_USER_TOKEN
*ptoken
);
1430 NTSTATUS
merge_nt_token(TALLOC_CTX
*mem_ctx
,
1431 const struct nt_user_token
*token_1
,
1432 const struct nt_user_token
*token_2
,
1433 struct nt_user_token
**token_out
);
1435 /* The following definitions come from lib/util_pw.c */
1437 struct passwd
*tcopy_passwd(TALLOC_CTX
*mem_ctx
, const struct passwd
*from
) ;
1438 void flush_pwnam_cache(void);
1439 struct passwd
*getpwnam_alloc(TALLOC_CTX
*mem_ctx
, const char *name
);
1440 struct passwd
*getpwuid_alloc(TALLOC_CTX
*mem_ctx
, uid_t uid
) ;
1442 /* The following definitions come from lib/util_reg.c */
1444 const char *reg_type_lookup(enum winreg_Type type
);
1445 WERROR
reg_pull_multi_sz(TALLOC_CTX
*mem_ctx
, const void *buf
, size_t len
,
1446 uint32
*num_values
, char ***values
);
1448 /* The following definitions come from lib/util_reg_api.c */
1450 WERROR
registry_pull_value(TALLOC_CTX
*mem_ctx
,
1451 struct registry_value
**pvalue
,
1452 enum winreg_Type type
, uint8
*data
,
1453 uint32 size
, uint32 length
);
1454 WERROR
registry_push_value(TALLOC_CTX
*mem_ctx
,
1455 const struct registry_value
*value
,
1456 DATA_BLOB
*presult
);
1458 /* The following definitions come from lib/util_seaccess.c */
1460 void se_map_generic(uint32
*access_mask
, const struct generic_mapping
*mapping
);
1461 void se_map_standard(uint32
*access_mask
, struct standard_mapping
*mapping
);
1462 bool se_access_check(const SEC_DESC
*sd
, const NT_USER_TOKEN
*token
,
1463 uint32 acc_desired
, uint32
*acc_granted
,
1465 NTSTATUS
samr_make_sam_obj_sd(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, size_t *sd_size
);
1467 /* The following definitions come from lib/util_sec.c */
1469 void sec_init(void);
1470 uid_t
sec_initial_uid(void);
1471 gid_t
sec_initial_gid(void);
1472 bool non_root_mode(void);
1473 void gain_root_privilege(void);
1474 void gain_root_group_privilege(void);
1475 void set_effective_uid(uid_t uid
);
1476 void set_effective_gid(gid_t gid
);
1477 void save_re_uid(void);
1478 void restore_re_uid_fromroot(void);
1479 void restore_re_uid(void);
1480 void save_re_gid(void);
1481 void restore_re_gid(void);
1482 int set_re_uid(void);
1483 void become_user_permanently(uid_t uid
, gid_t gid
);
1484 bool is_setuid_root(void) ;
1486 /* The following definitions come from lib/util_sid.c */
1488 const char *sid_type_lookup(uint32 sid_type
) ;
1489 NT_USER_TOKEN
*get_system_token(void) ;
1490 const char *get_global_sam_name(void) ;
1491 char *sid_to_fstring(fstring sidstr_out
, const DOM_SID
*sid
);
1492 char *sid_string_talloc(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
);
1493 char *sid_string_dbg(const DOM_SID
*sid
);
1494 char *sid_string_tos(const DOM_SID
*sid
);
1495 bool string_to_sid(DOM_SID
*sidout
, const char *sidstr
);
1496 DOM_SID
*string_sid_talloc(TALLOC_CTX
*mem_ctx
, const char *sidstr
);
1497 bool sid_append_rid(DOM_SID
*sid
, uint32 rid
);
1498 bool sid_compose(DOM_SID
*dst
, const DOM_SID
*domain_sid
, uint32 rid
);
1499 bool sid_split_rid(DOM_SID
*sid
, uint32
*rid
);
1500 bool sid_peek_rid(const DOM_SID
*sid
, uint32
*rid
);
1501 bool sid_peek_check_rid(const DOM_SID
*exp_dom_sid
, const DOM_SID
*sid
, uint32
*rid
);
1502 void sid_copy(DOM_SID
*dst
, const DOM_SID
*src
);
1503 bool sid_linearize(char *outbuf
, size_t len
, const DOM_SID
*sid
);
1504 bool sid_parse(const char *inbuf
, size_t len
, DOM_SID
*sid
);
1505 int sid_compare(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1506 int sid_compare_domain(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1507 bool sid_equal(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1508 bool non_mappable_sid(DOM_SID
*sid
);
1509 char *sid_binstring(const DOM_SID
*sid
);
1510 char *sid_binstring_hex(const DOM_SID
*sid
);
1511 DOM_SID
*sid_dup_talloc(TALLOC_CTX
*ctx
, const DOM_SID
*src
);
1512 NTSTATUS
add_sid_to_array(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1513 DOM_SID
**sids
, size_t *num
);
1514 NTSTATUS
add_sid_to_array_unique(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1515 DOM_SID
**sids
, size_t *num_sids
);
1516 void del_sid_from_array(const DOM_SID
*sid
, DOM_SID
**sids
, size_t *num
);
1517 bool add_rid_to_array_unique(TALLOC_CTX
*mem_ctx
,
1518 uint32 rid
, uint32
**pp_rids
, size_t *p_num
);
1519 bool is_null_sid(const DOM_SID
*sid
);
1520 NTSTATUS
sid_array_from_info3(TALLOC_CTX
*mem_ctx
,
1521 const struct netr_SamInfo3
*info3
,
1522 DOM_SID
**user_sids
,
1523 size_t *num_user_sids
,
1524 bool include_user_group_rid
,
1525 bool skip_ressource_groups
);
1527 /* The following definitions come from lib/util_sock.c */
1529 bool is_ipaddress_v4(const char *str
);
1530 bool is_ipaddress(const char *str
);
1531 bool is_broadcast_addr(const struct sockaddr_storage
*pss
);
1532 uint32
interpret_addr(const char *str
);
1533 struct in_addr
*interpret_addr2(struct in_addr
*ip
, const char *str
);
1534 bool interpret_string_addr(struct sockaddr_storage
*pss
,
1537 bool is_loopback_ip_v4(struct in_addr ip
);
1538 bool is_loopback_addr(const struct sockaddr_storage
*pss
);
1539 bool is_zero_ip_v4(struct in_addr ip
);
1540 bool is_zero_addr(const struct sockaddr_storage
*pss
);
1541 void zero_ip_v4(struct in_addr
*ip
);
1542 void zero_addr(struct sockaddr_storage
*pss
);
1543 bool same_net_v4(struct in_addr ip1
,struct in_addr ip2
,struct in_addr mask
);
1544 void in_addr_to_sockaddr_storage(struct sockaddr_storage
*ss
,
1546 bool same_net(const struct sockaddr_storage
*ip1
,
1547 const struct sockaddr_storage
*ip2
,
1548 const struct sockaddr_storage
*mask
);
1549 bool addr_equal(const struct sockaddr_storage
*ip1
,
1550 const struct sockaddr_storage
*ip2
);
1551 bool is_address_any(const struct sockaddr_storage
*psa
);
1552 uint16_t get_sockaddr_port(const struct sockaddr_storage
*pss
);
1553 char *print_sockaddr(char *dest
,
1555 const struct sockaddr_storage
*psa
);
1556 char *print_canonical_sockaddr(TALLOC_CTX
*ctx
,
1557 const struct sockaddr_storage
*pss
);
1558 void set_sockaddr_port(struct sockaddr_storage
*psa
, uint16 port
);
1559 const char *client_name(int fd
);
1560 const char *client_addr(int fd
, char *addr
, size_t addrlen
);
1561 const char *client_socket_addr(int fd
, char *addr
, size_t addr_len
);
1562 int client_socket_port(int fd
);
1563 void set_smb_read_error(enum smb_read_errors
*pre
,
1564 enum smb_read_errors newerr
);
1565 void cond_set_smb_read_error(enum smb_read_errors
*pre
,
1566 enum smb_read_errors newerr
);
1567 bool is_a_socket(int fd
);
1568 void set_socket_options(int fd
, const char *options
);
1569 ssize_t
read_udp_v4_socket(int fd
,
1572 struct sockaddr_storage
*psa
);
1573 NTSTATUS
read_socket_with_timeout(int fd
, char *buf
,
1574 size_t mincnt
, size_t maxcnt
,
1575 unsigned int time_out
,
1577 NTSTATUS
read_data(int fd
, char *buffer
, size_t N
);
1578 ssize_t
write_data(int fd
, const char *buffer
, size_t N
);
1579 bool send_keepalive(int client
);
1580 NTSTATUS
read_smb_length_return_keepalive(int fd
, char *inbuf
,
1581 unsigned int timeout
,
1583 NTSTATUS
read_smb_length(int fd
, char *inbuf
, unsigned int timeout
,
1585 NTSTATUS
receive_smb_raw(int fd
,
1588 unsigned int timeout
,
1591 int open_socket_in(int type
,
1594 const struct sockaddr_storage
*psock
,
1596 int open_socket_out(int type
,
1597 const struct sockaddr_storage
*pss
,
1600 bool open_any_socket_out(struct sockaddr_storage
*addrs
, int num_addrs
,
1601 int timeout
, int *fd_index
, int *fd
);
1602 int open_udp_socket(const char *host
, int port
);
1603 const char *get_peer_name(int fd
, bool force_lookup
);
1604 const char *get_peer_addr(int fd
, char *addr
, size_t addr_len
);
1605 int create_pipe_sock(const char *socket_dir
,
1606 const char *socket_name
,
1608 const char *get_mydnsfullname(void);
1609 bool is_myname_or_ipaddr(const char *s
);
1611 /* The following definitions come from lib/util_str.c */
1613 bool next_token(const char **ptr
, char *buff
, const char *sep
, size_t bufsize
);
1614 bool next_token_talloc(TALLOC_CTX
*ctx
,
1618 bool next_token_no_ltrim_talloc(TALLOC_CTX
*ctx
,
1622 int StrCaseCmp(const char *s
, const char *t
);
1623 int StrnCaseCmp(const char *s
, const char *t
, size_t len
);
1624 bool strequal(const char *s1
, const char *s2
);
1625 bool strnequal(const char *s1
,const char *s2
,size_t n
);
1626 bool strcsequal(const char *s1
,const char *s2
);
1627 int strwicmp(const char *psz1
, const char *psz2
);
1628 void strnorm(char *s
, int case_default
);
1629 bool strisnormal(const char *s
, int case_default
);
1630 void string_replace( char *s
, char oldc
, char newc
);
1631 char *push_skip_string(char *buf
);
1632 char *skip_string(const char *base
, size_t len
, char *buf
);
1633 size_t str_charnum(const char *s
);
1634 size_t str_ascii_charnum(const char *s
);
1635 bool trim_char(char *s
,char cfront
,char cback
);
1636 bool trim_string(char *s
,const char *front
,const char *back
);
1637 bool strhasupper(const char *s
);
1638 bool strhaslower(const char *s
);
1639 size_t count_chars(const char *s
,char c
);
1640 char *safe_strcpy_fn(const char *fn
,
1645 char *safe_strcat_fn(const char *fn
,
1650 char *alpha_strcpy_fn(const char *fn
,
1654 const char *other_safe_chars
,
1656 char *StrnCpy_fn(const char *fn
, int line
,char *dest
,const char *src
,size_t n
);
1657 size_t strhex_to_str(char *buf
, size_t buf_len
, const char *strhex
, size_t strhex_len
);
1658 DATA_BLOB
strhex_to_data_blob(TALLOC_CTX
*mem_ctx
, const char *strhex
);
1659 char *hex_encode(TALLOC_CTX
*mem_ctx
, const unsigned char *buff_in
, size_t len
);
1660 bool in_list(const char *s
, const char *list
, bool casesensitive
);
1661 void string_free(char **s
);
1662 bool string_set(char **dest
,const char *src
);
1663 void string_sub2(char *s
,const char *pattern
, const char *insert
, size_t len
,
1664 bool remove_unsafe_characters
, bool replace_once
,
1665 bool allow_trailing_dollar
);
1666 void string_sub_once(char *s
, const char *pattern
,
1667 const char *insert
, size_t len
);
1668 void string_sub(char *s
,const char *pattern
, const char *insert
, size_t len
);
1669 void fstring_sub(char *s
,const char *pattern
,const char *insert
);
1670 char *realloc_string_sub2(char *string
,
1671 const char *pattern
,
1673 bool remove_unsafe_characters
,
1674 bool allow_trailing_dollar
);
1675 char *realloc_string_sub(char *string
,
1676 const char *pattern
,
1677 const char *insert
);
1678 char *talloc_string_sub2(TALLOC_CTX
*mem_ctx
, const char *src
,
1679 const char *pattern
,
1681 bool remove_unsafe_characters
,
1683 bool allow_trailing_dollar
);
1684 char *talloc_string_sub(TALLOC_CTX
*mem_ctx
,
1686 const char *pattern
,
1687 const char *insert
);
1688 void all_string_sub(char *s
,const char *pattern
,const char *insert
, size_t len
);
1689 char *talloc_all_string_sub(TALLOC_CTX
*ctx
,
1691 const char *pattern
,
1692 const char *insert
);
1693 char *octal_string(int i
);
1694 char *string_truncate(char *s
, unsigned int length
);
1695 char *strchr_m(const char *src
, char c
);
1696 char *strrchr_m(const char *s
, char c
);
1697 char *strnrchr_m(const char *s
, char c
, unsigned int n
);
1698 char *strstr_m(const char *src
, const char *findstr
);
1699 void strlower_m(char *s
);
1700 void strupper_m(char *s
);
1701 size_t strlen_m(const char *s
);
1702 size_t strlen_m_term(const char *s
);
1703 size_t strlen_m_term_null(const char *s
);
1704 char *binary_string_rfc2254(char *buf
, int len
);
1705 char *binary_string(char *buf
, int len
);
1706 int fstr_sprintf(fstring s
, const char *fmt
, ...);
1707 char **str_list_make(TALLOC_CTX
*mem_ctx
, const char *string
, const char *sep
);
1708 bool str_list_copy(TALLOC_CTX
*mem_ctx
, char ***dest
, const char **src
);
1709 bool str_list_compare(char **list1
, char **list2
);
1710 int str_list_count( const char **list
);
1711 bool str_list_sub_basic( char **list
, const char *smb_name
,
1712 const char *domain_name
);
1713 bool str_list_substitute(char **list
, const char *pattern
, const char *insert
);
1714 char *ipstr_list_make(char **ipstr_list
,
1715 const struct ip_service
*ip_list
,
1717 int ipstr_list_parse(const char *ipstr_list
, struct ip_service
**ip_list
);
1718 void ipstr_list_free(char* ipstr_list
);
1719 void rfc1738_unescape(char *buf
);
1720 DATA_BLOB
base64_decode_data_blob(const char *s
);
1721 void base64_decode_inplace(char *s
);
1722 char *base64_encode_data_blob(TALLOC_CTX
*mem_ctx
, DATA_BLOB data
);
1723 SMB_BIG_UINT
STR_TO_SMB_BIG_UINT(const char *nptr
, const char **entptr
);
1724 SMB_OFF_T
conv_str_size(const char * str
);
1725 void string_append(char **left
, const char *right
);
1726 bool add_string_to_array(TALLOC_CTX
*mem_ctx
,
1727 const char *str
, const char ***strings
,
1729 void sprintf_append(TALLOC_CTX
*mem_ctx
, char **string
, ssize_t
*len
,
1730 size_t *bufsize
, const char *fmt
, ...);
1731 int asprintf_strupper_m(char **strp
, const char *fmt
, ...);
1732 char *talloc_asprintf_strupper_m(TALLOC_CTX
*t
, const char *fmt
, ...);
1733 char *talloc_asprintf_strlower_m(TALLOC_CTX
*t
, const char *fmt
, ...);
1734 char *sstring_sub(const char *src
, char front
, char back
);
1735 bool validate_net_name( const char *name
,
1736 const char *invalid_chars
,
1738 size_t ascii_len_n(const char *src
, size_t n
);
1739 size_t utf16_len(const void *buf
);
1740 size_t utf16_len_n(const void *src
, size_t n
);
1741 char *escape_shell_string(const char *src
);
1743 /* The following definitions come from lib/util_unistr.c */
1745 void gfree_case_tables(void);
1746 void load_case_tables(void);
1747 void init_valid_table(void);
1748 size_t dos_PutUniCode(char *dst
,const char *src
, size_t len
, bool null_terminate
);
1749 char *skip_unibuf(char *src
, size_t len
);
1750 int rpcstr_pull(char* dest
, void *src
, int dest_len
, int src_len
, int flags
);
1751 int rpcstr_pull_talloc(TALLOC_CTX
*ctx
,
1756 int rpcstr_pull_unistr2_fstring(char *dest
, UNISTR2
*src
);
1757 char *rpcstr_pull_unistr2_talloc(TALLOC_CTX
*ctx
, const UNISTR2
*src
);
1758 int rpcstr_push(void *dest
, const char *src
, size_t dest_len
, int flags
);
1759 int rpcstr_push_talloc(TALLOC_CTX
*ctx
, smb_ucs2_t
**dest
, const char *src
);
1760 void unistr2_to_ascii(char *dest
, const UNISTR2
*str
, size_t maxlen
);
1761 void unistr3_to_ascii(char *dest
, const UNISTR3
*str
, size_t maxlen
);
1762 char *unistr2_to_ascii_talloc(TALLOC_CTX
*ctx
, const UNISTR2
*str
);
1763 const char *unistr2_static(const UNISTR2
*str
);
1764 smb_ucs2_t
toupper_w(smb_ucs2_t val
);
1765 smb_ucs2_t
tolower_w( smb_ucs2_t val
);
1766 bool islower_w(smb_ucs2_t c
);
1767 bool isupper_w(smb_ucs2_t c
);
1768 bool isvalid83_w(smb_ucs2_t c
);
1769 size_t strlen_w(const smb_ucs2_t
*src
);
1770 size_t strnlen_w(const smb_ucs2_t
*src
, size_t max
);
1771 smb_ucs2_t
*strchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
);
1772 smb_ucs2_t
*strchr_wa(const smb_ucs2_t
*s
, char c
);
1773 smb_ucs2_t
*strrchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
);
1774 smb_ucs2_t
*strnrchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
, unsigned int n
);
1775 smb_ucs2_t
*strstr_w(const smb_ucs2_t
*s
, const smb_ucs2_t
*ins
);
1776 bool strlower_w(smb_ucs2_t
*s
);
1777 bool strupper_w(smb_ucs2_t
*s
);
1778 void strnorm_w(smb_ucs2_t
*s
, int case_default
);
1779 int strcmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
);
1780 int strncmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
, size_t len
);
1781 int strcasecmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
);
1782 int strncasecmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
, size_t len
);
1783 bool strequal_w(const smb_ucs2_t
*s1
, const smb_ucs2_t
*s2
);
1784 bool strnequal_w(const smb_ucs2_t
*s1
,const smb_ucs2_t
*s2
,size_t n
);
1785 smb_ucs2_t
*strdup_w(const smb_ucs2_t
*src
);
1786 smb_ucs2_t
*strndup_w(const smb_ucs2_t
*src
, size_t len
);
1787 smb_ucs2_t
*strncpy_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
, const size_t max
);
1788 smb_ucs2_t
*strncat_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
, const size_t max
);
1789 smb_ucs2_t
*strcat_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
);
1790 void string_replace_w(smb_ucs2_t
*s
, smb_ucs2_t oldc
, smb_ucs2_t newc
);
1791 bool trim_string_w(smb_ucs2_t
*s
, const smb_ucs2_t
*front
,
1792 const smb_ucs2_t
*back
);
1793 int strcmp_wa(const smb_ucs2_t
*a
, const char *b
);
1794 int strncmp_wa(const smb_ucs2_t
*a
, const char *b
, size_t len
);
1795 smb_ucs2_t
*strpbrk_wa(const smb_ucs2_t
*s
, const char *p
);
1796 smb_ucs2_t
*strstr_wa(const smb_ucs2_t
*s
, const char *ins
);
1797 int unistrlen(uint16
*s
);
1798 int unistrcpy(uint16
*dst
, uint16
*src
);
1799 UNISTR2
* ucs2_to_unistr2(TALLOC_CTX
*ctx
, UNISTR2
* dst
, smb_ucs2_t
* src
);
1800 int toupper_ascii(int c
);
1801 int tolower_ascii(int c
);
1802 int isupper_ascii(int c
);
1803 int islower_ascii(int c
);
1805 /* The following definitions come from lib/util_uuid.c */
1807 void smb_uuid_pack(const struct GUID uu
, UUID_FLAT
*ptr
);
1808 void smb_uuid_unpack(const UUID_FLAT in
, struct GUID
*uu
);
1809 void smb_uuid_generate_random(struct GUID
*uu
);
1810 const char *smb_uuid_string(TALLOC_CTX
*mem_ctx
, const struct GUID uu
);
1811 bool smb_string_to_uuid(const char *in
, struct GUID
* uu
);
1812 char *guid_binstring(const struct GUID
*guid
);
1814 /* The following definitions come from lib/version.c */
1816 const char *samba_version_string(void);
1818 /* The following definitions come from lib/winbind_util.c */
1820 bool winbind_lookup_name(const char *dom_name
, const char *name
, DOM_SID
*sid
,
1821 enum lsa_SidType
*name_type
);
1822 bool winbind_lookup_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1823 const char **domain
, const char **name
,
1824 enum lsa_SidType
*name_type
);
1825 bool winbind_ping(void);
1826 bool winbind_sid_to_uid(uid_t
*puid
, const DOM_SID
*sid
);
1827 bool winbind_uid_to_sid(DOM_SID
*sid
, uid_t uid
);
1828 bool winbind_sid_to_gid(gid_t
*pgid
, const DOM_SID
*sid
);
1829 bool winbind_gid_to_sid(DOM_SID
*sid
, gid_t gid
);
1830 wbcErr
wb_is_trusted_domain(const char *domain
);
1831 bool winbind_lookup_rids(TALLOC_CTX
*mem_ctx
,
1832 const DOM_SID
*domain_sid
,
1833 int num_rids
, uint32
*rids
,
1834 const char **domain_name
,
1835 const char ***names
, enum lsa_SidType
**types
);
1836 bool winbind_allocate_uid(uid_t
*uid
);
1837 bool winbind_allocate_gid(gid_t
*gid
);
1838 bool winbind_lookup_name(const char *dom_name
, const char *name
, DOM_SID
*sid
,
1839 enum lsa_SidType
*name_type
);
1840 bool winbind_lookup_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1841 const char **domain
, const char **name
,
1842 enum lsa_SidType
*name_type
);
1843 bool winbind_ping(void);
1844 bool winbind_sid_to_uid(uid_t
*puid
, const DOM_SID
*sid
);
1845 bool winbind_uid_to_sid(DOM_SID
*sid
, uid_t uid
);
1846 bool winbind_sid_to_gid(gid_t
*pgid
, const DOM_SID
*sid
);
1847 bool winbind_gid_to_sid(DOM_SID
*sid
, gid_t gid
);
1848 wbcErr
wb_is_trusted_domain(const char *domain
);
1849 bool winbind_lookup_rids(TALLOC_CTX
*mem_ctx
,
1850 const DOM_SID
*domain_sid
,
1851 int num_rids
, uint32
*rids
,
1852 const char **domain_name
,
1853 const char ***names
, enum lsa_SidType
**types
);
1854 bool winbind_allocate_uid(uid_t
*uid
);
1855 bool winbind_allocate_gid(gid_t
*gid
);
1857 /* The following definitions come from lib/wins_srv.c */
1859 bool wins_srv_is_dead(struct in_addr wins_ip
, struct in_addr src_ip
);
1860 void wins_srv_alive(struct in_addr wins_ip
, struct in_addr src_ip
);
1861 void wins_srv_died(struct in_addr wins_ip
, struct in_addr src_ip
);
1862 unsigned wins_srv_count(void);
1863 char **wins_srv_tags(void);
1864 void wins_srv_tags_free(char **list
);
1865 struct in_addr
wins_srv_ip_tag(const char *tag
, struct in_addr src_ip
);
1866 unsigned wins_srv_count_tag(const char *tag
);
1868 /* The following definitions come from lib/xfile.c */
1870 int x_setvbuf(XFILE
*f
, char *buf
, int mode
, size_t size
);
1871 XFILE
*x_fopen(const char *fname
, int flags
, mode_t mode
);
1872 XFILE
*x_fdup(const XFILE
*f
);
1873 int x_fclose(XFILE
*f
);
1874 size_t x_fwrite(const void *p
, size_t size
, size_t nmemb
, XFILE
*f
);
1875 int x_fileno(const XFILE
*f
);
1876 int x_fflush(XFILE
*f
);
1877 void x_setbuffer(XFILE
*f
, char *buf
, size_t size
);
1878 void x_setbuf(XFILE
*f
, char *buf
);
1879 void x_setlinebuf(XFILE
*f
);
1880 int x_feof(XFILE
*f
);
1881 int x_ferror(XFILE
*f
);
1882 int x_fgetc(XFILE
*f
);
1883 size_t x_fread(void *p
, size_t size
, size_t nmemb
, XFILE
*f
);
1884 char *x_fgets(char *s
, int size
, XFILE
*stream
) ;
1885 off_t
x_tseek(XFILE
*f
, off_t offset
, int whence
);
1887 /* The following definitions come from libads/ads_status.c */
1889 ADS_STATUS
ads_build_error(enum ads_error_type etype
,
1890 int rc
, int minor_status
);
1891 ADS_STATUS
ads_build_nt_error(enum ads_error_type etype
,
1892 NTSTATUS nt_status
);
1893 NTSTATUS
ads_ntstatus(ADS_STATUS status
);
1894 const char *ads_errstr(ADS_STATUS status
);
1895 NTSTATUS
gss_err_to_ntstatus(uint32 maj
, uint32 min
);
1897 /* The following definitions come from libads/ads_struct.c */
1899 char *ads_build_path(const char *realm
, const char *sep
, const char *field
, int reverse
);
1900 char *ads_build_dn(const char *realm
);
1901 char *ads_build_domain(const char *dn
);
1902 ADS_STRUCT
*ads_init(const char *realm
,
1903 const char *workgroup
,
1904 const char *ldap_server
);
1905 void ads_destroy(ADS_STRUCT
**ads
);
1907 /* The following definitions come from libads/ads_utils.c */
1909 uint32
ads_acb2uf(uint32 acb
);
1910 uint32
ads_uf2acb(uint32 uf
);
1911 uint32
ads_uf2atype(uint32 uf
);
1912 uint32
ads_gtype2atype(uint32 gtype
);
1913 enum lsa_SidType
ads_atype_map(uint32 atype
);
1915 /* The following definitions come from libads/authdata.c */
1917 struct PAC_LOGON_INFO
*get_logon_info_from_pac(struct PAC_DATA
*pac_data
);
1918 NTSTATUS
kerberos_return_pac(TALLOC_CTX
*mem_ctx
,
1922 time_t *expire_time
,
1923 time_t *renew_till_time
,
1924 const char *cache_name
,
1926 bool add_netbios_addr
,
1927 time_t renewable_time
,
1928 struct PAC_DATA
**pac_ret
);
1929 NTSTATUS
kerberos_return_info3_from_pac(TALLOC_CTX
*mem_ctx
,
1933 time_t *expire_time
,
1934 time_t *renew_till_time
,
1935 const char *cache_name
,
1937 bool add_netbios_addr
,
1938 time_t renewable_time
,
1939 struct netr_SamInfo3
**info3
);
1941 /* The following definitions come from libads/cldap.c */
1943 bool ads_cldap_netlogon(TALLOC_CTX
*mem_ctx
,
1946 uint32_t *nt_version
,
1947 union nbt_cldap_netlogon
**reply
);
1948 bool ads_cldap_netlogon_5(TALLOC_CTX
*mem_ctx
,
1951 struct nbt_cldap_netlogon_5
*reply5
);
1952 bool pull_mailslot_cldap_reply(TALLOC_CTX
*mem_ctx
,
1953 const DATA_BLOB
*blob
,
1954 union nbt_cldap_netlogon
*r
,
1955 uint32_t *nt_version
);
1957 /* The following definitions come from libads/disp_sec.c */
1959 void ads_disp_sd(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, SEC_DESC
*sd
);
1961 /* The following definitions come from libads/dns.c */
1963 NTSTATUS
ads_dns_lookup_ns(TALLOC_CTX
*ctx
,
1964 const char *dnsdomain
,
1965 struct dns_rr_ns
**nslist
,
1967 bool sitename_store(const char *realm
, const char *sitename
);
1968 char *sitename_fetch(const char *realm
);
1969 bool stored_sitename_changed(const char *realm
, const char *sitename
);
1970 NTSTATUS
ads_dns_query_dcs(TALLOC_CTX
*ctx
,
1972 const char *sitename
,
1973 struct dns_rr_srv
**dclist
,
1975 NTSTATUS
ads_dns_query_gcs(TALLOC_CTX
*ctx
,
1977 const char *sitename
,
1978 struct dns_rr_srv
**dclist
,
1980 NTSTATUS
ads_dns_query_kdcs(TALLOC_CTX
*ctx
,
1981 const char *dns_forest_name
,
1982 const char *sitename
,
1983 struct dns_rr_srv
**dclist
,
1985 NTSTATUS
ads_dns_query_pdc(TALLOC_CTX
*ctx
,
1986 const char *dns_domain_name
,
1987 struct dns_rr_srv
**dclist
,
1989 NTSTATUS
ads_dns_query_dcs_guid(TALLOC_CTX
*ctx
,
1990 const char *dns_forest_name
,
1991 const struct GUID
*domain_guid
,
1992 struct dns_rr_srv
**dclist
,
1995 /* The following definitions come from libads/kerberos.c */
1997 int kerberos_kinit_password_ext(const char *principal
,
1998 const char *password
,
2000 time_t *expire_time
,
2001 time_t *renew_till_time
,
2002 const char *cache_name
,
2004 bool add_netbios_addr
,
2005 time_t renewable_time
,
2006 NTSTATUS
*ntstatus
);
2007 int ads_kinit_password(ADS_STRUCT
*ads
);
2008 int ads_kdestroy(const char *cc_name
);
2009 char* kerberos_standard_des_salt( void );
2010 bool kerberos_secrets_store_des_salt( const char* salt
);
2011 char* kerberos_secrets_fetch_des_salt( void );
2012 char *kerberos_get_default_realm_from_ccache( void );
2013 bool kerberos_secrets_store_salting_principal(const char *service
,
2015 const char *principal
);
2016 int kerberos_kinit_password(const char *principal
,
2017 const char *password
,
2019 const char *cache_name
);
2020 bool create_local_private_krb5_conf_for_domain(const char *realm
,
2022 const char *sitename
,
2023 struct sockaddr_storage
*pss
);
2025 /* The following definitions come from libads/kerberos_keytab.c */
2027 int ads_keytab_add_entry(ADS_STRUCT
*ads
, const char *srvPrinc
);
2028 int ads_keytab_flush(ADS_STRUCT
*ads
);
2029 int ads_keytab_create_default(ADS_STRUCT
*ads
);
2030 int ads_keytab_list(const char *keytab_name
);
2032 /* The following definitions come from libads/kerberos_verify.c */
2034 NTSTATUS
ads_verify_ticket(TALLOC_CTX
*mem_ctx
,
2037 const DATA_BLOB
*ticket
,
2039 struct PAC_DATA
**pac_data
,
2041 DATA_BLOB
*session_key
,
2042 bool use_replay_cache
);
2044 /* The following definitions come from libads/krb5_errs.c */
2047 /* The following definitions come from libads/krb5_setpw.c */
2049 ADS_STATUS
ads_krb5_set_password(const char *kdc_host
, const char *princ
,
2050 const char *newpw
, int time_offset
);
2051 ADS_STATUS
kerberos_set_password(const char *kpasswd_server
,
2052 const char *auth_principal
, const char *auth_password
,
2053 const char *target_principal
, const char *new_password
,
2055 ADS_STATUS
ads_set_machine_password(ADS_STRUCT
*ads
,
2056 const char *machine_account
,
2057 const char *password
);
2059 /* The following definitions come from libads/ldap.c */
2061 bool ads_sitename_match(ADS_STRUCT
*ads
);
2062 bool ads_closest_dc(ADS_STRUCT
*ads
);
2063 bool ads_try_connect(ADS_STRUCT
*ads
, const char *server
);
2064 ADS_STATUS
ads_connect(ADS_STRUCT
*ads
);
2065 void ads_disconnect(ADS_STRUCT
*ads
);
2066 ADS_STATUS
ads_do_search_all_fn(ADS_STRUCT
*ads
, const char *bind_path
,
2067 int scope
, const char *expr
, const char **attrs
,
2068 bool (*fn
)(ADS_STRUCT
*, char *, void **, void *),
2070 void ads_memfree(ADS_STRUCT
*ads
, void *mem
);
2071 char *ads_parent_dn(const char *dn
);
2072 ADS_MODLIST
ads_init_mods(TALLOC_CTX
*ctx
);
2073 ADS_STATUS
ads_mod_str(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
2074 const char *name
, const char *val
);
2075 ADS_STATUS
ads_mod_strlist(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
2076 const char *name
, const char **vals
);
2077 ADS_STATUS
ads_gen_mod(ADS_STRUCT
*ads
, const char *mod_dn
, ADS_MODLIST mods
);
2078 ADS_STATUS
ads_gen_add(ADS_STRUCT
*ads
, const char *new_dn
, ADS_MODLIST mods
);
2079 ADS_STATUS
ads_del_dn(ADS_STRUCT
*ads
, char *del_dn
);
2080 char *ads_ou_string(ADS_STRUCT
*ads
, const char *org_unit
);
2081 char *ads_default_ou_string(ADS_STRUCT
*ads
, const char *wknguid
);
2082 ADS_STATUS
ads_add_strlist(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
2083 const char *name
, const char **vals
);
2084 uint32
ads_get_kvno(ADS_STRUCT
*ads
, const char *machine_name
);
2085 ADS_STATUS
ads_clear_service_principal_names(ADS_STRUCT
*ads
, const char *machine_name
);
2086 ADS_STATUS
ads_add_service_principal_name(ADS_STRUCT
*ads
, const char *machine_name
,
2087 const char *my_fqdn
, const char *spn
);
2088 ADS_STATUS
ads_create_machine_acct(ADS_STRUCT
*ads
, const char *machine_name
,
2089 const char *org_unit
);
2090 ADS_STATUS
ads_move_machine_acct(ADS_STRUCT
*ads
, const char *machine_name
,
2091 const char *org_unit
, bool *moved
);
2092 int ads_count_replies(ADS_STRUCT
*ads
, void *res
);
2093 ADS_STATUS
ads_USN(ADS_STRUCT
*ads
, uint32
*usn
);
2094 ADS_STATUS
ads_current_time(ADS_STRUCT
*ads
);
2095 ADS_STATUS
ads_domain_func_level(ADS_STRUCT
*ads
, uint32
*val
);
2096 ADS_STATUS
ads_domain_sid(ADS_STRUCT
*ads
, DOM_SID
*sid
);
2097 ADS_STATUS
ads_site_dn(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, const char **site_name
);
2098 ADS_STATUS
ads_site_dn_for_machine(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, const char *computer_name
, const char **site_dn
);
2099 ADS_STATUS
ads_upn_suffixes(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, char ***suffixes
, size_t *num_suffixes
);
2100 ADS_STATUS
ads_get_joinable_ous(ADS_STRUCT
*ads
,
2101 TALLOC_CTX
*mem_ctx
,
2104 bool ads_get_sid_from_extended_dn(TALLOC_CTX
*mem_ctx
,
2105 const char *extended_dn
,
2106 enum ads_extended_dn_flags flags
,
2108 char* ads_get_dnshostname( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
2109 char* ads_get_upn( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
2110 char* ads_get_samaccountname( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
2111 ADS_STATUS
ads_join_realm(ADS_STRUCT
*ads
, const char *machine_name
,
2112 uint32 account_type
, const char *org_unit
);
2113 ADS_STATUS
ads_leave_realm(ADS_STRUCT
*ads
, const char *hostname
);
2114 ADS_STATUS
ads_find_samaccount(ADS_STRUCT
*ads
,
2115 TALLOC_CTX
*mem_ctx
,
2116 const char *samaccountname
,
2118 const char **dn_ret
);
2119 ADS_STATUS
ads_config_path(ADS_STRUCT
*ads
,
2120 TALLOC_CTX
*mem_ctx
,
2121 char **config_path
);
2122 const char *ads_get_extended_right_name_by_guid(ADS_STRUCT
*ads
,
2123 const char *config_path
,
2124 TALLOC_CTX
*mem_ctx
,
2125 const struct GUID
*rights_guid
);
2126 ADS_STATUS
ads_check_ou_dn(TALLOC_CTX
*mem_ctx
,
2128 const char **account_ou
);
2130 /* The following definitions come from libads/ldap_printer.c */
2132 ADS_STATUS
ads_mod_printer_entry(ADS_STRUCT
*ads
, char *prt_dn
,
2133 TALLOC_CTX
*ctx
, const ADS_MODLIST
*mods
);
2134 ADS_STATUS
ads_add_printer_entry(ADS_STRUCT
*ads
, char *prt_dn
,
2135 TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
);
2136 WERROR
get_remote_printer_publishing_data(struct rpc_pipe_client
*cli
,
2137 TALLOC_CTX
*mem_ctx
,
2139 const char *printer
);
2140 bool get_local_printer_publishing_data(TALLOC_CTX
*mem_ctx
,
2142 NT_PRINTER_DATA
*data
);
2144 /* The following definitions come from libads/ldap_schema.c */
2146 ADS_STATUS
ads_get_attrnames_by_oids(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
2147 const char *schema_path
,
2148 const char **OIDs
, size_t num_OIDs
,
2149 char ***OIDs_out
, char ***names
, size_t *count
);
2150 const char *ads_get_attrname_by_guid(ADS_STRUCT
*ads
,
2151 const char *schema_path
,
2152 TALLOC_CTX
*mem_ctx
,
2153 const struct GUID
*schema_guid
);
2154 const char *ads_get_attrname_by_oid(ADS_STRUCT
*ads
, const char *schema_path
, TALLOC_CTX
*mem_ctx
, const char * OID
);
2155 ADS_STATUS
ads_schema_path(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, char **schema_path
);
2156 ADS_STATUS
ads_check_posix_schema_mapping(TALLOC_CTX
*mem_ctx
,
2158 enum wb_posix_mapping map_type
,
2159 struct posix_schema
**s
) ;
2161 /* The following definitions come from libads/ldap_user.c */
2163 ADS_STATUS
ads_add_user_acct(ADS_STRUCT
*ads
, const char *user
,
2164 const char *container
, const char *fullname
);
2165 ADS_STATUS
ads_add_group_acct(ADS_STRUCT
*ads
, const char *group
,
2166 const char *container
, const char *comment
);
2168 /* The following definitions come from libads/ldap_utils.c */
2170 ADS_STATUS
ads_ranged_search(ADS_STRUCT
*ads
,
2171 TALLOC_CTX
*mem_ctx
,
2176 const char *range_attr
,
2178 size_t *num_strings
);
2179 ADS_STATUS
ads_ranged_search_internal(ADS_STRUCT
*ads
,
2180 TALLOC_CTX
*mem_ctx
,
2186 const char *range_attr
,
2188 size_t *num_strings
,
2193 /* The following definitions come from libads/ndr.c */
2195 void ndr_print_ads_auth_flags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2196 void ndr_print_ads_struct(struct ndr_print
*ndr
, const char *name
, const struct ads_struct
*r
);
2198 /* The following definitions come from libads/sasl.c */
2200 ADS_STATUS
ads_sasl_bind(ADS_STRUCT
*ads
);
2202 /* The following definitions come from libads/sasl_wrapping.c */
2204 ADS_STATUS
ads_setup_sasl_wrapping(ADS_STRUCT
*ads
,
2205 const struct ads_saslwrap_ops
*ops
,
2206 void *private_data
);
2207 ADS_STATUS
ads_setup_sasl_wrapping(ADS_STRUCT
*ads
,
2208 const struct ads_saslwrap_ops
*ops
,
2209 void *private_data
);
2211 /* The following definitions come from libads/util.c */
2213 ADS_STATUS
ads_change_trust_account_password(ADS_STRUCT
*ads
, char *host_principal
);
2214 ADS_STATUS
ads_guess_service_principal(ADS_STRUCT
*ads
,
2215 char **returned_principal
);
2217 /* The following definitions come from libcli/nbt/nbtname.c */
2219 _PUBLIC_
void ndr_print_nbt_string(struct ndr_print
*ndr
, const char *name
, const char *s
);
2220 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_string(struct ndr_pull
*ndr
, int ndr_flags
, const char **s
);
2221 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_string(struct ndr_push
*ndr
, int ndr_flags
, const char *s
);
2222 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_name(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_name
*r
);
2223 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_name(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_name
*r
);
2224 _PUBLIC_ NTSTATUS
nbt_name_dup(TALLOC_CTX
*mem_ctx
, struct nbt_name
*name
, struct nbt_name
*newname
);
2225 _PUBLIC_ NTSTATUS
nbt_name_to_blob(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
, struct nbt_name
*name
);
2226 _PUBLIC_ NTSTATUS
nbt_name_from_blob(TALLOC_CTX
*mem_ctx
, const DATA_BLOB
*blob
, struct nbt_name
*name
);
2227 _PUBLIC_
void nbt_choose_called_name(TALLOC_CTX
*mem_ctx
,
2228 struct nbt_name
*n
, const char *name
, int type
);
2229 _PUBLIC_
char *nbt_name_string(TALLOC_CTX
*mem_ctx
, const struct nbt_name
*name
);
2230 _PUBLIC_
enum ndr_err_code
ndr_pull_wrepl_nbt_name(struct ndr_pull
*ndr
, int ndr_flags
, const struct nbt_name
**_r
);
2231 _PUBLIC_
enum ndr_err_code
ndr_push_wrepl_nbt_name(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_name
*r
);
2232 _PUBLIC_
void ndr_print_wrepl_nbt_name(struct ndr_print
*ndr
, const char *name
, const struct nbt_name
*r
);
2234 /* The following definitions come from libgpo/gpext/gpext.c */
2236 struct gp_extension
*get_gp_extension_list(void);
2237 NTSTATUS
unregister_gp_extension(const char *name
);
2238 NTSTATUS
register_gp_extension(TALLOC_CTX
*gpext_ctx
,
2242 struct gp_extension_methods
*methods
);
2243 NTSTATUS
gp_ext_info_add_entry(TALLOC_CTX
*mem_ctx
,
2245 const char *ext_guid
,
2246 struct gp_extension_reg_table
*table
,
2247 struct gp_extension_reg_info
*info
);
2248 NTSTATUS
shutdown_gp_extensions(void);
2249 NTSTATUS
init_gp_extensions(TALLOC_CTX
*mem_ctx
);
2250 NTSTATUS
free_gp_extensions(void);
2251 void debug_gpext_header(int lvl
,
2254 struct GROUP_POLICY_OBJECT
*gpo
,
2255 const char *extension_guid
,
2256 const char *snapin_guid
);
2257 NTSTATUS
process_gpo_list_with_extension(ADS_STRUCT
*ads
,
2258 TALLOC_CTX
*mem_ctx
,
2260 const struct nt_user_token
*token
,
2261 struct GROUP_POLICY_OBJECT
*gpo_list
,
2262 const char *extension_guid
,
2263 const char *snapin_guid
);
2264 NTSTATUS
gpext_process_extension(ADS_STRUCT
*ads
,
2265 TALLOC_CTX
*mem_ctx
,
2267 const struct nt_user_token
*token
,
2268 struct registry_key
*root_key
,
2269 struct GROUP_POLICY_OBJECT
*gpo
,
2270 const char *extension_guid
,
2271 const char *snapin_guid
);
2273 /* The following definitions come from libgpo/gpo_fetch.c */
2275 NTSTATUS
gpo_explode_filesyspath(TALLOC_CTX
*mem_ctx
,
2276 const char *file_sys_path
,
2281 NTSTATUS
gpo_fetch_files(TALLOC_CTX
*mem_ctx
,
2282 struct cli_state
*cli
,
2283 struct GROUP_POLICY_OBJECT
*gpo
);
2284 NTSTATUS
gpo_get_sysvol_gpt_version(TALLOC_CTX
*mem_ctx
,
2285 const char *unix_path
,
2286 uint32_t *sysvol_version
,
2287 char **display_name
);
2289 /* The following definitions come from libgpo/gpo_filesync.c */
2291 NTSTATUS
gpo_copy_file(TALLOC_CTX
*mem_ctx
,
2292 struct cli_state
*cli
,
2293 const char *nt_path
,
2294 const char *unix_path
);
2295 NTSTATUS
gpo_sync_directories(TALLOC_CTX
*mem_ctx
,
2296 struct cli_state
*cli
,
2297 const char *nt_path
,
2298 const char *local_path
);
2300 /* The following definitions come from libgpo/gpo_ini.c */
2302 NTSTATUS
parse_gpt_ini(TALLOC_CTX
*mem_ctx
,
2303 const char *filename
,
2305 char **display_name
);
2307 /* The following definitions come from libgpo/gpo_ldap.c */
2309 bool ads_parse_gp_ext(TALLOC_CTX
*mem_ctx
,
2310 const char *extension_raw
,
2311 struct GP_EXT
**gp_ext
);
2312 ADS_STATUS
ads_get_gpo_link(ADS_STRUCT
*ads
,
2313 TALLOC_CTX
*mem_ctx
,
2314 const char *link_dn
,
2315 struct GP_LINK
*gp_link_struct
);
2316 ADS_STATUS
ads_add_gpo_link(ADS_STRUCT
*ads
,
2317 TALLOC_CTX
*mem_ctx
,
2318 const char *link_dn
,
2321 ADS_STATUS
ads_delete_gpo_link(ADS_STRUCT
*ads
,
2322 TALLOC_CTX
*mem_ctx
,
2323 const char *link_dn
,
2324 const char *gpo_dn
);
2325 ADS_STATUS
ads_get_gpo(ADS_STRUCT
*ads
,
2326 TALLOC_CTX
*mem_ctx
,
2328 const char *display_name
,
2329 const char *guid_name
,
2330 struct GROUP_POLICY_OBJECT
*gpo
);
2331 ADS_STATUS
ads_get_sid_token(ADS_STRUCT
*ads
,
2332 TALLOC_CTX
*mem_ctx
,
2334 struct nt_user_token
**token
);
2335 ADS_STATUS
ads_get_gpo_list(ADS_STRUCT
*ads
,
2336 TALLOC_CTX
*mem_ctx
,
2339 const struct nt_user_token
*token
,
2340 struct GROUP_POLICY_OBJECT
**gpo_list
);
2342 /* The following definitions come from libgpo/gpo_reg.c */
2344 struct nt_user_token
*registry_create_system_token(TALLOC_CTX
*mem_ctx
);
2345 WERROR
gp_init_reg_ctx(TALLOC_CTX
*mem_ctx
,
2346 const char *initial_path
,
2347 uint32_t desired_access
,
2348 const struct nt_user_token
*token
,
2349 struct gp_registry_context
**reg_ctx
);
2350 void gp_free_reg_ctx(struct gp_registry_context
*reg_ctx
);
2351 WERROR
gp_store_reg_subkey(TALLOC_CTX
*mem_ctx
,
2352 const char *subkeyname
,
2353 struct registry_key
*curr_key
,
2354 struct registry_key
**new_key
);
2355 WERROR
gp_read_reg_subkey(TALLOC_CTX
*mem_ctx
,
2356 struct gp_registry_context
*reg_ctx
,
2357 const char *subkeyname
,
2358 struct registry_key
**key
);
2359 WERROR
gp_store_reg_val_sz(TALLOC_CTX
*mem_ctx
,
2360 struct registry_key
*key
,
2361 const char *val_name
,
2363 WERROR
gp_read_reg_val_sz(TALLOC_CTX
*mem_ctx
,
2364 struct registry_key
*key
,
2365 const char *val_name
,
2367 WERROR
gp_reg_state_store(TALLOC_CTX
*mem_ctx
,
2370 const struct nt_user_token
*token
,
2371 struct GROUP_POLICY_OBJECT
*gpo_list
);
2372 WERROR
gp_reg_state_read(TALLOC_CTX
*mem_ctx
,
2375 struct GROUP_POLICY_OBJECT
**gpo_list
);
2376 WERROR
gp_secure_key(TALLOC_CTX
*mem_ctx
,
2378 struct registry_key
*key
,
2379 const DOM_SID
*sid
);
2380 void dump_reg_val(int lvl
, const char *direction
,
2381 const char *key
, const char *subkey
,
2382 struct registry_value
*val
);
2383 void dump_reg_entry(uint32_t flags
,
2385 struct gp_registry_entry
*entry
);
2386 void dump_reg_entries(uint32_t flags
,
2388 struct gp_registry_entry
*entries
,
2389 size_t num_entries
);
2390 bool add_gp_registry_entry_to_array(TALLOC_CTX
*mem_ctx
,
2391 struct gp_registry_entry
*entry
,
2392 struct gp_registry_entry
**entries
,
2394 WERROR
reg_apply_registry_entry(TALLOC_CTX
*mem_ctx
,
2395 struct registry_key
*root_key
,
2396 struct gp_registry_context
*reg_ctx
,
2397 struct gp_registry_entry
*entry
,
2398 const struct nt_user_token
*token
,
2401 /* The following definitions come from libgpo/gpo_sec.c */
2403 NTSTATUS
gpo_apply_security_filtering(const struct GROUP_POLICY_OBJECT
*gpo
,
2404 const struct nt_user_token
*token
);
2406 /* The following definitions come from libgpo/gpo_util.c */
2408 const char *cse_gpo_guid_string_to_name(const char *guid
);
2409 const char *cse_gpo_name_to_guid_string(const char *name
);
2410 const char *cse_snapin_gpo_guid_string_to_name(const char *guid
);
2411 void dump_gp_ext(struct GP_EXT
*gp_ext
, int debuglevel
);
2412 void dump_gpo(ADS_STRUCT
*ads
,
2413 TALLOC_CTX
*mem_ctx
,
2414 struct GROUP_POLICY_OBJECT
*gpo
,
2416 void dump_gpo_list(ADS_STRUCT
*ads
,
2417 TALLOC_CTX
*mem_ctx
,
2418 struct GROUP_POLICY_OBJECT
*gpo_list
,
2420 void dump_gplink(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, struct GP_LINK
*gp_link
);
2421 ADS_STATUS
gpo_process_a_gpo(ADS_STRUCT
*ads
,
2422 TALLOC_CTX
*mem_ctx
,
2423 const struct nt_user_token
*token
,
2424 struct registry_key
*root_key
,
2425 struct GROUP_POLICY_OBJECT
*gpo
,
2426 const char *extension_guid_filter
,
2428 ADS_STATUS
gpo_process_gpo_list(ADS_STRUCT
*ads
,
2429 TALLOC_CTX
*mem_ctx
,
2430 const struct nt_user_token
*token
,
2431 struct GROUP_POLICY_OBJECT
*gpo_list
,
2432 const char *extensions_guid_filter
,
2434 NTSTATUS
check_refresh_gpo(ADS_STRUCT
*ads
,
2435 TALLOC_CTX
*mem_ctx
,
2437 struct GROUP_POLICY_OBJECT
*gpo
,
2438 struct cli_state
**cli_out
);
2439 NTSTATUS
check_refresh_gpo_list(ADS_STRUCT
*ads
,
2440 TALLOC_CTX
*mem_ctx
,
2442 struct GROUP_POLICY_OBJECT
*gpo_list
);
2443 NTSTATUS
gpo_get_unix_path(TALLOC_CTX
*mem_ctx
,
2444 struct GROUP_POLICY_OBJECT
*gpo
,
2446 char *gpo_flag_str(uint32_t flags
);
2447 NTSTATUS
gp_find_file(TALLOC_CTX
*mem_ctx
,
2449 const char *filename
,
2451 const char **filename_out
);
2452 ADS_STATUS
gp_get_machine_token(ADS_STRUCT
*ads
,
2453 TALLOC_CTX
*mem_ctx
,
2455 struct nt_user_token
**token
);
2457 /* The following definitions come from librpc/gen_ndr/ndr_dfs.c */
2459 _PUBLIC_
void ndr_print_dfs_ManagerVersion(struct ndr_print
*ndr
, const char *name
, enum dfs_ManagerVersion r
);
2460 _PUBLIC_
void ndr_print_dfs_Info0(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info0
*r
);
2461 _PUBLIC_
void ndr_print_dfs_Info1(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info1
*r
);
2462 _PUBLIC_
enum ndr_err_code
ndr_push_dfs_VolumeState(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
2463 _PUBLIC_
enum ndr_err_code
ndr_pull_dfs_VolumeState(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
2464 _PUBLIC_
void ndr_print_dfs_VolumeState(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2465 _PUBLIC_
void ndr_print_dfs_Info2(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info2
*r
);
2466 _PUBLIC_
enum ndr_err_code
ndr_push_dfs_StorageState(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
2467 _PUBLIC_
enum ndr_err_code
ndr_pull_dfs_StorageState(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
2468 _PUBLIC_
void ndr_print_dfs_StorageState(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2469 _PUBLIC_
void ndr_print_dfs_StorageInfo(struct ndr_print
*ndr
, const char *name
, const struct dfs_StorageInfo
*r
);
2470 _PUBLIC_
void ndr_print_dfs_Info3(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info3
*r
);
2471 _PUBLIC_
void ndr_print_dfs_Info4(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info4
*r
);
2472 _PUBLIC_
enum ndr_err_code
ndr_push_dfs_PropertyFlags(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
2473 _PUBLIC_
enum ndr_err_code
ndr_pull_dfs_PropertyFlags(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
2474 _PUBLIC_
void ndr_print_dfs_PropertyFlags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2475 _PUBLIC_
void ndr_print_dfs_Info5(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info5
*r
);
2476 _PUBLIC_
void ndr_print_dfs_Target_PriorityClass(struct ndr_print
*ndr
, const char *name
, enum dfs_Target_PriorityClass r
);
2477 _PUBLIC_
void ndr_print_dfs_Target_Priority(struct ndr_print
*ndr
, const char *name
, const struct dfs_Target_Priority
*r
);
2478 _PUBLIC_
void ndr_print_dfs_StorageInfo2(struct ndr_print
*ndr
, const char *name
, const struct dfs_StorageInfo2
*r
);
2479 _PUBLIC_
void ndr_print_dfs_Info6(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info6
*r
);
2480 _PUBLIC_
void ndr_print_dfs_Info7(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info7
*r
);
2481 _PUBLIC_
void ndr_print_dfs_Info100(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info100
*r
);
2482 _PUBLIC_
void ndr_print_dfs_Info101(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info101
*r
);
2483 _PUBLIC_
void ndr_print_dfs_Info102(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info102
*r
);
2484 _PUBLIC_
void ndr_print_dfs_Info103(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info103
*r
);
2485 _PUBLIC_
void ndr_print_dfs_Info104(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info104
*r
);
2486 _PUBLIC_
void ndr_print_dfs_Info105(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info105
*r
);
2487 _PUBLIC_
void ndr_print_dfs_Info106(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info106
*r
);
2488 _PUBLIC_
void ndr_print_dfs_Info200(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info200
*r
);
2489 _PUBLIC_
void ndr_print_dfs_VolumeFlavor(struct ndr_print
*ndr
, const char *name
, enum dfs_VolumeFlavor r
);
2490 _PUBLIC_
void ndr_print_dfs_Info300(struct ndr_print
*ndr
, const char *name
, const struct dfs_Info300
*r
);
2491 _PUBLIC_
void ndr_print_dfs_Info(struct ndr_print
*ndr
, const char *name
, const union dfs_Info
*r
);
2492 _PUBLIC_
void ndr_print_dfs_EnumArray1(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumArray1
*r
);
2493 _PUBLIC_
void ndr_print_dfs_EnumArray2(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumArray2
*r
);
2494 _PUBLIC_
void ndr_print_dfs_EnumArray3(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumArray3
*r
);
2495 _PUBLIC_
void ndr_print_dfs_EnumArray4(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumArray4
*r
);
2496 _PUBLIC_
void ndr_print_dfs_EnumArray5(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumArray5
*r
);
2497 _PUBLIC_
void ndr_print_dfs_EnumArray6(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumArray6
*r
);
2498 _PUBLIC_
void ndr_print_dfs_EnumArray200(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumArray200
*r
);
2499 _PUBLIC_
void ndr_print_dfs_EnumArray300(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumArray300
*r
);
2500 _PUBLIC_
void ndr_print_dfs_EnumInfo(struct ndr_print
*ndr
, const char *name
, const union dfs_EnumInfo
*r
);
2501 _PUBLIC_
void ndr_print_dfs_EnumStruct(struct ndr_print
*ndr
, const char *name
, const struct dfs_EnumStruct
*r
);
2502 _PUBLIC_
void ndr_print_dfs_UnknownStruct(struct ndr_print
*ndr
, const char *name
, const struct dfs_UnknownStruct
*r
);
2503 _PUBLIC_
enum ndr_err_code
ndr_push_dfs_GetManagerVersion(struct ndr_push
*ndr
, int flags
, const struct dfs_GetManagerVersion
*r
);
2504 _PUBLIC_
enum ndr_err_code
ndr_pull_dfs_GetManagerVersion(struct ndr_pull
*ndr
, int flags
, struct dfs_GetManagerVersion
*r
);
2505 _PUBLIC_
void ndr_print_dfs_GetManagerVersion(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_GetManagerVersion
*r
);
2506 _PUBLIC_
void ndr_print_dfs_Add(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_Add
*r
);
2507 _PUBLIC_
void ndr_print_dfs_Remove(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_Remove
*r
);
2508 _PUBLIC_
void ndr_print_dfs_SetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_SetInfo
*r
);
2509 _PUBLIC_
void ndr_print_dfs_GetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_GetInfo
*r
);
2510 _PUBLIC_
void ndr_print_dfs_Enum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_Enum
*r
);
2511 _PUBLIC_
void ndr_print_dfs_Rename(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_Rename
*r
);
2512 _PUBLIC_
void ndr_print_dfs_Move(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_Move
*r
);
2513 _PUBLIC_
void ndr_print_dfs_ManagerGetConfigInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_ManagerGetConfigInfo
*r
);
2514 _PUBLIC_
void ndr_print_dfs_ManagerSendSiteInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_ManagerSendSiteInfo
*r
);
2515 _PUBLIC_
void ndr_print_dfs_AddFtRoot(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_AddFtRoot
*r
);
2516 _PUBLIC_
void ndr_print_dfs_RemoveFtRoot(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_RemoveFtRoot
*r
);
2517 _PUBLIC_
void ndr_print_dfs_AddStdRoot(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_AddStdRoot
*r
);
2518 _PUBLIC_
void ndr_print_dfs_RemoveStdRoot(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_RemoveStdRoot
*r
);
2519 _PUBLIC_
void ndr_print_dfs_ManagerInitialize(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_ManagerInitialize
*r
);
2520 _PUBLIC_
void ndr_print_dfs_AddStdRootForced(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_AddStdRootForced
*r
);
2521 _PUBLIC_
void ndr_print_dfs_GetDcAddress(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_GetDcAddress
*r
);
2522 _PUBLIC_
void ndr_print_dfs_SetDcAddress(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_SetDcAddress
*r
);
2523 _PUBLIC_
void ndr_print_dfs_FlushFtTable(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_FlushFtTable
*r
);
2524 _PUBLIC_
void ndr_print_dfs_Add2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_Add2
*r
);
2525 _PUBLIC_
void ndr_print_dfs_Remove2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_Remove2
*r
);
2526 _PUBLIC_
enum ndr_err_code
ndr_push_dfs_EnumEx(struct ndr_push
*ndr
, int flags
, const struct dfs_EnumEx
*r
);
2527 _PUBLIC_
enum ndr_err_code
ndr_pull_dfs_EnumEx(struct ndr_pull
*ndr
, int flags
, struct dfs_EnumEx
*r
);
2528 _PUBLIC_
void ndr_print_dfs_EnumEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_EnumEx
*r
);
2529 _PUBLIC_
void ndr_print_dfs_SetInfo2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dfs_SetInfo2
*r
);
2531 /* The following definitions come from librpc/gen_ndr/ndr_dssetup.c */
2533 _PUBLIC_
void ndr_print_dssetup_DsRole(struct ndr_print
*ndr
, const char *name
, enum dssetup_DsRole r
);
2534 _PUBLIC_
void ndr_print_dssetup_DsRoleFlags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2535 _PUBLIC_
void ndr_print_dssetup_DsRolePrimaryDomInfoBasic(struct ndr_print
*ndr
, const char *name
, const struct dssetup_DsRolePrimaryDomInfoBasic
*r
);
2536 _PUBLIC_
void ndr_print_dssetup_DsUpgrade(struct ndr_print
*ndr
, const char *name
, enum dssetup_DsUpgrade r
);
2537 _PUBLIC_
void ndr_print_dssetup_DsPrevious(struct ndr_print
*ndr
, const char *name
, enum dssetup_DsPrevious r
);
2538 _PUBLIC_
void ndr_print_dssetup_DsRoleUpgradeStatus(struct ndr_print
*ndr
, const char *name
, const struct dssetup_DsRoleUpgradeStatus
*r
);
2539 _PUBLIC_
void ndr_print_dssetup_DsRoleOp(struct ndr_print
*ndr
, const char *name
, enum dssetup_DsRoleOp r
);
2540 _PUBLIC_
void ndr_print_dssetup_DsRoleOpStatus(struct ndr_print
*ndr
, const char *name
, const struct dssetup_DsRoleOpStatus
*r
);
2541 _PUBLIC_
void ndr_print_dssetup_DsRoleInfoLevel(struct ndr_print
*ndr
, const char *name
, enum dssetup_DsRoleInfoLevel r
);
2542 _PUBLIC_
void ndr_print_dssetup_DsRoleInfo(struct ndr_print
*ndr
, const char *name
, const union dssetup_DsRoleInfo
*r
);
2543 _PUBLIC_
void ndr_print_dssetup_DsRoleGetPrimaryDomainInformation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleGetPrimaryDomainInformation
*r
);
2544 _PUBLIC_
void ndr_print_dssetup_DsRoleDnsNameToFlatName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleDnsNameToFlatName
*r
);
2545 _PUBLIC_
void ndr_print_dssetup_DsRoleDcAsDc(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleDcAsDc
*r
);
2546 _PUBLIC_
void ndr_print_dssetup_DsRoleDcAsReplica(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleDcAsReplica
*r
);
2547 _PUBLIC_
void ndr_print_dssetup_DsRoleDemoteDc(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleDemoteDc
*r
);
2548 _PUBLIC_
void ndr_print_dssetup_DsRoleGetDcOperationProgress(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleGetDcOperationProgress
*r
);
2549 _PUBLIC_
void ndr_print_dssetup_DsRoleGetDcOperationResults(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleGetDcOperationResults
*r
);
2550 _PUBLIC_
void ndr_print_dssetup_DsRoleCancel(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleCancel
*r
);
2551 _PUBLIC_
void ndr_print_dssetup_DsRoleServerSaveStateForUpgrade(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleServerSaveStateForUpgrade
*r
);
2552 _PUBLIC_
void ndr_print_dssetup_DsRoleUpgradeDownlevelServer(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleUpgradeDownlevelServer
*r
);
2553 _PUBLIC_
void ndr_print_dssetup_DsRoleAbortDownlevelServerUpgrade(struct ndr_print
*ndr
, const char *name
, int flags
, const struct dssetup_DsRoleAbortDownlevelServerUpgrade
*r
);
2555 /* The following definitions come from librpc/gen_ndr/ndr_echo.c */
2557 _PUBLIC_
void ndr_print_echo_info1(struct ndr_print
*ndr
, const char *name
, const struct echo_info1
*r
);
2558 _PUBLIC_
void ndr_print_echo_info2(struct ndr_print
*ndr
, const char *name
, const struct echo_info2
*r
);
2559 _PUBLIC_
void ndr_print_echo_info3(struct ndr_print
*ndr
, const char *name
, const struct echo_info3
*r
);
2560 _PUBLIC_
void ndr_print_STRUCT_echo_info4(struct ndr_print
*ndr
, const char *name
, const struct echo_info4
*r
);
2561 _PUBLIC_
void ndr_print_echo_info5(struct ndr_print
*ndr
, const char *name
, const struct echo_info5
*r
);
2562 _PUBLIC_
void ndr_print_echo_info6(struct ndr_print
*ndr
, const char *name
, const struct echo_info6
*r
);
2563 _PUBLIC_
void ndr_print_echo_info7(struct ndr_print
*ndr
, const char *name
, const struct echo_info7
*r
);
2564 _PUBLIC_
void ndr_print_echo_Info(struct ndr_print
*ndr
, const char *name
, const union echo_Info
*r
);
2565 _PUBLIC_
void ndr_print_echo_Enum1(struct ndr_print
*ndr
, const char *name
, enum echo_Enum1 r
);
2566 _PUBLIC_
void ndr_print_echo_Enum1_32(struct ndr_print
*ndr
, const char *name
, enum echo_Enum1_32 r
);
2567 _PUBLIC_
void ndr_print_echo_Enum2(struct ndr_print
*ndr
, const char *name
, const struct echo_Enum2
*r
);
2568 _PUBLIC_
void ndr_print_echo_Enum3(struct ndr_print
*ndr
, const char *name
, const union echo_Enum3
*r
);
2569 _PUBLIC_
void ndr_print_echo_Surrounding(struct ndr_print
*ndr
, const char *name
, const struct echo_Surrounding
*r
);
2570 _PUBLIC_
void ndr_print_echo_AddOne(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_AddOne
*r
);
2571 _PUBLIC_
void ndr_print_echo_EchoData(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_EchoData
*r
);
2572 _PUBLIC_
void ndr_print_echo_SinkData(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_SinkData
*r
);
2573 _PUBLIC_
void ndr_print_echo_SourceData(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_SourceData
*r
);
2574 _PUBLIC_
void ndr_print_echo_TestCall(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_TestCall
*r
);
2575 _PUBLIC_
void ndr_print_echo_TestCall2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_TestCall2
*r
);
2576 _PUBLIC_
void ndr_print_echo_TestSleep(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_TestSleep
*r
);
2577 _PUBLIC_
void ndr_print_echo_TestEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_TestEnum
*r
);
2578 _PUBLIC_
void ndr_print_echo_TestSurrounding(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_TestSurrounding
*r
);
2579 _PUBLIC_
void ndr_print_echo_TestDoublePointer(struct ndr_print
*ndr
, const char *name
, int flags
, const struct echo_TestDoublePointer
*r
);
2581 /* The following definitions come from librpc/gen_ndr/ndr_eventlog.c */
2583 _PUBLIC_
void ndr_print_eventlog_OpenUnknown0(struct ndr_print
*ndr
, const char *name
, const struct eventlog_OpenUnknown0
*r
);
2584 _PUBLIC_
enum ndr_err_code
ndr_push_eventlog_Record(struct ndr_push
*ndr
, int ndr_flags
, const struct eventlog_Record
*r
);
2585 _PUBLIC_
enum ndr_err_code
ndr_pull_eventlog_Record(struct ndr_pull
*ndr
, int ndr_flags
, struct eventlog_Record
*r
);
2586 _PUBLIC_
void ndr_print_eventlog_Record(struct ndr_print
*ndr
, const char *name
, const struct eventlog_Record
*r
);
2587 _PUBLIC_
void ndr_print_eventlog_ClearEventLogW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_ClearEventLogW
*r
);
2588 _PUBLIC_
void ndr_print_eventlog_BackupEventLogW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_BackupEventLogW
*r
);
2589 _PUBLIC_
void ndr_print_eventlog_CloseEventLog(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_CloseEventLog
*r
);
2590 _PUBLIC_
void ndr_print_eventlog_DeregisterEventSource(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_DeregisterEventSource
*r
);
2591 _PUBLIC_
void ndr_print_eventlog_GetNumRecords(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_GetNumRecords
*r
);
2592 _PUBLIC_
void ndr_print_eventlog_GetOldestRecord(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_GetOldestRecord
*r
);
2593 _PUBLIC_
void ndr_print_eventlog_ChangeNotify(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_ChangeNotify
*r
);
2594 _PUBLIC_
void ndr_print_eventlog_OpenEventLogW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_OpenEventLogW
*r
);
2595 _PUBLIC_
void ndr_print_eventlog_RegisterEventSourceW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_RegisterEventSourceW
*r
);
2596 _PUBLIC_
void ndr_print_eventlog_OpenBackupEventLogW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_OpenBackupEventLogW
*r
);
2597 _PUBLIC_
void ndr_print_eventlog_ReadEventLogW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_ReadEventLogW
*r
);
2598 _PUBLIC_
void ndr_print_eventlog_ReportEventW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_ReportEventW
*r
);
2599 _PUBLIC_
void ndr_print_eventlog_ClearEventLogA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_ClearEventLogA
*r
);
2600 _PUBLIC_
void ndr_print_eventlog_BackupEventLogA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_BackupEventLogA
*r
);
2601 _PUBLIC_
void ndr_print_eventlog_OpenEventLogA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_OpenEventLogA
*r
);
2602 _PUBLIC_
void ndr_print_eventlog_RegisterEventSourceA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_RegisterEventSourceA
*r
);
2603 _PUBLIC_
void ndr_print_eventlog_OpenBackupEventLogA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_OpenBackupEventLogA
*r
);
2604 _PUBLIC_
void ndr_print_eventlog_ReadEventLogA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_ReadEventLogA
*r
);
2605 _PUBLIC_
void ndr_print_eventlog_ReportEventA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_ReportEventA
*r
);
2606 _PUBLIC_
void ndr_print_eventlog_RegisterClusterSvc(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_RegisterClusterSvc
*r
);
2607 _PUBLIC_
void ndr_print_eventlog_DeregisterClusterSvc(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_DeregisterClusterSvc
*r
);
2608 _PUBLIC_
void ndr_print_eventlog_WriteClusterEvents(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_WriteClusterEvents
*r
);
2609 _PUBLIC_
void ndr_print_eventlog_GetLogIntormation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_GetLogIntormation
*r
);
2610 _PUBLIC_
void ndr_print_eventlog_FlushEventLog(struct ndr_print
*ndr
, const char *name
, int flags
, const struct eventlog_FlushEventLog
*r
);
2612 /* The following definitions come from librpc/gen_ndr/ndr_initshutdown.c */
2614 _PUBLIC_
void ndr_print_initshutdown_String_sub(struct ndr_print
*ndr
, const char *name
, const struct initshutdown_String_sub
*r
);
2615 _PUBLIC_
enum ndr_err_code
ndr_push_initshutdown_String(struct ndr_push
*ndr
, int ndr_flags
, const struct initshutdown_String
*r
);
2616 _PUBLIC_
enum ndr_err_code
ndr_pull_initshutdown_String(struct ndr_pull
*ndr
, int ndr_flags
, struct initshutdown_String
*r
);
2617 _PUBLIC_
void ndr_print_initshutdown_String(struct ndr_print
*ndr
, const char *name
, const struct initshutdown_String
*r
);
2618 _PUBLIC_
void ndr_print_initshutdown_Init(struct ndr_print
*ndr
, const char *name
, int flags
, const struct initshutdown_Init
*r
);
2619 _PUBLIC_
void ndr_print_initshutdown_Abort(struct ndr_print
*ndr
, const char *name
, int flags
, const struct initshutdown_Abort
*r
);
2620 _PUBLIC_
void ndr_print_initshutdown_InitEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct initshutdown_InitEx
*r
);
2622 /* The following definitions come from librpc/gen_ndr/ndr_krb5pac.c */
2624 _PUBLIC_
void ndr_print_PAC_LOGON_NAME(struct ndr_print
*ndr
, const char *name
, const struct PAC_LOGON_NAME
*r
);
2625 _PUBLIC_
enum ndr_err_code
ndr_push_PAC_SIGNATURE_DATA(struct ndr_push
*ndr
, int ndr_flags
, const struct PAC_SIGNATURE_DATA
*r
);
2626 _PUBLIC_
enum ndr_err_code
ndr_pull_PAC_SIGNATURE_DATA(struct ndr_pull
*ndr
, int ndr_flags
, struct PAC_SIGNATURE_DATA
*r
);
2627 _PUBLIC_
void ndr_print_PAC_SIGNATURE_DATA(struct ndr_print
*ndr
, const char *name
, const struct PAC_SIGNATURE_DATA
*r
);
2628 _PUBLIC_
void ndr_print_PAC_LOGON_INFO(struct ndr_print
*ndr
, const char *name
, const struct PAC_LOGON_INFO
*r
);
2629 _PUBLIC_
enum ndr_err_code
ndr_push_PAC_LOGON_INFO_CTR(struct ndr_push
*ndr
, int ndr_flags
, const struct PAC_LOGON_INFO_CTR
*r
);
2630 _PUBLIC_
enum ndr_err_code
ndr_pull_PAC_LOGON_INFO_CTR(struct ndr_pull
*ndr
, int ndr_flags
, struct PAC_LOGON_INFO_CTR
*r
);
2631 _PUBLIC_
void ndr_print_PAC_LOGON_INFO_CTR(struct ndr_print
*ndr
, const char *name
, const struct PAC_LOGON_INFO_CTR
*r
);
2632 _PUBLIC_
enum ndr_err_code
ndr_push_PAC_TYPE(struct ndr_push
*ndr
, int ndr_flags
, enum PAC_TYPE r
);
2633 _PUBLIC_
enum ndr_err_code
ndr_pull_PAC_TYPE(struct ndr_pull
*ndr
, int ndr_flags
, enum PAC_TYPE
*r
);
2634 _PUBLIC_
void ndr_print_PAC_TYPE(struct ndr_print
*ndr
, const char *name
, enum PAC_TYPE r
);
2635 _PUBLIC_
void ndr_print_DATA_BLOB_REM(struct ndr_print
*ndr
, const char *name
, const struct DATA_BLOB_REM
*r
);
2636 _PUBLIC_
enum ndr_err_code
ndr_push_PAC_INFO(struct ndr_push
*ndr
, int ndr_flags
, const union PAC_INFO
*r
);
2637 _PUBLIC_
enum ndr_err_code
ndr_pull_PAC_INFO(struct ndr_pull
*ndr
, int ndr_flags
, union PAC_INFO
*r
);
2638 _PUBLIC_
void ndr_print_PAC_INFO(struct ndr_print
*ndr
, const char *name
, const union PAC_INFO
*r
);
2639 _PUBLIC_
size_t ndr_size_PAC_INFO(const union PAC_INFO
*r
, uint32_t level
, int flags
);
2640 _PUBLIC_
enum ndr_err_code
ndr_push_PAC_DATA(struct ndr_push
*ndr
, int ndr_flags
, const struct PAC_DATA
*r
);
2641 _PUBLIC_
enum ndr_err_code
ndr_pull_PAC_DATA(struct ndr_pull
*ndr
, int ndr_flags
, struct PAC_DATA
*r
);
2642 _PUBLIC_
void ndr_print_PAC_DATA(struct ndr_print
*ndr
, const char *name
, const struct PAC_DATA
*r
);
2643 _PUBLIC_
enum ndr_err_code
ndr_push_PAC_BUFFER_RAW(struct ndr_push
*ndr
, int ndr_flags
, const struct PAC_BUFFER_RAW
*r
);
2644 _PUBLIC_
enum ndr_err_code
ndr_pull_PAC_BUFFER_RAW(struct ndr_pull
*ndr
, int ndr_flags
, struct PAC_BUFFER_RAW
*r
);
2645 _PUBLIC_
void ndr_print_PAC_BUFFER_RAW(struct ndr_print
*ndr
, const char *name
, const struct PAC_BUFFER_RAW
*r
);
2646 _PUBLIC_
enum ndr_err_code
ndr_push_PAC_DATA_RAW(struct ndr_push
*ndr
, int ndr_flags
, const struct PAC_DATA_RAW
*r
);
2647 _PUBLIC_
enum ndr_err_code
ndr_pull_PAC_DATA_RAW(struct ndr_pull
*ndr
, int ndr_flags
, struct PAC_DATA_RAW
*r
);
2648 _PUBLIC_
void ndr_print_PAC_DATA_RAW(struct ndr_print
*ndr
, const char *name
, const struct PAC_DATA_RAW
*r
);
2649 _PUBLIC_
enum ndr_err_code
ndr_push_netsamlogoncache_entry(struct ndr_push
*ndr
, int ndr_flags
, const struct netsamlogoncache_entry
*r
);
2650 _PUBLIC_
enum ndr_err_code
ndr_pull_netsamlogoncache_entry(struct ndr_pull
*ndr
, int ndr_flags
, struct netsamlogoncache_entry
*r
);
2651 _PUBLIC_
void ndr_print_netsamlogoncache_entry(struct ndr_print
*ndr
, const char *name
, const struct netsamlogoncache_entry
*r
);
2652 _PUBLIC_
void ndr_print_decode_pac(struct ndr_print
*ndr
, const char *name
, int flags
, const struct decode_pac
*r
);
2653 _PUBLIC_
void ndr_print_decode_pac_raw(struct ndr_print
*ndr
, const char *name
, int flags
, const struct decode_pac_raw
*r
);
2654 _PUBLIC_
void ndr_print_decode_login_info(struct ndr_print
*ndr
, const char *name
, int flags
, const struct decode_login_info
*r
);
2656 /* The following definitions come from librpc/gen_ndr/ndr_lsa.c */
2658 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_String(struct ndr_push
*ndr
, int ndr_flags
, const struct lsa_String
*r
);
2659 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_String(struct ndr_pull
*ndr
, int ndr_flags
, struct lsa_String
*r
);
2660 _PUBLIC_
void ndr_print_lsa_String(struct ndr_print
*ndr
, const char *name
, const struct lsa_String
*r
);
2661 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_StringLarge(struct ndr_push
*ndr
, int ndr_flags
, const struct lsa_StringLarge
*r
);
2662 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_StringLarge(struct ndr_pull
*ndr
, int ndr_flags
, struct lsa_StringLarge
*r
);
2663 _PUBLIC_
void ndr_print_lsa_StringLarge(struct ndr_print
*ndr
, const char *name
, const struct lsa_StringLarge
*r
);
2664 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_Strings(struct ndr_push
*ndr
, int ndr_flags
, const struct lsa_Strings
*r
);
2665 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_Strings(struct ndr_pull
*ndr
, int ndr_flags
, struct lsa_Strings
*r
);
2666 _PUBLIC_
void ndr_print_lsa_Strings(struct ndr_print
*ndr
, const char *name
, const struct lsa_Strings
*r
);
2667 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_AsciiString(struct ndr_push
*ndr
, int ndr_flags
, const struct lsa_AsciiString
*r
);
2668 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_AsciiString(struct ndr_pull
*ndr
, int ndr_flags
, struct lsa_AsciiString
*r
);
2669 _PUBLIC_
void ndr_print_lsa_AsciiString(struct ndr_print
*ndr
, const char *name
, const struct lsa_AsciiString
*r
);
2670 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_AsciiStringLarge(struct ndr_push
*ndr
, int ndr_flags
, const struct lsa_AsciiStringLarge
*r
);
2671 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_AsciiStringLarge(struct ndr_pull
*ndr
, int ndr_flags
, struct lsa_AsciiStringLarge
*r
);
2672 _PUBLIC_
void ndr_print_lsa_AsciiStringLarge(struct ndr_print
*ndr
, const char *name
, const struct lsa_AsciiStringLarge
*r
);
2673 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_BinaryString(struct ndr_push
*ndr
, int ndr_flags
, const struct lsa_BinaryString
*r
);
2674 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_BinaryString(struct ndr_pull
*ndr
, int ndr_flags
, struct lsa_BinaryString
*r
);
2675 _PUBLIC_
void ndr_print_lsa_BinaryString(struct ndr_print
*ndr
, const char *name
, const struct lsa_BinaryString
*r
);
2676 _PUBLIC_
void ndr_print_lsa_LUID(struct ndr_print
*ndr
, const char *name
, const struct lsa_LUID
*r
);
2677 _PUBLIC_
void ndr_print_lsa_PrivEntry(struct ndr_print
*ndr
, const char *name
, const struct lsa_PrivEntry
*r
);
2678 _PUBLIC_
void ndr_print_lsa_PrivArray(struct ndr_print
*ndr
, const char *name
, const struct lsa_PrivArray
*r
);
2679 _PUBLIC_
void ndr_print_lsa_QosInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_QosInfo
*r
);
2680 _PUBLIC_
void ndr_print_lsa_ObjectAttribute(struct ndr_print
*ndr
, const char *name
, const struct lsa_ObjectAttribute
*r
);
2681 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_PolicyAccessMask(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
2682 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_PolicyAccessMask(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
2683 _PUBLIC_
void ndr_print_lsa_PolicyAccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2684 _PUBLIC_
void ndr_print_lsa_AuditLogInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_AuditLogInfo
*r
);
2685 _PUBLIC_
void ndr_print_lsa_PolicyAuditPolicy(struct ndr_print
*ndr
, const char *name
, enum lsa_PolicyAuditPolicy r
);
2686 _PUBLIC_
void ndr_print_lsa_AuditEventsInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_AuditEventsInfo
*r
);
2687 _PUBLIC_
void ndr_print_lsa_DomainInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_DomainInfo
*r
);
2688 _PUBLIC_
void ndr_print_lsa_PDAccountInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_PDAccountInfo
*r
);
2689 _PUBLIC_
void ndr_print_lsa_ServerRole(struct ndr_print
*ndr
, const char *name
, const struct lsa_ServerRole
*r
);
2690 _PUBLIC_
void ndr_print_lsa_ReplicaSourceInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_ReplicaSourceInfo
*r
);
2691 _PUBLIC_
void ndr_print_lsa_DefaultQuotaInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_DefaultQuotaInfo
*r
);
2692 _PUBLIC_
void ndr_print_lsa_ModificationInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_ModificationInfo
*r
);
2693 _PUBLIC_
void ndr_print_lsa_AuditFullSetInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_AuditFullSetInfo
*r
);
2694 _PUBLIC_
void ndr_print_lsa_AuditFullQueryInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_AuditFullQueryInfo
*r
);
2695 _PUBLIC_
void ndr_print_lsa_DnsDomainInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_DnsDomainInfo
*r
);
2696 _PUBLIC_
void ndr_print_lsa_PolicyInfo(struct ndr_print
*ndr
, const char *name
, enum lsa_PolicyInfo r
);
2697 _PUBLIC_
void ndr_print_lsa_PolicyInformation(struct ndr_print
*ndr
, const char *name
, const union lsa_PolicyInformation
*r
);
2698 _PUBLIC_
void ndr_print_lsa_SidPtr(struct ndr_print
*ndr
, const char *name
, const struct lsa_SidPtr
*r
);
2699 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_SidArray(struct ndr_push
*ndr
, int ndr_flags
, const struct lsa_SidArray
*r
);
2700 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_SidArray(struct ndr_pull
*ndr
, int ndr_flags
, struct lsa_SidArray
*r
);
2701 _PUBLIC_
void ndr_print_lsa_SidArray(struct ndr_print
*ndr
, const char *name
, const struct lsa_SidArray
*r
);
2702 _PUBLIC_
void ndr_print_lsa_DomainList(struct ndr_print
*ndr
, const char *name
, const struct lsa_DomainList
*r
);
2703 _PUBLIC_
void ndr_print_lsa_SidType(struct ndr_print
*ndr
, const char *name
, enum lsa_SidType r
);
2704 _PUBLIC_
void ndr_print_lsa_TranslatedSid(struct ndr_print
*ndr
, const char *name
, const struct lsa_TranslatedSid
*r
);
2705 _PUBLIC_
void ndr_print_lsa_TransSidArray(struct ndr_print
*ndr
, const char *name
, const struct lsa_TransSidArray
*r
);
2706 _PUBLIC_
void ndr_print_lsa_RefDomainList(struct ndr_print
*ndr
, const char *name
, const struct lsa_RefDomainList
*r
);
2707 _PUBLIC_
void ndr_print_lsa_LookupNamesLevel(struct ndr_print
*ndr
, const char *name
, enum lsa_LookupNamesLevel r
);
2708 _PUBLIC_
void ndr_print_lsa_TranslatedName(struct ndr_print
*ndr
, const char *name
, const struct lsa_TranslatedName
*r
);
2709 _PUBLIC_
void ndr_print_lsa_TransNameArray(struct ndr_print
*ndr
, const char *name
, const struct lsa_TransNameArray
*r
);
2710 _PUBLIC_
void ndr_print_lsa_LUIDAttribute(struct ndr_print
*ndr
, const char *name
, const struct lsa_LUIDAttribute
*r
);
2711 _PUBLIC_
void ndr_print_lsa_PrivilegeSet(struct ndr_print
*ndr
, const char *name
, const struct lsa_PrivilegeSet
*r
);
2712 _PUBLIC_
void ndr_print_lsa_DATA_BUF(struct ndr_print
*ndr
, const char *name
, const struct lsa_DATA_BUF
*r
);
2713 _PUBLIC_
void ndr_print_lsa_DATA_BUF2(struct ndr_print
*ndr
, const char *name
, const struct lsa_DATA_BUF2
*r
);
2714 _PUBLIC_
void ndr_print_lsa_TrustDomInfoEnum(struct ndr_print
*ndr
, const char *name
, enum lsa_TrustDomInfoEnum r
);
2715 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoName(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoName
*r
);
2716 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoPosixOffset(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoPosixOffset
*r
);
2717 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoPassword(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoPassword
*r
);
2718 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoBasic(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoBasic
*r
);
2719 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoInfoEx(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoInfoEx
*r
);
2720 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoBuffer(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoBuffer
*r
);
2721 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoAuthInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoAuthInfo
*r
);
2722 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoFullInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoFullInfo
*r
);
2723 _PUBLIC_
void ndr_print_lsa_TrustDomainInfo11(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfo11
*r
);
2724 _PUBLIC_
void ndr_print_lsa_TrustDomainInfoInfoAll(struct ndr_print
*ndr
, const char *name
, const struct lsa_TrustDomainInfoInfoAll
*r
);
2725 _PUBLIC_
void ndr_print_lsa_TrustedDomainInfo(struct ndr_print
*ndr
, const char *name
, const union lsa_TrustedDomainInfo
*r
);
2726 _PUBLIC_
void ndr_print_lsa_DATA_BUF_PTR(struct ndr_print
*ndr
, const char *name
, const struct lsa_DATA_BUF_PTR
*r
);
2727 _PUBLIC_
void ndr_print_lsa_RightSet(struct ndr_print
*ndr
, const char *name
, const struct lsa_RightSet
*r
);
2728 _PUBLIC_
void ndr_print_lsa_DomainListEx(struct ndr_print
*ndr
, const char *name
, const struct lsa_DomainListEx
*r
);
2729 _PUBLIC_
void ndr_print_lsa_DomainInfoKerberos(struct ndr_print
*ndr
, const char *name
, const struct lsa_DomainInfoKerberos
*r
);
2730 _PUBLIC_
void ndr_print_lsa_DomainInfoEfs(struct ndr_print
*ndr
, const char *name
, const struct lsa_DomainInfoEfs
*r
);
2731 _PUBLIC_
void ndr_print_lsa_DomainInformationPolicy(struct ndr_print
*ndr
, const char *name
, const union lsa_DomainInformationPolicy
*r
);
2732 _PUBLIC_
void ndr_print_lsa_TranslatedName2(struct ndr_print
*ndr
, const char *name
, const struct lsa_TranslatedName2
*r
);
2733 _PUBLIC_
void ndr_print_lsa_TransNameArray2(struct ndr_print
*ndr
, const char *name
, const struct lsa_TransNameArray2
*r
);
2734 _PUBLIC_
void ndr_print_lsa_TranslatedSid2(struct ndr_print
*ndr
, const char *name
, const struct lsa_TranslatedSid2
*r
);
2735 _PUBLIC_
void ndr_print_lsa_TransSidArray2(struct ndr_print
*ndr
, const char *name
, const struct lsa_TransSidArray2
*r
);
2736 _PUBLIC_
void ndr_print_lsa_TranslatedSid3(struct ndr_print
*ndr
, const char *name
, const struct lsa_TranslatedSid3
*r
);
2737 _PUBLIC_
void ndr_print_lsa_TransSidArray3(struct ndr_print
*ndr
, const char *name
, const struct lsa_TransSidArray3
*r
);
2738 _PUBLIC_
void ndr_print_lsa_ForestTrustBinaryData(struct ndr_print
*ndr
, const char *name
, const struct lsa_ForestTrustBinaryData
*r
);
2739 _PUBLIC_
void ndr_print_lsa_ForestTrustDomainInfo(struct ndr_print
*ndr
, const char *name
, const struct lsa_ForestTrustDomainInfo
*r
);
2740 _PUBLIC_
void ndr_print_lsa_ForestTrustData(struct ndr_print
*ndr
, const char *name
, const union lsa_ForestTrustData
*r
);
2741 _PUBLIC_
void ndr_print_lsa_ForestTrustRecordType(struct ndr_print
*ndr
, const char *name
, enum lsa_ForestTrustRecordType r
);
2742 _PUBLIC_
void ndr_print_lsa_ForestTrustRecord(struct ndr_print
*ndr
, const char *name
, const struct lsa_ForestTrustRecord
*r
);
2743 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_ForestTrustInformation(struct ndr_push
*ndr
, int ndr_flags
, const struct lsa_ForestTrustInformation
*r
);
2744 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_ForestTrustInformation(struct ndr_pull
*ndr
, int ndr_flags
, struct lsa_ForestTrustInformation
*r
);
2745 _PUBLIC_
void ndr_print_lsa_ForestTrustInformation(struct ndr_print
*ndr
, const char *name
, const struct lsa_ForestTrustInformation
*r
);
2746 _PUBLIC_
void ndr_print_lsa_Close(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_Close
*r
);
2747 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_Delete(struct ndr_push
*ndr
, int flags
, const struct lsa_Delete
*r
);
2748 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_Delete(struct ndr_pull
*ndr
, int flags
, struct lsa_Delete
*r
);
2749 _PUBLIC_
void ndr_print_lsa_Delete(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_Delete
*r
);
2750 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_EnumPrivs(struct ndr_push
*ndr
, int flags
, const struct lsa_EnumPrivs
*r
);
2751 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_EnumPrivs(struct ndr_pull
*ndr
, int flags
, struct lsa_EnumPrivs
*r
);
2752 _PUBLIC_
void ndr_print_lsa_EnumPrivs(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_EnumPrivs
*r
);
2753 _PUBLIC_
void ndr_print_lsa_QuerySecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_QuerySecurity
*r
);
2754 _PUBLIC_
void ndr_print_lsa_SetSecObj(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetSecObj
*r
);
2755 _PUBLIC_
void ndr_print_lsa_ChangePassword(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_ChangePassword
*r
);
2756 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_OpenPolicy(struct ndr_push
*ndr
, int flags
, const struct lsa_OpenPolicy
*r
);
2757 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_OpenPolicy(struct ndr_pull
*ndr
, int flags
, struct lsa_OpenPolicy
*r
);
2758 _PUBLIC_
void ndr_print_lsa_OpenPolicy(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_OpenPolicy
*r
);
2759 _PUBLIC_
void ndr_print_lsa_QueryInfoPolicy(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_QueryInfoPolicy
*r
);
2760 _PUBLIC_
void ndr_print_lsa_SetInfoPolicy(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetInfoPolicy
*r
);
2761 _PUBLIC_
void ndr_print_lsa_ClearAuditLog(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_ClearAuditLog
*r
);
2762 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_CreateAccount(struct ndr_push
*ndr
, int flags
, const struct lsa_CreateAccount
*r
);
2763 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_CreateAccount(struct ndr_pull
*ndr
, int flags
, struct lsa_CreateAccount
*r
);
2764 _PUBLIC_
void ndr_print_lsa_CreateAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CreateAccount
*r
);
2765 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_EnumAccounts(struct ndr_push
*ndr
, int flags
, const struct lsa_EnumAccounts
*r
);
2766 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_EnumAccounts(struct ndr_pull
*ndr
, int flags
, struct lsa_EnumAccounts
*r
);
2767 _PUBLIC_
void ndr_print_lsa_EnumAccounts(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_EnumAccounts
*r
);
2768 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_CreateTrustedDomain(struct ndr_push
*ndr
, int flags
, const struct lsa_CreateTrustedDomain
*r
);
2769 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_CreateTrustedDomain(struct ndr_pull
*ndr
, int flags
, struct lsa_CreateTrustedDomain
*r
);
2770 _PUBLIC_
void ndr_print_lsa_CreateTrustedDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CreateTrustedDomain
*r
);
2771 _PUBLIC_
void ndr_print_lsa_EnumTrustDom(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_EnumTrustDom
*r
);
2772 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_LookupNames(struct ndr_push
*ndr
, int flags
, const struct lsa_LookupNames
*r
);
2773 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_LookupNames(struct ndr_pull
*ndr
, int flags
, struct lsa_LookupNames
*r
);
2774 _PUBLIC_
void ndr_print_lsa_LookupNames(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupNames
*r
);
2775 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_LookupSids(struct ndr_push
*ndr
, int flags
, const struct lsa_LookupSids
*r
);
2776 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_LookupSids(struct ndr_pull
*ndr
, int flags
, struct lsa_LookupSids
*r
);
2777 _PUBLIC_
void ndr_print_lsa_LookupSids(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupSids
*r
);
2778 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_CreateSecret(struct ndr_push
*ndr
, int flags
, const struct lsa_CreateSecret
*r
);
2779 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_CreateSecret(struct ndr_pull
*ndr
, int flags
, struct lsa_CreateSecret
*r
);
2780 _PUBLIC_
void ndr_print_lsa_CreateSecret(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CreateSecret
*r
);
2781 _PUBLIC_
void ndr_print_lsa_OpenAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_OpenAccount
*r
);
2782 _PUBLIC_
void ndr_print_lsa_EnumPrivsAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_EnumPrivsAccount
*r
);
2783 _PUBLIC_
void ndr_print_lsa_AddPrivilegesToAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_AddPrivilegesToAccount
*r
);
2784 _PUBLIC_
void ndr_print_lsa_RemovePrivilegesFromAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_RemovePrivilegesFromAccount
*r
);
2785 _PUBLIC_
void ndr_print_lsa_GetQuotasForAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_GetQuotasForAccount
*r
);
2786 _PUBLIC_
void ndr_print_lsa_SetQuotasForAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetQuotasForAccount
*r
);
2787 _PUBLIC_
void ndr_print_lsa_GetSystemAccessAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_GetSystemAccessAccount
*r
);
2788 _PUBLIC_
void ndr_print_lsa_SetSystemAccessAccount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetSystemAccessAccount
*r
);
2789 _PUBLIC_
void ndr_print_lsa_OpenTrustedDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_OpenTrustedDomain
*r
);
2790 _PUBLIC_
void ndr_print_lsa_QueryTrustedDomainInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_QueryTrustedDomainInfo
*r
);
2791 _PUBLIC_
void ndr_print_lsa_SetInformationTrustedDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetInformationTrustedDomain
*r
);
2792 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_OpenSecret(struct ndr_push
*ndr
, int flags
, const struct lsa_OpenSecret
*r
);
2793 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_OpenSecret(struct ndr_pull
*ndr
, int flags
, struct lsa_OpenSecret
*r
);
2794 _PUBLIC_
void ndr_print_lsa_OpenSecret(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_OpenSecret
*r
);
2795 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_SetSecret(struct ndr_push
*ndr
, int flags
, const struct lsa_SetSecret
*r
);
2796 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_SetSecret(struct ndr_pull
*ndr
, int flags
, struct lsa_SetSecret
*r
);
2797 _PUBLIC_
void ndr_print_lsa_SetSecret(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetSecret
*r
);
2798 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_QuerySecret(struct ndr_push
*ndr
, int flags
, const struct lsa_QuerySecret
*r
);
2799 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_QuerySecret(struct ndr_pull
*ndr
, int flags
, struct lsa_QuerySecret
*r
);
2800 _PUBLIC_
void ndr_print_lsa_QuerySecret(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_QuerySecret
*r
);
2801 _PUBLIC_
void ndr_print_lsa_LookupPrivValue(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupPrivValue
*r
);
2802 _PUBLIC_
void ndr_print_lsa_LookupPrivName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupPrivName
*r
);
2803 _PUBLIC_
void ndr_print_lsa_LookupPrivDisplayName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupPrivDisplayName
*r
);
2804 _PUBLIC_
void ndr_print_lsa_DeleteObject(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_DeleteObject
*r
);
2805 _PUBLIC_
void ndr_print_lsa_EnumAccountsWithUserRight(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_EnumAccountsWithUserRight
*r
);
2806 _PUBLIC_
void ndr_print_lsa_EnumAccountRights(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_EnumAccountRights
*r
);
2807 _PUBLIC_
void ndr_print_lsa_AddAccountRights(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_AddAccountRights
*r
);
2808 _PUBLIC_
void ndr_print_lsa_RemoveAccountRights(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_RemoveAccountRights
*r
);
2809 _PUBLIC_
void ndr_print_lsa_QueryTrustedDomainInfoBySid(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_QueryTrustedDomainInfoBySid
*r
);
2810 _PUBLIC_
void ndr_print_lsa_SetTrustedDomainInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetTrustedDomainInfo
*r
);
2811 _PUBLIC_
void ndr_print_lsa_DeleteTrustedDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_DeleteTrustedDomain
*r
);
2812 _PUBLIC_
void ndr_print_lsa_StorePrivateData(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_StorePrivateData
*r
);
2813 _PUBLIC_
void ndr_print_lsa_RetrievePrivateData(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_RetrievePrivateData
*r
);
2814 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_OpenPolicy2(struct ndr_push
*ndr
, int flags
, const struct lsa_OpenPolicy2
*r
);
2815 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_OpenPolicy2(struct ndr_pull
*ndr
, int flags
, struct lsa_OpenPolicy2
*r
);
2816 _PUBLIC_
void ndr_print_lsa_OpenPolicy2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_OpenPolicy2
*r
);
2817 _PUBLIC_
void ndr_print_lsa_GetUserName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_GetUserName
*r
);
2818 _PUBLIC_
void ndr_print_lsa_QueryInfoPolicy2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_QueryInfoPolicy2
*r
);
2819 _PUBLIC_
void ndr_print_lsa_SetInfoPolicy2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetInfoPolicy2
*r
);
2820 _PUBLIC_
void ndr_print_lsa_QueryTrustedDomainInfoByName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_QueryTrustedDomainInfoByName
*r
);
2821 _PUBLIC_
void ndr_print_lsa_SetTrustedDomainInfoByName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetTrustedDomainInfoByName
*r
);
2822 _PUBLIC_
void ndr_print_lsa_EnumTrustedDomainsEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_EnumTrustedDomainsEx
*r
);
2823 _PUBLIC_
void ndr_print_lsa_CreateTrustedDomainEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CreateTrustedDomainEx
*r
);
2824 _PUBLIC_
void ndr_print_lsa_CloseTrustedDomainEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CloseTrustedDomainEx
*r
);
2825 _PUBLIC_
void ndr_print_lsa_QueryDomainInformationPolicy(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_QueryDomainInformationPolicy
*r
);
2826 _PUBLIC_
void ndr_print_lsa_SetDomainInformationPolicy(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_SetDomainInformationPolicy
*r
);
2827 _PUBLIC_
void ndr_print_lsa_OpenTrustedDomainByName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_OpenTrustedDomainByName
*r
);
2828 _PUBLIC_
void ndr_print_lsa_TestCall(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_TestCall
*r
);
2829 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_LookupSids2(struct ndr_push
*ndr
, int flags
, const struct lsa_LookupSids2
*r
);
2830 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_LookupSids2(struct ndr_pull
*ndr
, int flags
, struct lsa_LookupSids2
*r
);
2831 _PUBLIC_
void ndr_print_lsa_LookupSids2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupSids2
*r
);
2832 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_LookupNames2(struct ndr_push
*ndr
, int flags
, const struct lsa_LookupNames2
*r
);
2833 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_LookupNames2(struct ndr_pull
*ndr
, int flags
, struct lsa_LookupNames2
*r
);
2834 _PUBLIC_
void ndr_print_lsa_LookupNames2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupNames2
*r
);
2835 _PUBLIC_
void ndr_print_lsa_CreateTrustedDomainEx2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CreateTrustedDomainEx2
*r
);
2836 _PUBLIC_
void ndr_print_lsa_CREDRWRITE(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRWRITE
*r
);
2837 _PUBLIC_
void ndr_print_lsa_CREDRREAD(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRREAD
*r
);
2838 _PUBLIC_
void ndr_print_lsa_CREDRENUMERATE(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRENUMERATE
*r
);
2839 _PUBLIC_
void ndr_print_lsa_CREDRWRITEDOMAINCREDENTIALS(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRWRITEDOMAINCREDENTIALS
*r
);
2840 _PUBLIC_
void ndr_print_lsa_CREDRREADDOMAINCREDENTIALS(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRREADDOMAINCREDENTIALS
*r
);
2841 _PUBLIC_
void ndr_print_lsa_CREDRDELETE(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRDELETE
*r
);
2842 _PUBLIC_
void ndr_print_lsa_CREDRGETTARGETINFO(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRGETTARGETINFO
*r
);
2843 _PUBLIC_
void ndr_print_lsa_CREDRPROFILELOADED(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRPROFILELOADED
*r
);
2844 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_LookupNames3(struct ndr_push
*ndr
, int flags
, const struct lsa_LookupNames3
*r
);
2845 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_LookupNames3(struct ndr_pull
*ndr
, int flags
, struct lsa_LookupNames3
*r
);
2846 _PUBLIC_
void ndr_print_lsa_LookupNames3(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupNames3
*r
);
2847 _PUBLIC_
void ndr_print_lsa_CREDRGETSESSIONTYPES(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRGETSESSIONTYPES
*r
);
2848 _PUBLIC_
void ndr_print_lsa_LSARREGISTERAUDITEVENT(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LSARREGISTERAUDITEVENT
*r
);
2849 _PUBLIC_
void ndr_print_lsa_LSARGENAUDITEVENT(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LSARGENAUDITEVENT
*r
);
2850 _PUBLIC_
void ndr_print_lsa_LSARUNREGISTERAUDITEVENT(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LSARUNREGISTERAUDITEVENT
*r
);
2851 _PUBLIC_
void ndr_print_lsa_lsaRQueryForestTrustInformation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_lsaRQueryForestTrustInformation
*r
);
2852 _PUBLIC_
void ndr_print_lsa_LSARSETFORESTTRUSTINFORMATION(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LSARSETFORESTTRUSTINFORMATION
*r
);
2853 _PUBLIC_
void ndr_print_lsa_CREDRRENAME(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_CREDRRENAME
*r
);
2854 _PUBLIC_
enum ndr_err_code
ndr_push_lsa_LookupSids3(struct ndr_push
*ndr
, int flags
, const struct lsa_LookupSids3
*r
);
2855 _PUBLIC_
enum ndr_err_code
ndr_pull_lsa_LookupSids3(struct ndr_pull
*ndr
, int flags
, struct lsa_LookupSids3
*r
);
2856 _PUBLIC_
void ndr_print_lsa_LookupSids3(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupSids3
*r
);
2857 _PUBLIC_
void ndr_print_lsa_LookupNames4(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LookupNames4
*r
);
2858 _PUBLIC_
void ndr_print_lsa_LSAROPENPOLICYSCE(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LSAROPENPOLICYSCE
*r
);
2859 _PUBLIC_
void ndr_print_lsa_LSARADTREGISTERSECURITYEVENTSOURCE(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LSARADTREGISTERSECURITYEVENTSOURCE
*r
);
2860 _PUBLIC_
void ndr_print_lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE
*r
);
2861 _PUBLIC_
void ndr_print_lsa_LSARADTREPORTSECURITYEVENT(struct ndr_print
*ndr
, const char *name
, int flags
, const struct lsa_LSARADTREPORTSECURITYEVENT
*r
);
2863 /* The following definitions come from librpc/gen_ndr/ndr_misc.c */
2865 _PUBLIC_
enum ndr_err_code
ndr_push_GUID(struct ndr_push
*ndr
, int ndr_flags
, const struct GUID
*r
);
2866 _PUBLIC_
enum ndr_err_code
ndr_pull_GUID(struct ndr_pull
*ndr
, int ndr_flags
, struct GUID
*r
);
2867 _PUBLIC_
size_t ndr_size_GUID(const struct GUID
*r
, int flags
);
2868 _PUBLIC_
enum ndr_err_code
ndr_push_ndr_syntax_id(struct ndr_push
*ndr
, int ndr_flags
, const struct ndr_syntax_id
*r
);
2869 _PUBLIC_
enum ndr_err_code
ndr_pull_ndr_syntax_id(struct ndr_pull
*ndr
, int ndr_flags
, struct ndr_syntax_id
*r
);
2870 _PUBLIC_
void ndr_print_ndr_syntax_id(struct ndr_print
*ndr
, const char *name
, const struct ndr_syntax_id
*r
);
2871 _PUBLIC_
enum ndr_err_code
ndr_push_policy_handle(struct ndr_push
*ndr
, int ndr_flags
, const struct policy_handle
*r
);
2872 _PUBLIC_
enum ndr_err_code
ndr_pull_policy_handle(struct ndr_pull
*ndr
, int ndr_flags
, struct policy_handle
*r
);
2873 _PUBLIC_
void ndr_print_policy_handle(struct ndr_print
*ndr
, const char *name
, const struct policy_handle
*r
);
2874 _PUBLIC_
enum ndr_err_code
ndr_push_netr_SchannelType(struct ndr_push
*ndr
, int ndr_flags
, enum netr_SchannelType r
);
2875 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_SchannelType(struct ndr_pull
*ndr
, int ndr_flags
, enum netr_SchannelType
*r
);
2876 _PUBLIC_
void ndr_print_netr_SchannelType(struct ndr_print
*ndr
, const char *name
, enum netr_SchannelType r
);
2877 _PUBLIC_
enum ndr_err_code
ndr_push_netr_SamDatabaseID(struct ndr_push
*ndr
, int ndr_flags
, enum netr_SamDatabaseID r
);
2878 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_SamDatabaseID(struct ndr_pull
*ndr
, int ndr_flags
, enum netr_SamDatabaseID
*r
);
2879 _PUBLIC_
void ndr_print_netr_SamDatabaseID(struct ndr_print
*ndr
, const char *name
, enum netr_SamDatabaseID r
);
2880 _PUBLIC_
enum ndr_err_code
ndr_push_samr_RejectReason(struct ndr_push
*ndr
, int ndr_flags
, enum samr_RejectReason r
);
2881 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_RejectReason(struct ndr_pull
*ndr
, int ndr_flags
, enum samr_RejectReason
*r
);
2882 _PUBLIC_
void ndr_print_samr_RejectReason(struct ndr_print
*ndr
, const char *name
, enum samr_RejectReason r
);
2884 /* The following definitions come from librpc/gen_ndr/ndr_nbt.c */
2886 _PUBLIC_
void ndr_print_nbt_operation(struct ndr_print
*ndr
, const char *name
, uint16_t r
);
2887 _PUBLIC_
void ndr_print_nbt_name_type(struct ndr_print
*ndr
, const char *name
, enum nbt_name_type r
);
2888 _PUBLIC_
void ndr_print_nbt_name(struct ndr_print
*ndr
, const char *name
, const struct nbt_name
*r
);
2889 _PUBLIC_
void ndr_print_nbt_qclass(struct ndr_print
*ndr
, const char *name
, enum nbt_qclass r
);
2890 _PUBLIC_
void ndr_print_nbt_qtype(struct ndr_print
*ndr
, const char *name
, enum nbt_qtype r
);
2891 _PUBLIC_
void ndr_print_nbt_name_question(struct ndr_print
*ndr
, const char *name
, const struct nbt_name_question
*r
);
2892 _PUBLIC_
void ndr_print_nb_flags(struct ndr_print
*ndr
, const char *name
, uint16_t r
);
2893 _PUBLIC_
void ndr_print_nbt_rdata_address(struct ndr_print
*ndr
, const char *name
, const struct nbt_rdata_address
*r
);
2894 _PUBLIC_
void ndr_print_nbt_rdata_netbios(struct ndr_print
*ndr
, const char *name
, const struct nbt_rdata_netbios
*r
);
2895 _PUBLIC_
void ndr_print_nbt_statistics(struct ndr_print
*ndr
, const char *name
, const struct nbt_statistics
*r
);
2896 _PUBLIC_
void ndr_print_nbt_status_name(struct ndr_print
*ndr
, const char *name
, const struct nbt_status_name
*r
);
2897 _PUBLIC_
void ndr_print_nbt_rdata_status(struct ndr_print
*ndr
, const char *name
, const struct nbt_rdata_status
*r
);
2898 _PUBLIC_
void ndr_print_nbt_rdata_data(struct ndr_print
*ndr
, const char *name
, const struct nbt_rdata_data
*r
);
2899 _PUBLIC_
void ndr_print_nbt_rdata(struct ndr_print
*ndr
, const char *name
, const union nbt_rdata
*r
);
2900 _PUBLIC_
void ndr_print_nbt_res_rec(struct ndr_print
*ndr
, const char *name
, const struct nbt_res_rec
*r
);
2901 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_name_packet(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_name_packet
*r
);
2902 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_name_packet(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_name_packet
*r
);
2903 _PUBLIC_
void ndr_print_nbt_name_packet(struct ndr_print
*ndr
, const char *name
, const struct nbt_name_packet
*r
);
2904 _PUBLIC_
void ndr_print_dgram_msg_type(struct ndr_print
*ndr
, const char *name
, enum dgram_msg_type r
);
2905 _PUBLIC_
void ndr_print_dgram_flags(struct ndr_print
*ndr
, const char *name
, uint8_t r
);
2906 _PUBLIC_
void ndr_print_smb_command(struct ndr_print
*ndr
, const char *name
, enum smb_command r
);
2907 _PUBLIC_
void ndr_print_smb_trans_body(struct ndr_print
*ndr
, const char *name
, const struct smb_trans_body
*r
);
2908 _PUBLIC_
void ndr_print_smb_body(struct ndr_print
*ndr
, const char *name
, const union smb_body
*r
);
2909 _PUBLIC_
enum ndr_err_code
ndr_push_dgram_smb_packet(struct ndr_push
*ndr
, int ndr_flags
, const struct dgram_smb_packet
*r
);
2910 _PUBLIC_
enum ndr_err_code
ndr_pull_dgram_smb_packet(struct ndr_pull
*ndr
, int ndr_flags
, struct dgram_smb_packet
*r
);
2911 _PUBLIC_
void ndr_print_dgram_smb_packet(struct ndr_print
*ndr
, const char *name
, const struct dgram_smb_packet
*r
);
2912 _PUBLIC_
void ndr_print_dgram_message_body(struct ndr_print
*ndr
, const char *name
, const union dgram_message_body
*r
);
2913 _PUBLIC_
void ndr_print_dgram_message(struct ndr_print
*ndr
, const char *name
, const struct dgram_message
*r
);
2914 _PUBLIC_
void ndr_print_dgram_err_code(struct ndr_print
*ndr
, const char *name
, enum dgram_err_code r
);
2915 _PUBLIC_
void ndr_print_dgram_data(struct ndr_print
*ndr
, const char *name
, const union dgram_data
*r
);
2916 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_dgram_packet(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_dgram_packet
*r
);
2917 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_dgram_packet(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_dgram_packet
*r
);
2918 _PUBLIC_
void ndr_print_nbt_dgram_packet(struct ndr_print
*ndr
, const char *name
, const struct nbt_dgram_packet
*r
);
2919 _PUBLIC_
void ndr_print_nbt_netlogon_command(struct ndr_print
*ndr
, const char *name
, enum nbt_netlogon_command r
);
2920 _PUBLIC_
void ndr_print_nbt_netlogon_version(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2921 _PUBLIC_
void ndr_print_nbt_netlogon_query_for_pdc(struct ndr_print
*ndr
, const char *name
, const struct nbt_netlogon_query_for_pdc
*r
);
2922 _PUBLIC_
void ndr_print_nbt_netlogon_query_for_pdc2(struct ndr_print
*ndr
, const char *name
, const struct nbt_netlogon_query_for_pdc2
*r
);
2923 _PUBLIC_
void ndr_print_nbt_netlogon_response_from_pdc(struct ndr_print
*ndr
, const char *name
, const struct nbt_netlogon_response_from_pdc
*r
);
2924 _PUBLIC_
void ndr_print_nbt_server_type(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2925 _PUBLIC_
void ndr_print_nbt_dc_sock_addr(struct ndr_print
*ndr
, const char *name
, const struct nbt_dc_sock_addr
*r
);
2926 _PUBLIC_
void ndr_print_nbt_netlogon_response_from_pdc2(struct ndr_print
*ndr
, const char *name
, const struct nbt_netlogon_response_from_pdc2
*r
);
2927 _PUBLIC_
void ndr_print_nbt_db_change(struct ndr_print
*ndr
, const char *name
, const struct nbt_db_change
*r
);
2928 _PUBLIC_
void ndr_print_nbt_netlogon_announce_uas(struct ndr_print
*ndr
, const char *name
, const struct nbt_netlogon_announce_uas
*r
);
2929 _PUBLIC_
void ndr_print_nbt_netlogon_request(struct ndr_print
*ndr
, const char *name
, const union nbt_netlogon_request
*r
);
2930 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_netlogon_packet(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_netlogon_packet
*r
);
2931 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_netlogon_packet(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_netlogon_packet
*r
);
2932 _PUBLIC_
void ndr_print_nbt_netlogon_packet(struct ndr_print
*ndr
, const char *name
, const struct nbt_netlogon_packet
*r
);
2933 _PUBLIC_
void ndr_print_nbt_cldap_netlogon_1(struct ndr_print
*ndr
, const char *name
, const struct nbt_cldap_netlogon_1
*r
);
2934 _PUBLIC_
void ndr_print_nbt_cldap_netlogon_3(struct ndr_print
*ndr
, const char *name
, const struct nbt_cldap_netlogon_3
*r
);
2935 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_cldap_netlogon_5(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_cldap_netlogon_5
*r
);
2936 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_cldap_netlogon_5(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_cldap_netlogon_5
*r
);
2937 _PUBLIC_
void ndr_print_nbt_cldap_netlogon_5(struct ndr_print
*ndr
, const char *name
, const struct nbt_cldap_netlogon_5
*r
);
2938 _PUBLIC_
void ndr_print_nbt_cldap_netlogon_13(struct ndr_print
*ndr
, const char *name
, const struct nbt_cldap_netlogon_13
*r
);
2939 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_cldap_netlogon_15(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_cldap_netlogon_15
*r
);
2940 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_cldap_netlogon_15(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_cldap_netlogon_15
*r
);
2941 _PUBLIC_
void ndr_print_nbt_cldap_netlogon_15(struct ndr_print
*ndr
, const char *name
, const struct nbt_cldap_netlogon_15
*r
);
2942 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_cldap_netlogon_29(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_cldap_netlogon_29
*r
);
2943 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_cldap_netlogon_29(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_cldap_netlogon_29
*r
);
2944 _PUBLIC_
void ndr_print_nbt_cldap_netlogon_29(struct ndr_print
*ndr
, const char *name
, const struct nbt_cldap_netlogon_29
*r
);
2945 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_cldap_netlogon(struct ndr_push
*ndr
, int ndr_flags
, const union nbt_cldap_netlogon
*r
);
2946 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_cldap_netlogon(struct ndr_pull
*ndr
, int ndr_flags
, union nbt_cldap_netlogon
*r
);
2947 _PUBLIC_
void ndr_print_nbt_cldap_netlogon(struct ndr_print
*ndr
, const char *name
, const union nbt_cldap_netlogon
*r
);
2948 _PUBLIC_
void ndr_print_nbt_ntlogon_command(struct ndr_print
*ndr
, const char *name
, enum nbt_ntlogon_command r
);
2949 _PUBLIC_
void ndr_print_nbt_ntlogon_sam_logon(struct ndr_print
*ndr
, const char *name
, const struct nbt_ntlogon_sam_logon
*r
);
2950 _PUBLIC_
void ndr_print_nbt_ntlogon_sam_logon_reply(struct ndr_print
*ndr
, const char *name
, const struct nbt_ntlogon_sam_logon_reply
*r
);
2951 _PUBLIC_
void ndr_print_nbt_ntlogon_request(struct ndr_print
*ndr
, const char *name
, const union nbt_ntlogon_request
*r
);
2952 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_ntlogon_packet(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_ntlogon_packet
*r
);
2953 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_ntlogon_packet(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_ntlogon_packet
*r
);
2954 _PUBLIC_
void ndr_print_nbt_ntlogon_packet(struct ndr_print
*ndr
, const char *name
, const struct nbt_ntlogon_packet
*r
);
2955 _PUBLIC_
void ndr_print_nbt_browse_opcode(struct ndr_print
*ndr
, const char *name
, enum nbt_browse_opcode r
);
2956 _PUBLIC_
void ndr_print_nbt_browse_host_announcement(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_host_announcement
*r
);
2957 _PUBLIC_
void ndr_print_nbt_browse_announcement_request(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_announcement_request
*r
);
2958 _PUBLIC_
void ndr_print_nbt_browse_election_request(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_election_request
*r
);
2959 _PUBLIC_
void ndr_print_nbt_browse_backup_list_request(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_backup_list_request
*r
);
2960 _PUBLIC_
void ndr_print_nbt_browse_backup_list_response(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_backup_list_response
*r
);
2961 _PUBLIC_
void ndr_print_nbt_browse_become_backup(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_become_backup
*r
);
2962 _PUBLIC_
void ndr_print_nbt_browse_domain_announcement(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_domain_announcement
*r
);
2963 _PUBLIC_
void ndr_print_nbt_browse_master_announcement(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_master_announcement
*r
);
2964 _PUBLIC_
void ndr_print_nbt_browse_reset_state(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_reset_state
*r
);
2965 _PUBLIC_
void ndr_print_nbt_browse_local_master_announcement(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_local_master_announcement
*r
);
2966 _PUBLIC_
void ndr_print_nbt_browse_payload(struct ndr_print
*ndr
, const char *name
, const union nbt_browse_payload
*r
);
2967 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_browse_packet(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_browse_packet
*r
);
2968 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_browse_packet(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_browse_packet
*r
);
2969 _PUBLIC_
void ndr_print_nbt_browse_packet(struct ndr_print
*ndr
, const char *name
, const struct nbt_browse_packet
*r
);
2971 /* The following definitions come from librpc/gen_ndr/ndr_netlogon.c */
2973 _PUBLIC_
void ndr_print_netr_UasInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_UasInfo
*r
);
2974 _PUBLIC_
void ndr_print_netr_UasLogoffInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_UasLogoffInfo
*r
);
2975 _PUBLIC_
enum ndr_err_code
ndr_push_netr_AcctLockStr(struct ndr_push
*ndr
, int ndr_flags
, const struct netr_AcctLockStr
*r
);
2976 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_AcctLockStr(struct ndr_pull
*ndr
, int ndr_flags
, struct netr_AcctLockStr
*r
);
2977 _PUBLIC_
void ndr_print_netr_AcctLockStr(struct ndr_print
*ndr
, const char *name
, const struct netr_AcctLockStr
*r
);
2978 _PUBLIC_
enum ndr_err_code
ndr_push_netr_LogonParameterControl(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
2979 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_LogonParameterControl(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
2980 _PUBLIC_
void ndr_print_netr_LogonParameterControl(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2981 _PUBLIC_
void ndr_print_netr_IdentityInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_IdentityInfo
*r
);
2982 _PUBLIC_
void ndr_print_netr_PasswordInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_PasswordInfo
*r
);
2983 _PUBLIC_
void ndr_print_netr_ChallengeResponse(struct ndr_print
*ndr
, const char *name
, const struct netr_ChallengeResponse
*r
);
2984 _PUBLIC_
void ndr_print_netr_NetworkInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_NetworkInfo
*r
);
2985 _PUBLIC_
enum ndr_err_code
ndr_push_netr_LogonInfo(struct ndr_push
*ndr
, int ndr_flags
, const union netr_LogonInfo
*r
);
2986 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_LogonInfo(struct ndr_pull
*ndr
, int ndr_flags
, union netr_LogonInfo
*r
);
2987 _PUBLIC_
void ndr_print_netr_LogonInfo(struct ndr_print
*ndr
, const char *name
, const union netr_LogonInfo
*r
);
2988 _PUBLIC_
enum ndr_err_code
ndr_push_netr_UserSessionKey(struct ndr_push
*ndr
, int ndr_flags
, const struct netr_UserSessionKey
*r
);
2989 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_UserSessionKey(struct ndr_pull
*ndr
, int ndr_flags
, struct netr_UserSessionKey
*r
);
2990 _PUBLIC_
void ndr_print_netr_UserSessionKey(struct ndr_print
*ndr
, const char *name
, const struct netr_UserSessionKey
*r
);
2991 _PUBLIC_
enum ndr_err_code
ndr_push_netr_LMSessionKey(struct ndr_push
*ndr
, int ndr_flags
, const struct netr_LMSessionKey
*r
);
2992 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_LMSessionKey(struct ndr_pull
*ndr
, int ndr_flags
, struct netr_LMSessionKey
*r
);
2993 _PUBLIC_
void ndr_print_netr_LMSessionKey(struct ndr_print
*ndr
, const char *name
, const struct netr_LMSessionKey
*r
);
2994 _PUBLIC_
enum ndr_err_code
ndr_push_netr_UserFlags(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
2995 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_UserFlags(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
2996 _PUBLIC_
void ndr_print_netr_UserFlags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
2997 _PUBLIC_
void ndr_print_netr_SamBaseInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_SamBaseInfo
*r
);
2998 _PUBLIC_
void ndr_print_netr_SamInfo2(struct ndr_print
*ndr
, const char *name
, const struct netr_SamInfo2
*r
);
2999 _PUBLIC_
void ndr_print_netr_SidAttr(struct ndr_print
*ndr
, const char *name
, const struct netr_SidAttr
*r
);
3000 _PUBLIC_
enum ndr_err_code
ndr_push_netr_SamInfo3(struct ndr_push
*ndr
, int ndr_flags
, const struct netr_SamInfo3
*r
);
3001 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_SamInfo3(struct ndr_pull
*ndr
, int ndr_flags
, struct netr_SamInfo3
*r
);
3002 _PUBLIC_
void ndr_print_netr_SamInfo3(struct ndr_print
*ndr
, const char *name
, const struct netr_SamInfo3
*r
);
3003 _PUBLIC_
void ndr_print_netr_SamInfo6(struct ndr_print
*ndr
, const char *name
, const struct netr_SamInfo6
*r
);
3004 _PUBLIC_
void ndr_print_netr_PacInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_PacInfo
*r
);
3005 _PUBLIC_
enum ndr_err_code
ndr_push_netr_Validation(struct ndr_push
*ndr
, int ndr_flags
, const union netr_Validation
*r
);
3006 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_Validation(struct ndr_pull
*ndr
, int ndr_flags
, union netr_Validation
*r
);
3007 _PUBLIC_
void ndr_print_netr_Validation(struct ndr_print
*ndr
, const char *name
, const union netr_Validation
*r
);
3008 _PUBLIC_
enum ndr_err_code
ndr_push_netr_Credential(struct ndr_push
*ndr
, int ndr_flags
, const struct netr_Credential
*r
);
3009 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_Credential(struct ndr_pull
*ndr
, int ndr_flags
, struct netr_Credential
*r
);
3010 _PUBLIC_
void ndr_print_netr_Credential(struct ndr_print
*ndr
, const char *name
, const struct netr_Credential
*r
);
3011 _PUBLIC_
enum ndr_err_code
ndr_push_netr_Authenticator(struct ndr_push
*ndr
, int ndr_flags
, const struct netr_Authenticator
*r
);
3012 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_Authenticator(struct ndr_pull
*ndr
, int ndr_flags
, struct netr_Authenticator
*r
);
3013 _PUBLIC_
void ndr_print_netr_Authenticator(struct ndr_print
*ndr
, const char *name
, const struct netr_Authenticator
*r
);
3014 _PUBLIC_
void ndr_print_netr_LogonLevel(struct ndr_print
*ndr
, const char *name
, enum netr_LogonLevel r
);
3015 _PUBLIC_
void ndr_print_netr_DELTA_DELETE_USER(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_DELETE_USER
*r
);
3016 _PUBLIC_
void ndr_print_netr_USER_KEY16(struct ndr_print
*ndr
, const char *name
, const struct netr_USER_KEY16
*r
);
3017 _PUBLIC_
void ndr_print_netr_PasswordHistory(struct ndr_print
*ndr
, const char *name
, const struct netr_PasswordHistory
*r
);
3018 _PUBLIC_
void ndr_print_netr_USER_KEYS2(struct ndr_print
*ndr
, const char *name
, const struct netr_USER_KEYS2
*r
);
3019 _PUBLIC_
void ndr_print_netr_USER_KEY_UNION(struct ndr_print
*ndr
, const char *name
, const struct netr_USER_KEY_UNION
*r
);
3020 _PUBLIC_
enum ndr_err_code
ndr_push_netr_USER_KEYS(struct ndr_push
*ndr
, int ndr_flags
, const struct netr_USER_KEYS
*r
);
3021 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_USER_KEYS(struct ndr_pull
*ndr
, int ndr_flags
, struct netr_USER_KEYS
*r
);
3022 _PUBLIC_
void ndr_print_netr_USER_KEYS(struct ndr_print
*ndr
, const char *name
, const struct netr_USER_KEYS
*r
);
3023 _PUBLIC_
void ndr_print_netr_USER_PRIVATE_INFO(struct ndr_print
*ndr
, const char *name
, const struct netr_USER_PRIVATE_INFO
*r
);
3024 _PUBLIC_
void ndr_print_netr_DELTA_USER(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_USER
*r
);
3025 _PUBLIC_
void ndr_print_netr_DELTA_DOMAIN(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_DOMAIN
*r
);
3026 _PUBLIC_
void ndr_print_netr_DELTA_GROUP(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_GROUP
*r
);
3027 _PUBLIC_
void ndr_print_netr_DELTA_RENAME(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_RENAME
*r
);
3028 _PUBLIC_
void ndr_print_netr_DELTA_GROUP_MEMBER(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_GROUP_MEMBER
*r
);
3029 _PUBLIC_
void ndr_print_netr_DELTA_ALIAS(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_ALIAS
*r
);
3030 _PUBLIC_
void ndr_print_netr_DELTA_ALIAS_MEMBER(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_ALIAS_MEMBER
*r
);
3031 _PUBLIC_
void ndr_print_netr_QUOTA_LIMITS(struct ndr_print
*ndr
, const char *name
, const struct netr_QUOTA_LIMITS
*r
);
3032 _PUBLIC_
void ndr_print_netr_DELTA_POLICY(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_POLICY
*r
);
3033 _PUBLIC_
void ndr_print_netr_DELTA_TRUSTED_DOMAIN(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_TRUSTED_DOMAIN
*r
);
3034 _PUBLIC_
void ndr_print_netr_DELTA_DELETE_TRUST(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_DELETE_TRUST
*r
);
3035 _PUBLIC_
void ndr_print_netr_DELTA_ACCOUNT(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_ACCOUNT
*r
);
3036 _PUBLIC_
void ndr_print_netr_DELTA_DELETE_ACCOUNT(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_DELETE_ACCOUNT
*r
);
3037 _PUBLIC_
void ndr_print_netr_DELTA_DELETE_SECRET(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_DELETE_SECRET
*r
);
3038 _PUBLIC_
void ndr_print_netr_CIPHER_VALUE(struct ndr_print
*ndr
, const char *name
, const struct netr_CIPHER_VALUE
*r
);
3039 _PUBLIC_
void ndr_print_netr_DELTA_SECRET(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_SECRET
*r
);
3040 _PUBLIC_
void ndr_print_netr_DeltaEnum(struct ndr_print
*ndr
, const char *name
, enum netr_DeltaEnum r
);
3041 _PUBLIC_
void ndr_print_netr_DELTA_UNION(struct ndr_print
*ndr
, const char *name
, const union netr_DELTA_UNION
*r
);
3042 _PUBLIC_
void ndr_print_netr_DELTA_ID_UNION(struct ndr_print
*ndr
, const char *name
, const union netr_DELTA_ID_UNION
*r
);
3043 _PUBLIC_
void ndr_print_netr_DELTA_ENUM(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_ENUM
*r
);
3044 _PUBLIC_
void ndr_print_netr_DELTA_ENUM_ARRAY(struct ndr_print
*ndr
, const char *name
, const struct netr_DELTA_ENUM_ARRAY
*r
);
3045 _PUBLIC_
void ndr_print_netr_UAS_INFO_0(struct ndr_print
*ndr
, const char *name
, const struct netr_UAS_INFO_0
*r
);
3046 _PUBLIC_
void ndr_print_netr_AccountBuffer(struct ndr_print
*ndr
, const char *name
, const struct netr_AccountBuffer
*r
);
3047 _PUBLIC_
void ndr_print_netr_InfoFlags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3048 _PUBLIC_
void ndr_print_netr_NETLOGON_INFO_1(struct ndr_print
*ndr
, const char *name
, const struct netr_NETLOGON_INFO_1
*r
);
3049 _PUBLIC_
void ndr_print_netr_NETLOGON_INFO_2(struct ndr_print
*ndr
, const char *name
, const struct netr_NETLOGON_INFO_2
*r
);
3050 _PUBLIC_
void ndr_print_netr_NETLOGON_INFO_3(struct ndr_print
*ndr
, const char *name
, const struct netr_NETLOGON_INFO_3
*r
);
3051 _PUBLIC_
void ndr_print_netr_CONTROL_QUERY_INFORMATION(struct ndr_print
*ndr
, const char *name
, const union netr_CONTROL_QUERY_INFORMATION
*r
);
3052 _PUBLIC_
void ndr_print_netr_LogonControlCode(struct ndr_print
*ndr
, const char *name
, enum netr_LogonControlCode r
);
3053 _PUBLIC_
void ndr_print_netr_CONTROL_DATA_INFORMATION(struct ndr_print
*ndr
, const char *name
, const union netr_CONTROL_DATA_INFORMATION
*r
);
3054 _PUBLIC_
void ndr_print_netr_NegotiateFlags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3055 _PUBLIC_
void ndr_print_netr_Blob(struct ndr_print
*ndr
, const char *name
, const struct netr_Blob
*r
);
3056 _PUBLIC_
void ndr_print_netr_DsRGetDCName_flags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3057 _PUBLIC_
void ndr_print_netr_DsRGetDCNameInfo_AddressType(struct ndr_print
*ndr
, const char *name
, enum netr_DsRGetDCNameInfo_AddressType r
);
3058 _PUBLIC_
void ndr_print_netr_DsR_DcFlags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3059 _PUBLIC_
enum ndr_err_code
ndr_push_netr_DsRGetDCNameInfo(struct ndr_push
*ndr
, int ndr_flags
, const struct netr_DsRGetDCNameInfo
*r
);
3060 _PUBLIC_
enum ndr_err_code
ndr_pull_netr_DsRGetDCNameInfo(struct ndr_pull
*ndr
, int ndr_flags
, struct netr_DsRGetDCNameInfo
*r
);
3061 _PUBLIC_
void ndr_print_netr_DsRGetDCNameInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_DsRGetDCNameInfo
*r
);
3062 _PUBLIC_
void ndr_print_netr_BinaryString(struct ndr_print
*ndr
, const char *name
, const struct netr_BinaryString
*r
);
3063 _PUBLIC_
void ndr_print_netr_DomainQuery1(struct ndr_print
*ndr
, const char *name
, const struct netr_DomainQuery1
*r
);
3064 _PUBLIC_
void ndr_print_netr_DomainQuery(struct ndr_print
*ndr
, const char *name
, const union netr_DomainQuery
*r
);
3065 _PUBLIC_
void ndr_print_netr_DomainTrustInfo(struct ndr_print
*ndr
, const char *name
, const struct netr_DomainTrustInfo
*r
);
3066 _PUBLIC_
void ndr_print_netr_DomainInfo1(struct ndr_print
*ndr
, const char *name
, const struct netr_DomainInfo1
*r
);
3067 _PUBLIC_
void ndr_print_netr_DomainInfo(struct ndr_print
*ndr
, const char *name
, const union netr_DomainInfo
*r
);
3068 _PUBLIC_
void ndr_print_netr_CryptPassword(struct ndr_print
*ndr
, const char *name
, const struct netr_CryptPassword
*r
);
3069 _PUBLIC_
void ndr_print_netr_DsRAddressToSitenamesWCtr(struct ndr_print
*ndr
, const char *name
, const struct netr_DsRAddressToSitenamesWCtr
*r
);
3070 _PUBLIC_
void ndr_print_netr_DsRAddress(struct ndr_print
*ndr
, const char *name
, const struct netr_DsRAddress
*r
);
3071 _PUBLIC_
void ndr_print_netr_TrustFlags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3072 _PUBLIC_
void ndr_print_netr_TrustType(struct ndr_print
*ndr
, const char *name
, enum netr_TrustType r
);
3073 _PUBLIC_
void ndr_print_netr_TrustAttributes(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3074 _PUBLIC_
void ndr_print_netr_DomainTrust(struct ndr_print
*ndr
, const char *name
, const struct netr_DomainTrust
*r
);
3075 _PUBLIC_
void ndr_print_netr_DomainTrustList(struct ndr_print
*ndr
, const char *name
, const struct netr_DomainTrustList
*r
);
3076 _PUBLIC_
void ndr_print_netr_DsRAddressToSitenamesExWCtr(struct ndr_print
*ndr
, const char *name
, const struct netr_DsRAddressToSitenamesExWCtr
*r
);
3077 _PUBLIC_
void ndr_print_DcSitesCtr(struct ndr_print
*ndr
, const char *name
, const struct DcSitesCtr
*r
);
3078 _PUBLIC_
void ndr_print_netr_LogonUasLogon(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonUasLogon
*r
);
3079 _PUBLIC_
void ndr_print_netr_LogonUasLogoff(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonUasLogoff
*r
);
3080 _PUBLIC_
void ndr_print_netr_LogonSamLogon(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonSamLogon
*r
);
3081 _PUBLIC_
void ndr_print_netr_LogonSamLogoff(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonSamLogoff
*r
);
3082 _PUBLIC_
void ndr_print_netr_ServerReqChallenge(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_ServerReqChallenge
*r
);
3083 _PUBLIC_
void ndr_print_netr_ServerAuthenticate(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_ServerAuthenticate
*r
);
3084 _PUBLIC_
void ndr_print_netr_ServerPasswordSet(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_ServerPasswordSet
*r
);
3085 _PUBLIC_
void ndr_print_netr_DatabaseDeltas(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DatabaseDeltas
*r
);
3086 _PUBLIC_
void ndr_print_netr_DatabaseSync(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DatabaseSync
*r
);
3087 _PUBLIC_
void ndr_print_netr_AccountDeltas(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_AccountDeltas
*r
);
3088 _PUBLIC_
void ndr_print_netr_AccountSync(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_AccountSync
*r
);
3089 _PUBLIC_
void ndr_print_netr_GetDcName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_GetDcName
*r
);
3090 _PUBLIC_
void ndr_print_netr_LogonControl(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonControl
*r
);
3091 _PUBLIC_
void ndr_print_netr_GetAnyDCName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_GetAnyDCName
*r
);
3092 _PUBLIC_
void ndr_print_netr_LogonControl2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonControl2
*r
);
3093 _PUBLIC_
void ndr_print_netr_ServerAuthenticate2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_ServerAuthenticate2
*r
);
3094 _PUBLIC_
void ndr_print_netr_DatabaseSync2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DatabaseSync2
*r
);
3095 _PUBLIC_
void ndr_print_netr_DatabaseRedo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DatabaseRedo
*r
);
3096 _PUBLIC_
void ndr_print_netr_LogonControl2Ex(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonControl2Ex
*r
);
3097 _PUBLIC_
void ndr_print_netr_NetrEnumerateTrustedDomains(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NetrEnumerateTrustedDomains
*r
);
3098 _PUBLIC_
void ndr_print_netr_DsRGetDCName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsRGetDCName
*r
);
3099 _PUBLIC_
void ndr_print_netr_NETRLOGONDUMMYROUTINE1(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NETRLOGONDUMMYROUTINE1
*r
);
3100 _PUBLIC_
void ndr_print_netr_NETRLOGONSETSERVICEBITS(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NETRLOGONSETSERVICEBITS
*r
);
3101 _PUBLIC_
void ndr_print_netr_LogonGetTrustRid(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonGetTrustRid
*r
);
3102 _PUBLIC_
void ndr_print_netr_NETRLOGONCOMPUTESERVERDIGEST(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NETRLOGONCOMPUTESERVERDIGEST
*r
);
3103 _PUBLIC_
void ndr_print_netr_NETRLOGONCOMPUTECLIENTDIGEST(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NETRLOGONCOMPUTECLIENTDIGEST
*r
);
3104 _PUBLIC_
void ndr_print_netr_ServerAuthenticate3(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_ServerAuthenticate3
*r
);
3105 _PUBLIC_
void ndr_print_netr_DsRGetDCNameEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsRGetDCNameEx
*r
);
3106 _PUBLIC_
void ndr_print_netr_DsRGetSiteName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsRGetSiteName
*r
);
3107 _PUBLIC_
void ndr_print_netr_LogonGetDomainInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonGetDomainInfo
*r
);
3108 _PUBLIC_
void ndr_print_netr_ServerPasswordSet2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_ServerPasswordSet2
*r
);
3109 _PUBLIC_
void ndr_print_netr_ServerPasswordGet(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_ServerPasswordGet
*r
);
3110 _PUBLIC_
void ndr_print_netr_NETRLOGONSENDTOSAM(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NETRLOGONSENDTOSAM
*r
);
3111 _PUBLIC_
void ndr_print_netr_DsRAddressToSitenamesW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsRAddressToSitenamesW
*r
);
3112 _PUBLIC_
void ndr_print_netr_DsRGetDCNameEx2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsRGetDCNameEx2
*r
);
3113 _PUBLIC_
void ndr_print_netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN
*r
);
3114 _PUBLIC_
void ndr_print_netr_NetrEnumerateTrustedDomainsEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NetrEnumerateTrustedDomainsEx
*r
);
3115 _PUBLIC_
void ndr_print_netr_DsRAddressToSitenamesExW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsRAddressToSitenamesExW
*r
);
3116 _PUBLIC_
void ndr_print_netr_DsrGetDcSiteCoverageW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsrGetDcSiteCoverageW
*r
);
3117 _PUBLIC_
void ndr_print_netr_LogonSamLogonEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonSamLogonEx
*r
);
3118 _PUBLIC_
void ndr_print_netr_DsrEnumerateDomainTrusts(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsrEnumerateDomainTrusts
*r
);
3119 _PUBLIC_
void ndr_print_netr_DsrDeregisterDNSHostRecords(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsrDeregisterDNSHostRecords
*r
);
3120 _PUBLIC_
void ndr_print_netr_ServerTrustPasswordsGet(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_ServerTrustPasswordsGet
*r
);
3121 _PUBLIC_
void ndr_print_netr_DsRGetForestTrustInformation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_DsRGetForestTrustInformation
*r
);
3122 _PUBLIC_
void ndr_print_netr_GetForestTrustInformation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_GetForestTrustInformation
*r
);
3123 _PUBLIC_
void ndr_print_netr_LogonSamLogonWithFlags(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_LogonSamLogonWithFlags
*r
);
3124 _PUBLIC_
void ndr_print_netr_NETRSERVERGETTRUSTINFO(struct ndr_print
*ndr
, const char *name
, int flags
, const struct netr_NETRSERVERGETTRUSTINFO
*r
);
3126 /* The following definitions come from librpc/gen_ndr/ndr_notify.c */
3128 _PUBLIC_
enum ndr_err_code
ndr_push_notify_entry(struct ndr_push
*ndr
, int ndr_flags
, const struct notify_entry
*r
);
3129 _PUBLIC_
enum ndr_err_code
ndr_pull_notify_entry(struct ndr_pull
*ndr
, int ndr_flags
, struct notify_entry
*r
);
3130 _PUBLIC_
void ndr_print_notify_entry(struct ndr_print
*ndr
, const char *name
, const struct notify_entry
*r
);
3131 _PUBLIC_
void ndr_print_notify_depth(struct ndr_print
*ndr
, const char *name
, const struct notify_depth
*r
);
3132 _PUBLIC_
enum ndr_err_code
ndr_push_notify_array(struct ndr_push
*ndr
, int ndr_flags
, const struct notify_array
*r
);
3133 _PUBLIC_
enum ndr_err_code
ndr_pull_notify_array(struct ndr_pull
*ndr
, int ndr_flags
, struct notify_array
*r
);
3134 _PUBLIC_
void ndr_print_notify_array(struct ndr_print
*ndr
, const char *name
, const struct notify_array
*r
);
3135 _PUBLIC_
enum ndr_err_code
ndr_push_notify_event(struct ndr_push
*ndr
, int ndr_flags
, const struct notify_event
*r
);
3136 _PUBLIC_
enum ndr_err_code
ndr_pull_notify_event(struct ndr_pull
*ndr
, int ndr_flags
, struct notify_event
*r
);
3137 _PUBLIC_
void ndr_print_notify_event(struct ndr_print
*ndr
, const char *name
, const struct notify_event
*r
);
3139 /* The following definitions come from librpc/gen_ndr/ndr_ntsvcs.c */
3141 _PUBLIC_
void ndr_print_PNP_HwProfInfo(struct ndr_print
*ndr
, const char *name
, const struct PNP_HwProfInfo
*r
);
3142 _PUBLIC_
void ndr_print_PNP_Disconnect(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_Disconnect
*r
);
3143 _PUBLIC_
void ndr_print_PNP_Connect(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_Connect
*r
);
3144 _PUBLIC_
void ndr_print_PNP_GetVersion(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetVersion
*r
);
3145 _PUBLIC_
void ndr_print_PNP_GetGlobalState(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetGlobalState
*r
);
3146 _PUBLIC_
void ndr_print_PNP_InitDetection(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_InitDetection
*r
);
3147 _PUBLIC_
void ndr_print_PNP_ReportLogOn(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_ReportLogOn
*r
);
3148 _PUBLIC_
void ndr_print_PNP_ValidateDeviceInstance(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_ValidateDeviceInstance
*r
);
3149 _PUBLIC_
void ndr_print_PNP_GetRootDeviceInstance(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetRootDeviceInstance
*r
);
3150 _PUBLIC_
void ndr_print_PNP_GetRelatedDeviceInstance(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetRelatedDeviceInstance
*r
);
3151 _PUBLIC_
void ndr_print_PNP_EnumerateSubKeys(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_EnumerateSubKeys
*r
);
3152 _PUBLIC_
void ndr_print_PNP_GetDeviceList(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetDeviceList
*r
);
3153 _PUBLIC_
void ndr_print_PNP_GetDeviceListSize(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetDeviceListSize
*r
);
3154 _PUBLIC_
void ndr_print_PNP_GetDepth(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetDepth
*r
);
3155 _PUBLIC_
void ndr_print_PNP_GetDeviceRegProp(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetDeviceRegProp
*r
);
3156 _PUBLIC_
void ndr_print_PNP_SetDeviceRegProp(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_SetDeviceRegProp
*r
);
3157 _PUBLIC_
void ndr_print_PNP_GetClassInstance(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetClassInstance
*r
);
3158 _PUBLIC_
void ndr_print_PNP_CreateKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_CreateKey
*r
);
3159 _PUBLIC_
void ndr_print_PNP_DeleteRegistryKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_DeleteRegistryKey
*r
);
3160 _PUBLIC_
void ndr_print_PNP_GetClassCount(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetClassCount
*r
);
3161 _PUBLIC_
void ndr_print_PNP_GetClassName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetClassName
*r
);
3162 _PUBLIC_
void ndr_print_PNP_DeleteClassKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_DeleteClassKey
*r
);
3163 _PUBLIC_
void ndr_print_PNP_GetInterfaceDeviceAlias(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetInterfaceDeviceAlias
*r
);
3164 _PUBLIC_
void ndr_print_PNP_GetInterfaceDeviceList(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetInterfaceDeviceList
*r
);
3165 _PUBLIC_
void ndr_print_PNP_GetInterfaceDeviceListSize(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetInterfaceDeviceListSize
*r
);
3166 _PUBLIC_
void ndr_print_PNP_RegisterDeviceClassAssociation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_RegisterDeviceClassAssociation
*r
);
3167 _PUBLIC_
void ndr_print_PNP_UnregisterDeviceClassAssociation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_UnregisterDeviceClassAssociation
*r
);
3168 _PUBLIC_
void ndr_print_PNP_GetClassRegProp(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetClassRegProp
*r
);
3169 _PUBLIC_
void ndr_print_PNP_SetClassRegProp(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_SetClassRegProp
*r
);
3170 _PUBLIC_
void ndr_print_PNP_CreateDevInst(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_CreateDevInst
*r
);
3171 _PUBLIC_
void ndr_print_PNP_DeviceInstanceAction(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_DeviceInstanceAction
*r
);
3172 _PUBLIC_
void ndr_print_PNP_GetDeviceStatus(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetDeviceStatus
*r
);
3173 _PUBLIC_
void ndr_print_PNP_SetDeviceProblem(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_SetDeviceProblem
*r
);
3174 _PUBLIC_
void ndr_print_PNP_DisableDevInst(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_DisableDevInst
*r
);
3175 _PUBLIC_
void ndr_print_PNP_UninstallDevInst(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_UninstallDevInst
*r
);
3176 _PUBLIC_
void ndr_print_PNP_AddID(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_AddID
*r
);
3177 _PUBLIC_
void ndr_print_PNP_RegisterDriver(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_RegisterDriver
*r
);
3178 _PUBLIC_
void ndr_print_PNP_QueryRemove(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_QueryRemove
*r
);
3179 _PUBLIC_
void ndr_print_PNP_RequestDeviceEject(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_RequestDeviceEject
*r
);
3180 _PUBLIC_
void ndr_print_PNP_IsDockStationPresent(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_IsDockStationPresent
*r
);
3181 _PUBLIC_
void ndr_print_PNP_RequestEjectPC(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_RequestEjectPC
*r
);
3182 _PUBLIC_
void ndr_print_PNP_HwProfFlags(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_HwProfFlags
*r
);
3183 _PUBLIC_
void ndr_print_PNP_GetHwProfInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetHwProfInfo
*r
);
3184 _PUBLIC_
void ndr_print_PNP_AddEmptyLogConf(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_AddEmptyLogConf
*r
);
3185 _PUBLIC_
void ndr_print_PNP_FreeLogConf(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_FreeLogConf
*r
);
3186 _PUBLIC_
void ndr_print_PNP_GetFirstLogConf(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetFirstLogConf
*r
);
3187 _PUBLIC_
void ndr_print_PNP_GetNextLogConf(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetNextLogConf
*r
);
3188 _PUBLIC_
void ndr_print_PNP_GetLogConfPriority(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetLogConfPriority
*r
);
3189 _PUBLIC_
void ndr_print_PNP_AddResDes(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_AddResDes
*r
);
3190 _PUBLIC_
void ndr_print_PNP_FreeResDes(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_FreeResDes
*r
);
3191 _PUBLIC_
void ndr_print_PNP_GetNextResDes(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetNextResDes
*r
);
3192 _PUBLIC_
void ndr_print_PNP_GetResDesData(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetResDesData
*r
);
3193 _PUBLIC_
void ndr_print_PNP_GetResDesDataSize(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetResDesDataSize
*r
);
3194 _PUBLIC_
void ndr_print_PNP_ModifyResDes(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_ModifyResDes
*r
);
3195 _PUBLIC_
void ndr_print_PNP_DetectResourceLimit(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_DetectResourceLimit
*r
);
3196 _PUBLIC_
void ndr_print_PNP_QueryResConfList(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_QueryResConfList
*r
);
3197 _PUBLIC_
void ndr_print_PNP_SetHwProf(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_SetHwProf
*r
);
3198 _PUBLIC_
void ndr_print_PNP_QueryArbitratorFreeData(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_QueryArbitratorFreeData
*r
);
3199 _PUBLIC_
void ndr_print_PNP_QueryArbitratorFreeSize(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_QueryArbitratorFreeSize
*r
);
3200 _PUBLIC_
void ndr_print_PNP_RunDetection(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_RunDetection
*r
);
3201 _PUBLIC_
void ndr_print_PNP_RegisterNotification(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_RegisterNotification
*r
);
3202 _PUBLIC_
void ndr_print_PNP_UnregisterNotification(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_UnregisterNotification
*r
);
3203 _PUBLIC_
void ndr_print_PNP_GetCustomDevProp(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetCustomDevProp
*r
);
3204 _PUBLIC_
void ndr_print_PNP_GetVersionInternal(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetVersionInternal
*r
);
3205 _PUBLIC_
void ndr_print_PNP_GetBlockedDriverInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetBlockedDriverInfo
*r
);
3206 _PUBLIC_
void ndr_print_PNP_GetServerSideDeviceInstallFlags(struct ndr_print
*ndr
, const char *name
, int flags
, const struct PNP_GetServerSideDeviceInstallFlags
*r
);
3208 /* The following definitions come from librpc/gen_ndr/ndr_samr.c */
3210 _PUBLIC_
enum ndr_err_code
ndr_push_samr_AcctFlags(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
3211 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_AcctFlags(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
3212 _PUBLIC_
void ndr_print_samr_AcctFlags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3213 _PUBLIC_
void ndr_print_samr_ConnectAccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3214 _PUBLIC_
void ndr_print_samr_UserAccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3215 _PUBLIC_
void ndr_print_samr_DomainAccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3216 _PUBLIC_
void ndr_print_samr_GroupAccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3217 _PUBLIC_
void ndr_print_samr_AliasAccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3218 _PUBLIC_
void ndr_print_samr_SamEntry(struct ndr_print
*ndr
, const char *name
, const struct samr_SamEntry
*r
);
3219 _PUBLIC_
void ndr_print_samr_SamArray(struct ndr_print
*ndr
, const char *name
, const struct samr_SamArray
*r
);
3220 _PUBLIC_
void ndr_print_samr_Role(struct ndr_print
*ndr
, const char *name
, enum samr_Role r
);
3221 _PUBLIC_
enum ndr_err_code
ndr_push_samr_PasswordProperties(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
3222 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_PasswordProperties(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
3223 _PUBLIC_
void ndr_print_samr_PasswordProperties(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3224 _PUBLIC_
void ndr_print_samr_DomInfo1(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo1
*r
);
3225 _PUBLIC_
void ndr_print_samr_DomInfo2(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo2
*r
);
3226 _PUBLIC_
void ndr_print_samr_DomInfo3(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo3
*r
);
3227 _PUBLIC_
void ndr_print_samr_DomInfo4(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo4
*r
);
3228 _PUBLIC_
void ndr_print_samr_DomInfo5(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo5
*r
);
3229 _PUBLIC_
void ndr_print_samr_DomInfo6(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo6
*r
);
3230 _PUBLIC_
void ndr_print_samr_DomInfo7(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo7
*r
);
3231 _PUBLIC_
void ndr_print_samr_DomInfo8(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo8
*r
);
3232 _PUBLIC_
void ndr_print_samr_DomInfo9(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo9
*r
);
3233 _PUBLIC_
void ndr_print_samr_DomInfo11(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo11
*r
);
3234 _PUBLIC_
void ndr_print_samr_DomInfo12(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo12
*r
);
3235 _PUBLIC_
void ndr_print_samr_DomInfo13(struct ndr_print
*ndr
, const char *name
, const struct samr_DomInfo13
*r
);
3236 _PUBLIC_
void ndr_print_samr_DomainInfo(struct ndr_print
*ndr
, const char *name
, const union samr_DomainInfo
*r
);
3237 _PUBLIC_
void ndr_print_samr_Ids(struct ndr_print
*ndr
, const char *name
, const struct samr_Ids
*r
);
3238 _PUBLIC_
enum ndr_err_code
ndr_push_samr_GroupAttrs(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
3239 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_GroupAttrs(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
3240 _PUBLIC_
void ndr_print_samr_GroupAttrs(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3241 _PUBLIC_
void ndr_print_samr_GroupInfoAll(struct ndr_print
*ndr
, const char *name
, const struct samr_GroupInfoAll
*r
);
3242 _PUBLIC_
void ndr_print_samr_GroupInfoAttributes(struct ndr_print
*ndr
, const char *name
, const struct samr_GroupInfoAttributes
*r
);
3243 _PUBLIC_
void ndr_print_samr_GroupInfoEnum(struct ndr_print
*ndr
, const char *name
, enum samr_GroupInfoEnum r
);
3244 _PUBLIC_
void ndr_print_samr_GroupInfo(struct ndr_print
*ndr
, const char *name
, const union samr_GroupInfo
*r
);
3245 _PUBLIC_
void ndr_print_samr_RidTypeArray(struct ndr_print
*ndr
, const char *name
, const struct samr_RidTypeArray
*r
);
3246 _PUBLIC_
void ndr_print_samr_AliasInfoAll(struct ndr_print
*ndr
, const char *name
, const struct samr_AliasInfoAll
*r
);
3247 _PUBLIC_
void ndr_print_samr_AliasInfoEnum(struct ndr_print
*ndr
, const char *name
, enum samr_AliasInfoEnum r
);
3248 _PUBLIC_
void ndr_print_samr_AliasInfo(struct ndr_print
*ndr
, const char *name
, const union samr_AliasInfo
*r
);
3249 _PUBLIC_
void ndr_print_samr_UserInfo1(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo1
*r
);
3250 _PUBLIC_
void ndr_print_samr_UserInfo2(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo2
*r
);
3251 _PUBLIC_
enum ndr_err_code
ndr_push_samr_LogonHours(struct ndr_push
*ndr
, int ndr_flags
, const struct samr_LogonHours
*r
);
3252 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_LogonHours(struct ndr_pull
*ndr
, int ndr_flags
, struct samr_LogonHours
*r
);
3253 _PUBLIC_
void ndr_print_samr_LogonHours(struct ndr_print
*ndr
, const char *name
, const struct samr_LogonHours
*r
);
3254 _PUBLIC_
void ndr_print_samr_UserInfo3(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo3
*r
);
3255 _PUBLIC_
void ndr_print_samr_UserInfo4(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo4
*r
);
3256 _PUBLIC_
void ndr_print_samr_UserInfo5(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo5
*r
);
3257 _PUBLIC_
void ndr_print_samr_UserInfo6(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo6
*r
);
3258 _PUBLIC_
void ndr_print_samr_UserInfo7(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo7
*r
);
3259 _PUBLIC_
void ndr_print_samr_UserInfo8(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo8
*r
);
3260 _PUBLIC_
void ndr_print_samr_UserInfo9(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo9
*r
);
3261 _PUBLIC_
void ndr_print_samr_UserInfo10(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo10
*r
);
3262 _PUBLIC_
void ndr_print_samr_UserInfo11(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo11
*r
);
3263 _PUBLIC_
void ndr_print_samr_UserInfo12(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo12
*r
);
3264 _PUBLIC_
void ndr_print_samr_UserInfo13(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo13
*r
);
3265 _PUBLIC_
void ndr_print_samr_UserInfo14(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo14
*r
);
3266 _PUBLIC_
void ndr_print_samr_UserInfo16(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo16
*r
);
3267 _PUBLIC_
void ndr_print_samr_UserInfo17(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo17
*r
);
3268 _PUBLIC_
enum ndr_err_code
ndr_push_samr_Password(struct ndr_push
*ndr
, int ndr_flags
, const struct samr_Password
*r
);
3269 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_Password(struct ndr_pull
*ndr
, int ndr_flags
, struct samr_Password
*r
);
3270 _PUBLIC_
void ndr_print_samr_Password(struct ndr_print
*ndr
, const char *name
, const struct samr_Password
*r
);
3271 _PUBLIC_
void ndr_print_samr_UserInfo18(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo18
*r
);
3272 _PUBLIC_
void ndr_print_samr_UserInfo20(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo20
*r
);
3273 _PUBLIC_
void ndr_print_samr_FieldsPresent(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3274 _PUBLIC_
void ndr_print_samr_UserInfo21(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo21
*r
);
3275 _PUBLIC_
enum ndr_err_code
ndr_push_samr_CryptPassword(struct ndr_push
*ndr
, int ndr_flags
, const struct samr_CryptPassword
*r
);
3276 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_CryptPassword(struct ndr_pull
*ndr
, int ndr_flags
, struct samr_CryptPassword
*r
);
3277 _PUBLIC_
void ndr_print_samr_CryptPassword(struct ndr_print
*ndr
, const char *name
, const struct samr_CryptPassword
*r
);
3278 _PUBLIC_
void ndr_print_samr_UserInfo23(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo23
*r
);
3279 _PUBLIC_
void ndr_print_samr_UserInfo24(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo24
*r
);
3280 _PUBLIC_
void ndr_print_samr_CryptPasswordEx(struct ndr_print
*ndr
, const char *name
, const struct samr_CryptPasswordEx
*r
);
3281 _PUBLIC_
void ndr_print_samr_UserInfo25(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo25
*r
);
3282 _PUBLIC_
void ndr_print_samr_UserInfo26(struct ndr_print
*ndr
, const char *name
, const struct samr_UserInfo26
*r
);
3283 _PUBLIC_
void ndr_print_samr_UserInfo(struct ndr_print
*ndr
, const char *name
, const union samr_UserInfo
*r
);
3284 _PUBLIC_
enum ndr_err_code
ndr_push_samr_RidWithAttribute(struct ndr_push
*ndr
, int ndr_flags
, const struct samr_RidWithAttribute
*r
);
3285 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_RidWithAttribute(struct ndr_pull
*ndr
, int ndr_flags
, struct samr_RidWithAttribute
*r
);
3286 _PUBLIC_
void ndr_print_samr_RidWithAttribute(struct ndr_print
*ndr
, const char *name
, const struct samr_RidWithAttribute
*r
);
3287 _PUBLIC_
enum ndr_err_code
ndr_push_samr_RidWithAttributeArray(struct ndr_push
*ndr
, int ndr_flags
, const struct samr_RidWithAttributeArray
*r
);
3288 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_RidWithAttributeArray(struct ndr_pull
*ndr
, int ndr_flags
, struct samr_RidWithAttributeArray
*r
);
3289 _PUBLIC_
void ndr_print_samr_RidWithAttributeArray(struct ndr_print
*ndr
, const char *name
, const struct samr_RidWithAttributeArray
*r
);
3290 _PUBLIC_
void ndr_print_samr_DispEntryGeneral(struct ndr_print
*ndr
, const char *name
, const struct samr_DispEntryGeneral
*r
);
3291 _PUBLIC_
void ndr_print_samr_DispInfoGeneral(struct ndr_print
*ndr
, const char *name
, const struct samr_DispInfoGeneral
*r
);
3292 _PUBLIC_
void ndr_print_samr_DispEntryFull(struct ndr_print
*ndr
, const char *name
, const struct samr_DispEntryFull
*r
);
3293 _PUBLIC_
void ndr_print_samr_DispInfoFull(struct ndr_print
*ndr
, const char *name
, const struct samr_DispInfoFull
*r
);
3294 _PUBLIC_
void ndr_print_samr_DispEntryFullGroup(struct ndr_print
*ndr
, const char *name
, const struct samr_DispEntryFullGroup
*r
);
3295 _PUBLIC_
void ndr_print_samr_DispInfoFullGroups(struct ndr_print
*ndr
, const char *name
, const struct samr_DispInfoFullGroups
*r
);
3296 _PUBLIC_
void ndr_print_samr_DispEntryAscii(struct ndr_print
*ndr
, const char *name
, const struct samr_DispEntryAscii
*r
);
3297 _PUBLIC_
void ndr_print_samr_DispInfoAscii(struct ndr_print
*ndr
, const char *name
, const struct samr_DispInfoAscii
*r
);
3298 _PUBLIC_
void ndr_print_samr_DispInfo(struct ndr_print
*ndr
, const char *name
, const union samr_DispInfo
*r
);
3299 _PUBLIC_
void ndr_print_samr_PwInfo(struct ndr_print
*ndr
, const char *name
, const struct samr_PwInfo
*r
);
3300 _PUBLIC_
void ndr_print_samr_ConnectVersion(struct ndr_print
*ndr
, const char *name
, enum samr_ConnectVersion r
);
3301 _PUBLIC_
void ndr_print_samr_ChangeReject(struct ndr_print
*ndr
, const char *name
, const struct samr_ChangeReject
*r
);
3302 _PUBLIC_
void ndr_print_samr_ConnectInfo1(struct ndr_print
*ndr
, const char *name
, const struct samr_ConnectInfo1
*r
);
3303 _PUBLIC_
void ndr_print_samr_ConnectInfo(struct ndr_print
*ndr
, const char *name
, const union samr_ConnectInfo
*r
);
3304 _PUBLIC_
void ndr_print_samr_ValidateFieldsPresent(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3305 _PUBLIC_
void ndr_print_samr_ValidatePasswordLevel(struct ndr_print
*ndr
, const char *name
, enum samr_ValidatePasswordLevel r
);
3306 _PUBLIC_
void ndr_print_samr_ValidationStatus(struct ndr_print
*ndr
, const char *name
, enum samr_ValidationStatus r
);
3307 _PUBLIC_
void ndr_print_samr_ValidationBlob(struct ndr_print
*ndr
, const char *name
, const struct samr_ValidationBlob
*r
);
3308 _PUBLIC_
void ndr_print_samr_ValidatePasswordInfo(struct ndr_print
*ndr
, const char *name
, const struct samr_ValidatePasswordInfo
*r
);
3309 _PUBLIC_
void ndr_print_samr_ValidatePasswordRepCtr(struct ndr_print
*ndr
, const char *name
, const struct samr_ValidatePasswordRepCtr
*r
);
3310 _PUBLIC_
void ndr_print_samr_ValidatePasswordRep(struct ndr_print
*ndr
, const char *name
, const union samr_ValidatePasswordRep
*r
);
3311 _PUBLIC_
void ndr_print_samr_ValidatePasswordReq3(struct ndr_print
*ndr
, const char *name
, const struct samr_ValidatePasswordReq3
*r
);
3312 _PUBLIC_
void ndr_print_samr_ValidatePasswordReq2(struct ndr_print
*ndr
, const char *name
, const struct samr_ValidatePasswordReq2
*r
);
3313 _PUBLIC_
void ndr_print_samr_ValidatePasswordReq1(struct ndr_print
*ndr
, const char *name
, const struct samr_ValidatePasswordReq1
*r
);
3314 _PUBLIC_
void ndr_print_samr_ValidatePasswordReq(struct ndr_print
*ndr
, const char *name
, const union samr_ValidatePasswordReq
*r
);
3315 _PUBLIC_
void ndr_print_samr_Connect(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_Connect
*r
);
3316 _PUBLIC_
enum ndr_err_code
ndr_push_samr_Close(struct ndr_push
*ndr
, int flags
, const struct samr_Close
*r
);
3317 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_Close(struct ndr_pull
*ndr
, int flags
, struct samr_Close
*r
);
3318 _PUBLIC_
void ndr_print_samr_Close(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_Close
*r
);
3319 _PUBLIC_
void ndr_print_samr_SetSecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetSecurity
*r
);
3320 _PUBLIC_
void ndr_print_samr_QuerySecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QuerySecurity
*r
);
3321 _PUBLIC_
void ndr_print_samr_Shutdown(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_Shutdown
*r
);
3322 _PUBLIC_
void ndr_print_samr_LookupDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_LookupDomain
*r
);
3323 _PUBLIC_
void ndr_print_samr_EnumDomains(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_EnumDomains
*r
);
3324 _PUBLIC_
enum ndr_err_code
ndr_push_samr_OpenDomain(struct ndr_push
*ndr
, int flags
, const struct samr_OpenDomain
*r
);
3325 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_OpenDomain(struct ndr_pull
*ndr
, int flags
, struct samr_OpenDomain
*r
);
3326 _PUBLIC_
void ndr_print_samr_OpenDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_OpenDomain
*r
);
3327 _PUBLIC_
void ndr_print_samr_QueryDomainInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryDomainInfo
*r
);
3328 _PUBLIC_
void ndr_print_samr_SetDomainInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetDomainInfo
*r
);
3329 _PUBLIC_
void ndr_print_samr_CreateDomainGroup(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_CreateDomainGroup
*r
);
3330 _PUBLIC_
void ndr_print_samr_EnumDomainGroups(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_EnumDomainGroups
*r
);
3331 _PUBLIC_
void ndr_print_samr_CreateUser(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_CreateUser
*r
);
3332 _PUBLIC_
void ndr_print_samr_EnumDomainUsers(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_EnumDomainUsers
*r
);
3333 _PUBLIC_
void ndr_print_samr_CreateDomAlias(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_CreateDomAlias
*r
);
3334 _PUBLIC_
void ndr_print_samr_EnumDomainAliases(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_EnumDomainAliases
*r
);
3335 _PUBLIC_
void ndr_print_samr_GetAliasMembership(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_GetAliasMembership
*r
);
3336 _PUBLIC_
enum ndr_err_code
ndr_push_samr_LookupNames(struct ndr_push
*ndr
, int flags
, const struct samr_LookupNames
*r
);
3337 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_LookupNames(struct ndr_pull
*ndr
, int flags
, struct samr_LookupNames
*r
);
3338 _PUBLIC_
void ndr_print_samr_LookupNames(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_LookupNames
*r
);
3339 _PUBLIC_
void ndr_print_samr_LookupRids(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_LookupRids
*r
);
3340 _PUBLIC_
void ndr_print_samr_OpenGroup(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_OpenGroup
*r
);
3341 _PUBLIC_
void ndr_print_samr_QueryGroupInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryGroupInfo
*r
);
3342 _PUBLIC_
void ndr_print_samr_SetGroupInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetGroupInfo
*r
);
3343 _PUBLIC_
void ndr_print_samr_AddGroupMember(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_AddGroupMember
*r
);
3344 _PUBLIC_
void ndr_print_samr_DeleteDomainGroup(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_DeleteDomainGroup
*r
);
3345 _PUBLIC_
void ndr_print_samr_DeleteGroupMember(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_DeleteGroupMember
*r
);
3346 _PUBLIC_
void ndr_print_samr_QueryGroupMember(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryGroupMember
*r
);
3347 _PUBLIC_
void ndr_print_samr_SetMemberAttributesOfGroup(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetMemberAttributesOfGroup
*r
);
3348 _PUBLIC_
void ndr_print_samr_OpenAlias(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_OpenAlias
*r
);
3349 _PUBLIC_
void ndr_print_samr_QueryAliasInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryAliasInfo
*r
);
3350 _PUBLIC_
void ndr_print_samr_SetAliasInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetAliasInfo
*r
);
3351 _PUBLIC_
void ndr_print_samr_DeleteDomAlias(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_DeleteDomAlias
*r
);
3352 _PUBLIC_
void ndr_print_samr_AddAliasMember(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_AddAliasMember
*r
);
3353 _PUBLIC_
void ndr_print_samr_DeleteAliasMember(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_DeleteAliasMember
*r
);
3354 _PUBLIC_
void ndr_print_samr_GetMembersInAlias(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_GetMembersInAlias
*r
);
3355 _PUBLIC_
enum ndr_err_code
ndr_push_samr_OpenUser(struct ndr_push
*ndr
, int flags
, const struct samr_OpenUser
*r
);
3356 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_OpenUser(struct ndr_pull
*ndr
, int flags
, struct samr_OpenUser
*r
);
3357 _PUBLIC_
void ndr_print_samr_OpenUser(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_OpenUser
*r
);
3358 _PUBLIC_
void ndr_print_samr_DeleteUser(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_DeleteUser
*r
);
3359 _PUBLIC_
enum ndr_err_code
ndr_push_samr_QueryUserInfo(struct ndr_push
*ndr
, int flags
, const struct samr_QueryUserInfo
*r
);
3360 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_QueryUserInfo(struct ndr_pull
*ndr
, int flags
, struct samr_QueryUserInfo
*r
);
3361 _PUBLIC_
void ndr_print_samr_QueryUserInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryUserInfo
*r
);
3362 _PUBLIC_
enum ndr_err_code
ndr_push_samr_SetUserInfo(struct ndr_push
*ndr
, int flags
, const struct samr_SetUserInfo
*r
);
3363 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_SetUserInfo(struct ndr_pull
*ndr
, int flags
, struct samr_SetUserInfo
*r
);
3364 _PUBLIC_
void ndr_print_samr_SetUserInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetUserInfo
*r
);
3365 _PUBLIC_
void ndr_print_samr_ChangePasswordUser(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_ChangePasswordUser
*r
);
3366 _PUBLIC_
void ndr_print_samr_GetGroupsForUser(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_GetGroupsForUser
*r
);
3367 _PUBLIC_
void ndr_print_samr_QueryDisplayInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryDisplayInfo
*r
);
3368 _PUBLIC_
void ndr_print_samr_GetDisplayEnumerationIndex(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_GetDisplayEnumerationIndex
*r
);
3369 _PUBLIC_
void ndr_print_samr_TestPrivateFunctionsDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_TestPrivateFunctionsDomain
*r
);
3370 _PUBLIC_
void ndr_print_samr_TestPrivateFunctionsUser(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_TestPrivateFunctionsUser
*r
);
3371 _PUBLIC_
enum ndr_err_code
ndr_push_samr_GetUserPwInfo(struct ndr_push
*ndr
, int flags
, const struct samr_GetUserPwInfo
*r
);
3372 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_GetUserPwInfo(struct ndr_pull
*ndr
, int flags
, struct samr_GetUserPwInfo
*r
);
3373 _PUBLIC_
void ndr_print_samr_GetUserPwInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_GetUserPwInfo
*r
);
3374 _PUBLIC_
void ndr_print_samr_RemoveMemberFromForeignDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_RemoveMemberFromForeignDomain
*r
);
3375 _PUBLIC_
void ndr_print_samr_QueryDomainInfo2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryDomainInfo2
*r
);
3376 _PUBLIC_
void ndr_print_samr_QueryUserInfo2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryUserInfo2
*r
);
3377 _PUBLIC_
void ndr_print_samr_QueryDisplayInfo2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryDisplayInfo2
*r
);
3378 _PUBLIC_
void ndr_print_samr_GetDisplayEnumerationIndex2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_GetDisplayEnumerationIndex2
*r
);
3379 _PUBLIC_
void ndr_print_samr_CreateUser2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_CreateUser2
*r
);
3380 _PUBLIC_
void ndr_print_samr_QueryDisplayInfo3(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_QueryDisplayInfo3
*r
);
3381 _PUBLIC_
void ndr_print_samr_AddMultipleMembersToAlias(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_AddMultipleMembersToAlias
*r
);
3382 _PUBLIC_
void ndr_print_samr_RemoveMultipleMembersFromAlias(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_RemoveMultipleMembersFromAlias
*r
);
3383 _PUBLIC_
void ndr_print_samr_OemChangePasswordUser2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_OemChangePasswordUser2
*r
);
3384 _PUBLIC_
void ndr_print_samr_ChangePasswordUser2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_ChangePasswordUser2
*r
);
3385 _PUBLIC_
void ndr_print_samr_GetDomPwInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_GetDomPwInfo
*r
);
3386 _PUBLIC_
void ndr_print_samr_Connect2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_Connect2
*r
);
3387 _PUBLIC_
enum ndr_err_code
ndr_push_samr_SetUserInfo2(struct ndr_push
*ndr
, int flags
, const struct samr_SetUserInfo2
*r
);
3388 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_SetUserInfo2(struct ndr_pull
*ndr
, int flags
, struct samr_SetUserInfo2
*r
);
3389 _PUBLIC_
void ndr_print_samr_SetUserInfo2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetUserInfo2
*r
);
3390 _PUBLIC_
void ndr_print_samr_SetBootKeyInformation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetBootKeyInformation
*r
);
3391 _PUBLIC_
void ndr_print_samr_GetBootKeyInformation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_GetBootKeyInformation
*r
);
3392 _PUBLIC_
void ndr_print_samr_Connect3(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_Connect3
*r
);
3393 _PUBLIC_
void ndr_print_samr_Connect4(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_Connect4
*r
);
3394 _PUBLIC_
void ndr_print_samr_ChangePasswordUser3(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_ChangePasswordUser3
*r
);
3395 _PUBLIC_
enum ndr_err_code
ndr_push_samr_Connect5(struct ndr_push
*ndr
, int flags
, const struct samr_Connect5
*r
);
3396 _PUBLIC_
enum ndr_err_code
ndr_pull_samr_Connect5(struct ndr_pull
*ndr
, int flags
, struct samr_Connect5
*r
);
3397 _PUBLIC_
void ndr_print_samr_Connect5(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_Connect5
*r
);
3398 _PUBLIC_
void ndr_print_samr_RidToSid(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_RidToSid
*r
);
3399 _PUBLIC_
void ndr_print_samr_SetDsrmPassword(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_SetDsrmPassword
*r
);
3400 _PUBLIC_
void ndr_print_samr_ValidatePassword(struct ndr_print
*ndr
, const char *name
, int flags
, const struct samr_ValidatePassword
*r
);
3402 /* The following definitions come from librpc/gen_ndr/ndr_security.c */
3404 _PUBLIC_
void ndr_print_security_ace_flags(struct ndr_print
*ndr
, const char *name
, uint8_t r
);
3405 _PUBLIC_
void ndr_print_security_ace_type(struct ndr_print
*ndr
, const char *name
, enum security_ace_type r
);
3406 _PUBLIC_
void ndr_print_security_ace_object_flags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3407 _PUBLIC_
void ndr_print_security_ace_object_type(struct ndr_print
*ndr
, const char *name
, const union security_ace_object_type
*r
);
3408 _PUBLIC_
void ndr_print_security_ace_object_inherited_type(struct ndr_print
*ndr
, const char *name
, const union security_ace_object_inherited_type
*r
);
3409 _PUBLIC_
void ndr_print_security_ace_object(struct ndr_print
*ndr
, const char *name
, const struct security_ace_object
*r
);
3410 _PUBLIC_
void ndr_print_security_ace_object_ctr(struct ndr_print
*ndr
, const char *name
, const union security_ace_object_ctr
*r
);
3411 _PUBLIC_
enum ndr_err_code
ndr_push_security_ace(struct ndr_push
*ndr
, int ndr_flags
, const struct security_ace
*r
);
3412 _PUBLIC_
enum ndr_err_code
ndr_pull_security_ace(struct ndr_pull
*ndr
, int ndr_flags
, struct security_ace
*r
);
3413 _PUBLIC_
void ndr_print_security_ace(struct ndr_print
*ndr
, const char *name
, const struct security_ace
*r
);
3414 _PUBLIC_
void ndr_print_security_acl_revision(struct ndr_print
*ndr
, const char *name
, enum security_acl_revision r
);
3415 _PUBLIC_
enum ndr_err_code
ndr_push_security_acl(struct ndr_push
*ndr
, int ndr_flags
, const struct security_acl
*r
);
3416 _PUBLIC_
enum ndr_err_code
ndr_pull_security_acl(struct ndr_pull
*ndr
, int ndr_flags
, struct security_acl
*r
);
3417 _PUBLIC_
void ndr_print_security_acl(struct ndr_print
*ndr
, const char *name
, const struct security_acl
*r
);
3418 _PUBLIC_
void ndr_print_security_descriptor_revision(struct ndr_print
*ndr
, const char *name
, enum security_descriptor_revision r
);
3419 _PUBLIC_
void ndr_print_security_descriptor_type(struct ndr_print
*ndr
, const char *name
, uint16_t r
);
3420 _PUBLIC_
enum ndr_err_code
ndr_push_security_descriptor(struct ndr_push
*ndr
, int ndr_flags
, const struct security_descriptor
*r
);
3421 _PUBLIC_
enum ndr_err_code
ndr_pull_security_descriptor(struct ndr_pull
*ndr
, int ndr_flags
, struct security_descriptor
*r
);
3422 _PUBLIC_
void ndr_print_security_descriptor(struct ndr_print
*ndr
, const char *name
, const struct security_descriptor
*r
);
3423 _PUBLIC_
enum ndr_err_code
ndr_push_sec_desc_buf(struct ndr_push
*ndr
, int ndr_flags
, const struct sec_desc_buf
*r
);
3424 _PUBLIC_
enum ndr_err_code
ndr_pull_sec_desc_buf(struct ndr_pull
*ndr
, int ndr_flags
, struct sec_desc_buf
*r
);
3425 _PUBLIC_
void ndr_print_sec_desc_buf(struct ndr_print
*ndr
, const char *name
, const struct sec_desc_buf
*r
);
3426 _PUBLIC_
enum ndr_err_code
ndr_push_security_token(struct ndr_push
*ndr
, int ndr_flags
, const struct security_token
*r
);
3427 _PUBLIC_
enum ndr_err_code
ndr_pull_security_token(struct ndr_pull
*ndr
, int ndr_flags
, struct security_token
*r
);
3428 _PUBLIC_
void ndr_print_security_token(struct ndr_print
*ndr
, const char *name
, const struct security_token
*r
);
3429 _PUBLIC_
enum ndr_err_code
ndr_push_security_secinfo(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
3430 _PUBLIC_
enum ndr_err_code
ndr_pull_security_secinfo(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
3431 _PUBLIC_
void ndr_print_security_secinfo(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3433 /* The following definitions come from librpc/gen_ndr/ndr_srvsvc.c */
3435 _PUBLIC_
void ndr_print_srvsvc_NetCharDevInfo0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetCharDevInfo0
*r
);
3436 _PUBLIC_
void ndr_print_srvsvc_NetCharDevCtr0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetCharDevCtr0
*r
);
3437 _PUBLIC_
void ndr_print_srvsvc_NetCharDevInfo1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetCharDevInfo1
*r
);
3438 _PUBLIC_
void ndr_print_srvsvc_NetCharDevCtr1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetCharDevCtr1
*r
);
3439 _PUBLIC_
void ndr_print_srvsvc_NetCharDevInfo(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetCharDevInfo
*r
);
3440 _PUBLIC_
void ndr_print_srvsvc_NetCharDevCtr(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetCharDevCtr
*r
);
3441 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQInfo0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetCharDevQInfo0
*r
);
3442 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQCtr0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetCharDevQCtr0
*r
);
3443 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQInfo1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetCharDevQInfo1
*r
);
3444 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQCtr1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetCharDevQCtr1
*r
);
3445 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQInfo(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetCharDevQInfo
*r
);
3446 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQCtr(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetCharDevQCtr
*r
);
3447 _PUBLIC_
void ndr_print_srvsvc_NetConnInfo0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetConnInfo0
*r
);
3448 _PUBLIC_
void ndr_print_srvsvc_NetConnCtr0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetConnCtr0
*r
);
3449 _PUBLIC_
void ndr_print_srvsvc_NetConnInfo1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetConnInfo1
*r
);
3450 _PUBLIC_
void ndr_print_srvsvc_NetConnCtr1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetConnCtr1
*r
);
3451 _PUBLIC_
void ndr_print_srvsvc_NetConnCtr(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetConnCtr
*r
);
3452 _PUBLIC_
void ndr_print_srvsvc_NetConnInfoCtr(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetConnInfoCtr
*r
);
3453 _PUBLIC_
void ndr_print_srvsvc_NetFileInfo2(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetFileInfo2
*r
);
3454 _PUBLIC_
void ndr_print_srvsvc_NetFileCtr2(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetFileCtr2
*r
);
3455 _PUBLIC_
void ndr_print_srvsvc_NetFileInfo3(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetFileInfo3
*r
);
3456 _PUBLIC_
void ndr_print_srvsvc_NetFileCtr3(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetFileCtr3
*r
);
3457 _PUBLIC_
void ndr_print_srvsvc_NetFileInfo(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetFileInfo
*r
);
3458 _PUBLIC_
void ndr_print_srvsvc_NetFileCtr(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetFileCtr
*r
);
3459 _PUBLIC_
void ndr_print_srvsvc_NetFileInfoCtr(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetFileInfoCtr
*r
);
3460 _PUBLIC_
void ndr_print_srvsvc_NetSessInfo0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessInfo0
*r
);
3461 _PUBLIC_
void ndr_print_srvsvc_NetSessCtr0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessCtr0
*r
);
3462 _PUBLIC_
void ndr_print_srvsvc_NetSessInfo1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessInfo1
*r
);
3463 _PUBLIC_
void ndr_print_srvsvc_NetSessCtr1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessCtr1
*r
);
3464 _PUBLIC_
void ndr_print_srvsvc_NetSessInfo2(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessInfo2
*r
);
3465 _PUBLIC_
void ndr_print_srvsvc_NetSessCtr2(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessCtr2
*r
);
3466 _PUBLIC_
void ndr_print_srvsvc_NetSessInfo10(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessInfo10
*r
);
3467 _PUBLIC_
void ndr_print_srvsvc_NetSessCtr10(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessCtr10
*r
);
3468 _PUBLIC_
void ndr_print_srvsvc_NetSessInfo502(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessInfo502
*r
);
3469 _PUBLIC_
void ndr_print_srvsvc_NetSessCtr502(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessCtr502
*r
);
3470 _PUBLIC_
void ndr_print_srvsvc_NetSessCtr(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetSessCtr
*r
);
3471 _PUBLIC_
void ndr_print_srvsvc_NetSessInfoCtr(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSessInfoCtr
*r
);
3472 _PUBLIC_
void ndr_print_srvsvc_ShareType(struct ndr_print
*ndr
, const char *name
, enum srvsvc_ShareType r
);
3473 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo0
*r
);
3474 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr0
*r
);
3475 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo1
*r
);
3476 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr1
*r
);
3477 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo2(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo2
*r
);
3478 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr2(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr2
*r
);
3479 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo501(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo501
*r
);
3480 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr501(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr501
*r
);
3481 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo502(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo502
*r
);
3482 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr502(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr502
*r
);
3483 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo1004(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo1004
*r
);
3484 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr1004(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr1004
*r
);
3485 _PUBLIC_
void ndr_print_NetShareInfo1005Flags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3486 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo1005(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo1005
*r
);
3487 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr1005(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr1005
*r
);
3488 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo1006(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo1006
*r
);
3489 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr1006(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr1006
*r
);
3490 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo1007(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfo1007
*r
);
3491 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr1007(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr1007
*r
);
3492 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr1501(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareCtr1501
*r
);
3493 _PUBLIC_
void ndr_print_srvsvc_NetShareInfo(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetShareInfo
*r
);
3494 _PUBLIC_
void ndr_print_srvsvc_NetShareCtr(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetShareCtr
*r
);
3495 _PUBLIC_
void ndr_print_srvsvc_NetShareInfoCtr(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetShareInfoCtr
*r
);
3496 _PUBLIC_
enum ndr_err_code
ndr_push_srvsvc_PlatformId(struct ndr_push
*ndr
, int ndr_flags
, enum srvsvc_PlatformId r
);
3497 _PUBLIC_
enum ndr_err_code
ndr_pull_srvsvc_PlatformId(struct ndr_pull
*ndr
, int ndr_flags
, enum srvsvc_PlatformId
*r
);
3498 _PUBLIC_
void ndr_print_srvsvc_PlatformId(struct ndr_print
*ndr
, const char *name
, enum srvsvc_PlatformId r
);
3499 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo100(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo100
*r
);
3500 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo101(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo101
*r
);
3501 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo102(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo102
*r
);
3502 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo402(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo402
*r
);
3503 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo403(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo403
*r
);
3504 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo502(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo502
*r
);
3505 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo503(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo503
*r
);
3506 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo599(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo599
*r
);
3507 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1005(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1005
*r
);
3508 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1010(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1010
*r
);
3509 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1016(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1016
*r
);
3510 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1017(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1017
*r
);
3511 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1018(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1018
*r
);
3512 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1107(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1107
*r
);
3513 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1501(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1501
*r
);
3514 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1502(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1502
*r
);
3515 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1503(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1503
*r
);
3516 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1506(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1506
*r
);
3517 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1509(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1509
*r
);
3518 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1510(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1510
*r
);
3519 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1511(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1511
*r
);
3520 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1512(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1512
*r
);
3521 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1513(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1513
*r
);
3522 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1514(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1514
*r
);
3523 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1515(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1515
*r
);
3524 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1516(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1516
*r
);
3525 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1518(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1518
*r
);
3526 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1520(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1520
*r
);
3527 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1521(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1521
*r
);
3528 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1522(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1522
*r
);
3529 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1523(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1523
*r
);
3530 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1524(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1524
*r
);
3531 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1525(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1525
*r
);
3532 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1528(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1528
*r
);
3533 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1529(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1529
*r
);
3534 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1530(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1530
*r
);
3535 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1533(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1533
*r
);
3536 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1534(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1534
*r
);
3537 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1535(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1535
*r
);
3538 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1536(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1536
*r
);
3539 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1537(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1537
*r
);
3540 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1538(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1538
*r
);
3541 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1539(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1539
*r
);
3542 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1540(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1540
*r
);
3543 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1541(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1541
*r
);
3544 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1542(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1542
*r
);
3545 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1543(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1543
*r
);
3546 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1544(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1544
*r
);
3547 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1545(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1545
*r
);
3548 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1546(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1546
*r
);
3549 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1547(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1547
*r
);
3550 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1548(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1548
*r
);
3551 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1549(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1549
*r
);
3552 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1550(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1550
*r
);
3553 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1552(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1552
*r
);
3554 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1553(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1553
*r
);
3555 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1554(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1554
*r
);
3556 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1555(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1555
*r
);
3557 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo1556(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetSrvInfo1556
*r
);
3558 _PUBLIC_
void ndr_print_srvsvc_NetSrvInfo(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetSrvInfo
*r
);
3559 _PUBLIC_
void ndr_print_srvsvc_NetDiskInfo0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetDiskInfo0
*r
);
3560 _PUBLIC_
void ndr_print_srvsvc_NetDiskInfo(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetDiskInfo
*r
);
3561 _PUBLIC_
void ndr_print_srvsvc_Statistics(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_Statistics
*r
);
3562 _PUBLIC_
void ndr_print_srvsvc_NetTransportInfo0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetTransportInfo0
*r
);
3563 _PUBLIC_
void ndr_print_srvsvc_NetTransportCtr0(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetTransportCtr0
*r
);
3564 _PUBLIC_
void ndr_print_srvsvc_NetTransportInfo1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetTransportInfo1
*r
);
3565 _PUBLIC_
void ndr_print_srvsvc_NetTransportCtr1(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetTransportCtr1
*r
);
3566 _PUBLIC_
void ndr_print_srvsvc_NetTransportInfo2(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetTransportInfo2
*r
);
3567 _PUBLIC_
void ndr_print_srvsvc_NetTransportCtr2(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetTransportCtr2
*r
);
3568 _PUBLIC_
void ndr_print_srvsvc_NetTransportInfo3(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetTransportInfo3
*r
);
3569 _PUBLIC_
void ndr_print_srvsvc_NetTransportCtr3(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetTransportCtr3
*r
);
3570 _PUBLIC_
void ndr_print_srvsvc_NetTransportCtr(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetTransportCtr
*r
);
3571 _PUBLIC_
void ndr_print_srvsvc_NetRemoteTODInfo(struct ndr_print
*ndr
, const char *name
, const struct srvsvc_NetRemoteTODInfo
*r
);
3572 _PUBLIC_
void ndr_print_srvsvc_NetTransportInfo(struct ndr_print
*ndr
, const char *name
, const union srvsvc_NetTransportInfo
*r
);
3573 _PUBLIC_
void ndr_print_srvsvc_NetCharDevEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetCharDevEnum
*r
);
3574 _PUBLIC_
void ndr_print_srvsvc_NetCharDevGetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetCharDevGetInfo
*r
);
3575 _PUBLIC_
void ndr_print_srvsvc_NetCharDevControl(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetCharDevControl
*r
);
3576 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetCharDevQEnum
*r
);
3577 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQGetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetCharDevQGetInfo
*r
);
3578 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQSetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetCharDevQSetInfo
*r
);
3579 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQPurge(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetCharDevQPurge
*r
);
3580 _PUBLIC_
void ndr_print_srvsvc_NetCharDevQPurgeSelf(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetCharDevQPurgeSelf
*r
);
3581 _PUBLIC_
void ndr_print_srvsvc_NetConnEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetConnEnum
*r
);
3582 _PUBLIC_
void ndr_print_srvsvc_NetFileEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetFileEnum
*r
);
3583 _PUBLIC_
void ndr_print_srvsvc_NetFileGetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetFileGetInfo
*r
);
3584 _PUBLIC_
void ndr_print_srvsvc_NetFileClose(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetFileClose
*r
);
3585 _PUBLIC_
void ndr_print_srvsvc_NetSessEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetSessEnum
*r
);
3586 _PUBLIC_
void ndr_print_srvsvc_NetSessDel(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetSessDel
*r
);
3587 _PUBLIC_
void ndr_print_srvsvc_NetShareAdd(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareAdd
*r
);
3588 _PUBLIC_
void ndr_print_srvsvc_NetShareEnumAll(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareEnumAll
*r
);
3589 _PUBLIC_
void ndr_print_srvsvc_NetShareGetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareGetInfo
*r
);
3590 _PUBLIC_
void ndr_print_srvsvc_NetShareSetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareSetInfo
*r
);
3591 _PUBLIC_
void ndr_print_srvsvc_NetShareDel(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareDel
*r
);
3592 _PUBLIC_
void ndr_print_srvsvc_NetShareDelSticky(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareDelSticky
*r
);
3593 _PUBLIC_
void ndr_print_srvsvc_NetShareCheck(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareCheck
*r
);
3594 _PUBLIC_
void ndr_print_srvsvc_NetSrvGetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetSrvGetInfo
*r
);
3595 _PUBLIC_
void ndr_print_srvsvc_NetSrvSetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetSrvSetInfo
*r
);
3596 _PUBLIC_
void ndr_print_srvsvc_NetDiskEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetDiskEnum
*r
);
3597 _PUBLIC_
void ndr_print_srvsvc_NetServerStatisticsGet(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetServerStatisticsGet
*r
);
3598 _PUBLIC_
void ndr_print_srvsvc_NetTransportAdd(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetTransportAdd
*r
);
3599 _PUBLIC_
void ndr_print_srvsvc_NetTransportEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetTransportEnum
*r
);
3600 _PUBLIC_
void ndr_print_srvsvc_NetTransportDel(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetTransportDel
*r
);
3601 _PUBLIC_
void ndr_print_srvsvc_NetRemoteTOD(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetRemoteTOD
*r
);
3602 _PUBLIC_
void ndr_print_srvsvc_NetSetServiceBits(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetSetServiceBits
*r
);
3603 _PUBLIC_
void ndr_print_srvsvc_NetPathType(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetPathType
*r
);
3604 _PUBLIC_
void ndr_print_srvsvc_NetPathCanonicalize(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetPathCanonicalize
*r
);
3605 _PUBLIC_
void ndr_print_srvsvc_NetPathCompare(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetPathCompare
*r
);
3606 _PUBLIC_
void ndr_print_srvsvc_NetNameValidate(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetNameValidate
*r
);
3607 _PUBLIC_
void ndr_print_srvsvc_NETRPRNAMECANONICALIZE(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRPRNAMECANONICALIZE
*r
);
3608 _PUBLIC_
void ndr_print_srvsvc_NetPRNameCompare(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetPRNameCompare
*r
);
3609 _PUBLIC_
void ndr_print_srvsvc_NetShareEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareEnum
*r
);
3610 _PUBLIC_
void ndr_print_srvsvc_NetShareDelStart(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareDelStart
*r
);
3611 _PUBLIC_
void ndr_print_srvsvc_NetShareDelCommit(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetShareDelCommit
*r
);
3612 _PUBLIC_
void ndr_print_srvsvc_NetGetFileSecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetGetFileSecurity
*r
);
3613 _PUBLIC_
void ndr_print_srvsvc_NetSetFileSecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetSetFileSecurity
*r
);
3614 _PUBLIC_
void ndr_print_srvsvc_NetServerTransportAddEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetServerTransportAddEx
*r
);
3615 _PUBLIC_
void ndr_print_srvsvc_NetServerSetServiceBitsEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NetServerSetServiceBitsEx
*r
);
3616 _PUBLIC_
void ndr_print_srvsvc_NETRDFSGETVERSION(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSGETVERSION
*r
);
3617 _PUBLIC_
void ndr_print_srvsvc_NETRDFSCREATELOCALPARTITION(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSCREATELOCALPARTITION
*r
);
3618 _PUBLIC_
void ndr_print_srvsvc_NETRDFSDELETELOCALPARTITION(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSDELETELOCALPARTITION
*r
);
3619 _PUBLIC_
void ndr_print_srvsvc_NETRDFSSETLOCALVOLUMESTATE(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSSETLOCALVOLUMESTATE
*r
);
3620 _PUBLIC_
void ndr_print_srvsvc_NETRDFSSETSERVERINFO(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSSETSERVERINFO
*r
);
3621 _PUBLIC_
void ndr_print_srvsvc_NETRDFSCREATEEXITPOINT(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSCREATEEXITPOINT
*r
);
3622 _PUBLIC_
void ndr_print_srvsvc_NETRDFSDELETEEXITPOINT(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSDELETEEXITPOINT
*r
);
3623 _PUBLIC_
void ndr_print_srvsvc_NETRDFSMODIFYPREFIX(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSMODIFYPREFIX
*r
);
3624 _PUBLIC_
void ndr_print_srvsvc_NETRDFSFIXLOCALVOLUME(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSFIXLOCALVOLUME
*r
);
3625 _PUBLIC_
void ndr_print_srvsvc_NETRDFSMANAGERREPORTSITEINFO(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRDFSMANAGERREPORTSITEINFO
*r
);
3626 _PUBLIC_
void ndr_print_srvsvc_NETRSERVERTRANSPORTDELEX(struct ndr_print
*ndr
, const char *name
, int flags
, const struct srvsvc_NETRSERVERTRANSPORTDELEX
*r
);
3628 /* The following definitions come from librpc/gen_ndr/ndr_svcctl.c */
3630 _PUBLIC_
void ndr_print_SERVICE_LOCK_STATUS(struct ndr_print
*ndr
, const char *name
, const struct SERVICE_LOCK_STATUS
*r
);
3631 _PUBLIC_
void ndr_print_SERVICE_STATUS(struct ndr_print
*ndr
, const char *name
, const struct SERVICE_STATUS
*r
);
3632 _PUBLIC_
void ndr_print_ENUM_SERVICE_STATUS(struct ndr_print
*ndr
, const char *name
, const struct ENUM_SERVICE_STATUS
*r
);
3633 _PUBLIC_
enum ndr_err_code
ndr_push_svcctl_ServerType(struct ndr_push
*ndr
, int ndr_flags
, uint32_t r
);
3634 _PUBLIC_
enum ndr_err_code
ndr_pull_svcctl_ServerType(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *r
);
3635 _PUBLIC_
void ndr_print_svcctl_ServerType(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3636 _PUBLIC_
void ndr_print_svcctl_MgrAccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3637 _PUBLIC_
void ndr_print_svcctl_ServiceAccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3638 _PUBLIC_
void ndr_print_svcctl_CloseServiceHandle(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_CloseServiceHandle
*r
);
3639 _PUBLIC_
void ndr_print_svcctl_ControlService(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_ControlService
*r
);
3640 _PUBLIC_
void ndr_print_svcctl_DeleteService(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_DeleteService
*r
);
3641 _PUBLIC_
void ndr_print_svcctl_LockServiceDatabase(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_LockServiceDatabase
*r
);
3642 _PUBLIC_
void ndr_print_svcctl_QueryServiceObjectSecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceObjectSecurity
*r
);
3643 _PUBLIC_
void ndr_print_svcctl_SetServiceObjectSecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_SetServiceObjectSecurity
*r
);
3644 _PUBLIC_
void ndr_print_svcctl_QueryServiceStatus(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceStatus
*r
);
3645 _PUBLIC_
void ndr_print_svcctl_SetServiceStatus(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_SetServiceStatus
*r
);
3646 _PUBLIC_
void ndr_print_svcctl_UnlockServiceDatabase(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_UnlockServiceDatabase
*r
);
3647 _PUBLIC_
void ndr_print_svcctl_NotifyBootConfigStatus(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_NotifyBootConfigStatus
*r
);
3648 _PUBLIC_
void ndr_print_svcctl_SCSetServiceBitsW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_SCSetServiceBitsW
*r
);
3649 _PUBLIC_
void ndr_print_svcctl_ChangeServiceConfigW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_ChangeServiceConfigW
*r
);
3650 _PUBLIC_
void ndr_print_svcctl_CreateServiceW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_CreateServiceW
*r
);
3651 _PUBLIC_
void ndr_print_svcctl_EnumDependentServicesW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_EnumDependentServicesW
*r
);
3652 _PUBLIC_
void ndr_print_svcctl_EnumServicesStatusW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_EnumServicesStatusW
*r
);
3653 _PUBLIC_
void ndr_print_svcctl_OpenSCManagerW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_OpenSCManagerW
*r
);
3654 _PUBLIC_
void ndr_print_svcctl_OpenServiceW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_OpenServiceW
*r
);
3655 _PUBLIC_
void ndr_print_svcctl_QueryServiceConfigW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceConfigW
*r
);
3656 _PUBLIC_
void ndr_print_svcctl_QueryServiceLockStatusW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceLockStatusW
*r
);
3657 _PUBLIC_
void ndr_print_svcctl_StartServiceW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_StartServiceW
*r
);
3658 _PUBLIC_
void ndr_print_svcctl_GetServiceDisplayNameW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_GetServiceDisplayNameW
*r
);
3659 _PUBLIC_
void ndr_print_svcctl_GetServiceKeyNameW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_GetServiceKeyNameW
*r
);
3660 _PUBLIC_
void ndr_print_svcctl_SCSetServiceBitsA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_SCSetServiceBitsA
*r
);
3661 _PUBLIC_
void ndr_print_svcctl_ChangeServiceConfigA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_ChangeServiceConfigA
*r
);
3662 _PUBLIC_
void ndr_print_svcctl_CreateServiceA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_CreateServiceA
*r
);
3663 _PUBLIC_
void ndr_print_svcctl_EnumDependentServicesA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_EnumDependentServicesA
*r
);
3664 _PUBLIC_
void ndr_print_svcctl_EnumServicesStatusA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_EnumServicesStatusA
*r
);
3665 _PUBLIC_
void ndr_print_svcctl_OpenSCManagerA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_OpenSCManagerA
*r
);
3666 _PUBLIC_
void ndr_print_svcctl_OpenServiceA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_OpenServiceA
*r
);
3667 _PUBLIC_
void ndr_print_svcctl_QueryServiceConfigA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceConfigA
*r
);
3668 _PUBLIC_
void ndr_print_svcctl_QueryServiceLockStatusA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceLockStatusA
*r
);
3669 _PUBLIC_
void ndr_print_svcctl_StartServiceA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_StartServiceA
*r
);
3670 _PUBLIC_
void ndr_print_svcctl_GetServiceDisplayNameA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_GetServiceDisplayNameA
*r
);
3671 _PUBLIC_
void ndr_print_svcctl_GetServiceKeyNameA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_GetServiceKeyNameA
*r
);
3672 _PUBLIC_
void ndr_print_svcctl_GetCurrentGroupeStateW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_GetCurrentGroupeStateW
*r
);
3673 _PUBLIC_
void ndr_print_svcctl_EnumServiceGroupW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_EnumServiceGroupW
*r
);
3674 _PUBLIC_
void ndr_print_svcctl_ChangeServiceConfig2A(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_ChangeServiceConfig2A
*r
);
3675 _PUBLIC_
void ndr_print_svcctl_ChangeServiceConfig2W(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_ChangeServiceConfig2W
*r
);
3676 _PUBLIC_
void ndr_print_svcctl_QueryServiceConfig2A(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceConfig2A
*r
);
3677 _PUBLIC_
void ndr_print_svcctl_QueryServiceConfig2W(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceConfig2W
*r
);
3678 _PUBLIC_
void ndr_print_svcctl_QueryServiceStatusEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_QueryServiceStatusEx
*r
);
3679 _PUBLIC_
void ndr_print_EnumServicesStatusExA(struct ndr_print
*ndr
, const char *name
, int flags
, const struct EnumServicesStatusExA
*r
);
3680 _PUBLIC_
void ndr_print_EnumServicesStatusExW(struct ndr_print
*ndr
, const char *name
, int flags
, const struct EnumServicesStatusExW
*r
);
3681 _PUBLIC_
void ndr_print_svcctl_SCSendTSMessage(struct ndr_print
*ndr
, const char *name
, int flags
, const struct svcctl_SCSendTSMessage
*r
);
3683 /* The following definitions come from librpc/gen_ndr/ndr_winreg.c */
3685 _PUBLIC_
void ndr_print_winreg_AccessMask(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3686 _PUBLIC_
void ndr_print_winreg_Type(struct ndr_print
*ndr
, const char *name
, enum winreg_Type r
);
3687 _PUBLIC_
enum ndr_err_code
ndr_push_winreg_String(struct ndr_push
*ndr
, int ndr_flags
, const struct winreg_String
*r
);
3688 _PUBLIC_
enum ndr_err_code
ndr_pull_winreg_String(struct ndr_pull
*ndr
, int ndr_flags
, struct winreg_String
*r
);
3689 _PUBLIC_
void ndr_print_winreg_String(struct ndr_print
*ndr
, const char *name
, const struct winreg_String
*r
);
3690 _PUBLIC_
void ndr_print_KeySecurityData(struct ndr_print
*ndr
, const char *name
, const struct KeySecurityData
*r
);
3691 _PUBLIC_
void ndr_print_winreg_SecBuf(struct ndr_print
*ndr
, const char *name
, const struct winreg_SecBuf
*r
);
3692 _PUBLIC_
void ndr_print_winreg_CreateAction(struct ndr_print
*ndr
, const char *name
, enum winreg_CreateAction r
);
3693 _PUBLIC_
void ndr_print_winreg_StringBuf(struct ndr_print
*ndr
, const char *name
, const struct winreg_StringBuf
*r
);
3694 _PUBLIC_
void ndr_print_winreg_ValNameBuf(struct ndr_print
*ndr
, const char *name
, const struct winreg_ValNameBuf
*r
);
3695 _PUBLIC_
void ndr_print_KeySecurityAttribute(struct ndr_print
*ndr
, const char *name
, const struct KeySecurityAttribute
*r
);
3696 _PUBLIC_
void ndr_print_QueryMultipleValue(struct ndr_print
*ndr
, const char *name
, const struct QueryMultipleValue
*r
);
3697 _PUBLIC_
void ndr_print_winreg_OpenHKCR(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKCR
*r
);
3698 _PUBLIC_
void ndr_print_winreg_OpenHKCU(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKCU
*r
);
3699 _PUBLIC_
void ndr_print_winreg_OpenHKLM(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKLM
*r
);
3700 _PUBLIC_
void ndr_print_winreg_OpenHKPD(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKPD
*r
);
3701 _PUBLIC_
void ndr_print_winreg_OpenHKU(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKU
*r
);
3702 _PUBLIC_
void ndr_print_winreg_CloseKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_CloseKey
*r
);
3703 _PUBLIC_
void ndr_print_winreg_CreateKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_CreateKey
*r
);
3704 _PUBLIC_
void ndr_print_winreg_DeleteKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_DeleteKey
*r
);
3705 _PUBLIC_
void ndr_print_winreg_DeleteValue(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_DeleteValue
*r
);
3706 _PUBLIC_
void ndr_print_winreg_EnumKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_EnumKey
*r
);
3707 _PUBLIC_
void ndr_print_winreg_EnumValue(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_EnumValue
*r
);
3708 _PUBLIC_
void ndr_print_winreg_FlushKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_FlushKey
*r
);
3709 _PUBLIC_
void ndr_print_winreg_GetKeySecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_GetKeySecurity
*r
);
3710 _PUBLIC_
void ndr_print_winreg_LoadKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_LoadKey
*r
);
3711 _PUBLIC_
void ndr_print_winreg_NotifyChangeKeyValue(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_NotifyChangeKeyValue
*r
);
3712 _PUBLIC_
void ndr_print_winreg_OpenKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenKey
*r
);
3713 _PUBLIC_
void ndr_print_winreg_QueryInfoKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_QueryInfoKey
*r
);
3714 _PUBLIC_
void ndr_print_winreg_QueryValue(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_QueryValue
*r
);
3715 _PUBLIC_
void ndr_print_winreg_ReplaceKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_ReplaceKey
*r
);
3716 _PUBLIC_
void ndr_print_winreg_RestoreKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_RestoreKey
*r
);
3717 _PUBLIC_
void ndr_print_winreg_SaveKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_SaveKey
*r
);
3718 _PUBLIC_
void ndr_print_winreg_SetKeySecurity(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_SetKeySecurity
*r
);
3719 _PUBLIC_
void ndr_print_winreg_SetValue(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_SetValue
*r
);
3720 _PUBLIC_
void ndr_print_winreg_UnLoadKey(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_UnLoadKey
*r
);
3721 _PUBLIC_
void ndr_print_winreg_InitiateSystemShutdown(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_InitiateSystemShutdown
*r
);
3722 _PUBLIC_
void ndr_print_winreg_AbortSystemShutdown(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_AbortSystemShutdown
*r
);
3723 _PUBLIC_
void ndr_print_winreg_GetVersion(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_GetVersion
*r
);
3724 _PUBLIC_
void ndr_print_winreg_OpenHKCC(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKCC
*r
);
3725 _PUBLIC_
void ndr_print_winreg_OpenHKDD(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKDD
*r
);
3726 _PUBLIC_
void ndr_print_winreg_QueryMultipleValues(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_QueryMultipleValues
*r
);
3727 _PUBLIC_
void ndr_print_winreg_InitiateSystemShutdownEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_InitiateSystemShutdownEx
*r
);
3728 _PUBLIC_
void ndr_print_winreg_SaveKeyEx(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_SaveKeyEx
*r
);
3729 _PUBLIC_
void ndr_print_winreg_OpenHKPT(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKPT
*r
);
3730 _PUBLIC_
void ndr_print_winreg_OpenHKPN(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_OpenHKPN
*r
);
3731 _PUBLIC_
void ndr_print_winreg_QueryMultipleValues2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct winreg_QueryMultipleValues2
*r
);
3733 /* The following definitions come from librpc/gen_ndr/ndr_wkssvc.c */
3735 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo100(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo100
*r
);
3736 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo101(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo101
*r
);
3737 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo102(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo102
*r
);
3738 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo502(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo502
*r
);
3739 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1010(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1010
*r
);
3740 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1011(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1011
*r
);
3741 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1012(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1012
*r
);
3742 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1013(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1013
*r
);
3743 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1018(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1018
*r
);
3744 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1023(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1023
*r
);
3745 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1027(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1027
*r
);
3746 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1028(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1028
*r
);
3747 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1032(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1032
*r
);
3748 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1033(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1033
*r
);
3749 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1041(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1041
*r
);
3750 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1042(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1042
*r
);
3751 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1043(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1043
*r
);
3752 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1044(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1044
*r
);
3753 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1045(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1045
*r
);
3754 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1046(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1046
*r
);
3755 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1047(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1047
*r
);
3756 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1048(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1048
*r
);
3757 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1049(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1049
*r
);
3758 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1050(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1050
*r
);
3759 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1051(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1051
*r
);
3760 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1052(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1052
*r
);
3761 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1053(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1053
*r
);
3762 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1054(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1054
*r
);
3763 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1055(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1055
*r
);
3764 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1056(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1056
*r
);
3765 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1057(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1057
*r
);
3766 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1058(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1058
*r
);
3767 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1059(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1059
*r
);
3768 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1060(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1060
*r
);
3769 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1061(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1061
*r
);
3770 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo1062(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaInfo1062
*r
);
3771 _PUBLIC_
void ndr_print_wkssvc_NetWkstaInfo(struct ndr_print
*ndr
, const char *name
, const union wkssvc_NetWkstaInfo
*r
);
3772 _PUBLIC_
void ndr_print_wkssvc_NetrWkstaUserInfo0(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrWkstaUserInfo0
*r
);
3773 _PUBLIC_
void ndr_print_wkssvc_NetWkstaEnumUsersCtr0(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaEnumUsersCtr0
*r
);
3774 _PUBLIC_
void ndr_print_wkssvc_NetrWkstaUserInfo1(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrWkstaUserInfo1
*r
);
3775 _PUBLIC_
void ndr_print_wkssvc_NetWkstaEnumUsersCtr1(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaEnumUsersCtr1
*r
);
3776 _PUBLIC_
void ndr_print_wkssvc_NetWkstaEnumUsersCtr(struct ndr_print
*ndr
, const char *name
, const union wkssvc_NetWkstaEnumUsersCtr
*r
);
3777 _PUBLIC_
void ndr_print_wkssvc_NetWkstaEnumUsersInfo(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaEnumUsersInfo
*r
);
3778 _PUBLIC_
void ndr_print_wkssvc_NetrWkstaUserInfo1101(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrWkstaUserInfo1101
*r
);
3779 _PUBLIC_
void ndr_print_wkssvc_NetrWkstaUserInfo(struct ndr_print
*ndr
, const char *name
, const union wkssvc_NetrWkstaUserInfo
*r
);
3780 _PUBLIC_
void ndr_print_wkssvc_NetWkstaTransportInfo0(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaTransportInfo0
*r
);
3781 _PUBLIC_
void ndr_print_wkssvc_NetWkstaTransportCtr0(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaTransportCtr0
*r
);
3782 _PUBLIC_
void ndr_print_wkssvc_NetWkstaTransportCtr(struct ndr_print
*ndr
, const char *name
, const union wkssvc_NetWkstaTransportCtr
*r
);
3783 _PUBLIC_
void ndr_print_wkssvc_NetWkstaTransportInfo(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetWkstaTransportInfo
*r
);
3784 _PUBLIC_
void ndr_print_wkssvc_NetrUseInfo3(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrUseInfo3
*r
);
3785 _PUBLIC_
void ndr_print_wkssvc_NetrUseInfo2(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrUseInfo2
*r
);
3786 _PUBLIC_
void ndr_print_wkssvc_NetrUseInfo1(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrUseInfo1
*r
);
3787 _PUBLIC_
void ndr_print_wkssvc_NetrUseInfo0(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrUseInfo0
*r
);
3788 _PUBLIC_
void ndr_print_wkssvc_NetrUseGetInfoCtr(struct ndr_print
*ndr
, const char *name
, const union wkssvc_NetrUseGetInfoCtr
*r
);
3789 _PUBLIC_
void ndr_print_wkssvc_NetrUseEnumCtr2(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrUseEnumCtr2
*r
);
3790 _PUBLIC_
void ndr_print_wkssvc_NetrUseEnumCtr1(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrUseEnumCtr1
*r
);
3791 _PUBLIC_
void ndr_print_wkssvc_NetrUseEnumCtr0(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrUseEnumCtr0
*r
);
3792 _PUBLIC_
void ndr_print_wkssvc_NetrUseEnumCtr(struct ndr_print
*ndr
, const char *name
, const union wkssvc_NetrUseEnumCtr
*r
);
3793 _PUBLIC_
void ndr_print_wkssvc_NetrUseEnumInfo(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrUseEnumInfo
*r
);
3794 _PUBLIC_
void ndr_print_wkssvc_NetrWorkstationStatistics(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_NetrWorkstationStatistics
*r
);
3795 _PUBLIC_
void ndr_print_wkssvc_renameflags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3796 _PUBLIC_
void ndr_print_wkssvc_NetValidateNameType(struct ndr_print
*ndr
, const char *name
, enum wkssvc_NetValidateNameType r
);
3797 _PUBLIC_
void ndr_print_wkssvc_NetJoinStatus(struct ndr_print
*ndr
, const char *name
, enum wkssvc_NetJoinStatus r
);
3798 _PUBLIC_
void ndr_print_wkssvc_PasswordBuffer(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_PasswordBuffer
*r
);
3799 _PUBLIC_
void ndr_print_wkssvc_joinflags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
3800 _PUBLIC_
void ndr_print_wkssvc_ComputerNameType(struct ndr_print
*ndr
, const char *name
, enum wkssvc_ComputerNameType r
);
3801 _PUBLIC_
void ndr_print_wkssvc_ComputerNamesCtr(struct ndr_print
*ndr
, const char *name
, const struct wkssvc_ComputerNamesCtr
*r
);
3802 _PUBLIC_
void ndr_print_wkssvc_NetWkstaGetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetWkstaGetInfo
*r
);
3803 _PUBLIC_
void ndr_print_wkssvc_NetWkstaSetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetWkstaSetInfo
*r
);
3804 _PUBLIC_
void ndr_print_wkssvc_NetWkstaEnumUsers(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetWkstaEnumUsers
*r
);
3805 _PUBLIC_
void ndr_print_wkssvc_NetrWkstaUserGetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrWkstaUserGetInfo
*r
);
3806 _PUBLIC_
void ndr_print_wkssvc_NetrWkstaUserSetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrWkstaUserSetInfo
*r
);
3807 _PUBLIC_
void ndr_print_wkssvc_NetWkstaTransportEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetWkstaTransportEnum
*r
);
3808 _PUBLIC_
void ndr_print_wkssvc_NetrWkstaTransportAdd(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrWkstaTransportAdd
*r
);
3809 _PUBLIC_
void ndr_print_wkssvc_NetrWkstaTransportDel(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrWkstaTransportDel
*r
);
3810 _PUBLIC_
void ndr_print_wkssvc_NetrUseAdd(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrUseAdd
*r
);
3811 _PUBLIC_
void ndr_print_wkssvc_NetrUseGetInfo(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrUseGetInfo
*r
);
3812 _PUBLIC_
void ndr_print_wkssvc_NetrUseDel(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrUseDel
*r
);
3813 _PUBLIC_
void ndr_print_wkssvc_NetrUseEnum(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrUseEnum
*r
);
3814 _PUBLIC_
void ndr_print_wkssvc_NetrMessageBufferSend(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrMessageBufferSend
*r
);
3815 _PUBLIC_
void ndr_print_wkssvc_NetrWorkstationStatisticsGet(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrWorkstationStatisticsGet
*r
);
3816 _PUBLIC_
void ndr_print_wkssvc_NetrLogonDomainNameAdd(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrLogonDomainNameAdd
*r
);
3817 _PUBLIC_
void ndr_print_wkssvc_NetrLogonDomainNameDel(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrLogonDomainNameDel
*r
);
3818 _PUBLIC_
void ndr_print_wkssvc_NetrJoinDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrJoinDomain
*r
);
3819 _PUBLIC_
void ndr_print_wkssvc_NetrUnjoinDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrUnjoinDomain
*r
);
3820 _PUBLIC_
void ndr_print_wkssvc_NetrRenameMachineInDomain(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrRenameMachineInDomain
*r
);
3821 _PUBLIC_
void ndr_print_wkssvc_NetrValidateName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrValidateName
*r
);
3822 _PUBLIC_
void ndr_print_wkssvc_NetrGetJoinInformation(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrGetJoinInformation
*r
);
3823 _PUBLIC_
void ndr_print_wkssvc_NetrGetJoinableOus(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrGetJoinableOus
*r
);
3824 _PUBLIC_
void ndr_print_wkssvc_NetrJoinDomain2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrJoinDomain2
*r
);
3825 _PUBLIC_
void ndr_print_wkssvc_NetrUnjoinDomain2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrUnjoinDomain2
*r
);
3826 _PUBLIC_
void ndr_print_wkssvc_NetrRenameMachineInDomain2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrRenameMachineInDomain2
*r
);
3827 _PUBLIC_
void ndr_print_wkssvc_NetrValidateName2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrValidateName2
*r
);
3828 _PUBLIC_
void ndr_print_wkssvc_NetrGetJoinableOus2(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrGetJoinableOus2
*r
);
3829 _PUBLIC_
void ndr_print_wkssvc_NetrAddAlternateComputerName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrAddAlternateComputerName
*r
);
3830 _PUBLIC_
void ndr_print_wkssvc_NetrRemoveAlternateComputerName(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrRemoveAlternateComputerName
*r
);
3831 _PUBLIC_
void ndr_print_wkssvc_NetrSetPrimaryComputername(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrSetPrimaryComputername
*r
);
3832 _PUBLIC_
void ndr_print_wkssvc_NetrEnumerateComputerNames(struct ndr_print
*ndr
, const char *name
, int flags
, const struct wkssvc_NetrEnumerateComputerNames
*r
);
3834 /* The following definitions come from librpc/gen_ndr/ndr_xattr.c */
3836 _PUBLIC_
enum ndr_err_code
ndr_push_tdb_xattr(struct ndr_push
*ndr
, int ndr_flags
, const struct tdb_xattr
*r
);
3837 _PUBLIC_
enum ndr_err_code
ndr_pull_tdb_xattr(struct ndr_pull
*ndr
, int ndr_flags
, struct tdb_xattr
*r
);
3838 _PUBLIC_
void ndr_print_tdb_xattr(struct ndr_print
*ndr
, const char *name
, const struct tdb_xattr
*r
);
3839 _PUBLIC_
enum ndr_err_code
ndr_push_tdb_xattrs(struct ndr_push
*ndr
, int ndr_flags
, const struct tdb_xattrs
*r
);
3840 _PUBLIC_
enum ndr_err_code
ndr_pull_tdb_xattrs(struct ndr_pull
*ndr
, int ndr_flags
, struct tdb_xattrs
*r
);
3841 _PUBLIC_
void ndr_print_tdb_xattrs(struct ndr_print
*ndr
, const char *name
, const struct tdb_xattrs
*r
);
3843 /* The following definitions come from librpc/gen_ndr/srv_dfs.c */
3845 void netdfs_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3846 NTSTATUS
rpc_netdfs_init(void);
3848 /* The following definitions come from librpc/gen_ndr/srv_dssetup.c */
3850 void dssetup_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3851 NTSTATUS
rpc_dssetup_init(void);
3853 /* The following definitions come from librpc/gen_ndr/srv_echo.c */
3855 void rpcecho_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3856 NTSTATUS
rpc_rpcecho_init(void);
3858 /* The following definitions come from librpc/gen_ndr/srv_eventlog.c */
3860 void eventlog_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3861 NTSTATUS
rpc_eventlog_init(void);
3863 /* The following definitions come from librpc/gen_ndr/srv_initshutdown.c */
3865 void initshutdown_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3866 NTSTATUS
rpc_initshutdown_init(void);
3868 /* The following definitions come from librpc/gen_ndr/srv_lsa.c */
3870 void lsarpc_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3871 NTSTATUS
rpc_lsarpc_init(void);
3873 /* The following definitions come from librpc/gen_ndr/srv_netlogon.c */
3875 void netlogon_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3876 NTSTATUS
rpc_netlogon_init(void);
3878 /* The following definitions come from librpc/gen_ndr/srv_ntsvcs.c */
3880 void ntsvcs_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3881 NTSTATUS
rpc_ntsvcs_init(void);
3883 /* The following definitions come from librpc/gen_ndr/srv_samr.c */
3885 void samr_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3886 NTSTATUS
rpc_samr_init(void);
3888 /* The following definitions come from librpc/gen_ndr/srv_srvsvc.c */
3890 void srvsvc_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3891 NTSTATUS
rpc_srvsvc_init(void);
3893 /* The following definitions come from librpc/gen_ndr/srv_svcctl.c */
3895 void svcctl_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3896 NTSTATUS
rpc_svcctl_init(void);
3898 /* The following definitions come from librpc/gen_ndr/srv_winreg.c */
3900 void winreg_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3901 NTSTATUS
rpc_winreg_init(void);
3903 /* The following definitions come from librpc/gen_ndr/srv_wkssvc.c */
3905 void wkssvc_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
3906 NTSTATUS
rpc_wkssvc_init(void);
3908 /* The following definitions come from librpc/ndr/ndr.c */
3910 _PUBLIC_
size_t ndr_align_size(uint32_t offset
, size_t n
);
3911 _PUBLIC_
struct ndr_pull
*ndr_pull_init_blob(const DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
);
3912 _PUBLIC_
enum ndr_err_code
ndr_pull_advance(struct ndr_pull
*ndr
, uint32_t size
);
3913 _PUBLIC_
void ndr_pull_save(struct ndr_pull
*ndr
, struct ndr_pull_save
*save
);
3914 _PUBLIC_
void ndr_pull_restore(struct ndr_pull
*ndr
, struct ndr_pull_save
*save
);
3915 _PUBLIC_
struct ndr_push
*ndr_push_init_ctx(TALLOC_CTX
*mem_ctx
);
3916 _PUBLIC_ DATA_BLOB
ndr_push_blob(struct ndr_push
*ndr
);
3917 _PUBLIC_
enum ndr_err_code
ndr_push_expand(struct ndr_push
*ndr
, uint32_t extra_size
);
3918 _PUBLIC_
void ndr_print_debug_helper(struct ndr_print
*ndr
, const char *format
, ...) _PRINTF_ATTRIBUTE(2,3);
3919 _PUBLIC_
void ndr_print_string_helper(struct ndr_print
*ndr
, const char *format
, ...) _PRINTF_ATTRIBUTE(2,3);
3920 _PUBLIC_
void ndr_print_debug(ndr_print_fn_t fn
, const char *name
, void *ptr
);
3921 _PUBLIC_
void ndr_print_union_debug(ndr_print_fn_t fn
, const char *name
, uint32_t level
, void *ptr
);
3922 _PUBLIC_
void ndr_print_function_debug(ndr_print_function_t fn
, const char *name
, int flags
, void *ptr
);
3923 _PUBLIC_
char *ndr_print_struct_string(TALLOC_CTX
*mem_ctx
, ndr_print_fn_t fn
, const char *name
, void *ptr
);
3924 _PUBLIC_
char *ndr_print_union_string(TALLOC_CTX
*mem_ctx
, ndr_print_fn_t fn
, const char *name
, uint32_t level
, void *ptr
);
3925 _PUBLIC_
char *ndr_print_function_string(TALLOC_CTX
*mem_ctx
,
3926 ndr_print_function_t fn
, const char *name
,
3927 int flags
, void *ptr
);
3928 _PUBLIC_
void ndr_set_flags(uint32_t *pflags
, uint32_t new_flags
);
3929 NTSTATUS
ndr_map_error2ntstatus(enum ndr_err_code ndr_err
);
3930 const char *ndr_errstr(enum ndr_err_code err
);
3931 _PUBLIC_
enum ndr_err_code
ndr_pull_error(struct ndr_pull
*ndr
,
3932 enum ndr_err_code ndr_err
,
3933 const char *format
, ...) _PRINTF_ATTRIBUTE(3,4);
3934 _PUBLIC_
enum ndr_err_code
ndr_push_error(struct ndr_push
*ndr
,
3935 enum ndr_err_code ndr_err
,
3936 const char *format
, ...) _PRINTF_ATTRIBUTE(3,4);
3937 _PUBLIC_
enum ndr_err_code
ndr_pull_subcontext_start(struct ndr_pull
*ndr
,
3938 struct ndr_pull
**_subndr
,
3941 _PUBLIC_
enum ndr_err_code
ndr_pull_subcontext_end(struct ndr_pull
*ndr
,
3942 struct ndr_pull
*subndr
,
3945 _PUBLIC_
enum ndr_err_code
ndr_push_subcontext_start(struct ndr_push
*ndr
,
3946 struct ndr_push
**_subndr
,
3949 _PUBLIC_
enum ndr_err_code
ndr_push_subcontext_end(struct ndr_push
*ndr
,
3950 struct ndr_push
*subndr
,
3953 _PUBLIC_
enum ndr_err_code
ndr_token_store(TALLOC_CTX
*mem_ctx
,
3954 struct ndr_token_list
**list
,
3957 _PUBLIC_
enum ndr_err_code
ndr_token_retrieve_cmp_fn(struct ndr_token_list
**list
, const void *key
, uint32_t *v
,
3958 comparison_fn_t _cmp_fn
, bool _remove_tok
);
3959 _PUBLIC_
enum ndr_err_code
ndr_token_retrieve(struct ndr_token_list
**list
, const void *key
, uint32_t *v
);
3960 _PUBLIC_
uint32_t ndr_token_peek(struct ndr_token_list
**list
, const void *key
);
3961 _PUBLIC_
enum ndr_err_code
ndr_pull_array_size(struct ndr_pull
*ndr
, const void *p
);
3962 _PUBLIC_
uint32_t ndr_get_array_size(struct ndr_pull
*ndr
, const void *p
);
3963 _PUBLIC_
enum ndr_err_code
ndr_check_array_size(struct ndr_pull
*ndr
, void *p
, uint32_t size
);
3964 _PUBLIC_
enum ndr_err_code
ndr_pull_array_length(struct ndr_pull
*ndr
, const void *p
);
3965 _PUBLIC_
uint32_t ndr_get_array_length(struct ndr_pull
*ndr
, const void *p
);
3966 _PUBLIC_
enum ndr_err_code
ndr_check_array_length(struct ndr_pull
*ndr
, void *p
, uint32_t length
);
3967 _PUBLIC_
enum ndr_err_code
ndr_push_set_switch_value(struct ndr_push
*ndr
, const void *p
, uint32_t val
);
3968 _PUBLIC_
enum ndr_err_code
ndr_pull_set_switch_value(struct ndr_pull
*ndr
, const void *p
, uint32_t val
);
3969 _PUBLIC_
enum ndr_err_code
ndr_print_set_switch_value(struct ndr_print
*ndr
, const void *p
, uint32_t val
);
3970 _PUBLIC_
uint32_t ndr_push_get_switch_value(struct ndr_push
*ndr
, const void *p
);
3971 _PUBLIC_
uint32_t ndr_pull_get_switch_value(struct ndr_pull
*ndr
, const void *p
);
3972 _PUBLIC_
uint32_t ndr_print_get_switch_value(struct ndr_print
*ndr
, const void *p
);
3973 _PUBLIC_
enum ndr_err_code
ndr_pull_struct_blob(const DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
, void *p
,
3974 ndr_pull_flags_fn_t fn
);
3975 _PUBLIC_
enum ndr_err_code
ndr_pull_struct_blob_all(const DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
, void *p
,
3976 ndr_pull_flags_fn_t fn
);
3977 _PUBLIC_
enum ndr_err_code
ndr_pull_union_blob(const DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
, void *p
,
3978 uint32_t level
, ndr_pull_flags_fn_t fn
);
3979 _PUBLIC_
enum ndr_err_code
ndr_pull_union_blob_all(const DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
, void *p
,
3980 uint32_t level
, ndr_pull_flags_fn_t fn
);
3981 _PUBLIC_
enum ndr_err_code
ndr_push_struct_blob(DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
, const void *p
,
3982 ndr_push_flags_fn_t fn
);
3983 _PUBLIC_
enum ndr_err_code
ndr_push_union_blob(DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
, void *p
,
3984 uint32_t level
, ndr_push_flags_fn_t fn
);
3985 _PUBLIC_
size_t ndr_size_struct(const void *p
, int flags
, ndr_push_flags_fn_t push
);
3986 _PUBLIC_
size_t ndr_size_union(const void *p
, int flags
, uint32_t level
, ndr_push_flags_fn_t push
);
3987 _PUBLIC_
uint32_t ndr_push_get_relative_base_offset(struct ndr_push
*ndr
);
3988 _PUBLIC_
void ndr_push_restore_relative_base_offset(struct ndr_push
*ndr
, uint32_t offset
);
3989 _PUBLIC_
enum ndr_err_code
ndr_push_setup_relative_base_offset1(struct ndr_push
*ndr
, const void *p
, uint32_t offset
);
3990 _PUBLIC_
enum ndr_err_code
ndr_push_setup_relative_base_offset2(struct ndr_push
*ndr
, const void *p
);
3991 _PUBLIC_
enum ndr_err_code
ndr_push_relative_ptr1(struct ndr_push
*ndr
, const void *p
);
3992 _PUBLIC_
enum ndr_err_code
ndr_push_relative_ptr2(struct ndr_push
*ndr
, const void *p
);
3993 _PUBLIC_
uint32_t ndr_pull_get_relative_base_offset(struct ndr_pull
*ndr
);
3994 _PUBLIC_
void ndr_pull_restore_relative_base_offset(struct ndr_pull
*ndr
, uint32_t offset
);
3995 _PUBLIC_
enum ndr_err_code
ndr_pull_setup_relative_base_offset1(struct ndr_pull
*ndr
, const void *p
, uint32_t offset
);
3996 _PUBLIC_
enum ndr_err_code
ndr_pull_setup_relative_base_offset2(struct ndr_pull
*ndr
, const void *p
);
3997 _PUBLIC_
enum ndr_err_code
ndr_pull_relative_ptr1(struct ndr_pull
*ndr
, const void *p
, uint32_t rel_offset
);
3998 _PUBLIC_
enum ndr_err_code
ndr_pull_relative_ptr2(struct ndr_pull
*ndr
, const void *p
);
4000 /* The following definitions come from librpc/ndr/ndr_basic.c */
4002 _PUBLIC_
void ndr_check_padding(struct ndr_pull
*ndr
, size_t n
);
4003 _PUBLIC_
enum ndr_err_code
ndr_pull_int8(struct ndr_pull
*ndr
, int ndr_flags
, int8_t *v
);
4004 _PUBLIC_
enum ndr_err_code
ndr_pull_uint8(struct ndr_pull
*ndr
, int ndr_flags
, uint8_t *v
);
4005 _PUBLIC_
enum ndr_err_code
ndr_pull_int16(struct ndr_pull
*ndr
, int ndr_flags
, int16_t *v
);
4006 _PUBLIC_
enum ndr_err_code
ndr_pull_uint16(struct ndr_pull
*ndr
, int ndr_flags
, uint16_t *v
);
4007 _PUBLIC_
enum ndr_err_code
ndr_pull_int32(struct ndr_pull
*ndr
, int ndr_flags
, int32_t *v
);
4008 _PUBLIC_
enum ndr_err_code
ndr_pull_uint32(struct ndr_pull
*ndr
, int ndr_flags
, uint32_t *v
);
4009 _PUBLIC_
enum ndr_err_code
ndr_pull_generic_ptr(struct ndr_pull
*ndr
, uint32_t *v
);
4010 _PUBLIC_
enum ndr_err_code
ndr_pull_ref_ptr(struct ndr_pull
*ndr
, uint32_t *v
);
4011 _PUBLIC_
enum ndr_err_code
ndr_pull_udlong(struct ndr_pull
*ndr
, int ndr_flags
, uint64_t *v
);
4012 _PUBLIC_
enum ndr_err_code
ndr_pull_udlongr(struct ndr_pull
*ndr
, int ndr_flags
, uint64_t *v
);
4013 _PUBLIC_
enum ndr_err_code
ndr_pull_dlong(struct ndr_pull
*ndr
, int ndr_flags
, int64_t *v
);
4014 _PUBLIC_
enum ndr_err_code
ndr_pull_hyper(struct ndr_pull
*ndr
, int ndr_flags
, uint64_t *v
);
4015 _PUBLIC_
enum ndr_err_code
ndr_pull_pointer(struct ndr_pull
*ndr
, int ndr_flags
, void* *v
);
4016 _PUBLIC_
enum ndr_err_code
ndr_pull_NTSTATUS(struct ndr_pull
*ndr
, int ndr_flags
, NTSTATUS
*status
);
4017 _PUBLIC_
enum ndr_err_code
ndr_push_NTSTATUS(struct ndr_push
*ndr
, int ndr_flags
, NTSTATUS status
);
4018 _PUBLIC_
void ndr_print_NTSTATUS(struct ndr_print
*ndr
, const char *name
, NTSTATUS r
);
4019 _PUBLIC_
enum ndr_err_code
ndr_pull_WERROR(struct ndr_pull
*ndr
, int ndr_flags
, WERROR
*status
);
4020 _PUBLIC_
enum ndr_err_code
ndr_push_WERROR(struct ndr_push
*ndr
, int ndr_flags
, WERROR status
);
4021 _PUBLIC_
void ndr_print_WERROR(struct ndr_print
*ndr
, const char *name
, WERROR r
);
4022 _PUBLIC_
enum ndr_err_code
ndr_pull_bytes(struct ndr_pull
*ndr
, uint8_t *data
, uint32_t n
);
4023 _PUBLIC_
enum ndr_err_code
ndr_pull_array_uint8(struct ndr_pull
*ndr
, int ndr_flags
, uint8_t *data
, uint32_t n
);
4024 _PUBLIC_
enum ndr_err_code
ndr_push_int8(struct ndr_push
*ndr
, int ndr_flags
, int8_t v
);
4025 _PUBLIC_
enum ndr_err_code
ndr_push_uint8(struct ndr_push
*ndr
, int ndr_flags
, uint8_t v
);
4026 _PUBLIC_
enum ndr_err_code
ndr_push_int16(struct ndr_push
*ndr
, int ndr_flags
, int16_t v
);
4027 _PUBLIC_
enum ndr_err_code
ndr_push_uint16(struct ndr_push
*ndr
, int ndr_flags
, uint16_t v
);
4028 _PUBLIC_
enum ndr_err_code
ndr_push_int32(struct ndr_push
*ndr
, int ndr_flags
, int32_t v
);
4029 _PUBLIC_
enum ndr_err_code
ndr_push_uint32(struct ndr_push
*ndr
, int ndr_flags
, uint32_t v
);
4030 _PUBLIC_
enum ndr_err_code
ndr_push_udlong(struct ndr_push
*ndr
, int ndr_flags
, uint64_t v
);
4031 _PUBLIC_
enum ndr_err_code
ndr_push_udlongr(struct ndr_push
*ndr
, int ndr_flags
, uint64_t v
);
4032 _PUBLIC_
enum ndr_err_code
ndr_push_dlong(struct ndr_push
*ndr
, int ndr_flags
, int64_t v
);
4033 _PUBLIC_
enum ndr_err_code
ndr_push_hyper(struct ndr_push
*ndr
, int ndr_flags
, uint64_t v
);
4034 _PUBLIC_
enum ndr_err_code
ndr_push_pointer(struct ndr_push
*ndr
, int ndr_flags
, void* v
);
4035 _PUBLIC_
enum ndr_err_code
ndr_push_align(struct ndr_push
*ndr
, size_t size
);
4036 _PUBLIC_
enum ndr_err_code
ndr_pull_align(struct ndr_pull
*ndr
, size_t size
);
4037 _PUBLIC_
enum ndr_err_code
ndr_push_bytes(struct ndr_push
*ndr
, const uint8_t *data
, uint32_t n
);
4038 _PUBLIC_
enum ndr_err_code
ndr_push_zero(struct ndr_push
*ndr
, uint32_t n
);
4039 _PUBLIC_
enum ndr_err_code
ndr_push_array_uint8(struct ndr_push
*ndr
, int ndr_flags
, const uint8_t *data
, uint32_t n
);
4040 _PUBLIC_
void ndr_push_save(struct ndr_push
*ndr
, struct ndr_push_save
*save
);
4041 _PUBLIC_
void ndr_push_restore(struct ndr_push
*ndr
, struct ndr_push_save
*save
);
4042 _PUBLIC_
enum ndr_err_code
ndr_push_unique_ptr(struct ndr_push
*ndr
, const void *p
);
4043 _PUBLIC_
enum ndr_err_code
ndr_push_full_ptr(struct ndr_push
*ndr
, const void *p
);
4044 _PUBLIC_
enum ndr_err_code
ndr_push_ref_ptr(struct ndr_push
*ndr
);
4045 _PUBLIC_
enum ndr_err_code
ndr_push_NTTIME(struct ndr_push
*ndr
, int ndr_flags
, NTTIME t
);
4046 _PUBLIC_
enum ndr_err_code
ndr_pull_NTTIME(struct ndr_pull
*ndr
, int ndr_flags
, NTTIME
*t
);
4047 _PUBLIC_
enum ndr_err_code
ndr_push_NTTIME_1sec(struct ndr_push
*ndr
, int ndr_flags
, NTTIME t
);
4048 _PUBLIC_
enum ndr_err_code
ndr_pull_NTTIME_1sec(struct ndr_pull
*ndr
, int ndr_flags
, NTTIME
*t
);
4049 _PUBLIC_
enum ndr_err_code
ndr_pull_NTTIME_hyper(struct ndr_pull
*ndr
, int ndr_flags
, NTTIME
*t
);
4050 _PUBLIC_
enum ndr_err_code
ndr_push_NTTIME_hyper(struct ndr_push
*ndr
, int ndr_flags
, NTTIME t
);
4051 _PUBLIC_
enum ndr_err_code
ndr_push_time_t(struct ndr_push
*ndr
, int ndr_flags
, time_t t
);
4052 _PUBLIC_
enum ndr_err_code
ndr_pull_time_t(struct ndr_pull
*ndr
, int ndr_flags
, time_t *t
);
4053 _PUBLIC_
enum ndr_err_code
ndr_pull_ipv4address(struct ndr_pull
*ndr
, int ndr_flags
, const char **address
);
4054 _PUBLIC_
enum ndr_err_code
ndr_push_ipv4address(struct ndr_push
*ndr
, int ndr_flags
, const char *address
);
4055 _PUBLIC_
void ndr_print_ipv4address(struct ndr_print
*ndr
, const char *name
,
4056 const char *address
);
4057 _PUBLIC_
void ndr_print_struct(struct ndr_print
*ndr
, const char *name
, const char *type
);
4058 _PUBLIC_
void ndr_print_enum(struct ndr_print
*ndr
, const char *name
, const char *type
,
4059 const char *val
, uint32_t value
);
4060 _PUBLIC_
void ndr_print_bitmap_flag(struct ndr_print
*ndr
, size_t size
, const char *flag_name
, uint32_t flag
, uint32_t value
);
4061 _PUBLIC_
void ndr_print_int8(struct ndr_print
*ndr
, const char *name
, int8_t v
);
4062 _PUBLIC_
void ndr_print_uint8(struct ndr_print
*ndr
, const char *name
, uint8_t v
);
4063 _PUBLIC_
void ndr_print_int16(struct ndr_print
*ndr
, const char *name
, int16_t v
);
4064 _PUBLIC_
void ndr_print_uint16(struct ndr_print
*ndr
, const char *name
, uint16_t v
);
4065 _PUBLIC_
void ndr_print_int32(struct ndr_print
*ndr
, const char *name
, int32_t v
);
4066 _PUBLIC_
void ndr_print_uint32(struct ndr_print
*ndr
, const char *name
, uint32_t v
);
4067 _PUBLIC_
void ndr_print_udlong(struct ndr_print
*ndr
, const char *name
, uint64_t v
);
4068 _PUBLIC_
void ndr_print_udlongr(struct ndr_print
*ndr
, const char *name
, uint64_t v
);
4069 _PUBLIC_
void ndr_print_dlong(struct ndr_print
*ndr
, const char *name
, int64_t v
);
4070 _PUBLIC_
void ndr_print_hyper(struct ndr_print
*ndr
, const char *name
, uint64_t v
);
4071 _PUBLIC_
void ndr_print_pointer(struct ndr_print
*ndr
, const char *name
, void *v
);
4072 _PUBLIC_
void ndr_print_ptr(struct ndr_print
*ndr
, const char *name
, const void *p
);
4073 _PUBLIC_
void ndr_print_NTTIME(struct ndr_print
*ndr
, const char *name
, NTTIME t
);
4074 _PUBLIC_
void ndr_print_NTTIME_1sec(struct ndr_print
*ndr
, const char *name
, NTTIME t
);
4075 _PUBLIC_
void ndr_print_NTTIME_hyper(struct ndr_print
*ndr
, const char *name
, NTTIME t
);
4076 _PUBLIC_
void ndr_print_time_t(struct ndr_print
*ndr
, const char *name
, time_t t
);
4077 _PUBLIC_
void ndr_print_union(struct ndr_print
*ndr
, const char *name
, int level
, const char *type
);
4078 _PUBLIC_
void ndr_print_bad_level(struct ndr_print
*ndr
, const char *name
, uint16_t level
);
4079 _PUBLIC_
void ndr_print_array_uint8(struct ndr_print
*ndr
, const char *name
,
4080 const uint8_t *data
, uint32_t count
);
4081 _PUBLIC_
void ndr_print_DATA_BLOB(struct ndr_print
*ndr
, const char *name
, DATA_BLOB r
);
4082 _PUBLIC_
enum ndr_err_code
ndr_push_DATA_BLOB(struct ndr_push
*ndr
, int ndr_flags
, DATA_BLOB blob
);
4083 _PUBLIC_
enum ndr_err_code
ndr_pull_DATA_BLOB(struct ndr_pull
*ndr
, int ndr_flags
, DATA_BLOB
*blob
);
4084 _PUBLIC_
uint32_t ndr_size_DATA_BLOB(int ret
, const DATA_BLOB
*data
, int flags
);
4085 _PUBLIC_
void ndr_print_bool(struct ndr_print
*ndr
, const char *name
, const bool b
);
4086 _PUBLIC_
void ndr_print_sockaddr_storage(struct ndr_print
*ndr
, const char *name
, const struct sockaddr_storage
*ss
);
4088 /* The following definitions come from librpc/ndr/ndr_krb5pac.c */
4090 enum ndr_err_code
ndr_push_PAC_BUFFER(struct ndr_push
*ndr
, int ndr_flags
, const struct PAC_BUFFER
*r
);
4091 enum ndr_err_code
ndr_pull_PAC_BUFFER(struct ndr_pull
*ndr
, int ndr_flags
, struct PAC_BUFFER
*r
);
4092 void ndr_print_PAC_BUFFER(struct ndr_print
*ndr
, const char *name
, const struct PAC_BUFFER
*r
);
4094 /* The following definitions come from librpc/ndr/ndr_misc.c */
4096 bool all_zero(const uint8_t *ptr
, size_t size
);
4097 void ndr_print_GUID(struct ndr_print
*ndr
, const char *name
, const struct GUID
*guid
);
4098 enum ndr_err_code
ndr_push_server_id(struct ndr_push
*ndr
, int ndr_flags
, const struct server_id
*r
);
4099 enum ndr_err_code
ndr_pull_server_id(struct ndr_pull
*ndr
, int ndr_flags
, struct server_id
*r
);
4100 void ndr_print_server_id(struct ndr_print
*ndr
, const char *name
, const struct server_id
*r
);
4102 /* The following definitions come from librpc/ndr/ndr_sec_helper.c */
4104 size_t ndr_size_dom_sid(const struct dom_sid
*sid
, int flags
);
4105 size_t ndr_size_dom_sid28(const struct dom_sid
*sid
, int flags
);
4106 size_t ndr_size_dom_sid0(const struct dom_sid
*sid
, int flags
);
4107 size_t ndr_size_security_ace(const struct security_ace
*ace
, int flags
);
4108 size_t ndr_size_security_acl(const struct security_acl
*acl
, int flags
);
4109 size_t ndr_size_security_descriptor(const struct security_descriptor
*sd
, int flags
);
4110 void ndr_print_dom_sid(struct ndr_print
*ndr
, const char *name
, const struct dom_sid
*sid
);
4111 void ndr_print_dom_sid2(struct ndr_print
*ndr
, const char *name
, const struct dom_sid
*sid
);
4112 void ndr_print_dom_sid28(struct ndr_print
*ndr
, const char *name
, const struct dom_sid
*sid
);
4113 void ndr_print_dom_sid0(struct ndr_print
*ndr
, const char *name
, const struct dom_sid
*sid
);
4115 /* The following definitions come from librpc/ndr/ndr_string.c */
4117 _PUBLIC_
enum ndr_err_code
ndr_pull_string(struct ndr_pull
*ndr
, int ndr_flags
, const char **s
);
4118 _PUBLIC_
enum ndr_err_code
ndr_push_string(struct ndr_push
*ndr
, int ndr_flags
, const char *s
);
4119 _PUBLIC_
size_t ndr_string_array_size(struct ndr_push
*ndr
, const char *s
);
4120 _PUBLIC_
void ndr_print_string(struct ndr_print
*ndr
, const char *name
, const char *s
);
4121 _PUBLIC_
uint32_t ndr_size_string(int ret
, const char * const* string
, int flags
) ;
4122 _PUBLIC_
enum ndr_err_code
ndr_pull_string_array(struct ndr_pull
*ndr
, int ndr_flags
, const char ***_a
);
4123 _PUBLIC_
enum ndr_err_code
ndr_push_string_array(struct ndr_push
*ndr
, int ndr_flags
, const char **a
);
4124 _PUBLIC_
void ndr_print_string_array(struct ndr_print
*ndr
, const char *name
, const char **a
);
4125 _PUBLIC_
uint32_t ndr_string_length(const void *_var
, uint32_t element_size
);
4126 _PUBLIC_
enum ndr_err_code
ndr_check_string_terminator(struct ndr_pull
*ndr
, uint32_t count
, uint32_t element_size
);
4127 _PUBLIC_
enum ndr_err_code
ndr_pull_charset(struct ndr_pull
*ndr
, int ndr_flags
, const char **var
, uint32_t length
, uint8_t byte_mul
, charset_t chset
);
4128 _PUBLIC_
enum ndr_err_code
ndr_push_charset(struct ndr_push
*ndr
, int ndr_flags
, const char *var
, uint32_t length
, uint8_t byte_mul
, charset_t chset
);
4129 _PUBLIC_
uint32_t ndr_charset_length(const void *var
, charset_t chset
);
4131 /* The following definitions come from librpc/ndr/sid.c */
4133 enum ndr_err_code
ndr_push_dom_sid(struct ndr_push
*ndr
, int ndr_flags
, const struct dom_sid
*r
);
4134 enum ndr_err_code
ndr_pull_dom_sid(struct ndr_pull
*ndr
, int ndr_flags
, struct dom_sid
*r
);
4135 char *dom_sid_string(TALLOC_CTX
*mem_ctx
, const struct dom_sid
*sid
);
4136 enum ndr_err_code
ndr_pull_dom_sid2(struct ndr_pull
*ndr
, int ndr_flags
, struct dom_sid
*sid
);
4137 enum ndr_err_code
ndr_push_dom_sid2(struct ndr_push
*ndr
, int ndr_flags
, const struct dom_sid
*sid
);
4138 enum ndr_err_code
ndr_pull_dom_sid28(struct ndr_pull
*ndr
, int ndr_flags
, struct dom_sid
*sid
);
4139 enum ndr_err_code
ndr_push_dom_sid28(struct ndr_push
*ndr
, int ndr_flags
, const struct dom_sid
*sid
);
4140 enum ndr_err_code
ndr_pull_dom_sid0(struct ndr_pull
*ndr
, int ndr_flags
, struct dom_sid
*sid
);
4141 enum ndr_err_code
ndr_push_dom_sid0(struct ndr_push
*ndr
, int ndr_flags
, const struct dom_sid
*sid
);
4143 /* The following definitions come from librpc/ndr/uuid.c */
4145 _PUBLIC_ NTSTATUS
GUID_from_string(const char *s
, struct GUID
*guid
);
4146 _PUBLIC_ NTSTATUS
NS_GUID_from_string(const char *s
, struct GUID
*guid
);
4147 struct GUID
GUID_random(void);
4148 _PUBLIC_
struct GUID
GUID_zero(void);
4149 _PUBLIC_
bool GUID_all_zero(const struct GUID
*u
);
4150 _PUBLIC_
bool GUID_equal(const struct GUID
*u1
, const struct GUID
*u2
);
4151 _PUBLIC_
int GUID_compare(const struct GUID
*u1
, const struct GUID
*u2
);
4152 _PUBLIC_
char *GUID_string(TALLOC_CTX
*mem_ctx
, const struct GUID
*guid
);
4153 _PUBLIC_
char *GUID_string2(TALLOC_CTX
*mem_ctx
, const struct GUID
*guid
);
4154 _PUBLIC_
char *NS_GUID_string(TALLOC_CTX
*mem_ctx
, const struct GUID
*guid
);
4155 _PUBLIC_
bool policy_handle_empty(struct policy_handle
*h
) ;
4157 /* The following definitions come from librpc/rpc/binding.c */
4159 const char *epm_floor_string(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
);
4160 _PUBLIC_
char *dcerpc_binding_string(TALLOC_CTX
*mem_ctx
, const struct dcerpc_binding
*b
);
4161 _PUBLIC_ NTSTATUS
dcerpc_parse_binding(TALLOC_CTX
*mem_ctx
, const char *s
, struct dcerpc_binding
**b_out
);
4162 _PUBLIC_ NTSTATUS
dcerpc_floor_get_lhs_data(struct epm_floor
*epm_floor
, struct ndr_syntax_id
*syntax
);
4163 const char *dcerpc_floor_get_rhs_data(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
);
4164 enum dcerpc_transport_t
dcerpc_transport_by_endpoint_protocol(int prot
);
4165 _PUBLIC_
enum dcerpc_transport_t
dcerpc_transport_by_tower(struct epm_tower
*tower
);
4166 _PUBLIC_ NTSTATUS
dcerpc_binding_from_tower(TALLOC_CTX
*mem_ctx
,
4167 struct epm_tower
*tower
,
4168 struct dcerpc_binding
**b_out
);
4169 _PUBLIC_ NTSTATUS
dcerpc_binding_build_tower(TALLOC_CTX
*mem_ctx
, struct dcerpc_binding
*binding
, struct epm_tower
*tower
);
4171 /* The following definitions come from librpc/rpc/dcerpc.c */
4173 struct rpc_request
*dcerpc_ndr_request_send(struct dcerpc_pipe
*p
, const struct GUID
*object
,
4174 const struct ndr_interface_table
*table
, uint32_t opnum
,
4175 TALLOC_CTX
*mem_ctx
, void *r
);
4176 NTSTATUS
dcerpc_ndr_request_recv(struct rpc_request
*req
);
4177 _PUBLIC_ NTSTATUS
dcerpc_pipe_connect(TALLOC_CTX
*parent_ctx
, struct dcerpc_pipe
**pp
,
4178 const char *binding_string
, const struct ndr_interface_table
*table
,
4179 struct cli_credentials
*credentials
, struct event_context
*ev
,
4180 struct loadparm_context
*lp_ctx
);
4182 /* The following definitions come from libsmb/asn1.c */
4184 void asn1_free(ASN1_DATA
*data
);
4185 bool asn1_write(ASN1_DATA
*data
, const void *p
, int len
);
4186 bool asn1_write_uint8(ASN1_DATA
*data
, uint8 v
);
4187 bool asn1_push_tag(ASN1_DATA
*data
, uint8 tag
);
4188 bool asn1_pop_tag(ASN1_DATA
*data
);
4189 bool asn1_write_Integer(ASN1_DATA
*data
, int i
);
4190 bool asn1_write_OID(ASN1_DATA
*data
, const char *OID
);
4191 bool asn1_write_OctetString(ASN1_DATA
*data
, const void *p
, size_t length
);
4192 bool asn1_write_GeneralString(ASN1_DATA
*data
, const char *s
);
4193 bool asn1_write_BOOLEAN(ASN1_DATA
*data
, bool v
);
4194 bool asn1_write_BOOLEAN2(ASN1_DATA
*data
, bool v
);
4195 bool asn1_check_BOOLEAN(ASN1_DATA
*data
, bool v
);
4196 bool asn1_load(ASN1_DATA
*data
, DATA_BLOB blob
);
4197 bool asn1_read(ASN1_DATA
*data
, void *p
, int len
);
4198 bool asn1_read_uint8(ASN1_DATA
*data
, uint8
*v
);
4199 bool asn1_check_tag(ASN1_DATA
*data
, uint8 tag
);
4200 bool asn1_start_tag(ASN1_DATA
*data
, uint8 tag
);
4201 bool asn1_end_tag(ASN1_DATA
*data
);
4202 int asn1_tag_remaining(ASN1_DATA
*data
);
4203 bool asn1_read_OID(ASN1_DATA
*data
, char **OID
);
4204 bool asn1_check_OID(ASN1_DATA
*data
, const char *OID
);
4205 bool asn1_read_GeneralString(ASN1_DATA
*data
, char **s
);
4206 bool asn1_read_OctetString(ASN1_DATA
*data
, DATA_BLOB
*blob
);
4207 bool asn1_read_Integer(ASN1_DATA
*data
, int *i
);
4208 bool asn1_check_enumerated(ASN1_DATA
*data
, int v
);
4209 bool asn1_write_enumerated(ASN1_DATA
*data
, uint8 v
);
4210 bool ber_write_OID_String(DATA_BLOB
*blob
, const char *OID
);
4211 bool ber_read_OID_String(TALLOC_CTX
*mem_ctx
, DATA_BLOB blob
, const char **OID
);
4213 /* The following definitions come from libsmb/async_smb.c */
4215 NTSTATUS
cli_pull_error(char *buf
);
4216 void cli_set_error(struct cli_state
*cli
, NTSTATUS status
);
4217 struct async_req
*cli_request_new(TALLOC_CTX
*mem_ctx
,
4218 struct event_context
*ev
,
4219 struct cli_state
*cli
,
4220 uint8_t num_words
, size_t num_bytes
,
4221 struct cli_request
**preq
);
4222 struct cli_request
*cli_request_get(struct async_req
*req
);
4223 struct cli_tmp_event
*cli_tmp_event_ctx(TALLOC_CTX
*mem_ctx
,
4224 struct cli_state
*cli
);
4225 NTSTATUS
cli_add_event_ctx(struct cli_state
*cli
,
4226 struct event_context
*event_ctx
);
4228 /* The following definitions come from libsmb/cliconnect.c */
4230 ADS_STATUS
cli_session_setup_spnego(struct cli_state
*cli
, const char *user
,
4231 const char *pass
, const char *user_domain
,
4232 const char * dest_realm
);
4234 NTSTATUS
cli_session_setup(struct cli_state
*cli
,
4236 const char *pass
, int passlen
,
4237 const char *ntpass
, int ntpasslen
,
4238 const char *workgroup
);
4239 bool cli_ulogoff(struct cli_state
*cli
);
4240 bool cli_send_tconX(struct cli_state
*cli
,
4241 const char *share
, const char *dev
, const char *pass
, int passlen
);
4242 bool cli_tdis(struct cli_state
*cli
);
4243 void cli_negprot_send(struct cli_state
*cli
);
4244 bool cli_negprot(struct cli_state
*cli
);
4245 bool cli_session_request(struct cli_state
*cli
,
4246 struct nmb_name
*calling
, struct nmb_name
*called
);
4247 NTSTATUS
cli_connect(struct cli_state
*cli
,
4249 struct sockaddr_storage
*dest_ss
);
4250 NTSTATUS
cli_start_connection(struct cli_state
**output_cli
,
4251 const char *my_name
,
4252 const char *dest_host
,
4253 struct sockaddr_storage
*dest_ss
, int port
,
4254 int signing_state
, int flags
,
4256 NTSTATUS
cli_full_connection(struct cli_state
**output_cli
,
4257 const char *my_name
,
4258 const char *dest_host
,
4259 struct sockaddr_storage
*dest_ss
, int port
,
4260 const char *service
, const char *service_type
,
4261 const char *user
, const char *domain
,
4262 const char *password
, int flags
,
4265 bool attempt_netbios_session_request(struct cli_state
**ppcli
, const char *srchost
, const char *desthost
,
4266 struct sockaddr_storage
*pdest_ss
);
4267 NTSTATUS
cli_raw_tcon(struct cli_state
*cli
,
4268 const char *service
, const char *pass
, const char *dev
,
4269 uint16
*max_xmit
, uint16
*tid
);
4270 struct cli_state
*get_ipc_connect(char *server
,
4271 struct sockaddr_storage
*server_ss
,
4272 const struct user_auth_info
*user_info
);
4273 struct cli_state
*get_ipc_connect_master_ip(TALLOC_CTX
*ctx
,
4274 struct ip_service
*mb_ip
,
4275 const struct user_auth_info
*user_info
,
4276 char **pp_workgroup_out
);
4277 struct cli_state
*get_ipc_connect_master_ip_bcast(TALLOC_CTX
*ctx
,
4278 const struct user_auth_info
*user_info
,
4279 char **pp_workgroup_out
);
4281 /* The following definitions come from libsmb/clidfs.c */
4283 NTSTATUS
cli_cm_force_encryption(struct cli_state
*c
,
4284 const char *username
,
4285 const char *password
,
4287 const char *sharename
);
4288 const char *cli_cm_get_mntpoint(struct cli_state
*c
);
4289 struct cli_state
*cli_cm_open(TALLOC_CTX
*ctx
,
4290 struct cli_state
*referring_cli
,
4294 bool force_encrypt
);
4295 void cli_cm_shutdown(void);
4296 void cli_cm_display(void);
4297 void cli_cm_set_credentials(void);
4298 void cli_cm_set_port(int port_number
);
4299 void cli_cm_set_dest_name_type(int type
);
4300 void cli_cm_set_signing_state(int state
);
4301 void cli_cm_set_username(const char *username
);
4302 void cli_cm_set_password(const char *newpass
);
4303 void cli_cm_set_use_kerberos(void);
4304 void cli_cm_set_fallback_after_kerberos(void);
4305 void cli_cm_set_dest_ss(struct sockaddr_storage
*pss
);
4306 bool cli_dfs_get_referral(TALLOC_CTX
*ctx
,
4307 struct cli_state
*cli
,
4309 CLIENT_DFS_REFERRAL
**refs
,
4312 bool cli_resolve_path(TALLOC_CTX
*ctx
,
4313 const char *mountpt
,
4314 struct cli_state
*rootcli
,
4316 struct cli_state
**targetcli
,
4317 char **pp_targetpath
);
4319 /* The following definitions come from libsmb/clidgram.c */
4321 bool cli_send_mailslot(struct messaging_context
*msg_ctx
,
4322 bool unique
, const char *mailslot
,
4325 const char *srcname
, int src_type
,
4326 const char *dstname
, int dest_type
,
4327 const struct sockaddr_storage
*dest_ss
);
4328 bool send_getdc_request(TALLOC_CTX
*mem_ctx
,
4329 struct messaging_context
*msg_ctx
,
4330 struct sockaddr_storage
*dc_ss
,
4331 const char *domain_name
,
4333 uint32_t nt_version
);
4334 bool receive_getdc_response(TALLOC_CTX
*mem_ctx
,
4335 struct sockaddr_storage
*dc_ss
,
4336 const char *domain_name
,
4337 uint32_t *nt_version
,
4338 const char **dc_name
,
4339 union nbt_cldap_netlogon
**reply
);
4341 /* The following definitions come from libsmb/clientgen.c */
4343 int cli_set_message(char *buf
,int num_words
,int num_bytes
,bool zero
);
4344 unsigned int cli_set_timeout(struct cli_state
*cli
, unsigned int timeout
);
4345 int cli_set_port(struct cli_state
*cli
, int port
);
4346 bool cli_receive_smb(struct cli_state
*cli
);
4347 ssize_t
cli_receive_smb_data(struct cli_state
*cli
, char *buffer
, size_t len
);
4348 bool cli_receive_smb_readX_header(struct cli_state
*cli
);
4349 bool cli_send_smb(struct cli_state
*cli
);
4350 bool cli_send_smb_direct_writeX(struct cli_state
*cli
,
4353 void cli_setup_packet_buf(struct cli_state
*cli
, char *buf
);
4354 void cli_setup_packet(struct cli_state
*cli
);
4355 void cli_setup_bcc(struct cli_state
*cli
, void *p
);
4356 void cli_init_creds(struct cli_state
*cli
, const char *username
, const char *domain
, const char *password
);
4357 void cli_setup_signing_state(struct cli_state
*cli
, int signing_state
);
4358 struct cli_state
*cli_initialise(void);
4359 void cli_nt_pipes_close(struct cli_state
*cli
);
4360 void cli_shutdown(struct cli_state
*cli
);
4361 void cli_sockopt(struct cli_state
*cli
, const char *options
);
4362 uint16
cli_setpid(struct cli_state
*cli
, uint16 pid
);
4363 bool cli_set_case_sensitive(struct cli_state
*cli
, bool case_sensitive
);
4364 bool cli_send_keepalive(struct cli_state
*cli
);
4365 bool cli_echo(struct cli_state
*cli
, uint16 num_echos
,
4366 unsigned char *data
, size_t length
);
4368 /* The following definitions come from libsmb/clierror.c */
4370 const char *cli_errstr(struct cli_state
*cli
);
4371 NTSTATUS
cli_nt_error(struct cli_state
*cli
);
4372 void cli_dos_error(struct cli_state
*cli
, uint8
*eclass
, uint32
*ecode
);
4373 int cli_errno(struct cli_state
*cli
);
4374 bool cli_is_error(struct cli_state
*cli
);
4375 bool cli_is_nt_error(struct cli_state
*cli
);
4376 bool cli_is_dos_error(struct cli_state
*cli
);
4377 NTSTATUS
cli_get_nt_error(struct cli_state
*cli
);
4378 void cli_set_nt_error(struct cli_state
*cli
, NTSTATUS status
);
4379 void cli_reset_error(struct cli_state
*cli
);
4381 /* The following definitions come from libsmb/clifile.c */
4383 uint32
unix_perms_to_wire(mode_t perms
);
4384 mode_t
wire_perms_to_unix(uint32 perms
);
4385 bool cli_unix_getfacl(struct cli_state
*cli
, const char *name
, size_t *prb_size
, char **retbuf
);
4386 bool cli_unix_stat(struct cli_state
*cli
, const char *name
, SMB_STRUCT_STAT
*sbuf
);
4387 bool cli_unix_symlink(struct cli_state
*cli
, const char *oldname
, const char *newname
);
4388 bool cli_unix_hardlink(struct cli_state
*cli
, const char *oldname
, const char *newname
);
4389 bool cli_unix_chmod(struct cli_state
*cli
, const char *fname
, mode_t mode
);
4390 bool cli_unix_chown(struct cli_state
*cli
, const char *fname
, uid_t uid
, gid_t gid
);
4391 bool cli_rename(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
4392 bool cli_ntrename(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
4393 bool cli_nt_hardlink(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
4394 bool cli_unlink_full(struct cli_state
*cli
, const char *fname
, uint16 attrs
);
4395 bool cli_unlink(struct cli_state
*cli
, const char *fname
);
4396 bool cli_mkdir(struct cli_state
*cli
, const char *dname
);
4397 bool cli_rmdir(struct cli_state
*cli
, const char *dname
);
4398 int cli_nt_delete_on_close(struct cli_state
*cli
, int fnum
, bool flag
);
4399 int cli_nt_create_full(struct cli_state
*cli
, const char *fname
,
4400 uint32 CreatFlags
, uint32 DesiredAccess
,
4401 uint32 FileAttributes
, uint32 ShareAccess
,
4402 uint32 CreateDisposition
, uint32 CreateOptions
,
4403 uint8 SecuityFlags
);
4404 int cli_nt_create(struct cli_state
*cli
, const char *fname
, uint32 DesiredAccess
);
4405 int cli_open(struct cli_state
*cli
, const char *fname
, int flags
, int share_mode
);
4406 bool cli_close(struct cli_state
*cli
, int fnum
);
4407 bool cli_ftruncate(struct cli_state
*cli
, int fnum
, uint64_t size
);
4408 NTSTATUS
cli_locktype(struct cli_state
*cli
, int fnum
,
4409 uint32 offset
, uint32 len
,
4410 int timeout
, unsigned char locktype
);
4411 bool cli_lock(struct cli_state
*cli
, int fnum
,
4412 uint32 offset
, uint32 len
, int timeout
, enum brl_type lock_type
);
4413 bool cli_unlock(struct cli_state
*cli
, int fnum
, uint32 offset
, uint32 len
);
4414 bool cli_lock64(struct cli_state
*cli
, int fnum
,
4415 SMB_BIG_UINT offset
, SMB_BIG_UINT len
, int timeout
, enum brl_type lock_type
);
4416 bool cli_unlock64(struct cli_state
*cli
, int fnum
, SMB_BIG_UINT offset
, SMB_BIG_UINT len
);
4417 bool cli_posix_lock(struct cli_state
*cli
, int fnum
,
4418 SMB_BIG_UINT offset
, SMB_BIG_UINT len
,
4419 bool wait_lock
, enum brl_type lock_type
);
4420 bool cli_posix_unlock(struct cli_state
*cli
, int fnum
, SMB_BIG_UINT offset
, SMB_BIG_UINT len
);
4421 bool cli_posix_getlock(struct cli_state
*cli
, int fnum
, SMB_BIG_UINT
*poffset
, SMB_BIG_UINT
*plen
);
4422 bool cli_getattrE(struct cli_state
*cli
, int fd
,
4423 uint16
*attr
, SMB_OFF_T
*size
,
4424 time_t *change_time
,
4425 time_t *access_time
,
4426 time_t *write_time
);
4427 bool cli_getatr(struct cli_state
*cli
, const char *fname
,
4428 uint16
*attr
, SMB_OFF_T
*size
, time_t *write_time
);
4429 bool cli_setattrE(struct cli_state
*cli
, int fd
,
4433 bool cli_setatr(struct cli_state
*cli
, const char *fname
, uint16 attr
, time_t t
);
4434 bool cli_chkpath(struct cli_state
*cli
, const char *path
);
4435 bool cli_dskattr(struct cli_state
*cli
, int *bsize
, int *total
, int *avail
);
4436 int cli_ctemp(struct cli_state
*cli
, const char *path
, char **tmp_path
);
4437 NTSTATUS
cli_raw_ioctl(struct cli_state
*cli
, int fnum
, uint32 code
, DATA_BLOB
*blob
);
4438 bool cli_set_ea_path(struct cli_state
*cli
, const char *path
, const char *ea_name
, const char *ea_val
, size_t ea_len
);
4439 bool cli_set_ea_fnum(struct cli_state
*cli
, int fnum
, const char *ea_name
, const char *ea_val
, size_t ea_len
);
4440 bool cli_get_ea_list_path(struct cli_state
*cli
, const char *path
,
4443 struct ea_struct
**pea_list
);
4444 bool cli_get_ea_list_fnum(struct cli_state
*cli
, int fnum
,
4447 struct ea_struct
**pea_list
);
4448 int cli_posix_open(struct cli_state
*cli
, const char *fname
, int flags
, mode_t mode
);
4449 int cli_posix_mkdir(struct cli_state
*cli
, const char *fname
, mode_t mode
);
4450 bool cli_posix_unlink(struct cli_state
*cli
, const char *fname
);
4451 int cli_posix_rmdir(struct cli_state
*cli
, const char *fname
);
4453 /* The following definitions come from libsmb/clifsinfo.c */
4455 bool cli_unix_extensions_version(struct cli_state
*cli
, uint16
*pmajor
, uint16
*pminor
,
4456 uint32
*pcaplow
, uint32
*pcaphigh
);
4457 bool cli_set_unix_extensions_capabilities(struct cli_state
*cli
, uint16 major
, uint16 minor
,
4458 uint32 caplow
, uint32 caphigh
);
4459 bool cli_get_fs_attr_info(struct cli_state
*cli
, uint32
*fs_attr
);
4460 bool cli_get_fs_volume_info_old(struct cli_state
*cli
, fstring volume_name
, uint32
*pserial_number
);
4461 bool cli_get_fs_volume_info(struct cli_state
*cli
, fstring volume_name
, uint32
*pserial_number
, time_t *pdate
);
4462 NTSTATUS
cli_raw_ntlm_smb_encryption_start(struct cli_state
*cli
,
4465 const char *domain
);
4466 NTSTATUS
cli_gss_smb_encryption_start(struct cli_state
*cli
);
4467 NTSTATUS
cli_gss_smb_encryption_start(struct cli_state
*cli
);
4468 NTSTATUS
cli_force_encryption(struct cli_state
*c
,
4469 const char *username
,
4470 const char *password
,
4471 const char *domain
);
4473 /* The following definitions come from libsmb/clikrb5.c */
4475 bool unwrap_edata_ntstatus(TALLOC_CTX
*mem_ctx
,
4477 DATA_BLOB
*edata_out
);
4478 bool unwrap_pac(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*auth_data
, DATA_BLOB
*unwrapped_pac_data
);
4479 int cli_krb5_get_ticket(const char *principal
, time_t time_offset
,
4480 DATA_BLOB
*ticket
, DATA_BLOB
*session_key_krb5
,
4481 uint32 extra_ap_opts
, const char *ccname
,
4482 time_t *tgs_expire
);
4484 /* The following definitions come from libsmb/clilist.c */
4486 int cli_list_new(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
4487 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
4488 int cli_list_old(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
4489 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
4490 int cli_list(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
4491 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
4493 /* The following definitions come from libsmb/climessage.c */
4495 int cli_message_start_build(struct cli_state
*cli
, const char *host
, const char *username
);
4496 bool cli_message_start(struct cli_state
*cli
, const char *host
, const char *username
,
4498 int cli_message_text_build(struct cli_state
*cli
, const char *msg
, int len
, int grp
);
4499 bool cli_message_text(struct cli_state
*cli
, const char *msg
, int len
, int grp
);
4500 int cli_message_end_build(struct cli_state
*cli
, int grp
);
4501 bool cli_message_end(struct cli_state
*cli
, int grp
);
4503 /* The following definitions come from libsmb/clioplock.c */
4505 bool cli_oplock_ack(struct cli_state
*cli
, int fnum
, unsigned char level
);
4506 void cli_oplock_handler(struct cli_state
*cli
,
4507 bool (*handler
)(struct cli_state
*, int, unsigned char));
4509 /* The following definitions come from libsmb/cliprint.c */
4511 int cli_print_queue(struct cli_state
*cli
,
4512 void (*fn
)(struct print_job_info
*));
4513 int cli_printjob_del(struct cli_state
*cli
, int job
);
4514 int cli_spl_open(struct cli_state
*cli
, const char *fname
, int flags
, int share_mode
);
4515 bool cli_spl_close(struct cli_state
*cli
, int fnum
);
4517 /* The following definitions come from libsmb/cliquota.c */
4519 bool cli_get_quota_handle(struct cli_state
*cli
, int *quota_fnum
);
4520 void free_ntquota_list(SMB_NTQUOTA_LIST
**qt_list
);
4521 bool cli_get_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
4522 bool cli_set_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
4523 bool cli_list_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_LIST
**pqt_list
);
4524 bool cli_get_fs_quota_info(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
4525 bool cli_set_fs_quota_info(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
4526 void dump_ntquota(SMB_NTQUOTA_STRUCT
*qt
, bool _verbose
, bool _numeric
, void (*_sidtostring
)(fstring str
, DOM_SID
*sid
, bool _numeric
));
4527 void dump_ntquota_list(SMB_NTQUOTA_LIST
**qtl
, bool _verbose
, bool _numeric
, void (*_sidtostring
)(fstring str
, DOM_SID
*sid
, bool _numeric
));
4529 /* The following definitions come from libsmb/clirap.c */
4531 bool cli_api_pipe(struct cli_state
*cli
, const char *pipe_name
,
4532 uint16
*setup
, uint32 setup_count
, uint32 max_setup_count
,
4533 char *params
, uint32 param_count
, uint32 max_param_count
,
4534 char *data
, uint32 data_count
, uint32 max_data_count
,
4535 char **rparam
, uint32
*rparam_count
,
4536 char **rdata
, uint32
*rdata_count
);
4537 bool cli_api(struct cli_state
*cli
,
4538 char *param
, int prcnt
, int mprcnt
,
4539 char *data
, int drcnt
, int mdrcnt
,
4540 char **rparam
, unsigned int *rprcnt
,
4541 char **rdata
, unsigned int *rdrcnt
);
4542 bool cli_NetWkstaUserLogon(struct cli_state
*cli
,char *user
, char *workstation
);
4543 int cli_RNetShareEnum(struct cli_state
*cli
, void (*fn
)(const char *, uint32
, const char *, void *), void *state
);
4544 bool cli_NetServerEnum(struct cli_state
*cli
, char *workgroup
, uint32 stype
,
4545 void (*fn
)(const char *, uint32
, const char *, void *),
4547 bool cli_oem_change_password(struct cli_state
*cli
, const char *user
, const char *new_password
,
4548 const char *old_password
);
4549 bool cli_qpathinfo(struct cli_state
*cli
,
4551 time_t *change_time
,
4552 time_t *access_time
,
4556 bool cli_setpathinfo(struct cli_state
*cli
, const char *fname
,
4562 bool cli_qpathinfo2(struct cli_state
*cli
, const char *fname
,
4563 struct timespec
*create_time
,
4564 struct timespec
*access_time
,
4565 struct timespec
*write_time
,
4566 struct timespec
*change_time
,
4567 SMB_OFF_T
*size
, uint16
*mode
,
4569 bool cli_qpathinfo_streams(struct cli_state
*cli
, const char *fname
,
4570 TALLOC_CTX
*mem_ctx
,
4571 unsigned int *pnum_streams
,
4572 struct stream_struct
**pstreams
);
4573 bool cli_qfilename(struct cli_state
*cli
, int fnum
, char *name
, size_t namelen
);
4574 bool cli_qfileinfo(struct cli_state
*cli
, int fnum
,
4575 uint16
*mode
, SMB_OFF_T
*size
,
4576 struct timespec
*create_time
,
4577 struct timespec
*access_time
,
4578 struct timespec
*write_time
,
4579 struct timespec
*change_time
,
4581 bool cli_qpathinfo_basic( struct cli_state
*cli
, const char *name
,
4582 SMB_STRUCT_STAT
*sbuf
, uint32
*attributes
);
4583 bool cli_qfileinfo_test(struct cli_state
*cli
, int fnum
, int level
, char **poutdata
, uint32
*poutlen
);
4584 NTSTATUS
cli_qpathinfo_alt_name(struct cli_state
*cli
, const char *fname
, fstring alt_name
);
4586 /* The following definitions come from libsmb/clirap2.c */
4588 int cli_NetGroupDelete(struct cli_state
*cli
, const char *group_name
);
4589 int cli_NetGroupAdd(struct cli_state
*cli
, RAP_GROUP_INFO_1
*grinfo
);
4590 int cli_RNetGroupEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, void *), void *state
);
4591 int cli_RNetGroupEnum0(struct cli_state
*cli
,
4592 void (*fn
)(const char *, void *),
4594 int cli_NetGroupDelUser(struct cli_state
* cli
, const char *group_name
, const char *user_name
);
4595 int cli_NetGroupAddUser(struct cli_state
* cli
, const char *group_name
, const char *user_name
);
4596 int cli_NetGroupGetUsers(struct cli_state
* cli
, const char *group_name
, void (*fn
)(const char *, void *), void *state
);
4597 int cli_NetUserGetGroups(struct cli_state
* cli
, const char *user_name
, void (*fn
)(const char *, void *), void *state
);
4598 int cli_NetUserDelete(struct cli_state
*cli
, const char * user_name
);
4599 int cli_NetUserAdd(struct cli_state
*cli
, RAP_USER_INFO_1
* userinfo
);
4600 int cli_RNetUserEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, const char *, const char *, void *), void *state
);
4601 int cli_RNetUserEnum0(struct cli_state
*cli
,
4602 void (*fn
)(const char *, void *),
4604 int cli_NetFileClose(struct cli_state
*cli
, uint32 file_id
);
4605 int cli_NetFileGetInfo(struct cli_state
*cli
, uint32 file_id
, void (*fn
)(const char *, const char *, uint16
, uint16
, uint32
));
4606 int cli_NetFileEnum(struct cli_state
*cli
, const char * user
,
4607 const char * base_path
,
4608 void (*fn
)(const char *, const char *, uint16
, uint16
,
4610 int cli_NetShareAdd(struct cli_state
*cli
, RAP_SHARE_INFO_2
* sinfo
);
4611 int cli_NetShareDelete(struct cli_state
*cli
, const char * share_name
);
4612 bool cli_get_pdc_name(struct cli_state
*cli
, const char *workgroup
, char **pdc_name
);
4613 bool cli_get_server_domain(struct cli_state
*cli
);
4614 bool cli_get_server_type(struct cli_state
*cli
, uint32
*pstype
);
4615 bool cli_get_server_name(TALLOC_CTX
*mem_ctx
, struct cli_state
*cli
,
4617 bool cli_ns_check_server_type(struct cli_state
*cli
, char *workgroup
, uint32 stype
);
4618 bool cli_NetWkstaUserLogoff(struct cli_state
*cli
, const char *user
, const char *workstation
);
4619 int cli_NetPrintQEnum(struct cli_state
*cli
,
4620 void (*qfn
)(const char*,uint16
,uint16
,uint16
,const char*,const char*,const char*,const char*,const char*,uint16
,uint16
),
4621 void (*jfn
)(uint16
,const char*,const char*,const char*,const char*,uint16
,uint16
,const char*,uint
,uint
,const char*));
4622 int cli_NetPrintQGetInfo(struct cli_state
*cli
, const char *printer
,
4623 void (*qfn
)(const char*,uint16
,uint16
,uint16
,const char*,const char*,const char*,const char*,const char*,uint16
,uint16
),
4624 void (*jfn
)(uint16
,const char*,const char*,const char*,const char*,uint16
,uint16
,const char*,uint
,uint
,const char*));
4625 int cli_RNetServiceEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, void *), void *state
);
4626 int cli_NetSessionEnum(struct cli_state
*cli
, void (*fn
)(char *, char *, uint16
, uint16
, uint16
, uint
, uint
, uint
, char *));
4627 int cli_NetSessionGetInfo(struct cli_state
*cli
, const char *workstation
,
4628 void (*fn
)(const char *, const char *, uint16
, uint16
, uint16
, uint
, uint
, uint
, const char *));
4629 int cli_NetSessionDel(struct cli_state
*cli
, const char *workstation
);
4630 int cli_NetConnectionEnum(struct cli_state
*cli
, const char *qualifier
,
4631 void (*fn
)(uint16_t conid
, uint16_t contype
,
4632 uint16_t numopens
, uint16_t numusers
,
4633 uint32_t contime
, const char *username
,
4634 const char *netname
));
4636 /* The following definitions come from libsmb/clireadwrite.c */
4638 struct async_req
*cli_read_andx_send(TALLOC_CTX
*mem_ctx
,
4639 struct cli_state
*cli
, int fnum
,
4640 off_t offset
, size_t size
);
4641 NTSTATUS
cli_read_andx_recv(struct async_req
*req
, ssize_t
*received
,
4643 struct async_req
*cli_pull_send(TALLOC_CTX
*mem_ctx
, struct cli_state
*cli
,
4644 uint16_t fnum
, off_t start_offset
,
4645 SMB_OFF_T size
, size_t window_size
,
4646 NTSTATUS (*sink
)(char *buf
, size_t n
,
4649 NTSTATUS
cli_pull_recv(struct async_req
*req
, SMB_OFF_T
*received
);
4650 NTSTATUS
cli_pull(struct cli_state
*cli
, uint16_t fnum
,
4651 off_t start_offset
, SMB_OFF_T size
, size_t window_size
,
4652 NTSTATUS (*sink
)(char *buf
, size_t n
, void *priv
),
4653 void *priv
, SMB_OFF_T
*received
);
4654 ssize_t
cli_read(struct cli_state
*cli
, int fnum
, char *buf
,
4655 off_t offset
, size_t size
);
4656 ssize_t
cli_readraw(struct cli_state
*cli
, int fnum
, char *buf
, off_t offset
, size_t size
);
4657 ssize_t
cli_write(struct cli_state
*cli
,
4658 int fnum
, uint16 write_mode
,
4659 const char *buf
, off_t offset
, size_t size
);
4660 ssize_t
cli_smbwrite(struct cli_state
*cli
,
4661 int fnum
, char *buf
, off_t offset
, size_t size1
);
4663 /* The following definitions come from libsmb/clisecdesc.c */
4665 SEC_DESC
*cli_query_secdesc(struct cli_state
*cli
, int fnum
,
4666 TALLOC_CTX
*mem_ctx
);
4667 bool cli_set_secdesc(struct cli_state
*cli
, int fnum
, SEC_DESC
*sd
);
4669 /* The following definitions come from libsmb/clispnego.c */
4671 DATA_BLOB
spnego_gen_negTokenInit(char guid
[16],
4673 const char *principal
);
4674 DATA_BLOB
gen_negTokenInit(const char *OID
, DATA_BLOB blob
);
4675 bool spnego_parse_negTokenInit(DATA_BLOB blob
,
4676 char *OIDs
[ASN1_MAX_OIDS
],
4678 DATA_BLOB
gen_negTokenTarg(const char *OIDs
[], DATA_BLOB blob
);
4679 bool parse_negTokenTarg(DATA_BLOB blob
, char *OIDs
[ASN1_MAX_OIDS
], DATA_BLOB
*secblob
);
4680 DATA_BLOB
spnego_gen_krb5_wrap(const DATA_BLOB ticket
, const uint8 tok_id
[2]);
4681 bool spnego_parse_krb5_wrap(DATA_BLOB blob
, DATA_BLOB
*ticket
, uint8 tok_id
[2]);
4682 int spnego_gen_negTokenTarg(const char *principal
, int time_offset
,
4684 DATA_BLOB
*session_key_krb5
, uint32 extra_ap_opts
,
4685 time_t *expire_time
);
4686 bool spnego_parse_challenge(const DATA_BLOB blob
,
4687 DATA_BLOB
*chal1
, DATA_BLOB
*chal2
);
4688 DATA_BLOB
spnego_gen_auth(DATA_BLOB blob
);
4689 bool spnego_parse_auth(DATA_BLOB blob
, DATA_BLOB
*auth
);
4690 DATA_BLOB
spnego_gen_auth_response(DATA_BLOB
*reply
, NTSTATUS nt_status
,
4691 const char *mechOID
);
4692 bool spnego_parse_auth_response(DATA_BLOB blob
, NTSTATUS nt_status
,
4693 const char *mechOID
,
4696 /* The following definitions come from libsmb/clistr.c */
4698 size_t clistr_push_fn(const char *function
,
4700 struct cli_state
*cli
,
4705 size_t clistr_pull_fn(const char *function
,
4707 struct cli_state
*cli
,
4713 size_t clistr_pull_talloc_fn(const char *function
,
4716 struct cli_state
*cli
,
4721 size_t clistr_align_out(struct cli_state
*cli
, const void *p
, int flags
);
4722 size_t clistr_align_in(struct cli_state
*cli
, const void *p
, int flags
);
4724 /* The following definitions come from libsmb/clitrans.c */
4726 bool cli_send_trans(struct cli_state
*cli
, int trans
,
4727 const char *pipe_name
,
4729 uint16
*setup
, unsigned int lsetup
, unsigned int msetup
,
4730 const char *param
, unsigned int lparam
, unsigned int mparam
,
4731 const char *data
, unsigned int ldata
, unsigned int mdata
);
4732 bool cli_receive_trans(struct cli_state
*cli
,int trans
,
4733 char **param
, unsigned int *param_len
,
4734 char **data
, unsigned int *data_len
);
4735 bool cli_send_nt_trans(struct cli_state
*cli
,
4738 uint16
*setup
, unsigned int lsetup
, unsigned int msetup
,
4739 char *param
, unsigned int lparam
, unsigned int mparam
,
4740 char *data
, unsigned int ldata
, unsigned int mdata
);
4741 bool cli_receive_nt_trans(struct cli_state
*cli
,
4742 char **param
, unsigned int *param_len
,
4743 char **data
, unsigned int *data_len
);
4745 /* The following definitions come from libsmb/conncache.c */
4747 NTSTATUS
check_negative_conn_cache_timeout( const char *domain
, const char *server
, unsigned int failed_cache_timeout
);
4748 NTSTATUS
check_negative_conn_cache( const char *domain
, const char *server
);
4749 void add_failed_connection_entry(const char *domain
, const char *server
, NTSTATUS result
) ;
4750 void delete_negative_conn_cache(const char *domain
, const char *server
);
4751 void flush_negative_conn_cache( void );
4752 void flush_negative_conn_cache_for_domain(const char *domain
);
4754 /* The following definitions come from libsmb/credentials.c */
4756 char *credstr(const unsigned char *cred
);
4757 void creds_server_init(uint32 neg_flags
,
4759 struct netr_Credential
*clnt_chal
,
4760 struct netr_Credential
*srv_chal
,
4761 const unsigned char mach_pw
[16],
4762 struct netr_Credential
*init_chal_out
);
4763 bool netlogon_creds_server_check(const struct dcinfo
*dc
,
4764 const struct netr_Credential
*rcv_cli_chal_in
);
4765 bool netlogon_creds_server_step(struct dcinfo
*dc
,
4766 const struct netr_Authenticator
*received_cred
,
4767 struct netr_Authenticator
*cred_out
);
4768 void creds_client_init(uint32 neg_flags
,
4770 struct netr_Credential
*clnt_chal
,
4771 struct netr_Credential
*srv_chal
,
4772 const unsigned char mach_pw
[16],
4773 struct netr_Credential
*init_chal_out
);
4774 bool netlogon_creds_client_check(const struct dcinfo
*dc
,
4775 const struct netr_Credential
*rcv_srv_chal_in
);
4776 void netlogon_creds_client_step(struct dcinfo
*dc
,
4777 struct netr_Authenticator
*next_cred_out
);
4779 /* The following definitions come from libsmb/dcerpc_err.c */
4781 const char *dcerpc_errstr(uint32 fault_code
);
4783 /* The following definitions come from libsmb/doserr.c */
4785 const char *dos_errstr(WERROR werror
);
4786 const char *get_friendly_werror_msg(WERROR werror
);
4787 const char *win_errstr(WERROR werror
);
4789 /* The following definitions come from libsmb/dsgetdcname.c */
4791 void debug_dsdcinfo_flags(int lvl
, uint32_t flags
);
4792 NTSTATUS
dsgetdcname(TALLOC_CTX
*mem_ctx
,
4793 struct messaging_context
*msg_ctx
,
4794 const char *domain_name
,
4795 struct GUID
*domain_guid
,
4796 const char *site_name
,
4798 struct netr_DsRGetDCNameInfo
**info
);
4800 /* The following definitions come from libsmb/errormap.c */
4802 NTSTATUS
dos_to_ntstatus(uint8 eclass
, uint32 ecode
);
4803 void ntstatus_to_dos(NTSTATUS ntstatus
, uint8
*eclass
, uint32
*ecode
);
4804 NTSTATUS
werror_to_ntstatus(WERROR error
);
4805 WERROR
ntstatus_to_werror(NTSTATUS error
);
4806 NTSTATUS
map_nt_error_from_gss(uint32 gss_maj
, uint32 minor
);
4808 /* The following definitions come from libsmb/namecache.c */
4810 bool namecache_enable(void);
4811 bool namecache_shutdown(void);
4812 bool namecache_store(const char *name
,
4815 struct ip_service
*ip_list
);
4816 bool namecache_fetch(const char *name
,
4818 struct ip_service
**ip_list
,
4820 bool namecache_delete(const char *name
, int name_type
);
4821 void namecache_flush(void);
4822 bool namecache_status_store(const char *keyname
, int keyname_type
,
4823 int name_type
, const struct sockaddr_storage
*keyip
,
4824 const char *srvname
);
4825 bool namecache_status_fetch(const char *keyname
,
4828 const struct sockaddr_storage
*keyip
,
4831 /* The following definitions come from libsmb/namequery.c */
4833 bool saf_store( const char *domain
, const char *servername
);
4834 bool saf_delete( const char *domain
);
4835 char *saf_fetch( const char *domain
);
4836 NODE_STATUS_STRUCT
*node_status_query(int fd
,
4837 struct nmb_name
*name
,
4838 const struct sockaddr_storage
*to_ss
,
4840 struct node_status_extra
*extra
);
4841 bool name_status_find(const char *q_name
,
4844 const struct sockaddr_storage
*to_ss
,
4846 int ip_service_compare(struct ip_service
*ss1
, struct ip_service
*ss2
);
4847 struct sockaddr_storage
*name_query(int fd
,
4852 const struct sockaddr_storage
*to_ss
,
4856 XFILE
*startlmhosts(const char *fname
);
4857 bool getlmhostsent(TALLOC_CTX
*ctx
, XFILE
*fp
, char **pp_name
, int *name_type
,
4858 struct sockaddr_storage
*pss
);
4859 void endlmhosts(XFILE
*fp
);
4860 NTSTATUS
name_resolve_bcast(const char *name
,
4862 struct ip_service
**return_iplist
,
4864 NTSTATUS
resolve_wins(const char *name
,
4866 struct ip_service
**return_iplist
,
4868 NTSTATUS
internal_resolve_name(const char *name
,
4870 const char *sitename
,
4871 struct ip_service
**return_iplist
,
4873 const char *resolve_order
);
4874 bool resolve_name(const char *name
,
4875 struct sockaddr_storage
*return_ss
,
4877 NTSTATUS
resolve_name_list(TALLOC_CTX
*ctx
,
4880 struct sockaddr_storage
**return_ss_arr
,
4881 unsigned int *p_num_entries
);
4882 bool find_master_ip(const char *group
, struct sockaddr_storage
*master_ss
);
4883 bool get_pdc_ip(const char *domain
, struct sockaddr_storage
*pss
);
4884 NTSTATUS
get_sorted_dc_list( const char *domain
,
4885 const char *sitename
,
4886 struct ip_service
**ip_list
,
4889 NTSTATUS
get_kdc_list( const char *realm
,
4890 const char *sitename
,
4891 struct ip_service
**ip_list
,
4894 /* The following definitions come from libsmb/namequery_dc.c */
4896 bool get_dc_name(const char *domain
,
4899 struct sockaddr_storage
*ss_out
);
4901 /* The following definitions come from libsmb/nmblib.c */
4903 void debug_nmb_packet(struct packet_struct
*p
);
4904 void put_name(char *dest
, const char *name
, int pad
, unsigned int name_type
);
4905 char *nmb_namestr(const struct nmb_name
*n
);
4906 struct packet_struct
*copy_packet(struct packet_struct
*packet
);
4907 void free_packet(struct packet_struct
*packet
);
4908 struct packet_struct
*parse_packet(char *buf
,int length
,
4909 enum packet_type packet_type
,
4912 struct packet_struct
*read_packet(int fd
,enum packet_type packet_type
);
4913 void make_nmb_name( struct nmb_name
*n
, const char *name
, int type
);
4914 bool nmb_name_equal(struct nmb_name
*n1
, struct nmb_name
*n2
);
4915 int build_packet(char *buf
, size_t buflen
, struct packet_struct
*p
);
4916 bool send_packet(struct packet_struct
*p
);
4917 struct packet_struct
*receive_packet(int fd
,enum packet_type type
,int t
);
4918 struct packet_struct
*receive_nmb_packet(int fd
, int t
, int trn_id
);
4919 struct packet_struct
*receive_dgram_packet(int fd
, int t
,
4920 const char *mailslot_name
);
4921 bool match_mailslot_name(struct packet_struct
*p
, const char *mailslot_name
);
4922 int matching_len_bits(unsigned char *p1
, unsigned char *p2
, size_t len
);
4923 void sort_query_replies(char *data
, int n
, struct in_addr ip
);
4924 int name_mangle( char *In
, char *Out
, char name_type
);
4925 int name_extract(char *buf
,int ofs
, fstring name
);
4926 int name_len(char *s1
);
4928 /* The following definitions come from libsmb/nterr.c */
4930 const char *nt_errstr(NTSTATUS nt_code
);
4931 const char *get_friendly_nt_error_msg(NTSTATUS nt_code
);
4932 const char *get_nt_error_c_code(NTSTATUS nt_code
);
4933 NTSTATUS
nt_status_string_to_code(char *nt_status_str
);
4934 NTSTATUS
nt_status_squash(NTSTATUS nt_status
);
4936 /* The following definitions come from libsmb/ntlm_check.c */
4938 NTSTATUS
ntlm_password_check(TALLOC_CTX
*mem_ctx
,
4939 const DATA_BLOB
*challenge
,
4940 const DATA_BLOB
*lm_response
,
4941 const DATA_BLOB
*nt_response
,
4942 const DATA_BLOB
*lm_interactive_pwd
,
4943 const DATA_BLOB
*nt_interactive_pwd
,
4944 const char *username
,
4945 const char *client_username
,
4946 const char *client_domain
,
4947 const uint8
*lm_pw
, const uint8
*nt_pw
,
4948 DATA_BLOB
*user_sess_key
,
4949 DATA_BLOB
*lm_sess_key
);
4951 /* The following definitions come from libsmb/ntlmssp.c */
4953 void debug_ntlmssp_flags(uint32 neg_flags
);
4954 NTSTATUS
ntlmssp_set_username(NTLMSSP_STATE
*ntlmssp_state
, const char *user
) ;
4955 NTSTATUS
ntlmssp_set_hashes(NTLMSSP_STATE
*ntlmssp_state
,
4956 const unsigned char lm_hash
[16],
4957 const unsigned char nt_hash
[16]) ;
4958 NTSTATUS
ntlmssp_set_password(NTLMSSP_STATE
*ntlmssp_state
, const char *password
) ;
4959 NTSTATUS
ntlmssp_set_domain(NTLMSSP_STATE
*ntlmssp_state
, const char *domain
) ;
4960 NTSTATUS
ntlmssp_set_workstation(NTLMSSP_STATE
*ntlmssp_state
, const char *workstation
) ;
4961 NTSTATUS
ntlmssp_store_response(NTLMSSP_STATE
*ntlmssp_state
,
4962 DATA_BLOB response
) ;
4963 void ntlmssp_want_feature_list(NTLMSSP_STATE
*ntlmssp_state
, char *feature_list
);
4964 void ntlmssp_want_feature(NTLMSSP_STATE
*ntlmssp_state
, uint32 feature
);
4965 NTSTATUS
ntlmssp_update(NTLMSSP_STATE
*ntlmssp_state
,
4966 const DATA_BLOB in
, DATA_BLOB
*out
) ;
4967 void ntlmssp_end(NTLMSSP_STATE
**ntlmssp_state
);
4968 DATA_BLOB
ntlmssp_weaken_keys(NTLMSSP_STATE
*ntlmssp_state
, TALLOC_CTX
*mem_ctx
);
4969 NTSTATUS
ntlmssp_server_start(NTLMSSP_STATE
**ntlmssp_state
);
4970 NTSTATUS
ntlmssp_client_start(NTLMSSP_STATE
**ntlmssp_state
);
4972 /* The following definitions come from libsmb/ntlmssp_parse.c */
4974 bool msrpc_gen(DATA_BLOB
*blob
,
4975 const char *format
, ...);
4976 bool msrpc_parse(const DATA_BLOB
*blob
,
4977 const char *format
, ...);
4979 /* The following definitions come from libsmb/ntlmssp_sign.c */
4981 NTSTATUS
ntlmssp_sign_packet(NTLMSSP_STATE
*ntlmssp_state
,
4982 const uchar
*data
, size_t length
,
4983 const uchar
*whole_pdu
, size_t pdu_length
,
4985 NTSTATUS
ntlmssp_check_packet(NTLMSSP_STATE
*ntlmssp_state
,
4986 const uchar
*data
, size_t length
,
4987 const uchar
*whole_pdu
, size_t pdu_length
,
4988 const DATA_BLOB
*sig
) ;
4989 NTSTATUS
ntlmssp_seal_packet(NTLMSSP_STATE
*ntlmssp_state
,
4990 uchar
*data
, size_t length
,
4991 uchar
*whole_pdu
, size_t pdu_length
,
4993 NTSTATUS
ntlmssp_unseal_packet(NTLMSSP_STATE
*ntlmssp_state
,
4994 uchar
*data
, size_t length
,
4995 uchar
*whole_pdu
, size_t pdu_length
,
4997 NTSTATUS
ntlmssp_sign_init(NTLMSSP_STATE
*ntlmssp_state
);
4999 /* The following definitions come from libsmb/passchange.c */
5001 NTSTATUS
remote_password_change(const char *remote_machine
, const char *user_name
,
5002 const char *old_passwd
, const char *new_passwd
,
5005 /* The following definitions come from libsmb/pwd_cache.c */
5007 void pwd_set_cleartext(struct pwd_info
*pwd
, const char *clr
);
5008 void pwd_get_cleartext(struct pwd_info
*pwd
, fstring clr
);
5010 /* The following definitions come from libsmb/samlogon_cache.c */
5012 bool netsamlogon_cache_init(void);
5013 bool netsamlogon_cache_shutdown(void);
5014 void netsamlogon_clear_cached_user(TDB_CONTEXT
*tdb
, struct netr_SamInfo3
*info3
);
5015 bool netsamlogon_cache_store(const char *username
, struct netr_SamInfo3
*info3
);
5016 struct netr_SamInfo3
*netsamlogon_cache_get(TALLOC_CTX
*mem_ctx
, const DOM_SID
*user_sid
);
5017 bool netsamlogon_cache_have(const DOM_SID
*user_sid
);
5019 /* The following definitions come from libsmb/smb_seal.c */
5021 NTSTATUS
get_enc_ctx_num(const uint8_t *buf
, uint16
*p_enc_ctx_num
);
5022 bool common_encryption_on(struct smb_trans_enc_state
*es
);
5023 NTSTATUS
common_ntlm_decrypt_buffer(NTLMSSP_STATE
*ntlmssp_state
, char *buf
);
5024 NTSTATUS
common_ntlm_encrypt_buffer(NTLMSSP_STATE
*ntlmssp_state
,
5028 NTSTATUS
common_encrypt_buffer(struct smb_trans_enc_state
*es
, char *buffer
, char **buf_out
);
5029 NTSTATUS
common_decrypt_buffer(struct smb_trans_enc_state
*es
, char *buf
);
5030 void common_free_encryption_state(struct smb_trans_enc_state
**pp_es
);
5031 void common_free_enc_buffer(struct smb_trans_enc_state
*es
, char *buf
);
5032 bool cli_encryption_on(struct cli_state
*cli
);
5033 void cli_free_encryption_context(struct cli_state
*cli
);
5034 void cli_free_enc_buffer(struct cli_state
*cli
, char *buf
);
5035 NTSTATUS
cli_decrypt_message(struct cli_state
*cli
);
5036 NTSTATUS
cli_encrypt_message(struct cli_state
*cli
, char *buf
, char **buf_out
);
5038 /* The following definitions come from libsmb/smb_signing.c */
5040 bool cli_simple_set_signing(struct cli_state
*cli
,
5041 const DATA_BLOB user_session_key
,
5042 const DATA_BLOB response
);
5043 bool cli_null_set_signing(struct cli_state
*cli
);
5044 bool cli_temp_set_signing(struct cli_state
*cli
);
5045 void cli_free_signing_context(struct cli_state
*cli
);
5046 void cli_calculate_sign_mac(struct cli_state
*cli
, char *buf
);
5047 bool cli_check_sign_mac(struct cli_state
*cli
, char *buf
);
5048 bool client_set_trans_sign_state_on(struct cli_state
*cli
, uint16 mid
);
5049 bool client_set_trans_sign_state_off(struct cli_state
*cli
, uint16 mid
);
5050 bool client_is_signing_on(struct cli_state
*cli
);
5051 bool srv_oplock_set_signing(bool onoff
);
5052 bool srv_check_sign_mac(const char *inbuf
, bool must_be_ok
);
5053 void srv_calculate_sign_mac(char *outbuf
);
5054 void srv_defer_sign_response(uint16 mid
);
5055 void srv_cancel_sign_response(uint16 mid
);
5056 void srv_set_signing_negotiated(void);
5057 bool srv_is_signing_active(void);
5058 bool srv_is_signing_negotiated(void);
5059 bool srv_signing_started(void);
5060 void srv_set_signing(const DATA_BLOB user_session_key
, const DATA_BLOB response
);
5062 /* The following definitions come from libsmb/smbdes.c */
5064 void des_crypt56(unsigned char *out
, const unsigned char *in
, const unsigned char *key
, int forw
);
5065 void E_P16(const unsigned char *p14
,unsigned char *p16
);
5066 void E_P24(const unsigned char *p21
, const unsigned char *c8
, unsigned char *p24
);
5067 void D_P16(const unsigned char *p14
, const unsigned char *in
, unsigned char *out
);
5068 void E_old_pw_hash( unsigned char *p14
, const unsigned char *in
, unsigned char *out
);
5069 void des_crypt128(unsigned char out
[8], const unsigned char in
[8], const unsigned char key
[16]);
5070 void des_crypt64(unsigned char out
[8], const unsigned char in
[8], const unsigned char key
[8]);
5071 void des_crypt112(unsigned char out
[8], const unsigned char in
[8], const unsigned char key
[14], int forw
);
5072 void cred_hash3(unsigned char *out
, const unsigned char *in
, const unsigned char *key
, int forw
);
5073 void des_crypt112_16(unsigned char out
[16], unsigned char in
[16], const unsigned char key
[14], int forw
);
5074 void SamOEMhash( unsigned char *data
, const unsigned char key
[16], size_t len
);
5075 void SamOEMhashBlob( unsigned char *data
, size_t len
, DATA_BLOB
*key
);
5076 void sam_pwd_hash(unsigned int rid
, const uchar
*in
, uchar
*out
, int forw
);
5078 /* The following definitions come from libsmb/smbencrypt.c */
5080 void SMBencrypt_hash(const uchar lm_hash
[16], const uchar
*c8
, uchar p24
[24]);
5081 bool SMBencrypt(const char *passwd
, const uchar
*c8
, uchar p24
[24]);
5082 void E_md4hash(const char *passwd
, uchar p16
[16]);
5083 void E_md5hash(const uchar salt
[16], const uchar nthash
[16], uchar hash_out
[16]);
5084 bool E_deshash(const char *passwd
, uchar p16
[16]);
5085 void nt_lm_owf_gen(const char *pwd
, uchar nt_p16
[16], uchar p16
[16]);
5086 bool ntv2_owf_gen(const uchar owf
[16],
5087 const char *user_in
, const char *domain_in
,
5088 bool upper_case_domain
, /* Transform the domain into UPPER case */
5090 void SMBOWFencrypt(const uchar passwd
[16], const uchar
*c8
, uchar p24
[24]);
5091 void NTLMSSPOWFencrypt(const uchar passwd
[8], const uchar
*ntlmchalresp
, uchar p24
[24]);
5092 void SMBNTencrypt_hash(const uchar nt_hash
[16], uchar
*c8
, uchar
*p24
);
5093 void SMBNTencrypt(const char *passwd
, uchar
*c8
, uchar
*p24
);
5094 void SMBOWFencrypt_ntv2(const uchar kr
[16],
5095 const DATA_BLOB
*srv_chal
,
5096 const DATA_BLOB
*cli_chal
,
5097 uchar resp_buf
[16]);
5098 void SMBsesskeygen_ntv2(const uchar kr
[16],
5099 const uchar
* nt_resp
, uint8 sess_key
[16]);
5100 void SMBsesskeygen_ntv1(const uchar kr
[16],
5101 const uchar
* nt_resp
, uint8 sess_key
[16]);
5102 void SMBsesskeygen_lm_sess_key(const uchar lm_hash
[16],
5103 const uchar lm_resp
[24], /* only uses 8 */
5104 uint8 sess_key
[16]);
5105 DATA_BLOB
NTLMv2_generate_names_blob(const char *hostname
,
5106 const char *domain
);
5107 bool SMBNTLMv2encrypt_hash(const char *user
, const char *domain
, const uchar nt_hash
[16],
5108 const DATA_BLOB
*server_chal
,
5109 const DATA_BLOB
*names_blob
,
5110 DATA_BLOB
*lm_response
, DATA_BLOB
*nt_response
,
5111 DATA_BLOB
*user_session_key
) ;
5112 bool SMBNTLMv2encrypt(const char *user
, const char *domain
, const char *password
,
5113 const DATA_BLOB
*server_chal
,
5114 const DATA_BLOB
*names_blob
,
5115 DATA_BLOB
*lm_response
, DATA_BLOB
*nt_response
,
5116 DATA_BLOB
*user_session_key
) ;
5117 bool encode_pw_buffer(uint8 buffer
[516], const char *password
, int string_flags
);
5118 bool decode_pw_buffer(TALLOC_CTX
*ctx
,
5119 uint8 in_buffer
[516],
5123 void encode_or_decode_arc4_passwd_buffer(unsigned char pw_buf
[532], const DATA_BLOB
*psession_key
);
5124 void sess_crypt_blob(DATA_BLOB
*out
, const DATA_BLOB
*in
, const DATA_BLOB
*session_key
, int forward
);
5125 char *decrypt_trustdom_secret(uint8_t nt_hash
[16], DATA_BLOB
*data_in
);
5126 void encode_wkssvc_join_password_buffer(TALLOC_CTX
*mem_ctx
,
5128 DATA_BLOB
*session_key
,
5129 struct wkssvc_PasswordBuffer
**pwd_buf
);
5130 WERROR
decode_wkssvc_join_password_buffer(TALLOC_CTX
*mem_ctx
,
5131 struct wkssvc_PasswordBuffer
*pwd_buf
,
5132 DATA_BLOB
*session_key
,
5135 /* The following definitions come from libsmb/smberr.c */
5137 const char *smb_dos_err_name(uint8 e_class
, uint16 num
);
5138 const char *get_dos_error_msg(WERROR result
);
5139 const char *smb_dos_err_class(uint8 e_class
);
5140 char *smb_dos_errstr(char *inbuf
);
5141 WERROR
map_werror_from_unix(int error
);
5143 /* The following definitions come from libsmb/spnego.c */
5145 ssize_t
read_spnego_data(DATA_BLOB data
, SPNEGO_DATA
*token
);
5146 ssize_t
write_spnego_data(DATA_BLOB
*blob
, SPNEGO_DATA
*spnego
);
5147 bool free_spnego_data(SPNEGO_DATA
*spnego
);
5149 /* The following definitions come from libsmb/trustdom_cache.c */
5151 bool trustdom_cache_enable(void);
5152 bool trustdom_cache_shutdown(void);
5153 bool trustdom_cache_store(char* name
, char* alt_name
, const DOM_SID
*sid
,
5155 bool trustdom_cache_fetch(const char* name
, DOM_SID
* sid
);
5156 uint32
trustdom_cache_fetch_timestamp( void );
5157 bool trustdom_cache_store_timestamp( uint32 t
, time_t timeout
);
5158 void trustdom_cache_flush(void);
5159 void update_trustdom_cache( void );
5161 /* The following definitions come from libsmb/trusts_util.c */
5163 NTSTATUS
trust_pw_change_and_store_it(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
5165 unsigned char orig_trust_passwd_hash
[16],
5166 uint32 sec_channel_type
);
5167 NTSTATUS
trust_pw_find_change_and_store_it(struct rpc_pipe_client
*cli
,
5168 TALLOC_CTX
*mem_ctx
,
5169 const char *domain
) ;
5170 bool enumerate_domain_trusts( TALLOC_CTX
*mem_ctx
, const char *domain
,
5171 char ***domain_names
, uint32
*num_domains
,
5174 /* The following definitions come from libsmb/unexpected.c */
5176 void unexpected_packet(struct packet_struct
*p
);
5177 void clear_unexpected(time_t t
);
5178 struct packet_struct
*receive_unexpected(enum packet_type packet_type
, int id
,
5179 const char *mailslot_name
);
5181 /* The following definitions come from locking/brlock.c */
5183 bool brl_same_context(const struct lock_context
*ctx1
,
5184 const struct lock_context
*ctx2
);
5185 void brl_init(bool read_only
);
5186 void brl_shutdown(void);
5187 NTSTATUS
brl_lock(struct messaging_context
*msg_ctx
,
5188 struct byte_range_lock
*br_lck
,
5190 struct server_id pid
,
5193 enum brl_type lock_type
,
5194 enum brl_flavour lock_flav
,
5197 bool brl_unlock(struct messaging_context
*msg_ctx
,
5198 struct byte_range_lock
*br_lck
,
5200 struct server_id pid
,
5203 enum brl_flavour lock_flav
);
5204 bool brl_locktest(struct byte_range_lock
*br_lck
,
5206 struct server_id pid
,
5209 enum brl_type lock_type
,
5210 enum brl_flavour lock_flav
);
5211 NTSTATUS
brl_lockquery(struct byte_range_lock
*br_lck
,
5213 struct server_id pid
,
5216 enum brl_type
*plock_type
,
5217 enum brl_flavour lock_flav
);
5218 bool brl_lock_cancel(struct byte_range_lock
*br_lck
,
5220 struct server_id pid
,
5223 enum brl_flavour lock_flav
);
5224 void brl_close_fnum(struct messaging_context
*msg_ctx
,
5225 struct byte_range_lock
*br_lck
);
5226 int brl_forall(void (*fn
)(struct file_id id
, struct server_id pid
,
5227 enum brl_type lock_type
,
5228 enum brl_flavour lock_flav
,
5229 br_off start
, br_off size
,
5230 void *private_data
),
5231 void *private_data
);
5232 struct byte_range_lock
*brl_get_locks(TALLOC_CTX
*mem_ctx
,
5234 struct byte_range_lock
*brl_get_locks_readonly(TALLOC_CTX
*mem_ctx
,
5236 void brl_register_msgs(struct messaging_context
*msg_ctx
);
5238 /* The following definitions come from locking/locking.c */
5240 const char *lock_type_name(enum brl_type lock_type
);
5241 const char *lock_flav_name(enum brl_flavour lock_flav
);
5242 bool is_locked(files_struct
*fsp
,
5245 SMB_BIG_UINT offset
,
5246 enum brl_type lock_type
);
5247 NTSTATUS
query_lock(files_struct
*fsp
,
5249 SMB_BIG_UINT
*pcount
,
5250 SMB_BIG_UINT
*poffset
,
5251 enum brl_type
*plock_type
,
5252 enum brl_flavour lock_flav
);
5253 struct byte_range_lock
*do_lock(struct messaging_context
*msg_ctx
,
5257 SMB_BIG_UINT offset
,
5258 enum brl_type lock_type
,
5259 enum brl_flavour lock_flav
,
5263 NTSTATUS
do_unlock(struct messaging_context
*msg_ctx
,
5267 SMB_BIG_UINT offset
,
5268 enum brl_flavour lock_flav
);
5269 NTSTATUS
do_lock_cancel(files_struct
*fsp
,
5272 SMB_BIG_UINT offset
,
5273 enum brl_flavour lock_flav
);
5274 void locking_close_file(struct messaging_context
*msg_ctx
,
5276 bool locking_init(void);
5277 bool locking_init_readonly(void);
5278 bool locking_end(void);
5279 char *share_mode_str(TALLOC_CTX
*ctx
, int num
, const struct share_mode_entry
*e
);
5280 struct share_mode_lock
*get_share_mode_lock(TALLOC_CTX
*mem_ctx
,
5281 const struct file_id id
,
5282 const char *servicepath
,
5284 const struct timespec
*old_write_time
);
5285 struct share_mode_lock
*fetch_share_mode_unlocked(TALLOC_CTX
*mem_ctx
,
5286 const struct file_id id
,
5287 const char *servicepath
,
5289 bool rename_share_filename(struct messaging_context
*msg_ctx
,
5290 struct share_mode_lock
*lck
,
5291 const char *servicepath
,
5292 const char *newname
);
5293 void get_file_infos(struct file_id id
,
5294 bool *delete_on_close
,
5295 struct timespec
*write_time
);
5296 bool is_valid_share_mode_entry(const struct share_mode_entry
*e
);
5297 bool is_deferred_open_entry(const struct share_mode_entry
*e
);
5298 bool is_unused_share_mode_entry(const struct share_mode_entry
*e
);
5299 void set_share_mode(struct share_mode_lock
*lck
, files_struct
*fsp
,
5300 uid_t uid
, uint16 mid
, uint16 op_type
, bool initial_delete_on_close_allowed
);
5301 void add_deferred_open(struct share_mode_lock
*lck
, uint16 mid
,
5302 struct timeval request_time
,
5304 bool del_share_mode(struct share_mode_lock
*lck
, files_struct
*fsp
);
5305 void del_deferred_open_entry(struct share_mode_lock
*lck
, uint16 mid
);
5306 bool remove_share_oplock(struct share_mode_lock
*lck
, files_struct
*fsp
);
5307 bool downgrade_share_oplock(struct share_mode_lock
*lck
, files_struct
*fsp
);
5308 NTSTATUS
can_set_delete_on_close(files_struct
*fsp
, bool delete_on_close
,
5310 bool can_set_initial_delete_on_close(const struct share_mode_lock
*lck
);
5311 void set_delete_on_close_token(struct share_mode_lock
*lck
, UNIX_USER_TOKEN
*tok
);
5312 void set_delete_on_close_lck(struct share_mode_lock
*lck
, bool delete_on_close
, UNIX_USER_TOKEN
*tok
);
5313 bool set_delete_on_close(files_struct
*fsp
, bool delete_on_close
, UNIX_USER_TOKEN
*tok
);
5314 bool set_allow_initial_delete_on_close(struct share_mode_lock
*lck
, files_struct
*fsp
, bool delete_on_close
);
5315 bool set_write_time(struct file_id fileid
, struct timespec write_time
,
5317 int share_mode_forall(void (*fn
)(const struct share_mode_entry
*, const char *,
5318 const char *, void *),
5319 void *private_data
);
5321 /* The following definitions come from locking/posix.c */
5323 bool is_posix_locked(files_struct
*fsp
,
5324 SMB_BIG_UINT
*pu_offset
,
5325 SMB_BIG_UINT
*pu_count
,
5326 enum brl_type
*plock_type
,
5327 enum brl_flavour lock_flav
);
5328 bool posix_locking_init(bool read_only
);
5329 bool posix_locking_end(void);
5330 void reduce_windows_lock_ref_count(files_struct
*fsp
, unsigned int dcount
);
5331 int fd_close_posix(struct files_struct
*fsp
);
5332 bool set_posix_lock_windows_flavour(files_struct
*fsp
,
5333 SMB_BIG_UINT u_offset
,
5334 SMB_BIG_UINT u_count
,
5335 enum brl_type lock_type
,
5336 const struct lock_context
*lock_ctx
,
5337 const struct lock_struct
*plocks
,
5340 bool release_posix_lock_windows_flavour(files_struct
*fsp
,
5341 SMB_BIG_UINT u_offset
,
5342 SMB_BIG_UINT u_count
,
5343 enum brl_type deleted_lock_type
,
5344 const struct lock_context
*lock_ctx
,
5345 const struct lock_struct
*plocks
,
5347 bool set_posix_lock_posix_flavour(files_struct
*fsp
,
5348 SMB_BIG_UINT u_offset
,
5349 SMB_BIG_UINT u_count
,
5350 enum brl_type lock_type
,
5352 bool release_posix_lock_posix_flavour(files_struct
*fsp
,
5353 SMB_BIG_UINT u_offset
,
5354 SMB_BIG_UINT u_count
,
5355 const struct lock_context
*lock_ctx
,
5356 const struct lock_struct
*plocks
,
5359 /* The following definitions come from modules/vfs_default.c */
5361 int vfswrap_lstat(vfs_handle_struct
*handle
, const char *path
, SMB_STRUCT_STAT
*sbuf
);
5362 ssize_t
vfswrap_llistxattr(struct vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
);
5363 ssize_t
vfswrap_flistxattr(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, char *list
, size_t size
);
5364 NTSTATUS
vfs_default_init(void);
5366 /* The following definitions come from modules/vfs_posixacl.c */
5368 SMB_ACL_T
posixacl_sys_acl_get_file(vfs_handle_struct
*handle
,
5370 SMB_ACL_TYPE_T type
);
5371 SMB_ACL_T
posixacl_sys_acl_get_fd(vfs_handle_struct
*handle
,
5373 int posixacl_sys_acl_set_file(vfs_handle_struct
*handle
,
5375 SMB_ACL_TYPE_T type
,
5377 int posixacl_sys_acl_set_fd(vfs_handle_struct
*handle
,
5380 int posixacl_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
5382 NTSTATUS
vfs_posixacl_init(void);
5384 /* The following definitions come from nmbd/asyncdns.c */
5386 int asyncdns_fd(void);
5387 void kill_async_dns_child(void);
5388 void start_async_dns(void);
5389 void run_dns_queue(void);
5390 bool queue_dns_query(struct packet_struct
*p
,struct nmb_name
*question
);
5391 bool queue_dns_query(struct packet_struct
*p
,struct nmb_name
*question
);
5392 void kill_async_dns_child(void);
5394 /* The following definitions come from nmbd/nmbd.c */
5396 struct event_context
*nmbd_event_context(void);
5397 struct messaging_context
*nmbd_messaging_context(void);
5399 /* The following definitions come from nmbd/nmbd_become_dmb.c */
5401 void add_domain_names(time_t t
);
5403 /* The following definitions come from nmbd/nmbd_become_lmb.c */
5405 void insert_permanent_name_into_unicast( struct subnet_record
*subrec
,
5406 struct nmb_name
*nmbname
, uint16 nb_type
);
5407 void unbecome_local_master_browser(struct subnet_record
*subrec
, struct work_record
*work
,
5408 bool force_new_election
);
5409 void become_local_master_browser(struct subnet_record
*subrec
, struct work_record
*work
);
5410 void set_workgroup_local_master_browser_name( struct work_record
*work
, const char *newname
);
5412 /* The following definitions come from nmbd/nmbd_browserdb.c */
5414 void update_browser_death_time( struct browse_cache_record
*browc
);
5415 struct browse_cache_record
*create_browser_in_lmb_cache( const char *work_name
,
5416 const char *browser_name
,
5417 struct in_addr ip
);
5418 struct browse_cache_record
*find_browser_in_lmb_cache( const char *browser_name
);
5419 void expire_lmb_browsers( time_t t
);
5421 /* The following definitions come from nmbd/nmbd_browsesync.c */
5423 void dmb_expire_and_sync_browser_lists(time_t t
);
5424 void announce_and_sync_with_domain_master_browser( struct subnet_record
*subrec
,
5425 struct work_record
*work
);
5426 void collect_all_workgroup_names_from_wins_server(time_t t
);
5427 void sync_all_dmbs(time_t t
);
5429 /* The following definitions come from nmbd/nmbd_elections.c */
5431 void check_master_browser_exists(time_t t
);
5432 void run_elections(time_t t
);
5433 void process_election(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
5434 bool check_elections(void);
5435 void nmbd_message_election(struct messaging_context
*msg
,
5438 struct server_id server_id
,
5441 /* The following definitions come from nmbd/nmbd_incomingdgrams.c */
5443 void tell_become_backup(void);
5444 void process_host_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
5445 void process_workgroup_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
5446 void process_local_master_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
5447 void process_master_browser_announce(struct subnet_record
*subrec
,
5448 struct packet_struct
*p
,char *buf
);
5449 void process_lm_host_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
, int len
);
5450 void process_get_backup_list_request(struct subnet_record
*subrec
,
5451 struct packet_struct
*p
,char *buf
);
5452 void process_reset_browser(struct subnet_record
*subrec
,
5453 struct packet_struct
*p
,char *buf
);
5454 void process_announce_request(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
5455 void process_lm_announce_request(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
, int len
);
5457 /* The following definitions come from nmbd/nmbd_incomingrequests.c */
5459 void process_name_release_request(struct subnet_record
*subrec
,
5460 struct packet_struct
*p
);
5461 void process_name_refresh_request(struct subnet_record
*subrec
,
5462 struct packet_struct
*p
);
5463 void process_name_registration_request(struct subnet_record
*subrec
,
5464 struct packet_struct
*p
);
5465 void process_node_status_request(struct subnet_record
*subrec
, struct packet_struct
*p
);
5466 void process_name_query_request(struct subnet_record
*subrec
, struct packet_struct
*p
);
5468 /* The following definitions come from nmbd/nmbd_lmhosts.c */
5470 void load_lmhosts_file(const char *fname
);
5471 bool find_name_in_lmhosts(struct nmb_name
*nmbname
, struct name_record
**namerecp
);
5473 /* The following definitions come from nmbd/nmbd_logonnames.c */
5475 void add_logon_names(void);
5477 /* The following definitions come from nmbd/nmbd_mynames.c */
5479 void register_my_workgroup_one_subnet(struct subnet_record
*subrec
);
5480 bool register_my_workgroup_and_names(void);
5481 void release_wins_names(void);
5482 void refresh_my_names(time_t t
);
5484 /* The following definitions come from nmbd/nmbd_namelistdb.c */
5486 void set_samba_nb_type(void);
5487 void remove_name_from_namelist(struct subnet_record
*subrec
,
5488 struct name_record
*namerec
);
5489 struct name_record
*find_name_on_subnet(struct subnet_record
*subrec
,
5490 const struct nmb_name
*nmbname
,
5492 struct name_record
*find_name_for_remote_broadcast_subnet(struct nmb_name
*nmbname
,
5494 void update_name_ttl( struct name_record
*namerec
, int ttl
);
5495 bool add_name_to_subnet( struct subnet_record
*subrec
,
5500 enum name_source source
,
5502 struct in_addr
*iplist
);
5503 void standard_success_register(struct subnet_record
*subrec
,
5504 struct userdata_struct
*userdata
,
5505 struct nmb_name
*nmbname
, uint16 nb_flags
, int ttl
,
5506 struct in_addr registered_ip
);
5507 void standard_fail_register( struct subnet_record
*subrec
,
5508 struct nmb_name
*nmbname
);
5509 bool find_ip_in_name_record( struct name_record
*namerec
, struct in_addr ip
);
5510 void add_ip_to_name_record( struct name_record
*namerec
, struct in_addr new_ip
);
5511 void remove_ip_from_name_record( struct name_record
*namerec
,
5512 struct in_addr remove_ip
);
5513 void standard_success_release( struct subnet_record
*subrec
,
5514 struct userdata_struct
*userdata
,
5515 struct nmb_name
*nmbname
,
5516 struct in_addr released_ip
);
5517 void expire_names(time_t t
);
5518 void add_samba_names_to_subnet( struct subnet_record
*subrec
);
5519 void dump_name_record( struct name_record
*namerec
, XFILE
*fp
);
5520 void dump_all_namelists(void);
5522 /* The following definitions come from nmbd/nmbd_namequery.c */
5524 bool query_name(struct subnet_record
*subrec
, const char *name
, int type
,
5525 query_name_success_function success_fn
,
5526 query_name_fail_function fail_fn
,
5527 struct userdata_struct
*userdata
);
5528 bool query_name_from_wins_server(struct in_addr ip_to
,
5529 const char *name
, int type
,
5530 query_name_success_function success_fn
,
5531 query_name_fail_function fail_fn
,
5532 struct userdata_struct
*userdata
);
5534 /* The following definitions come from nmbd/nmbd_nameregister.c */
5536 void register_name(struct subnet_record
*subrec
,
5537 const char *name
, int type
, uint16 nb_flags
,
5538 register_name_success_function success_fn
,
5539 register_name_fail_function fail_fn
,
5540 struct userdata_struct
*userdata
);
5541 void wins_refresh_name(struct name_record
*namerec
);
5543 /* The following definitions come from nmbd/nmbd_namerelease.c */
5545 void release_name(struct subnet_record
*subrec
, struct name_record
*namerec
,
5546 release_name_success_function success_fn
,
5547 release_name_fail_function fail_fn
,
5548 struct userdata_struct
*userdata
);
5550 /* The following definitions come from nmbd/nmbd_nodestatus.c */
5552 bool node_status(struct subnet_record
*subrec
, struct nmb_name
*nmbname
,
5553 struct in_addr send_ip
, node_status_success_function success_fn
,
5554 node_status_fail_function fail_fn
, struct userdata_struct
*userdata
);
5556 /* The following definitions come from nmbd/nmbd_packets.c */
5558 uint16
get_nb_flags(char *buf
);
5559 void set_nb_flags(char *buf
, uint16 nb_flags
);
5560 struct response_record
*queue_register_name( struct subnet_record
*subrec
,
5561 response_function resp_fn
,
5562 timeout_response_function timeout_fn
,
5563 register_name_success_function success_fn
,
5564 register_name_fail_function fail_fn
,
5565 struct userdata_struct
*userdata
,
5566 struct nmb_name
*nmbname
,
5568 void queue_wins_refresh(struct nmb_name
*nmbname
,
5569 response_function resp_fn
,
5570 timeout_response_function timeout_fn
,
5572 struct in_addr refresh_ip
,
5574 struct response_record
*queue_register_multihomed_name( struct subnet_record
*subrec
,
5575 response_function resp_fn
,
5576 timeout_response_function timeout_fn
,
5577 register_name_success_function success_fn
,
5578 register_name_fail_function fail_fn
,
5579 struct userdata_struct
*userdata
,
5580 struct nmb_name
*nmbname
,
5582 struct in_addr register_ip
,
5583 struct in_addr wins_ip
);
5584 struct response_record
*queue_release_name( struct subnet_record
*subrec
,
5585 response_function resp_fn
,
5586 timeout_response_function timeout_fn
,
5587 release_name_success_function success_fn
,
5588 release_name_fail_function fail_fn
,
5589 struct userdata_struct
*userdata
,
5590 struct nmb_name
*nmbname
,
5592 struct in_addr release_ip
,
5593 struct in_addr dest_ip
);
5594 struct response_record
*queue_query_name( struct subnet_record
*subrec
,
5595 response_function resp_fn
,
5596 timeout_response_function timeout_fn
,
5597 query_name_success_function success_fn
,
5598 query_name_fail_function fail_fn
,
5599 struct userdata_struct
*userdata
,
5600 struct nmb_name
*nmbname
);
5601 struct response_record
*queue_query_name_from_wins_server( struct in_addr to_ip
,
5602 response_function resp_fn
,
5603 timeout_response_function timeout_fn
,
5604 query_name_success_function success_fn
,
5605 query_name_fail_function fail_fn
,
5606 struct userdata_struct
*userdata
,
5607 struct nmb_name
*nmbname
);
5608 struct response_record
*queue_node_status( struct subnet_record
*subrec
,
5609 response_function resp_fn
,
5610 timeout_response_function timeout_fn
,
5611 node_status_success_function success_fn
,
5612 node_status_fail_function fail_fn
,
5613 struct userdata_struct
*userdata
,
5614 struct nmb_name
*nmbname
,
5615 struct in_addr send_ip
);
5616 void reply_netbios_packet(struct packet_struct
*orig_packet
,
5617 int rcode
, enum netbios_reply_type_code rcv_code
, int opcode
,
5618 int ttl
, char *data
,int len
);
5619 void run_packet_queue(void);
5620 void retransmit_or_expire_response_records(time_t t
);
5621 bool listen_for_packets(bool run_election
);
5622 bool send_mailslot(bool unique
, const char *mailslot
,char *buf
, size_t len
,
5623 const char *srcname
, int src_type
,
5624 const char *dstname
, int dest_type
,
5625 struct in_addr dest_ip
,struct in_addr src_ip
,
5628 /* The following definitions come from nmbd/nmbd_processlogon.c */
5630 void process_logon_packet(struct packet_struct
*p
, char *buf
,int len
,
5631 const char *mailslot
);
5633 /* The following definitions come from nmbd/nmbd_responserecordsdb.c */
5635 void remove_response_record(struct subnet_record
*subrec
,
5636 struct response_record
*rrec
);
5637 struct response_record
*make_response_record( struct subnet_record
*subrec
,
5638 struct packet_struct
*p
,
5639 response_function resp_fn
,
5640 timeout_response_function timeout_fn
,
5641 success_function success_fn
,
5642 fail_function fail_fn
,
5643 struct userdata_struct
*userdata
);
5644 struct response_record
*find_response_record(struct subnet_record
**ppsubrec
,
5646 bool is_refresh_already_queued(struct subnet_record
*subrec
, struct name_record
*namerec
);
5648 /* The following definitions come from nmbd/nmbd_sendannounce.c */
5650 void send_browser_reset(int reset_type
, const char *to_name
, int to_type
, struct in_addr to_ip
);
5651 void broadcast_announce_request(struct subnet_record
*subrec
, struct work_record
*work
);
5652 void announce_my_server_names(time_t t
);
5653 void announce_my_lm_server_names(time_t t
);
5654 void reset_announce_timer(void);
5655 void announce_myself_to_domain_master_browser(time_t t
);
5656 void announce_my_servers_removed(void);
5657 void announce_remote(time_t t
);
5658 void browse_sync_remote(time_t t
);
5660 /* The following definitions come from nmbd/nmbd_serverlistdb.c */
5662 void remove_all_servers(struct work_record
*work
);
5663 struct server_record
*find_server_in_workgroup(struct work_record
*work
, const char *name
);
5664 void remove_server_from_workgroup(struct work_record
*work
, struct server_record
*servrec
);
5665 struct server_record
*create_server_on_workgroup(struct work_record
*work
,
5666 const char *name
,int servertype
,
5667 int ttl
, const char *comment
);
5668 void update_server_ttl(struct server_record
*servrec
, int ttl
);
5669 void expire_servers(struct work_record
*work
, time_t t
);
5670 void write_browse_list_entry(XFILE
*fp
, const char *name
, uint32 rec_type
,
5671 const char *local_master_browser_name
, const char *description
);
5672 void write_browse_list(time_t t
, bool force_write
);
5674 /* The following definitions come from nmbd/nmbd_subnetdb.c */
5676 void close_subnet(struct subnet_record
*subrec
);
5677 struct subnet_record
*make_normal_subnet(const struct interface
*iface
);
5678 bool create_subnets(void);
5679 bool we_are_a_wins_client(void);
5680 struct subnet_record
*get_next_subnet_maybe_unicast(struct subnet_record
*subrec
);
5681 struct subnet_record
*get_next_subnet_maybe_unicast_or_wins_server(struct subnet_record
*subrec
);
5683 /* The following definitions come from nmbd/nmbd_synclists.c */
5685 void sync_browse_lists(struct work_record
*work
,
5686 char *name
, int nm_type
,
5687 struct in_addr ip
, bool local
, bool servers
);
5688 void sync_check_completion(void);
5690 /* The following definitions come from nmbd/nmbd_winsproxy.c */
5692 void make_wins_proxy_name_query_request( struct subnet_record
*subrec
,
5693 struct packet_struct
*incoming_packet
,
5694 struct nmb_name
*question_name
);
5696 /* The following definitions come from nmbd/nmbd_winsserver.c */
5698 struct name_record
*find_name_on_wins_subnet(const struct nmb_name
*nmbname
, bool self_only
);
5699 bool wins_store_changed_namerec(const struct name_record
*namerec
);
5700 bool add_name_to_wins_subnet(const struct name_record
*namerec
);
5701 bool remove_name_from_wins_namelist(struct name_record
*namerec
);
5702 void dump_wins_subnet_namelist(XFILE
*fp
);
5703 bool packet_is_for_wins_server(struct packet_struct
*packet
);
5704 bool initialise_wins(void);
5705 void wins_process_name_refresh_request( struct subnet_record
*subrec
,
5706 struct packet_struct
*p
);
5707 void wins_process_name_registration_request(struct subnet_record
*subrec
,
5708 struct packet_struct
*p
);
5709 void wins_process_multihomed_name_registration_request( struct subnet_record
*subrec
,
5710 struct packet_struct
*p
);
5711 void fetch_all_active_wins_1b_names(void);
5712 void send_wins_name_query_response(int rcode
, struct packet_struct
*p
,
5713 struct name_record
*namerec
);
5714 void wins_process_name_query_request(struct subnet_record
*subrec
,
5715 struct packet_struct
*p
);
5716 void wins_process_name_release_request(struct subnet_record
*subrec
,
5717 struct packet_struct
*p
);
5718 void initiate_wins_processing(time_t t
);
5719 void wins_write_name_record(struct name_record
*namerec
, XFILE
*fp
);
5720 void wins_write_database(time_t t
, bool background
);
5721 void nmbd_wins_new_entry(struct messaging_context
*msg
,
5724 struct server_id server_id
,
5727 /* The following definitions come from nmbd/nmbd_workgroupdb.c */
5729 struct work_record
*find_workgroup_on_subnet(struct subnet_record
*subrec
,
5731 struct work_record
*create_workgroup_on_subnet(struct subnet_record
*subrec
,
5732 const char *name
, int ttl
);
5733 void update_workgroup_ttl(struct work_record
*work
, int ttl
);
5734 void initiate_myworkgroup_startup(struct subnet_record
*subrec
, struct work_record
*work
);
5735 void dump_workgroups(bool force_write
);
5736 void expire_workgroups_and_servers(time_t t
);
5738 /* The following definitions come from param/loadparm.c */
5740 char *lp_smb_ports(void);
5741 char *lp_dos_charset(void);
5742 char *lp_unix_charset(void);
5743 char *lp_display_charset(void);
5744 char *lp_logfile(void);
5745 char *lp_configfile(void);
5746 char *lp_smb_passwd_file(void);
5747 char *lp_private_dir(void);
5748 char *lp_serverstring(void);
5749 int lp_printcap_cache_time(void);
5750 char *lp_addport_cmd(void);
5751 char *lp_enumports_cmd(void);
5752 char *lp_addprinter_cmd(void);
5753 char *lp_deleteprinter_cmd(void);
5754 char *lp_os2_driver_map(void);
5755 char *lp_lockdir(void);
5756 char *lp_piddir(void);
5757 char *lp_mangling_method(void);
5758 int lp_mangle_prefix(void);
5759 char *lp_utmpdir(void);
5760 char *lp_wtmpdir(void);
5762 char *lp_rootdir(void);
5763 char *lp_defaultservice(void);
5764 char *lp_msg_command(void);
5765 char *lp_get_quota_command(void);
5766 char *lp_set_quota_command(void);
5767 char *lp_auto_services(void);
5768 char *lp_passwd_program(void);
5769 char *lp_passwd_chat(void);
5770 char *lp_passwordserver(void);
5771 char *lp_name_resolve_order(void);
5772 char *lp_realm(void);
5773 const char *lp_afs_username_map(void);
5774 int lp_afs_token_lifetime(void);
5775 char *lp_log_nt_token_command(void);
5776 char *lp_username_map(void);
5777 const char *lp_logon_script(void);
5778 const char *lp_logon_path(void);
5779 const char *lp_logon_drive(void);
5780 const char *lp_logon_home(void);
5781 char *lp_remote_announce(void);
5782 char *lp_remote_browse_sync(void);
5783 const char **lp_wins_server_list(void);
5784 const char **lp_interfaces(void);
5785 char *lp_socket_address(void);
5786 char *lp_nis_home_map_name(void);
5787 const char **lp_netbios_aliases(void);
5788 const char *lp_passdb_backend(void);
5789 const char **lp_preload_modules(void);
5790 char *lp_panic_action(void);
5791 char *lp_adduser_script(void);
5792 char *lp_renameuser_script(void);
5793 char *lp_deluser_script(void);
5794 const char *lp_guestaccount(void);
5795 char *lp_addgroup_script(void);
5796 char *lp_delgroup_script(void);
5797 char *lp_addusertogroup_script(void);
5798 char *lp_deluserfromgroup_script(void);
5799 char *lp_setprimarygroup_script(void);
5800 char *lp_addmachine_script(void);
5801 char *lp_shutdown_script(void);
5802 char *lp_abort_shutdown_script(void);
5803 char *lp_username_map_script(void);
5804 char *lp_check_password_script(void);
5805 char *lp_wins_hook(void);
5806 const char *lp_template_homedir(void);
5807 const char *lp_template_shell(void);
5808 const char *lp_winbind_separator(void);
5809 int lp_acl_compatibility(void);
5810 bool lp_winbind_enum_users(void);
5811 bool lp_winbind_enum_groups(void);
5812 bool lp_winbind_use_default_domain(void);
5813 bool lp_winbind_trusted_domains_only(void);
5814 bool lp_winbind_nested_groups(void);
5815 int lp_winbind_expand_groups(void);
5816 bool lp_winbind_refresh_tickets(void);
5817 bool lp_winbind_offline_logon(void);
5818 bool lp_winbind_normalize_names(void);
5819 bool lp_winbind_rpc_only(void);
5820 const char **lp_idmap_domains(void);
5821 const char **lp_idmap_backend(void);
5822 char *lp_idmap_alloc_backend(void);
5823 int lp_idmap_cache_time(void);
5824 int lp_idmap_negative_cache_time(void);
5825 int lp_keepalive(void);
5826 bool lp_passdb_expand_explicit(void);
5827 char *lp_ldap_suffix(void);
5828 char *lp_ldap_admin_dn(void);
5829 int lp_ldap_ssl(void);
5830 int lp_ldap_passwd_sync(void);
5831 bool lp_ldap_delete_dn(void);
5832 int lp_ldap_replication_sleep(void);
5833 int lp_ldap_timeout(void);
5834 int lp_ldap_connection_timeout(void);
5835 int lp_ldap_page_size(void);
5836 int lp_ldap_debug_level(void);
5837 int lp_ldap_debug_threshold(void);
5838 char *lp_add_share_cmd(void);
5839 char *lp_change_share_cmd(void);
5840 char *lp_delete_share_cmd(void);
5841 char *lp_usershare_path(void);
5842 const char **lp_usershare_prefix_allow_list(void);
5843 const char **lp_usershare_prefix_deny_list(void);
5844 const char **lp_eventlog_list(void);
5845 bool lp_registry_shares(void);
5846 bool lp_usershare_allow_guests(void);
5847 bool lp_usershare_owner_only(void);
5848 bool lp_disable_netbios(void);
5849 bool lp_reset_on_zero_vc(void);
5850 bool lp_ms_add_printer_wizard(void);
5851 bool lp_dns_proxy(void);
5852 bool lp_wins_support(void);
5853 bool lp_we_are_a_wins_server(void);
5854 bool lp_wins_proxy(void);
5855 bool lp_local_master(void);
5856 bool lp_domain_logons(void);
5857 bool lp_load_printers(void);
5858 bool lp_readraw(void);
5859 bool lp_large_readwrite(void);
5860 bool lp_writeraw(void);
5861 bool lp_null_passwords(void);
5862 bool lp_obey_pam_restrictions(void);
5863 bool lp_encrypted_passwords(void);
5864 bool lp_update_encrypted(void);
5865 int lp_client_schannel(void);
5866 int lp_server_schannel(void);
5867 bool lp_syslog_only(void);
5868 bool lp_timestamp_logs(void);
5869 bool lp_debug_prefix_timestamp(void);
5870 bool lp_debug_hires_timestamp(void);
5871 bool lp_debug_pid(void);
5872 bool lp_debug_uid(void);
5873 bool lp_debug_class(void);
5874 bool lp_enable_core_files(void);
5875 bool lp_browse_list(void);
5876 bool lp_nis_home_map(void);
5877 bool lp_bind_interfaces_only(void);
5878 bool lp_pam_password_change(void);
5879 bool lp_unix_password_sync(void);
5880 bool lp_passwd_chat_debug(void);
5881 int lp_passwd_chat_timeout(void);
5882 bool lp_nt_pipe_support(void);
5883 bool lp_nt_status_support(void);
5884 bool lp_stat_cache(void);
5885 int lp_max_stat_cache_size(void);
5886 bool lp_allow_trusted_domains(void);
5887 int lp_restrict_anonymous(void);
5888 bool lp_lanman_auth(void);
5889 bool lp_ntlm_auth(void);
5890 bool lp_client_plaintext_auth(void);
5891 bool lp_client_lanman_auth(void);
5892 bool lp_client_ntlmv2_auth(void);
5893 bool lp_host_msdfs(void);
5894 bool lp_kernel_oplocks(void);
5895 bool lp_enhanced_browsing(void);
5896 bool lp_use_mmap(void);
5897 bool lp_unix_extensions(void);
5898 bool lp_use_spnego(void);
5899 bool lp_client_use_spnego(void);
5900 bool lp_hostname_lookups(void);
5901 bool lp_change_notify(const struct share_params
*p
);
5902 bool lp_kernel_change_notify(const struct share_params
*p
);
5903 bool lp_use_kerberos_keytab(void);
5904 bool lp_defer_sharing_violations(void);
5905 bool lp_enable_privileges(void);
5906 bool lp_enable_asu_support(void);
5907 int lp_os_level(void);
5908 int lp_max_ttl(void);
5909 int lp_max_wins_ttl(void);
5910 int lp_min_wins_ttl(void);
5911 int lp_max_log_size(void);
5912 int lp_max_open_files(void);
5913 int lp_open_files_db_hash_size(void);
5914 int lp_maxxmit(void);
5915 int lp_maxmux(void);
5916 int lp_passwordlevel(void);
5917 int lp_usernamelevel(void);
5918 int lp_deadtime(void);
5919 bool lp_getwd_cache(void);
5920 int lp_maxprotocol(void);
5921 int lp_minprotocol(void);
5922 int lp_security(void);
5923 const char **lp_auth_methods(void);
5924 bool lp_paranoid_server_security(void);
5925 int lp_maxdisksize(void);
5926 int lp_lpqcachetime(void);
5927 int lp_max_smbd_processes(void);
5928 bool _lp_disable_spoolss(void);
5929 int lp_syslog(void);
5930 int lp_lm_announce(void);
5931 int lp_lm_interval(void);
5932 int lp_machine_password_timeout(void);
5933 int lp_map_to_guest(void);
5934 int lp_oplock_break_wait_time(void);
5935 int lp_lock_spin_time(void);
5936 int lp_usershare_max_shares(void);
5937 const char *lp_socket_options(void);
5938 int lp_config_backend(void);
5939 char *lp_preexec(int );
5940 char *lp_postexec(int );
5941 char *lp_rootpreexec(int );
5942 char *lp_rootpostexec(int );
5943 char *lp_servicename(int );
5944 const char *lp_const_servicename(int );
5945 char *lp_pathname(int );
5946 char *lp_dontdescend(int );
5947 char *lp_username(int );
5948 const char **lp_invalid_users(int );
5949 const char **lp_valid_users(int );
5950 const char **lp_admin_users(int );
5951 const char **lp_svcctl_list(void);
5952 char *lp_cups_options(int );
5953 char *lp_cups_server(void);
5954 char *lp_iprint_server(void);
5955 const char *lp_ctdbd_socket(void);
5956 const char **lp_cluster_addresses(void);
5957 bool lp_clustering(void);
5958 char *lp_printcommand(int );
5959 char *lp_lpqcommand(int );
5960 char *lp_lprmcommand(int );
5961 char *lp_lppausecommand(int );
5962 char *lp_lpresumecommand(int );
5963 char *lp_queuepausecommand(int );
5964 char *lp_queueresumecommand(int );
5965 const char *lp_printjob_username(int );
5966 const char **lp_hostsallow(int );
5967 const char **lp_hostsdeny(int );
5968 char *lp_magicscript(int );
5969 char *lp_magicoutput(int );
5970 char *lp_comment(int );
5971 char *lp_force_user(int );
5972 char *lp_force_group(int );
5973 const char **lp_readlist(int );
5974 const char **lp_writelist(int );
5975 const char **lp_printer_admin(int );
5976 char *lp_fstype(int );
5977 const char **lp_vfs_objects(int );
5978 char *lp_msdfs_proxy(int );
5979 char *lp_veto_files(int );
5980 char *lp_hide_files(int );
5981 char *lp_veto_oplocks(int );
5982 bool lp_msdfs_root(int );
5983 char *lp_aio_write_behind(int );
5984 char *lp_dfree_command(int );
5985 bool lp_autoloaded(int );
5986 bool lp_preexec_close(int );
5987 bool lp_rootpreexec_close(int );
5988 int lp_casesensitive(int );
5989 bool lp_preservecase(int );
5990 bool lp_shortpreservecase(int );
5991 bool lp_hide_dot_files(int );
5992 bool lp_hide_special_files(int );
5993 bool lp_hideunreadable(int );
5994 bool lp_hideunwriteable_files(int );
5995 bool lp_browseable(int );
5996 bool lp_readonly(int );
5997 bool lp_no_set_dir(int );
5998 bool lp_guest_ok(int );
5999 bool lp_guest_only(int );
6000 bool lp_administrative_share(int );
6001 bool lp_print_ok(int );
6002 bool lp_map_hidden(int );
6003 bool lp_map_archive(int );
6004 bool lp_store_dos_attributes(int );
6005 bool lp_dmapi_support(int );
6006 bool lp_locking(const struct share_params
*p
);
6007 int lp_strict_locking(const struct share_params
*p
);
6008 bool lp_posix_locking(const struct share_params
*p
);
6009 bool lp_share_modes(int );
6010 bool lp_oplocks(int );
6011 bool lp_level2_oplocks(int );
6012 bool lp_onlyuser(int );
6013 bool lp_manglednames(const struct share_params
*p
);
6014 bool lp_widelinks(int );
6015 bool lp_symlinks(int );
6016 bool lp_syncalways(int );
6017 bool lp_strict_allocate(int );
6018 bool lp_strict_sync(int );
6019 bool lp_map_system(int );
6020 bool lp_delete_readonly(int );
6021 bool lp_fake_oplocks(int );
6022 bool lp_recursive_veto_delete(int );
6023 bool lp_dos_filemode(int );
6024 bool lp_dos_filetimes(int );
6025 bool lp_dos_filetime_resolution(int );
6026 bool lp_fake_dir_create_times(int );
6027 bool lp_blocking_locks(int );
6028 bool lp_inherit_perms(int );
6029 bool lp_inherit_acls(int );
6030 bool lp_inherit_owner(int );
6031 bool lp_use_client_driver(int );
6032 bool lp_default_devmode(int );
6033 bool lp_force_printername(int );
6034 bool lp_nt_acl_support(int );
6035 bool lp_force_unknown_acl_user(int );
6036 bool lp_ea_support(int );
6037 bool _lp_use_sendfile(int );
6038 bool lp_profile_acls(int );
6039 bool lp_map_acl_inherit(int );
6040 bool lp_afs_share(int );
6041 bool lp_acl_check_permissions(int );
6042 bool lp_acl_group_control(int );
6043 bool lp_acl_map_full_control(int );
6044 int lp_create_mask(int );
6045 int lp_force_create_mode(int );
6046 int lp_security_mask(int );
6047 int lp_force_security_mode(int );
6048 int lp_dir_mask(int );
6049 int lp_force_dir_mode(int );
6050 int lp_dir_security_mask(int );
6051 int lp_force_dir_security_mode(int );
6052 int lp_max_connections(int );
6053 int lp_defaultcase(int );
6054 int lp_minprintspace(int );
6055 int lp_printing(int );
6056 int lp_max_reported_jobs(int );
6057 int lp_oplock_contention_limit(int );
6058 int lp_csc_policy(int );
6059 int lp_write_cache_size(int );
6060 int lp_block_size(int );
6061 int lp_dfree_cache_time(int );
6062 int lp_allocation_roundup_size(int );
6063 int lp_aio_read_size(int );
6064 int lp_aio_write_size(int );
6065 int lp_map_readonly(int );
6066 int lp_directory_name_cache_size(int );
6067 int lp_smb_encrypt(int );
6068 char lp_magicchar(const struct share_params
*p
);
6069 int lp_winbind_cache_time(void);
6070 const char **lp_winbind_nss_info(void);
6071 int lp_algorithmic_rid_base(void);
6072 int lp_name_cache_timeout(void);
6073 int lp_client_signing(void);
6074 int lp_server_signing(void);
6075 int lp_client_ldap_sasl_wrapping(void);
6076 char *lp_parm_talloc_string(int snum
, const char *type
, const char *option
, const char *def
);
6077 const char *lp_parm_const_string(int snum
, const char *type
, const char *option
, const char *def
);
6078 const char **lp_parm_string_list(int snum
, const char *type
, const char *option
, const char **def
);
6079 int lp_parm_int(int snum
, const char *type
, const char *option
, int def
);
6080 unsigned long lp_parm_ulong(int snum
, const char *type
, const char *option
, unsigned long def
);
6081 bool lp_parm_bool(int snum
, const char *type
, const char *option
, bool def
);
6082 int lp_parm_enum(int snum
, const char *type
, const char *option
,
6083 const struct enum_list
*_enum
, int def
);
6084 bool lp_add_home(const char *pszHomename
, int iDefaultService
,
6085 const char *user
, const char *pszHomedir
);
6086 int lp_add_service(const char *pszService
, int iDefaultService
);
6087 bool lp_add_printer(const char *pszPrintername
, int iDefaultService
);
6088 bool lp_parameter_is_valid(const char *pszParmName
);
6089 bool lp_parameter_is_global(const char *pszParmName
);
6090 bool lp_parameter_is_canonical(const char *parm_name
);
6091 bool lp_canonicalize_parameter(const char *parm_name
, const char **canon_parm
,
6093 bool lp_canonicalize_parameter_with_value(const char *parm_name
,
6095 const char **canon_parm
,
6096 const char **canon_val
);
6097 void show_parameter_list(void);
6098 bool lp_string_is_valid_boolean(const char *parm_value
);
6099 bool lp_invert_boolean(const char *str
, const char **inverse_str
);
6100 bool lp_canonicalize_boolean(const char *str
, const char**canon_str
);
6101 bool service_ok(int iService
);
6102 bool lp_config_backend_is_registry(void);
6103 bool lp_config_backend_is_file(void);
6104 bool lp_file_list_changed(void);
6105 bool lp_idmap_uid(uid_t
*low
, uid_t
*high
);
6106 bool lp_idmap_gid(gid_t
*low
, gid_t
*high
);
6107 const char *lp_ldap_machine_suffix(void);
6108 const char *lp_ldap_user_suffix(void);
6109 const char *lp_ldap_group_suffix(void);
6110 const char *lp_ldap_idmap_suffix(void);
6111 void *lp_local_ptr(int snum
, void *ptr
);
6112 bool lp_do_parameter(int snum
, const char *pszParmName
, const char *pszParmValue
);
6113 void init_locals(void);
6114 bool lp_is_default(int snum
, struct parm_struct
*parm
);
6115 bool dump_a_parameter(int snum
, char *parm_name
, FILE * f
, bool isGlobal
);
6116 struct parm_struct
*lp_get_parameter(const char *param_name
);
6117 struct parm_struct
*lp_next_parameter(int snum
, int *i
, int allparameters
);
6118 bool lp_snum_ok(int iService
);
6119 void lp_add_one_printer(char *name
, char *comment
);
6120 bool lp_loaded(void);
6121 void lp_killunused(bool (*snumused
) (int));
6122 void lp_kill_all_services(void);
6123 void lp_killservice(int iServiceIn
);
6124 const char* server_role_str(uint32 role
);
6125 enum usershare_err
parse_usershare_file(TALLOC_CTX
*ctx
,
6126 SMB_STRUCT_STAT
*psbuf
,
6127 const char *servicename
,
6131 char **pp_sharepath
,
6134 bool *pallow_guest
);
6135 int load_usershare_service(const char *servicename
);
6136 int load_usershare_shares(void);
6137 void gfree_loadparm(void);
6138 void lp_set_in_client(bool b
);
6139 bool lp_is_in_client(void);
6140 bool lp_load_ex(const char *pszFname
,
6144 bool initialize_globals
,
6145 bool allow_include_registry
,
6146 bool allow_registry_shares
);
6147 bool lp_load(const char *pszFname
,
6151 bool initialize_globals
);
6152 bool lp_load_initial_only(const char *pszFname
);
6153 bool lp_load_with_registry_shares(const char *pszFname
,
6157 bool initialize_globals
);
6158 void lp_resetnumservices(void);
6159 int lp_numservices(void);
6160 void lp_dump(FILE *f
, bool show_defaults
, int maxtoprint
);
6161 void lp_dump_one(FILE * f
, bool show_defaults
, int snum
);
6162 int lp_servicenumber(const char *pszServiceName
);
6163 bool share_defined(const char *service_name
);
6164 struct share_params
*get_share_params(TALLOC_CTX
*mem_ctx
,
6165 const char *sharename
);
6166 struct share_iterator
*share_list_all(TALLOC_CTX
*mem_ctx
);
6167 struct share_params
*next_share(struct share_iterator
*list
);
6168 struct share_params
*next_printer(struct share_iterator
*list
);
6169 struct share_params
*snum2params_static(int snum
);
6170 const char *volume_label(int snum
);
6171 int lp_server_role(void);
6172 bool lp_domain_master(void);
6173 bool lp_preferred_master(void);
6174 void lp_remove_service(int snum
);
6175 void lp_copy_service(int snum
, const char *new_name
);
6176 int lp_default_server_announce(void);
6177 int lp_major_announce_version(void);
6178 int lp_minor_announce_version(void);
6179 void lp_set_name_resolve_order(const char *new_order
);
6180 const char *lp_printername(int snum
);
6181 void lp_set_logfile(const char *name
);
6182 int lp_maxprintjobs(int snum
);
6183 const char *lp_printcapname(void);
6184 bool lp_disable_spoolss( void );
6185 void lp_set_spoolss_state( uint32 state
);
6186 uint32
lp_get_spoolss_state( void );
6187 bool lp_use_sendfile(int snum
);
6188 void set_use_sendfile(int snum
, bool val
);
6189 void set_store_dos_attributes(int snum
, bool val
);
6190 void lp_set_mangling_method(const char *new_method
);
6191 bool lp_posix_pathnames(void);
6192 void lp_set_posix_pathnames(void);
6193 enum brl_flavour
lp_posix_cifsu_locktype(files_struct
*fsp
);
6194 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val
);
6195 int lp_min_receive_file_size(void);
6197 /* The following definitions come from param/params.c */
6199 bool pm_process( const char *FileName
,
6200 bool (*sfunc
)(const char *, void *),
6201 bool (*pfunc
)(const char *, const char *, void *),
6204 /* The following definitions come from param/util.c */
6206 uint32
get_int_param( const char* param
);
6207 char* get_string_param( const char* param
);
6209 /* The following definitions come from passdb/login_cache.c */
6211 bool login_cache_init(void);
6212 bool login_cache_shutdown(void);
6213 LOGIN_CACHE
* login_cache_read(struct samu
*sampass
);
6214 bool login_cache_write(const struct samu
*sampass
, LOGIN_CACHE entry
);
6215 bool login_cache_delentry(const struct samu
*sampass
);
6217 /* The following definitions come from passdb/lookup_sid.c */
6219 bool lookup_name(TALLOC_CTX
*mem_ctx
,
6220 const char *full_name
, int flags
,
6221 const char **ret_domain
, const char **ret_name
,
6222 DOM_SID
*ret_sid
, enum lsa_SidType
*ret_type
);
6223 bool lookup_name_smbconf(TALLOC_CTX
*mem_ctx
,
6224 const char *full_name
, int flags
,
6225 const char **ret_domain
, const char **ret_name
,
6226 DOM_SID
*ret_sid
, enum lsa_SidType
*ret_type
);
6227 NTSTATUS
lookup_sids(TALLOC_CTX
*mem_ctx
, int num_sids
,
6228 const DOM_SID
**sids
, int level
,
6229 struct lsa_dom_info
**ret_domains
,
6230 struct lsa_name_info
**ret_names
);
6231 bool lookup_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
6232 const char **ret_domain
, const char **ret_name
,
6233 enum lsa_SidType
*ret_type
);
6234 void store_uid_sid_cache(const DOM_SID
*psid
, uid_t uid
);
6235 void store_gid_sid_cache(const DOM_SID
*psid
, gid_t gid
);
6236 void uid_to_sid(DOM_SID
*psid
, uid_t uid
);
6237 void gid_to_sid(DOM_SID
*psid
, gid_t gid
);
6238 bool sid_to_uid(const DOM_SID
*psid
, uid_t
*puid
);
6239 bool sid_to_gid(const DOM_SID
*psid
, gid_t
*pgid
);
6241 /* The following definitions come from passdb/machine_sid.c */
6243 DOM_SID
*get_global_sam_sid(void);
6244 void reset_global_sam_sid(void) ;
6245 bool sid_check_is_domain(const DOM_SID
*sid
);
6246 bool sid_check_is_in_our_domain(const DOM_SID
*sid
);
6248 /* The following definitions come from passdb/passdb.c */
6250 const char *my_sam_name(void);
6251 struct samu
*samu_new( TALLOC_CTX
*ctx
);
6252 NTSTATUS
samu_set_unix(struct samu
*user
, const struct passwd
*pwd
);
6253 NTSTATUS
samu_alloc_rid_unix(struct samu
*user
, const struct passwd
*pwd
);
6254 char *pdb_encode_acct_ctrl(uint32 acct_ctrl
, size_t length
);
6255 uint32
pdb_decode_acct_ctrl(const char *p
);
6256 void pdb_sethexpwd(char p
[33], const unsigned char *pwd
, uint32 acct_ctrl
);
6257 bool pdb_gethexpwd(const char *p
, unsigned char *pwd
);
6258 void pdb_sethexhours(char *p
, const unsigned char *hours
);
6259 bool pdb_gethexhours(const char *p
, unsigned char *hours
);
6260 int algorithmic_rid_base(void);
6261 uid_t
algorithmic_pdb_user_rid_to_uid(uint32 user_rid
);
6262 uid_t
max_algorithmic_uid(void);
6263 uint32
algorithmic_pdb_uid_to_user_rid(uid_t uid
);
6264 gid_t
pdb_group_rid_to_gid(uint32 group_rid
);
6265 gid_t
max_algorithmic_gid(void);
6266 uint32
algorithmic_pdb_gid_to_group_rid(gid_t gid
);
6267 bool algorithmic_pdb_rid_is_user(uint32 rid
);
6268 bool lookup_global_sam_name(const char *name
, int flags
, uint32_t *rid
,
6269 enum lsa_SidType
*type
);
6270 NTSTATUS
local_password_change(const char *user_name
,
6272 const char *new_passwd
,
6275 bool init_sam_from_buffer_v3(struct samu
*sampass
, uint8
*buf
, uint32 buflen
);
6276 uint32
init_buffer_from_sam_v3 (uint8
**buf
, struct samu
*sampass
, bool size_only
);
6277 bool pdb_copy_sam_account(struct samu
*dst
, struct samu
*src
);
6278 bool pdb_update_bad_password_count(struct samu
*sampass
, bool *updated
);
6279 bool pdb_update_autolock_flag(struct samu
*sampass
, bool *updated
);
6280 bool pdb_increment_bad_password_count(struct samu
*sampass
);
6281 bool is_dc_trusted_domain_situation(const char *domain_name
);
6282 bool get_trust_pw_clear(const char *domain
, char **ret_pwd
,
6283 const char **account_name
, uint32
*channel
);
6284 bool get_trust_pw_hash(const char *domain
, uint8 ret_pwd
[16],
6285 const char **account_name
, uint32
*channel
);
6286 struct samr_LogonHours
get_logon_hours_from_pdb(TALLOC_CTX
*mem_ctx
,
6289 /* The following definitions come from passdb/pdb_compat.c */
6291 uint32
pdb_get_user_rid (const struct samu
*sampass
);
6292 uint32
pdb_get_group_rid (struct samu
*sampass
);
6293 bool pdb_set_user_sid_from_rid (struct samu
*sampass
, uint32 rid
, enum pdb_value_state flag
);
6294 bool pdb_set_group_sid_from_rid (struct samu
*sampass
, uint32 grid
, enum pdb_value_state flag
);
6296 /* The following definitions come from passdb/pdb_get_set.c */
6298 uint32
pdb_get_acct_ctrl(const struct samu
*sampass
);
6299 time_t pdb_get_logon_time(const struct samu
*sampass
);
6300 time_t pdb_get_logoff_time(const struct samu
*sampass
);
6301 time_t pdb_get_kickoff_time(const struct samu
*sampass
);
6302 time_t pdb_get_bad_password_time(const struct samu
*sampass
);
6303 time_t pdb_get_pass_last_set_time(const struct samu
*sampass
);
6304 time_t pdb_get_pass_can_change_time(const struct samu
*sampass
);
6305 time_t pdb_get_pass_can_change_time_noncalc(const struct samu
*sampass
);
6306 time_t pdb_get_pass_must_change_time(const struct samu
*sampass
);
6307 bool pdb_get_pass_can_change(const struct samu
*sampass
);
6308 uint16
pdb_get_logon_divs(const struct samu
*sampass
);
6309 uint32
pdb_get_hours_len(const struct samu
*sampass
);
6310 const uint8
*pdb_get_hours(const struct samu
*sampass
);
6311 const uint8
*pdb_get_nt_passwd(const struct samu
*sampass
);
6312 const uint8
*pdb_get_lanman_passwd(const struct samu
*sampass
);
6313 const uint8
*pdb_get_pw_history(const struct samu
*sampass
, uint32
*current_hist_len
);
6314 const char *pdb_get_plaintext_passwd(const struct samu
*sampass
);
6315 const DOM_SID
*pdb_get_user_sid(const struct samu
*sampass
);
6316 const DOM_SID
*pdb_get_group_sid(struct samu
*sampass
);
6317 enum pdb_value_state
pdb_get_init_flags(const struct samu
*sampass
, enum pdb_elements element
);
6318 const char *pdb_get_username(const struct samu
*sampass
);
6319 const char *pdb_get_domain(const struct samu
*sampass
);
6320 const char *pdb_get_nt_username(const struct samu
*sampass
);
6321 const char *pdb_get_fullname(const struct samu
*sampass
);
6322 const char *pdb_get_homedir(const struct samu
*sampass
);
6323 const char *pdb_get_dir_drive(const struct samu
*sampass
);
6324 const char *pdb_get_logon_script(const struct samu
*sampass
);
6325 const char *pdb_get_profile_path(const struct samu
*sampass
);
6326 const char *pdb_get_acct_desc(const struct samu
*sampass
);
6327 const char *pdb_get_workstations(const struct samu
*sampass
);
6328 const char *pdb_get_comment(const struct samu
*sampass
);
6329 const char *pdb_get_munged_dial(const struct samu
*sampass
);
6330 uint16
pdb_get_bad_password_count(const struct samu
*sampass
);
6331 uint16
pdb_get_logon_count(const struct samu
*sampass
);
6332 uint32
pdb_get_unknown_6(const struct samu
*sampass
);
6333 void *pdb_get_backend_private_data(const struct samu
*sampass
, const struct pdb_methods
*my_methods
);
6334 bool pdb_set_acct_ctrl(struct samu
*sampass
, uint32 acct_ctrl
, enum pdb_value_state flag
);
6335 bool pdb_set_logon_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
6336 bool pdb_set_logoff_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
6337 bool pdb_set_kickoff_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
6338 bool pdb_set_bad_password_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
6339 bool pdb_set_pass_can_change_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
6340 bool pdb_set_pass_must_change_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
6341 bool pdb_set_pass_last_set_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
6342 bool pdb_set_hours_len(struct samu
*sampass
, uint32 len
, enum pdb_value_state flag
);
6343 bool pdb_set_logon_divs(struct samu
*sampass
, uint16 hours
, enum pdb_value_state flag
);
6344 bool pdb_set_init_flags(struct samu
*sampass
, enum pdb_elements element
, enum pdb_value_state value_flag
);
6345 bool pdb_set_user_sid(struct samu
*sampass
, const DOM_SID
*u_sid
, enum pdb_value_state flag
);
6346 bool pdb_set_user_sid_from_string(struct samu
*sampass
, fstring u_sid
, enum pdb_value_state flag
);
6347 bool pdb_set_group_sid(struct samu
*sampass
, const DOM_SID
*g_sid
, enum pdb_value_state flag
);
6348 bool pdb_set_username(struct samu
*sampass
, const char *username
, enum pdb_value_state flag
);
6349 bool pdb_set_domain(struct samu
*sampass
, const char *domain
, enum pdb_value_state flag
);
6350 bool pdb_set_nt_username(struct samu
*sampass
, const char *nt_username
, enum pdb_value_state flag
);
6351 bool pdb_set_fullname(struct samu
*sampass
, const char *full_name
, enum pdb_value_state flag
);
6352 bool pdb_set_logon_script(struct samu
*sampass
, const char *logon_script
, enum pdb_value_state flag
);
6353 bool pdb_set_profile_path(struct samu
*sampass
, const char *profile_path
, enum pdb_value_state flag
);
6354 bool pdb_set_dir_drive(struct samu
*sampass
, const char *dir_drive
, enum pdb_value_state flag
);
6355 bool pdb_set_homedir(struct samu
*sampass
, const char *home_dir
, enum pdb_value_state flag
);
6356 bool pdb_set_acct_desc(struct samu
*sampass
, const char *acct_desc
, enum pdb_value_state flag
);
6357 bool pdb_set_workstations(struct samu
*sampass
, const char *workstations
, enum pdb_value_state flag
);
6358 bool pdb_set_comment(struct samu
*sampass
, const char *comment
, enum pdb_value_state flag
);
6359 bool pdb_set_munged_dial(struct samu
*sampass
, const char *munged_dial
, enum pdb_value_state flag
);
6360 bool pdb_set_nt_passwd(struct samu
*sampass
, const uint8 pwd
[NT_HASH_LEN
], enum pdb_value_state flag
);
6361 bool pdb_set_lanman_passwd(struct samu
*sampass
, const uint8 pwd
[LM_HASH_LEN
], enum pdb_value_state flag
);
6362 bool pdb_set_pw_history(struct samu
*sampass
, const uint8
*pwd
, uint32 historyLen
, enum pdb_value_state flag
);
6363 bool pdb_set_plaintext_pw_only(struct samu
*sampass
, const char *password
, enum pdb_value_state flag
);
6364 bool pdb_set_bad_password_count(struct samu
*sampass
, uint16 bad_password_count
, enum pdb_value_state flag
);
6365 bool pdb_set_logon_count(struct samu
*sampass
, uint16 logon_count
, enum pdb_value_state flag
);
6366 bool pdb_set_unknown_6(struct samu
*sampass
, uint32 unkn
, enum pdb_value_state flag
);
6367 bool pdb_set_hours(struct samu
*sampass
, const uint8
*hours
, enum pdb_value_state flag
);
6368 bool pdb_set_backend_private_data(struct samu
*sampass
, void *private_data
,
6369 void (*free_fn
)(void **),
6370 const struct pdb_methods
*my_methods
,
6371 enum pdb_value_state flag
);
6372 bool pdb_set_pass_can_change(struct samu
*sampass
, bool canchange
);
6373 bool pdb_set_plaintext_passwd(struct samu
*sampass
, const char *plaintext
);
6374 uint32
pdb_build_fields_present(struct samu
*sampass
);
6376 /* The following definitions come from passdb/pdb_interface.c */
6378 NTSTATUS
smb_register_passdb(int version
, const char *name
, pdb_init_function init
) ;
6379 struct pdb_init_function_entry
*pdb_find_backend_entry(const char *name
);
6380 struct event_context
*pdb_get_event_context(void);
6381 NTSTATUS
make_pdb_method_name(struct pdb_methods
**methods
, const char *selected
);
6382 bool pdb_getsampwnam(struct samu
*sam_acct
, const char *username
) ;
6383 bool guest_user_info( struct samu
*user
);
6384 bool pdb_getsampwsid(struct samu
*sam_acct
, const DOM_SID
*sid
) ;
6385 NTSTATUS
pdb_create_user(TALLOC_CTX
*mem_ctx
, const char *name
, uint32 flags
,
6387 NTSTATUS
pdb_delete_user(TALLOC_CTX
*mem_ctx
, struct samu
*sam_acct
);
6388 NTSTATUS
pdb_add_sam_account(struct samu
*sam_acct
) ;
6389 NTSTATUS
pdb_update_sam_account(struct samu
*sam_acct
) ;
6390 NTSTATUS
pdb_delete_sam_account(struct samu
*sam_acct
) ;
6391 NTSTATUS
pdb_rename_sam_account(struct samu
*oldname
, const char *newname
);
6392 NTSTATUS
pdb_update_login_attempts(struct samu
*sam_acct
, bool success
);
6393 bool pdb_getgrsid(GROUP_MAP
*map
, DOM_SID sid
);
6394 bool pdb_getgrgid(GROUP_MAP
*map
, gid_t gid
);
6395 bool pdb_getgrnam(GROUP_MAP
*map
, const char *name
);
6396 NTSTATUS
pdb_create_dom_group(TALLOC_CTX
*mem_ctx
, const char *name
,
6398 NTSTATUS
pdb_delete_dom_group(TALLOC_CTX
*mem_ctx
, uint32 rid
);
6399 NTSTATUS
pdb_add_group_mapping_entry(GROUP_MAP
*map
);
6400 NTSTATUS
pdb_update_group_mapping_entry(GROUP_MAP
*map
);
6401 NTSTATUS
pdb_delete_group_mapping_entry(DOM_SID sid
);
6402 bool pdb_enum_group_mapping(const DOM_SID
*sid
, enum lsa_SidType sid_name_use
, GROUP_MAP
**pp_rmap
,
6403 size_t *p_num_entries
, bool unix_only
);
6404 NTSTATUS
pdb_enum_group_members(TALLOC_CTX
*mem_ctx
,
6406 uint32
**pp_member_rids
,
6407 size_t *p_num_members
);
6408 NTSTATUS
pdb_enum_group_memberships(TALLOC_CTX
*mem_ctx
, struct samu
*user
,
6409 DOM_SID
**pp_sids
, gid_t
**pp_gids
,
6410 size_t *p_num_groups
);
6411 NTSTATUS
pdb_set_unix_primary_group(TALLOC_CTX
*mem_ctx
, struct samu
*user
);
6412 NTSTATUS
pdb_add_groupmem(TALLOC_CTX
*mem_ctx
, uint32 group_rid
,
6414 NTSTATUS
pdb_del_groupmem(TALLOC_CTX
*mem_ctx
, uint32 group_rid
,
6416 NTSTATUS
pdb_create_alias(const char *name
, uint32
*rid
);
6417 NTSTATUS
pdb_delete_alias(const DOM_SID
*sid
);
6418 NTSTATUS
pdb_get_aliasinfo(const DOM_SID
*sid
, struct acct_info
*info
);
6419 NTSTATUS
pdb_set_aliasinfo(const DOM_SID
*sid
, struct acct_info
*info
);
6420 NTSTATUS
pdb_add_aliasmem(const DOM_SID
*alias
, const DOM_SID
*member
);
6421 NTSTATUS
pdb_del_aliasmem(const DOM_SID
*alias
, const DOM_SID
*member
);
6422 NTSTATUS
pdb_enum_aliasmem(const DOM_SID
*alias
,
6423 DOM_SID
**pp_members
, size_t *p_num_members
);
6424 NTSTATUS
pdb_enum_alias_memberships(TALLOC_CTX
*mem_ctx
,
6425 const DOM_SID
*domain_sid
,
6426 const DOM_SID
*members
, size_t num_members
,
6427 uint32
**pp_alias_rids
,
6428 size_t *p_num_alias_rids
);
6429 NTSTATUS
pdb_lookup_rids(const DOM_SID
*domain_sid
,
6433 enum lsa_SidType
*attrs
);
6434 NTSTATUS
pdb_lookup_names(const DOM_SID
*domain_sid
,
6438 enum lsa_SidType
*attrs
);
6439 bool pdb_get_account_policy(int policy_index
, uint32
*value
);
6440 bool pdb_set_account_policy(int policy_index
, uint32 value
);
6441 bool pdb_get_seq_num(time_t *seq_num
);
6442 bool pdb_uid_to_rid(uid_t uid
, uint32
*rid
);
6443 bool pdb_uid_to_sid(uid_t uid
, DOM_SID
*sid
);
6444 bool pdb_gid_to_sid(gid_t gid
, DOM_SID
*sid
);
6445 bool pdb_sid_to_id(const DOM_SID
*sid
, union unid_t
*id
,
6446 enum lsa_SidType
*type
);
6447 bool pdb_rid_algorithm(void);
6448 bool pdb_new_rid(uint32
*rid
);
6449 bool initialize_password_db(bool reload
, struct event_context
*event_ctx
);
6450 struct pdb_search
*pdb_search_init(enum pdb_search_type type
);
6451 struct pdb_search
*pdb_search_users(uint32 acct_flags
);
6452 struct pdb_search
*pdb_search_groups(void);
6453 struct pdb_search
*pdb_search_aliases(const DOM_SID
*sid
);
6454 uint32
pdb_search_entries(struct pdb_search
*search
,
6455 uint32 start_idx
, uint32 max_entries
,
6456 struct samr_displayentry
**result
);
6457 void pdb_search_destroy(struct pdb_search
*search
);
6458 bool pdb_get_trusteddom_pw(const char *domain
, char** pwd
, DOM_SID
*sid
,
6459 time_t *pass_last_set_time
);
6460 bool pdb_set_trusteddom_pw(const char* domain
, const char* pwd
,
6461 const DOM_SID
*sid
);
6462 bool pdb_del_trusteddom_pw(const char *domain
);
6463 NTSTATUS
pdb_enum_trusteddoms(TALLOC_CTX
*mem_ctx
, uint32
*num_domains
,
6464 struct trustdom_info
***domains
);
6465 NTSTATUS
make_pdb_method( struct pdb_methods
**methods
) ;
6467 /* The following definitions come from passdb/pdb_ldap.c */
6469 const char** get_userattr_list( TALLOC_CTX
*mem_ctx
, int schema_ver
);
6470 int ldapsam_search_suffix_by_name(struct ldapsam_privates
*ldap_state
,
6472 LDAPMessage
** result
,
6474 const char **talloc_attrs(TALLOC_CTX
*mem_ctx
, ...);
6475 NTSTATUS
pdb_init_ldapsam_compat(struct pdb_methods
**pdb_method
, const char *location
);
6476 NTSTATUS
pdb_init_ldapsam(struct pdb_methods
**pdb_method
, const char *location
);
6477 NTSTATUS
pdb_ldap_init(void);
6479 /* The following definitions come from passdb/pdb_nds.c */
6481 int pdb_nds_get_password(
6482 struct smbldap_state
*ldap_state
,
6486 int pdb_nds_set_password(
6487 struct smbldap_state
*ldap_state
,
6490 NTSTATUS
pdb_nds_init(void);
6492 /* The following definitions come from passdb/pdb_smbpasswd.c */
6494 NTSTATUS
pdb_smbpasswd_init(void) ;
6496 /* The following definitions come from passdb/pdb_tdb.c */
6498 bool init_sam_from_buffer_v2(struct samu
*sampass
, uint8
*buf
, uint32 buflen
);
6499 NTSTATUS
pdb_tdbsam_init(void);
6501 /* The following definitions come from passdb/secrets.c */
6503 bool secrets_init(void);
6504 struct db_context
*secrets_db_ctx(void);
6505 void secrets_shutdown(void);
6506 void *secrets_fetch(const char *key
, size_t *size
);
6507 bool secrets_store(const char *key
, const void *data
, size_t size
);
6508 bool secrets_delete(const char *key
);
6509 bool secrets_store_domain_sid(const char *domain
, const DOM_SID
*sid
);
6510 bool secrets_fetch_domain_sid(const char *domain
, DOM_SID
*sid
);
6511 bool secrets_store_domain_guid(const char *domain
, struct GUID
*guid
);
6512 bool secrets_fetch_domain_guid(const char *domain
, struct GUID
*guid
);
6513 void *secrets_get_trust_account_lock(TALLOC_CTX
*mem_ctx
, const char *domain
);
6514 uint32
get_default_sec_channel(void);
6515 bool secrets_fetch_trust_account_password_legacy(const char *domain
,
6517 time_t *pass_last_set_time
,
6519 bool secrets_fetch_trust_account_password(const char *domain
, uint8 ret_pwd
[16],
6520 time_t *pass_last_set_time
,
6522 bool secrets_fetch_trusted_domain_password(const char *domain
, char** pwd
,
6523 DOM_SID
*sid
, time_t *pass_last_set_time
);
6524 bool secrets_store_trusted_domain_password(const char* domain
, const char* pwd
,
6525 const DOM_SID
*sid
);
6526 bool secrets_delete_machine_password(const char *domain
);
6527 bool secrets_delete_machine_password_ex(const char *domain
);
6528 bool secrets_delete_domain_sid(const char *domain
);
6529 bool secrets_store_machine_password(const char *pass
, const char *domain
, uint32 sec_channel
);
6530 char *secrets_fetch_machine_password(const char *domain
,
6531 time_t *pass_last_set_time
,
6533 bool trusted_domain_password_delete(const char *domain
);
6534 bool secrets_store_ldap_pw(const char* dn
, char* pw
);
6535 bool fetch_ldap_pw(char **dn
, char** pw
);
6536 NTSTATUS
secrets_trusted_domains(TALLOC_CTX
*mem_ctx
, uint32
*num_domains
,
6537 struct trustdom_info
***domains
);
6538 bool secrets_store_afs_keyfile(const char *cell
, const struct afs_keyfile
*keyfile
);
6539 bool secrets_fetch_afs_key(const char *cell
, struct afs_key
*result
);
6540 void secrets_fetch_ipc_userpass(char **username
, char **domain
, char **password
);
6541 bool secrets_store_schannel_session_info(TALLOC_CTX
*mem_ctx
,
6542 const char *remote_machine
,
6543 const struct dcinfo
*pdc
);
6544 bool secrets_restore_schannel_session_info(TALLOC_CTX
*mem_ctx
,
6545 const char *remote_machine
,
6546 struct dcinfo
**ppdc
);
6547 bool secrets_store_generic(const char *owner
, const char *key
, const char *secret
);
6548 char *secrets_fetch_generic(const char *owner
, const char *key
);
6550 /* The following definitions come from passdb/util_builtin.c */
6552 bool lookup_builtin_rid(TALLOC_CTX
*mem_ctx
, uint32 rid
, const char **name
);
6553 bool lookup_builtin_name(const char *name
, uint32
*rid
);
6554 const char *builtin_domain_name(void);
6555 bool sid_check_is_builtin(const DOM_SID
*sid
);
6556 bool sid_check_is_in_builtin(const DOM_SID
*sid
);
6558 /* The following definitions come from passdb/util_unixsids.c */
6560 bool sid_check_is_unix_users(const DOM_SID
*sid
);
6561 bool sid_check_is_in_unix_users(const DOM_SID
*sid
);
6562 bool uid_to_unix_users_sid(uid_t uid
, DOM_SID
*sid
);
6563 bool gid_to_unix_groups_sid(gid_t gid
, DOM_SID
*sid
);
6564 const char *unix_users_domain_name(void);
6565 bool lookup_unix_user_name(const char *name
, DOM_SID
*sid
);
6566 bool sid_check_is_unix_groups(const DOM_SID
*sid
);
6567 bool sid_check_is_in_unix_groups(const DOM_SID
*sid
);
6568 const char *unix_groups_domain_name(void);
6569 bool lookup_unix_group_name(const char *name
, DOM_SID
*sid
);
6571 /* The following definitions come from passdb/util_wellknown.c */
6573 bool sid_check_is_wellknown_domain(const DOM_SID
*sid
, const char **name
);
6574 bool sid_check_is_in_wellknown_domain(const DOM_SID
*sid
);
6575 bool lookup_wellknown_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
6576 const char **domain
, const char **name
);
6577 bool lookup_wellknown_name(TALLOC_CTX
*mem_ctx
, const char *name
,
6578 DOM_SID
*sid
, const char **domain
);
6580 /* The following definitions come from printing/load.c */
6582 void load_printers(void);
6584 /* The following definitions come from printing/lpq_parse.c */
6586 bool parse_lpq_entry(enum printing_types printing_type
,char *line
,
6587 print_queue_struct
*buf
,
6588 print_status_struct
*status
,bool first
);
6590 /* The following definitions come from printing/notify.c */
6592 int print_queue_snum(const char *qname
);
6593 bool print_notify_messages_pending(void);
6594 void print_notify_send_messages(struct messaging_context
*msg_ctx
,
6595 unsigned int timeout
);
6596 void notify_printer_status_byname(const char *sharename
, uint32 status
);
6597 void notify_printer_status(int snum
, uint32 status
);
6598 void notify_job_status_byname(const char *sharename
, uint32 jobid
, uint32 status
,
6600 void notify_job_status(const char *sharename
, uint32 jobid
, uint32 status
);
6601 void notify_job_total_bytes(const char *sharename
, uint32 jobid
,
6603 void notify_job_total_pages(const char *sharename
, uint32 jobid
,
6605 void notify_job_username(const char *sharename
, uint32 jobid
, char *name
);
6606 void notify_job_name(const char *sharename
, uint32 jobid
, char *name
);
6607 void notify_job_submitted(const char *sharename
, uint32 jobid
,
6609 void notify_printer_driver(int snum
, char *driver_name
);
6610 void notify_printer_comment(int snum
, char *comment
);
6611 void notify_printer_sharename(int snum
, char *share_name
);
6612 void notify_printer_printername(int snum
, char *printername
);
6613 void notify_printer_port(int snum
, char *port_name
);
6614 void notify_printer_location(int snum
, char *location
);
6615 void notify_printer_byname( const char *printername
, uint32 change
, const char *value
);
6616 bool print_notify_pid_list(const char *printername
, TALLOC_CTX
*mem_ctx
, size_t *p_num_pids
, pid_t
**pp_pid_list
);
6618 /* The following definitions come from printing/nt_printing.c */
6620 bool nt_printing_init(struct messaging_context
*msg_ctx
);
6621 uint32
update_c_setprinter(bool initialize
);
6622 uint32
get_c_setprinter(void);
6623 int get_builtin_ntforms(nt_forms_struct
**list
);
6624 bool get_a_builtin_ntform(UNISTR2
*uni_formname
,nt_forms_struct
*form
);
6625 int get_ntforms(nt_forms_struct
**list
);
6626 int write_ntforms(nt_forms_struct
**list
, int number
);
6627 bool add_a_form(nt_forms_struct
**list
, const FORM
*form
, int *count
);
6628 bool delete_a_form(nt_forms_struct
**list
, UNISTR2
*del_name
, int *count
, WERROR
*ret
);
6629 void update_a_form(nt_forms_struct
**list
, const FORM
*form
, int count
);
6630 int get_ntdrivers(fstring
**list
, const char *architecture
, uint32 version
);
6631 const char *get_short_archi(const char *long_archi
);
6632 WERROR
clean_up_driver_struct(NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract
,
6633 uint32 level
, struct current_user
*user
);
6634 WERROR
move_driver_to_download_area(NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract
, uint32 level
,
6635 struct current_user
*user
, WERROR
*perr
);
6636 int pack_devicemode(NT_DEVICEMODE
*nt_devmode
, uint8
*buf
, int buflen
);
6637 uint32
del_a_printer(const char *sharename
);
6638 NT_DEVICEMODE
*construct_nt_devicemode(const fstring default_devicename
);
6639 NT_DEVICEMODE
*dup_nt_devicemode(NT_DEVICEMODE
*nt_devicemode
);
6640 void free_nt_devicemode(NT_DEVICEMODE
**devmode_ptr
);
6641 int unpack_devicemode(NT_DEVICEMODE
**nt_devmode
, const uint8
*buf
, int buflen
);
6642 int add_new_printer_key( NT_PRINTER_DATA
*data
, const char *name
);
6643 int delete_printer_key( NT_PRINTER_DATA
*data
, const char *name
);
6644 int lookup_printerkey( NT_PRINTER_DATA
*data
, const char *name
);
6645 int get_printer_subkeys( NT_PRINTER_DATA
*data
, const char* key
, fstring
**subkeys
);
6646 WERROR
nt_printer_publish(Printer_entry
*print_hnd
, int snum
, int action
);
6647 WERROR
check_published_printers(void);
6648 bool is_printer_published(Printer_entry
*print_hnd
, int snum
,
6650 WERROR
nt_printer_publish(Printer_entry
*print_hnd
, int snum
, int action
);
6651 WERROR
check_published_printers(void);
6652 bool is_printer_published(Printer_entry
*print_hnd
, int snum
,
6654 WERROR
delete_all_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
);
6655 WERROR
delete_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
);
6656 WERROR
add_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
,
6657 uint32 type
, uint8
*data
, int real_len
);
6658 REGISTRY_VALUE
* get_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
);
6659 WERROR
mod_a_printer(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
);
6660 bool set_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
);
6661 bool del_driver_init(char *drivername
);
6662 WERROR
save_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
, uint8
*data
, uint32 data_len
);
6663 WERROR
get_a_printer( Printer_entry
*print_hnd
,
6664 NT_PRINTER_INFO_LEVEL
**pp_printer
,
6666 const char *sharename
);
6667 WERROR
get_a_printer_search( Printer_entry
*print_hnd
,
6668 NT_PRINTER_INFO_LEVEL
**pp_printer
,
6670 const char *sharename
);
6671 uint32
free_a_printer(NT_PRINTER_INFO_LEVEL
**pp_printer
, uint32 level
);
6672 uint32
add_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
);
6673 WERROR
get_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL
*driver
, uint32 level
,
6674 fstring drivername
, const char *architecture
, uint32 version
);
6675 uint32
free_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
);
6676 bool printer_driver_in_use ( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
);
6677 bool printer_driver_files_in_use ( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info
);
6678 WERROR
delete_printer_driver( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
, struct current_user
*user
,
6679 uint32 version
, bool delete_files
);
6680 WERROR
nt_printing_setsec(const char *sharename
, SEC_DESC_BUF
*secdesc_ctr
);
6681 bool nt_printing_getsec(TALLOC_CTX
*ctx
, const char *sharename
, SEC_DESC_BUF
**secdesc_ctr
);
6682 void map_printer_permissions(SEC_DESC
*sd
);
6683 void map_job_permissions(SEC_DESC
*sd
);
6684 bool print_access_check(struct current_user
*user
, int snum
, int access_type
);
6685 bool print_time_access_check(const char *servicename
);
6686 char* get_server_name( Printer_entry
*printer
);
6688 /* The following definitions come from printing/pcap.c */
6690 bool pcap_cache_add(const char *name
, const char *comment
);
6691 bool pcap_cache_loaded(void);
6692 void pcap_cache_reload(void);
6693 bool pcap_printername_ok(const char *printername
);
6694 void pcap_printer_fn(void (*fn
)(char *, char *));
6696 /* The following definitions come from printing/print_aix.c */
6698 bool aix_cache_reload(void);
6700 /* The following definitions come from printing/print_cups.c */
6702 bool cups_cache_reload(void);
6703 bool cups_pull_comment_location(NT_PRINTER_INFO_LEVEL_2
*printer
);
6705 /* The following definitions come from printing/print_generic.c */
6708 /* The following definitions come from printing/print_iprint.c */
6710 bool iprint_cache_reload(void);
6712 /* The following definitions come from printing/print_svid.c */
6714 bool sysv_cache_reload(void);
6716 /* The following definitions come from printing/printfsp.c */
6718 NTSTATUS
print_fsp_open(connection_struct
*conn
, const char *fname
,
6719 files_struct
**result
);
6720 void print_fsp_end(files_struct
*fsp
, enum file_close_type close_type
);
6722 /* The following definitions come from printing/printing.c */
6724 uint16
pjobid_to_rap(const char* sharename
, uint32 jobid
);
6725 bool rap_to_pjobid(uint16 rap_jobid
, fstring sharename
, uint32
*pjobid
);
6726 bool print_backend_init(struct messaging_context
*msg_ctx
);
6727 void printing_end(void);
6728 int unpack_pjob( uint8
*buf
, int buflen
, struct printjob
*pjob
);
6729 uint32
sysjob_to_jobid(int unix_jobid
);
6730 void pjob_delete(const char* sharename
, uint32 jobid
);
6731 void start_background_queue(void);
6732 bool print_notify_register_pid(int snum
);
6733 bool print_notify_deregister_pid(int snum
);
6734 bool print_job_exists(const char* sharename
, uint32 jobid
);
6735 int print_job_fd(const char* sharename
, uint32 jobid
);
6736 char *print_job_fname(const char* sharename
, uint32 jobid
);
6737 NT_DEVICEMODE
*print_job_devmode(const char* sharename
, uint32 jobid
);
6738 bool print_job_set_place(const char *sharename
, uint32 jobid
, int place
);
6739 bool print_job_set_name(const char *sharename
, uint32 jobid
, char *name
);
6740 bool print_job_delete(struct current_user
*user
, int snum
, uint32 jobid
, WERROR
*errcode
);
6741 bool print_job_pause(struct current_user
*user
, int snum
, uint32 jobid
, WERROR
*errcode
);
6742 bool print_job_resume(struct current_user
*user
, int snum
, uint32 jobid
, WERROR
*errcode
);
6743 ssize_t
print_job_write(int snum
, uint32 jobid
, const char *buf
, SMB_OFF_T pos
, size_t size
);
6744 int print_queue_length(int snum
, print_status_struct
*pstatus
);
6745 uint32
print_job_start(struct current_user
*user
, int snum
, char *jobname
, NT_DEVICEMODE
*nt_devmode
);
6746 void print_job_endpage(int snum
, uint32 jobid
);
6747 bool print_job_end(int snum
, uint32 jobid
, enum file_close_type close_type
);
6748 int print_queue_status(int snum
,
6749 print_queue_struct
**ppqueue
,
6750 print_status_struct
*status
);
6751 bool print_queue_pause(struct current_user
*user
, int snum
, WERROR
*errcode
);
6752 bool print_queue_resume(struct current_user
*user
, int snum
, WERROR
*errcode
);
6753 bool print_queue_purge(struct current_user
*user
, int snum
, WERROR
*errcode
);
6755 /* The following definitions come from printing/printing_db.c */
6757 struct tdb_print_db
*get_print_db_byname(const char *printername
);
6758 void release_print_db( struct tdb_print_db
*pdb
);
6759 void close_all_print_db(void);
6760 TDB_DATA
get_printer_notify_pid_list(TDB_CONTEXT
*tdb
, const char *printer_name
, bool cleanlist
);
6762 /* The following definitions come from profile/profile.c */
6764 void set_profile_level(int level
, struct server_id src
);
6765 bool profile_setup(struct messaging_context
*msg_ctx
, bool rdonly
);
6767 /* The following definitions come from registry/reg_api.c */
6769 WERROR
reg_openhive(TALLOC_CTX
*mem_ctx
, const char *hive
,
6770 uint32 desired_access
,
6771 const struct nt_user_token
*token
,
6772 struct registry_key
**pkey
);
6773 WERROR
reg_openkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*parent
,
6774 const char *name
, uint32 desired_access
,
6775 struct registry_key
**pkey
);
6776 WERROR
reg_enumkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
6777 uint32 idx
, char **name
, NTTIME
*last_write_time
);
6778 WERROR
reg_enumvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
6779 uint32 idx
, char **pname
, struct registry_value
**pval
);
6780 WERROR
reg_queryvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
6781 const char *name
, struct registry_value
**pval
);
6782 WERROR
reg_queryinfokey(struct registry_key
*key
, uint32_t *num_subkeys
,
6783 uint32_t *max_subkeylen
, uint32_t *max_subkeysize
,
6784 uint32_t *num_values
, uint32_t *max_valnamelen
,
6785 uint32_t *max_valbufsize
, uint32_t *secdescsize
,
6786 NTTIME
*last_changed_time
);
6787 WERROR
reg_createkey(TALLOC_CTX
*ctx
, struct registry_key
*parent
,
6788 const char *subkeypath
, uint32 desired_access
,
6789 struct registry_key
**pkey
,
6790 enum winreg_CreateAction
*paction
);
6791 WERROR
reg_deletekey(struct registry_key
*parent
, const char *path
);
6792 WERROR
reg_setvalue(struct registry_key
*key
, const char *name
,
6793 const struct registry_value
*val
);
6794 WERROR
reg_deletevalue(struct registry_key
*key
, const char *name
);
6795 WERROR
reg_getkeysecurity(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
6796 struct security_descriptor
**psecdesc
);
6797 WERROR
reg_setkeysecurity(struct registry_key
*key
,
6798 struct security_descriptor
*psecdesc
);
6799 WERROR
reg_getversion(uint32_t *version
);
6800 WERROR
reg_restorekey(struct registry_key
*key
, const char *fname
);
6801 WERROR
reg_savekey(struct registry_key
*key
, const char *fname
);
6802 WERROR
reg_deleteallvalues(struct registry_key
*key
);
6803 WERROR
reg_open_path(TALLOC_CTX
*mem_ctx
, const char *orig_path
,
6804 uint32 desired_access
, const struct nt_user_token
*token
,
6805 struct registry_key
**pkey
);
6806 WERROR
reg_deletekey_recursive(TALLOC_CTX
*ctx
,
6807 struct registry_key
*parent
,
6809 WERROR
reg_deletesubkeys_recursive(TALLOC_CTX
*ctx
,
6810 struct registry_key
*parent
,
6812 WERROR
reg_create_path(TALLOC_CTX
*mem_ctx
, const char *orig_path
,
6813 uint32 desired_access
,
6814 const struct nt_user_token
*token
,
6815 enum winreg_CreateAction
*paction
,
6816 struct registry_key
**pkey
);
6817 WERROR
reg_delete_path(const struct nt_user_token
*token
,
6818 const char *orig_path
);
6820 /* The following definitions come from registry/reg_backend_current_version.c */
6823 /* The following definitions come from registry/reg_backend_db.c */
6825 WERROR
init_registry_key(const char *add_path
);
6826 WERROR
init_registry_data(void);
6827 WERROR
regdb_init(void);
6828 WERROR
regdb_open( void );
6829 int regdb_close( void );
6830 int regdb_get_seqnum(void);
6831 bool regdb_store_keys(const char *key
, REGSUBKEY_CTR
*ctr
);
6832 int regdb_fetch_keys(const char *key
, REGSUBKEY_CTR
*ctr
);
6833 int regdb_fetch_values( const char* key
, REGVAL_CTR
*values
);
6834 bool regdb_store_values( const char *key
, REGVAL_CTR
*values
);
6835 bool regdb_subkeys_need_update(REGSUBKEY_CTR
*subkeys
);
6836 bool regdb_values_need_update(REGVAL_CTR
*values
);
6838 /* The following definitions come from registry/reg_backend_hkpt_params.c */
6841 /* The following definitions come from registry/reg_backend_netlogon_params.c */
6844 /* The following definitions come from registry/reg_backend_perflib.c */
6847 /* The following definitions come from registry/reg_backend_printing.c */
6850 /* The following definitions come from registry/reg_backend_prod_options.c */
6853 /* The following definitions come from registry/reg_backend_shares.c */
6856 /* The following definitions come from registry/reg_backend_smbconf.c */
6859 /* The following definitions come from registry/reg_backend_tcpip_params.c */
6862 /* The following definitions come from registry/reg_cachehook.c */
6864 WERROR
reghook_cache_init(void);
6865 WERROR
reghook_cache_add(const char *keyname
, REGISTRY_OPS
*ops
);
6866 REGISTRY_OPS
*reghook_cache_find(const char *keyname
);
6867 void reghook_dump_cache( int debuglevel
);
6869 /* The following definitions come from registry/reg_dispatcher.c */
6871 bool store_reg_keys( REGISTRY_KEY
*key
, REGSUBKEY_CTR
*subkeys
);
6872 bool store_reg_values( REGISTRY_KEY
*key
, REGVAL_CTR
*val
);
6873 int fetch_reg_keys( REGISTRY_KEY
*key
, REGSUBKEY_CTR
*subkey_ctr
);
6874 int fetch_reg_values( REGISTRY_KEY
*key
, REGVAL_CTR
*val
);
6875 bool regkey_access_check( REGISTRY_KEY
*key
, uint32 requested
, uint32
*granted
,
6876 const struct nt_user_token
*token
);
6877 WERROR
regkey_get_secdesc(TALLOC_CTX
*mem_ctx
, REGISTRY_KEY
*key
,
6878 struct security_descriptor
**psecdesc
);
6879 WERROR
regkey_set_secdesc(REGISTRY_KEY
*key
,
6880 struct security_descriptor
*psecdesc
);
6881 bool reg_subkeys_need_update(REGISTRY_KEY
*key
, REGSUBKEY_CTR
*subkeys
);
6882 bool reg_values_need_update(REGISTRY_KEY
*key
, REGVAL_CTR
*values
);
6884 /* The following definitions come from registry/reg_eventlog.c */
6886 bool eventlog_init_keys(void);
6887 bool eventlog_add_source( const char *eventlog
, const char *sourcename
,
6888 const char *messagefile
);
6890 /* The following definitions come from registry/reg_init_basic.c */
6892 WERROR
registry_init_common(void);
6893 WERROR
registry_init_basic(void);
6895 /* The following definitions come from registry/reg_init_full.c */
6897 WERROR
registry_init_full(void);
6899 /* The following definitions come from registry/reg_init_smbconf.c */
6901 NTSTATUS
registry_create_admin_token(TALLOC_CTX
*mem_ctx
,
6902 NT_USER_TOKEN
**ptoken
);
6903 WERROR
registry_init_smbconf(const char *keyname
);
6905 /* The following definitions come from registry/reg_objects.c */
6907 WERROR
regsubkey_ctr_addkey( REGSUBKEY_CTR
*ctr
, const char *keyname
);
6908 int regsubkey_ctr_delkey( REGSUBKEY_CTR
*ctr
, const char *keyname
);
6909 bool regsubkey_ctr_key_exists( REGSUBKEY_CTR
*ctr
, const char *keyname
);
6910 int regsubkey_ctr_numkeys( REGSUBKEY_CTR
*ctr
);
6911 char* regsubkey_ctr_specific_key( REGSUBKEY_CTR
*ctr
, uint32 key_index
);
6912 int regval_ctr_numvals( REGVAL_CTR
*ctr
);
6913 REGISTRY_VALUE
* dup_registry_value( REGISTRY_VALUE
*val
);
6914 void free_registry_value( REGISTRY_VALUE
*val
);
6915 uint8
* regval_data_p( REGISTRY_VALUE
*val
);
6916 uint32
regval_size( REGISTRY_VALUE
*val
);
6917 char* regval_name( REGISTRY_VALUE
*val
);
6918 uint32
regval_type( REGISTRY_VALUE
*val
);
6919 REGISTRY_VALUE
* regval_ctr_specific_value( REGVAL_CTR
*ctr
, uint32 idx
);
6920 bool regval_ctr_key_exists( REGVAL_CTR
*ctr
, const char *value
);
6921 REGISTRY_VALUE
*regval_compose(TALLOC_CTX
*ctx
, const char *name
, uint16 type
,
6922 const char *data_p
, size_t size
);
6923 int regval_ctr_addvalue( REGVAL_CTR
*ctr
, const char *name
, uint16 type
,
6924 const char *data_p
, size_t size
);
6925 int regval_ctr_copyvalue( REGVAL_CTR
*ctr
, REGISTRY_VALUE
*val
);
6926 int regval_ctr_delvalue( REGVAL_CTR
*ctr
, const char *name
);
6927 REGISTRY_VALUE
* regval_ctr_getvalue( REGVAL_CTR
*ctr
, const char *name
);
6928 uint32
regval_dword( REGISTRY_VALUE
*val
);
6929 char *regval_sz(REGISTRY_VALUE
*val
);
6931 /* The following definitions come from registry/reg_perfcount.c */
6933 void perfcount_init_keys( void );
6934 uint32
reg_perfcount_get_base_index(void);
6935 uint32
reg_perfcount_get_last_counter(uint32 base_index
);
6936 uint32
reg_perfcount_get_last_help(uint32 last_counter
);
6937 uint32
reg_perfcount_get_counter_help(uint32 base_index
, char **retbuf
);
6938 uint32
reg_perfcount_get_counter_names(uint32 base_index
, char **retbuf
);
6939 bool _reg_perfcount_get_counter_data(TDB_DATA key
, TDB_DATA
*data
);
6940 bool _reg_perfcount_get_instance_info(PERF_INSTANCE_DEFINITION
*inst
,
6943 PERF_OBJECT_TYPE
*obj
,
6944 TDB_CONTEXT
*names
);
6945 bool _reg_perfcount_add_instance(PERF_OBJECT_TYPE
*obj
,
6948 TDB_CONTEXT
*names
);
6949 uint32
reg_perfcount_get_perf_data_block(uint32 base_index
,
6951 PERF_DATA_BLOCK
*block
,
6952 const char *object_ids
);
6953 WERROR
reg_perfcount_get_hkpd(prs_struct
*ps
, uint32 max_buf_size
, uint32
*outbuf_len
, const char *object_ids
);
6955 /* The following definitions come from registry/reg_util.c */
6957 bool reg_split_path(char *path
, char **base
, char **new_path
);
6958 bool reg_split_key(char *path
, char **base
, char **key
);
6959 char *normalize_reg_path(TALLOC_CTX
*ctx
, const char *keyname
);
6960 void normalize_dbkey(char *key
);
6961 char *reg_remaining_path(TALLOC_CTX
*ctx
, const char *key
);
6962 int regval_convert_multi_sz( uint16
*multi_string
, size_t byte_len
, char ***values
);
6963 size_t regval_build_multi_sz( char **values
, uint16
**buffer
);
6965 /* The following definitions come from registry/reg_util_legacy.c */
6967 WERROR
regkey_open_internal( TALLOC_CTX
*ctx
, REGISTRY_KEY
**regkey
,
6969 const struct nt_user_token
*token
,
6970 uint32 access_desired
);
6972 /* The following definitions come from registry/regfio.c */
6975 /* The following definitions come from rpc_client/cli_lsarpc.c */
6977 NTSTATUS
rpccli_lsa_open_policy(struct rpc_pipe_client
*cli
,
6978 TALLOC_CTX
*mem_ctx
,
6979 bool sec_qos
, uint32 des_access
,
6981 NTSTATUS
rpccli_lsa_open_policy2(struct rpc_pipe_client
*cli
,
6982 TALLOC_CTX
*mem_ctx
, bool sec_qos
,
6983 uint32 des_access
, POLICY_HND
*pol
);
6984 NTSTATUS
rpccli_lsa_lookup_sids(struct rpc_pipe_client
*cli
,
6985 TALLOC_CTX
*mem_ctx
,
6988 const DOM_SID
*sids
,
6991 enum lsa_SidType
**ptypes
);
6992 NTSTATUS
rpccli_lsa_lookup_names(struct rpc_pipe_client
*cli
,
6993 TALLOC_CTX
*mem_ctx
,
6994 POLICY_HND
*pol
, int num_names
,
6996 const char ***dom_names
,
6999 enum lsa_SidType
**types
);
7000 bool fetch_domain_sid( char *domain
, char *remote_machine
, DOM_SID
*psid
);
7002 /* The following definitions come from rpc_client/cli_netlogon.c */
7004 NTSTATUS
rpccli_netlogon_setup_creds(struct rpc_pipe_client
*cli
,
7005 const char *server_name
,
7007 const char *clnt_name
,
7008 const char *machine_account
,
7009 const unsigned char machine_pwd
[16],
7010 enum netr_SchannelType sec_chan_type
,
7011 uint32_t *neg_flags_inout
);
7012 NTSTATUS
rpccli_netlogon_sam_logon(struct rpc_pipe_client
*cli
,
7013 TALLOC_CTX
*mem_ctx
,
7014 uint32 logon_parameters
,
7016 const char *username
,
7017 const char *password
,
7018 const char *workstation
,
7020 NTSTATUS
rpccli_netlogon_sam_network_logon(struct rpc_pipe_client
*cli
,
7021 TALLOC_CTX
*mem_ctx
,
7022 uint32 logon_parameters
,
7024 const char *username
,
7026 const char *workstation
,
7027 const uint8 chal
[8],
7028 DATA_BLOB lm_response
,
7029 DATA_BLOB nt_response
,
7030 struct netr_SamInfo3
**info3
);
7031 NTSTATUS
rpccli_netlogon_sam_network_logon_ex(struct rpc_pipe_client
*cli
,
7032 TALLOC_CTX
*mem_ctx
,
7033 uint32 logon_parameters
,
7035 const char *username
,
7037 const char *workstation
,
7038 const uint8 chal
[8],
7039 DATA_BLOB lm_response
,
7040 DATA_BLOB nt_response
,
7041 struct netr_SamInfo3
**info3
);
7043 /* The following definitions come from rpc_client/cli_pipe.c */
7045 NTSTATUS
rpc_api_pipe_req(struct rpc_pipe_client
*cli
,
7047 prs_struct
*in_data
,
7048 prs_struct
*out_data
);
7049 NTSTATUS
rpc_pipe_bind(struct rpc_pipe_client
*cli
,
7050 struct cli_pipe_auth_data
*auth
);
7051 unsigned int rpccli_set_timeout(struct rpc_pipe_client
*cli
,
7052 unsigned int timeout
);
7053 bool rpccli_is_pipe_idx(struct rpc_pipe_client
*cli
, int pipe_idx
);
7054 bool rpccli_get_pwd_hash(struct rpc_pipe_client
*cli
, uint8_t nt_hash
[16]);
7055 struct cli_state
*rpc_pipe_np_smb_conn(struct rpc_pipe_client
*p
);
7056 NTSTATUS
rpccli_anon_bind_data(TALLOC_CTX
*mem_ctx
,
7057 struct cli_pipe_auth_data
**presult
);
7058 NTSTATUS
rpccli_ntlmssp_bind_data(TALLOC_CTX
*mem_ctx
,
7059 enum pipe_auth_type auth_type
,
7060 enum pipe_auth_level auth_level
,
7062 const char *username
,
7063 const char *password
,
7064 struct cli_pipe_auth_data
**presult
);
7065 NTSTATUS
rpccli_schannel_bind_data(TALLOC_CTX
*mem_ctx
, const char *domain
,
7066 enum pipe_auth_level auth_level
,
7067 const uint8_t sess_key
[16],
7068 struct cli_pipe_auth_data
**presult
);
7069 NTSTATUS
rpccli_kerberos_bind_data(TALLOC_CTX
*mem_ctx
,
7070 enum pipe_auth_level auth_level
,
7071 const char *service_princ
,
7072 const char *username
,
7073 const char *password
,
7074 struct cli_pipe_auth_data
**presult
);
7075 NTSTATUS
rpc_pipe_open_tcp(TALLOC_CTX
*mem_ctx
, const char *host
,
7076 const struct ndr_syntax_id
*abstract_syntax
,
7077 struct rpc_pipe_client
**presult
);
7078 NTSTATUS
rpc_pipe_open_ncalrpc(TALLOC_CTX
*mem_ctx
, const char *socket_path
,
7079 const struct ndr_syntax_id
*abstract_syntax
,
7080 struct rpc_pipe_client
**presult
);
7081 struct rpc_pipe_client
*cli_rpc_pipe_open_noauth(struct cli_state
*cli
, int pipe_idx
, NTSTATUS
*perr
);
7082 struct rpc_pipe_client
*cli_rpc_pipe_open_ntlmssp(struct cli_state
*cli
,
7084 enum pipe_auth_level auth_level
,
7086 const char *username
,
7087 const char *password
,
7089 struct rpc_pipe_client
*cli_rpc_pipe_open_spnego_ntlmssp(struct cli_state
*cli
,
7091 enum pipe_auth_level auth_level
,
7093 const char *username
,
7094 const char *password
,
7096 struct rpc_pipe_client
*get_schannel_session_key(struct cli_state
*cli
,
7100 struct rpc_pipe_client
*cli_rpc_pipe_open_schannel_with_key(struct cli_state
*cli
,
7102 enum pipe_auth_level auth_level
,
7104 const struct dcinfo
*pdc
,
7106 struct rpc_pipe_client
*cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state
*cli
,
7108 enum pipe_auth_level auth_level
,
7110 const char *username
,
7111 const char *password
,
7113 struct rpc_pipe_client
*cli_rpc_pipe_open_schannel(struct cli_state
*cli
,
7115 enum pipe_auth_level auth_level
,
7118 struct rpc_pipe_client
*cli_rpc_pipe_open_krb5(struct cli_state
*cli
,
7120 enum pipe_auth_level auth_level
,
7121 const char *service_princ
,
7122 const char *username
,
7123 const char *password
,
7126 /* The following definitions come from rpc_client/cli_reg.c */
7128 NTSTATUS
rpccli_winreg_Connect(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7129 uint32 reg_type
, uint32 access_mask
,
7130 POLICY_HND
*reg_hnd
);
7131 uint32
reg_init_regval_buffer( REGVAL_BUFFER
*buf2
, REGISTRY_VALUE
*val
);
7133 /* The following definitions come from rpc_client/cli_samr.c */
7135 NTSTATUS
rpccli_samr_chgpasswd_user(struct rpc_pipe_client
*cli
,
7136 TALLOC_CTX
*mem_ctx
,
7137 const char *username
,
7138 const char *newpassword
,
7139 const char *oldpassword
);
7140 NTSTATUS
rpccli_samr_chng_pswd_auth_crap(struct rpc_pipe_client
*cli
,
7141 TALLOC_CTX
*mem_ctx
,
7142 const char *username
,
7143 DATA_BLOB new_nt_password_blob
,
7144 DATA_BLOB old_nt_hash_enc_blob
,
7145 DATA_BLOB new_lm_password_blob
,
7146 DATA_BLOB old_lm_hash_enc_blob
);
7147 NTSTATUS
rpccli_samr_chgpasswd3(struct rpc_pipe_client
*cli
,
7148 TALLOC_CTX
*mem_ctx
,
7149 const char *username
,
7150 const char *newpassword
,
7151 const char *oldpassword
,
7152 struct samr_DomInfo1
**dominfo1
,
7153 struct samr_ChangeReject
**reject
);
7154 void get_query_dispinfo_params(int loop_count
, uint32
*max_entries
,
7156 NTSTATUS
rpccli_try_samr_connects(struct rpc_pipe_client
*cli
,
7157 TALLOC_CTX
*mem_ctx
,
7158 uint32_t access_mask
,
7159 POLICY_HND
*connect_pol
);
7161 /* The following definitions come from rpc_client/cli_spoolss.c */
7163 WERROR
rpccli_spoolss_open_printer_ex(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7164 const char *printername
, const char *datatype
, uint32 access_required
,
7165 const char *station
, const char *username
, POLICY_HND
*pol
);
7166 WERROR
rpccli_spoolss_close_printer(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7168 WERROR
rpccli_spoolss_enum_printers(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7169 char *name
, uint32 flags
, uint32 level
,
7170 uint32
*num_printers
, PRINTER_INFO_CTR
*ctr
);
7171 WERROR
rpccli_spoolss_enum_ports(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7172 uint32 level
, uint32
*num_ports
, PORT_INFO_CTR
*ctr
);
7173 WERROR
rpccli_spoolss_getprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7174 POLICY_HND
*pol
, uint32 level
,
7175 PRINTER_INFO_CTR
*ctr
);
7176 WERROR
rpccli_spoolss_setprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7177 POLICY_HND
*pol
, uint32 level
,
7178 PRINTER_INFO_CTR
*ctr
, uint32 command
);
7179 WERROR
rpccli_spoolss_getprinterdriver(struct rpc_pipe_client
*cli
,
7180 TALLOC_CTX
*mem_ctx
,
7181 POLICY_HND
*pol
, uint32 level
,
7182 const char *env
, int version
, PRINTER_DRIVER_CTR
*ctr
);
7183 WERROR
rpccli_spoolss_enumprinterdrivers (struct rpc_pipe_client
*cli
,
7184 TALLOC_CTX
*mem_ctx
,
7185 uint32 level
, const char *env
,
7186 uint32
*num_drivers
,
7187 PRINTER_DRIVER_CTR
*ctr
);
7188 WERROR
rpccli_spoolss_getprinterdriverdir (struct rpc_pipe_client
*cli
,
7189 TALLOC_CTX
*mem_ctx
,
7190 uint32 level
, char *env
,
7191 DRIVER_DIRECTORY_CTR
*ctr
);
7192 WERROR
rpccli_spoolss_addprinterdriver (struct rpc_pipe_client
*cli
,
7193 TALLOC_CTX
*mem_ctx
, uint32 level
,
7194 PRINTER_DRIVER_CTR
*ctr
);
7195 WERROR
rpccli_spoolss_addprinterex (struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7196 uint32 level
, PRINTER_INFO_CTR
*ctr
);
7197 WERROR
rpccli_spoolss_deleteprinterdriverex(struct rpc_pipe_client
*cli
,
7198 TALLOC_CTX
*mem_ctx
, const char *arch
,
7199 const char *driver
, int version
);
7200 WERROR
rpccli_spoolss_deleteprinterdriver (struct rpc_pipe_client
*cli
,
7201 TALLOC_CTX
*mem_ctx
, const char *arch
,
7202 const char *driver
);
7203 WERROR
rpccli_spoolss_getprintprocessordirectory(struct rpc_pipe_client
*cli
,
7204 TALLOC_CTX
*mem_ctx
,
7205 char *name
, char *environment
,
7207 WERROR
rpccli_spoolss_addform(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7208 POLICY_HND
*handle
, uint32 level
, FORM
*form
);
7209 WERROR
rpccli_spoolss_setform(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7210 POLICY_HND
*handle
, uint32 level
,
7211 const char *form_name
, FORM
*form
);
7212 WERROR
rpccli_spoolss_getform(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7213 POLICY_HND
*handle
, const char *formname
,
7214 uint32 level
, FORM_1
*form
);
7215 WERROR
rpccli_spoolss_deleteform(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7216 POLICY_HND
*handle
, const char *form_name
);
7217 WERROR
rpccli_spoolss_enumforms(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7218 POLICY_HND
*handle
, int level
, uint32
*num_forms
,
7220 WERROR
rpccli_spoolss_enumjobs(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7221 POLICY_HND
*hnd
, uint32 level
, uint32 firstjob
,
7222 uint32 num_jobs
, uint32
*returned
, JOB_INFO_CTR
*ctr
);
7223 WERROR
rpccli_spoolss_setjob(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7224 POLICY_HND
*hnd
, uint32 jobid
, uint32 level
,
7226 WERROR
rpccli_spoolss_getjob(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7227 POLICY_HND
*hnd
, uint32 jobid
, uint32 level
,
7229 WERROR
rpccli_spoolss_startpageprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7231 WERROR
rpccli_spoolss_endpageprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7233 WERROR
rpccli_spoolss_startdocprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7234 POLICY_HND
*hnd
, char *docname
,
7235 char *outputfile
, char *datatype
,
7237 WERROR
rpccli_spoolss_enddocprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7239 WERROR
rpccli_spoolss_getprinterdata(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7240 POLICY_HND
*hnd
, const char *valuename
,
7241 REGISTRY_VALUE
*value
);
7242 WERROR
rpccli_spoolss_getprinterdataex(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7243 POLICY_HND
*hnd
, const char *keyname
,
7244 const char *valuename
,
7245 REGISTRY_VALUE
*value
);
7246 WERROR
rpccli_spoolss_setprinterdata(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7247 POLICY_HND
*hnd
, REGISTRY_VALUE
*value
);
7248 WERROR
rpccli_spoolss_setprinterdataex(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7249 POLICY_HND
*hnd
, char *keyname
,
7250 REGISTRY_VALUE
*value
);
7251 WERROR
rpccli_spoolss_enumprinterdata(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7252 POLICY_HND
*hnd
, uint32 ndx
,
7253 uint32 value_offered
, uint32 data_offered
,
7254 uint32
*value_needed
, uint32
*data_needed
,
7255 REGISTRY_VALUE
*value
);
7256 WERROR
rpccli_spoolss_enumprinterdataex(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7257 POLICY_HND
*hnd
, const char *keyname
,
7259 WERROR
rpccli_spoolss_writeprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7260 POLICY_HND
*hnd
, uint32 data_size
, char *data
,
7261 uint32
*num_written
);
7262 WERROR
rpccli_spoolss_deleteprinterdata(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7263 POLICY_HND
*hnd
, char *valuename
);
7264 WERROR
rpccli_spoolss_deleteprinterdataex(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7265 POLICY_HND
*hnd
, char *keyname
,
7267 WERROR
rpccli_spoolss_enumprinterkey(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7268 POLICY_HND
*hnd
, const char *keyname
,
7269 uint16
**keylist
, uint32
*len
);
7270 WERROR
rpccli_spoolss_deleteprinterkey(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7271 POLICY_HND
*hnd
, char *keyname
);
7273 /* The following definitions come from rpc_client/cli_spoolss_notify.c */
7275 WERROR
rpccli_spoolss_reply_open_printer(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7276 const char *printer
, uint32 printerlocal
, uint32 type
,
7277 POLICY_HND
*handle
);
7278 WERROR
rpccli_spoolss_reply_close_printer(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7279 POLICY_HND
*handle
);
7280 WERROR
rpccli_spoolss_routerreplyprinter(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7281 POLICY_HND
*pol
, uint32 condition
, uint32 change_id
);
7282 WERROR
rpccli_spoolss_rrpcn(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7283 POLICY_HND
*pol
, uint32 notify_data_len
,
7284 SPOOL_NOTIFY_INFO_DATA
*notify_data
,
7285 uint32 change_low
, uint32 change_high
);
7286 WERROR
rpccli_spoolss_rffpcnex(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7287 POLICY_HND
*pol
, uint32 flags
, uint32 options
,
7288 const char *localmachine
, uint32 printerlocal
,
7289 SPOOL_NOTIFY_OPTION
*option
);
7291 /* The following definitions come from rpc_client/cli_svcctl.c */
7293 WERROR
rpccli_svcctl_enumerate_services( struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7294 POLICY_HND
*hSCM
, uint32 type
, uint32 state
,
7295 uint32
*returned
, ENUM_SERVICES_STATUS
**service_array
);
7296 WERROR
rpccli_svcctl_query_config(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
7297 POLICY_HND
*hService
, SERVICE_CONFIG
*config
);
7299 /* The following definitions come from rpc_client/init_lsa.c */
7301 void init_lsa_String(struct lsa_String
*name
, const char *s
);
7302 void init_lsa_StringLarge(struct lsa_StringLarge
*name
, const char *s
);
7303 void init_lsa_AsciiString(struct lsa_AsciiString
*name
, const char *s
);
7304 void init_lsa_AsciiStringLarge(struct lsa_AsciiStringLarge
*name
, const char *s
);
7305 void init_lsa_sec_qos(struct lsa_QosInfo
*r
,
7307 uint16_t impersonation_level
,
7308 uint8_t context_mode
,
7309 uint8_t effective_only
);
7310 void init_lsa_obj_attr(struct lsa_ObjectAttribute
*r
,
7313 const char *object_name
,
7314 uint32_t attributes
,
7315 struct security_descriptor
*sec_desc
,
7316 struct lsa_QosInfo
*sec_qos
);
7317 void init_lsa_translated_sid(struct lsa_TranslatedSid
*r
,
7318 enum lsa_SidType sid_type
,
7320 uint32_t sid_index
);
7321 void init_lsa_translated_name2(struct lsa_TranslatedName2
*r
,
7322 enum lsa_SidType sid_type
,
7327 /* The following definitions come from rpc_client/init_netlogon.c */
7329 void init_netr_SamBaseInfo(struct netr_SamBaseInfo
*r
,
7333 NTTIME last_password_change
,
7334 NTTIME allow_password_change
,
7335 NTTIME force_password_change
,
7336 const char *account_name
,
7337 const char *full_name
,
7338 const char *logon_script
,
7339 const char *profile_path
,
7340 const char *home_directory
,
7341 const char *home_drive
,
7342 uint16_t logon_count
,
7343 uint16_t bad_password_count
,
7345 uint32_t primary_gid
,
7346 struct samr_RidWithAttributeArray groups
,
7347 uint32_t user_flags
,
7348 struct netr_UserSessionKey key
,
7349 const char *logon_server
,
7351 struct dom_sid2
*domain_sid
,
7352 struct netr_LMSessionKey LMSessKey
,
7353 uint32_t acct_flags
);
7354 void init_netr_SamInfo3(struct netr_SamInfo3
*r
,
7358 NTTIME last_password_change
,
7359 NTTIME allow_password_change
,
7360 NTTIME force_password_change
,
7361 const char *account_name
,
7362 const char *full_name
,
7363 const char *logon_script
,
7364 const char *profile_path
,
7365 const char *home_directory
,
7366 const char *home_drive
,
7367 uint16_t logon_count
,
7368 uint16_t bad_password_count
,
7370 uint32_t primary_gid
,
7371 struct samr_RidWithAttributeArray groups
,
7372 uint32_t user_flags
,
7373 struct netr_UserSessionKey key
,
7374 const char *logon_server
,
7376 struct dom_sid2
*domain_sid
,
7377 struct netr_LMSessionKey LMSessKey
,
7378 uint32_t acct_flags
,
7380 struct netr_SidAttr
*sids
);
7381 NTSTATUS
serverinfo_to_SamInfo3(struct auth_serversupplied_info
*server_info
,
7382 uint8_t pipe_session_key
[16],
7383 struct netr_SamInfo3
*sam3
);
7384 void init_netr_IdentityInfo(struct netr_IdentityInfo
*r
,
7385 const char *domain_name
,
7386 uint32_t parameter_control
,
7387 uint32_t logon_id_low
,
7388 uint32_t logon_id_high
,
7389 const char *account_name
,
7390 const char *workstation
);
7391 void init_netr_NetworkInfo(struct netr_NetworkInfo
*r
,
7392 const char *domain_name
,
7393 uint32_t parameter_control
,
7394 uint32_t logon_id_low
,
7395 uint32_t logon_id_high
,
7396 const char *account_name
,
7397 const char *workstation
,
7398 uint8_t challenge
[8],
7399 struct netr_ChallengeResponse nt
,
7400 struct netr_ChallengeResponse lm
);
7401 void init_netr_PasswordInfo(struct netr_PasswordInfo
*r
,
7402 const char *domain_name
,
7403 uint32_t parameter_control
,
7404 uint32_t logon_id_low
,
7405 uint32_t logon_id_high
,
7406 const char *account_name
,
7407 const char *workstation
,
7408 struct samr_Password lmpassword
,
7409 struct samr_Password ntpassword
);
7411 /* The following definitions come from rpc_client/init_samr.c */
7413 void init_samr_DomInfo1(struct samr_DomInfo1
*r
,
7414 uint16_t min_password_length
,
7415 uint16_t password_history_length
,
7416 uint32_t password_properties
,
7417 int64_t max_password_age
,
7418 int64_t min_password_age
);
7419 void init_samr_DomInfo2(struct samr_DomInfo2
*r
,
7420 NTTIME force_logoff_time
,
7421 const char *comment
,
7422 const char *domain_name
,
7423 const char *primary
,
7424 uint64_t sequence_num
,
7426 enum samr_Role role
,
7429 uint32_t num_groups
,
7430 uint32_t num_aliases
);
7431 void init_samr_DomInfo3(struct samr_DomInfo3
*r
,
7432 NTTIME force_logoff_time
);
7433 void init_samr_DomInfo4(struct samr_DomInfo4
*r
,
7434 const char *comment
);
7435 void init_samr_DomInfo5(struct samr_DomInfo5
*r
,
7436 const char *domain_name
);
7437 void init_samr_DomInfo6(struct samr_DomInfo6
*r
,
7438 const char *primary
);
7439 void init_samr_DomInfo7(struct samr_DomInfo7
*r
,
7440 enum samr_Role role
);
7441 void init_samr_DomInfo8(struct samr_DomInfo8
*r
,
7442 uint64_t sequence_num
,
7443 NTTIME domain_create_time
);
7444 void init_samr_DomInfo9(struct samr_DomInfo9
*r
,
7446 void init_samr_DomInfo12(struct samr_DomInfo12
*r
,
7447 uint64_t lockout_duration
,
7448 uint64_t lockout_window
,
7449 uint16_t lockout_threshold
);
7450 void init_samr_group_info1(struct samr_GroupInfoAll
*r
,
7452 uint32_t attributes
,
7453 uint32_t num_members
,
7454 const char *description
);
7455 void init_samr_group_info2(struct lsa_String
*r
, const char *group_name
);
7456 void init_samr_group_info3(struct samr_GroupInfoAttributes
*r
,
7457 uint32_t attributes
);
7458 void init_samr_group_info4(struct lsa_String
*r
, const char *description
);
7459 void init_samr_group_info5(struct samr_GroupInfoAll
*r
,
7461 uint32_t attributes
,
7462 uint32_t num_members
,
7463 const char *description
);
7464 void init_samr_alias_info1(struct samr_AliasInfoAll
*r
,
7466 uint32_t num_members
,
7467 const char *description
);
7468 void init_samr_alias_info3(struct lsa_String
*r
,
7469 const char *description
);
7470 void init_samr_user_info7(struct samr_UserInfo7
*r
,
7471 const char *account_name
);
7472 void init_samr_user_info9(struct samr_UserInfo9
*r
,
7473 uint32_t primary_gid
);
7474 void init_samr_user_info16(struct samr_UserInfo16
*r
,
7475 uint32_t acct_flags
);
7476 void init_samr_user_info18(struct samr_UserInfo18
*r
,
7477 const uint8 lm_pwd
[16],
7478 const uint8 nt_pwd
[16]);
7479 void init_samr_user_info20(struct samr_UserInfo20
*r
,
7480 struct lsa_BinaryString
*parameters
);
7481 void init_samr_user_info21(struct samr_UserInfo21
*r
,
7484 NTTIME last_password_change
,
7486 NTTIME allow_password_change
,
7487 NTTIME force_password_change
,
7488 const char *account_name
,
7489 const char *full_name
,
7490 const char *home_directory
,
7491 const char *home_drive
,
7492 const char *logon_script
,
7493 const char *profile_path
,
7494 const char *description
,
7495 const char *workstations
,
7496 const char *comment
,
7497 struct lsa_BinaryString
*parameters
,
7499 uint32_t primary_gid
,
7500 uint32_t acct_flags
,
7501 uint32_t fields_present
,
7502 struct samr_LogonHours logon_hours
,
7503 uint16_t bad_password_count
,
7504 uint16_t logon_count
,
7505 uint16_t country_code
,
7507 uint8_t nt_password_set
,
7508 uint8_t lm_password_set
,
7509 uint8_t password_expired
);
7510 void init_samr_user_info23(struct samr_UserInfo23
*r
,
7513 NTTIME last_password_change
,
7515 NTTIME allow_password_change
,
7516 NTTIME force_password_change
,
7517 const char *account_name
,
7518 const char *full_name
,
7519 const char *home_directory
,
7520 const char *home_drive
,
7521 const char *logon_script
,
7522 const char *profile_path
,
7523 const char *description
,
7524 const char *workstations
,
7525 const char *comment
,
7526 struct lsa_BinaryString
*parameters
,
7528 uint32_t primary_gid
,
7529 uint32_t acct_flags
,
7530 uint32_t fields_present
,
7531 struct samr_LogonHours logon_hours
,
7532 uint16_t bad_password_count
,
7533 uint16_t logon_count
,
7534 uint16_t country_code
,
7536 uint8_t nt_password_set
,
7537 uint8_t lm_password_set
,
7538 uint8_t password_expired
,
7541 void init_samr_user_info24(struct samr_UserInfo24
*r
,
7545 /* The following definitions come from rpc_client/init_srvsvc.c */
7547 void init_srvsvc_NetSrvInfo102(struct srvsvc_NetSrvInfo102
*r
,
7548 enum srvsvc_PlatformId platform_id
,
7549 const char *server_name
,
7550 uint32_t version_major
,
7551 uint32_t version_minor
,
7552 uint32_t server_type
,
7553 const char *comment
,
7560 const char *userpath
);
7561 void init_srvsvc_NetSrvInfo101(struct srvsvc_NetSrvInfo101
*r
,
7562 enum srvsvc_PlatformId platform_id
,
7563 const char *server_name
,
7564 uint32_t version_major
,
7565 uint32_t version_minor
,
7566 uint32_t server_type
,
7567 const char *comment
);
7568 void init_srvsvc_NetSrvInfo100(struct srvsvc_NetSrvInfo100
*r
,
7569 enum srvsvc_PlatformId platform_id
,
7570 const char *server_name
);
7571 void init_srvsvc_NetShareInfo0(struct srvsvc_NetShareInfo0
*r
,
7573 void init_srvsvc_NetShareInfo1(struct srvsvc_NetShareInfo1
*r
,
7575 enum srvsvc_ShareType type
,
7576 const char *comment
);
7577 void init_srvsvc_NetShareInfo2(struct srvsvc_NetShareInfo2
*r
,
7579 enum srvsvc_ShareType type
,
7580 const char *comment
,
7581 uint32_t permissions
,
7583 uint32_t current_users
,
7585 const char *password
);
7586 void init_srvsvc_NetShareInfo501(struct srvsvc_NetShareInfo501
*r
,
7588 enum srvsvc_ShareType type
,
7589 const char *comment
,
7590 uint32_t csc_policy
);
7591 void init_srvsvc_NetShareInfo502(struct srvsvc_NetShareInfo502
*r
,
7593 enum srvsvc_ShareType type
,
7594 const char *comment
,
7595 uint32_t permissions
,
7597 uint32_t current_users
,
7599 const char *password
,
7600 struct sec_desc_buf
*sd_buf
);
7601 void init_srvsvc_NetShareInfo1004(struct srvsvc_NetShareInfo1004
*r
,
7602 const char *comment
);
7603 void init_srvsvc_NetShareInfo1005(struct srvsvc_NetShareInfo1005
*r
,
7604 uint32_t dfs_flags
);
7605 void init_srvsvc_NetShareInfo1006(struct srvsvc_NetShareInfo1006
*r
,
7606 uint32_t max_users
);
7607 void init_srvsvc_NetShareInfo1007(struct srvsvc_NetShareInfo1007
*r
,
7609 const char *alternate_directory_name
);
7610 void init_srvsvc_NetRemoteTODInfo(struct srvsvc_NetRemoteTODInfo
*r
,
7623 void init_srvsvc_NetSessInfo0(struct srvsvc_NetSessInfo0
*r
,
7624 const char *client
);
7625 void init_srvsvc_NetSessInfo1(struct srvsvc_NetSessInfo1
*r
,
7631 uint32_t user_flags
);
7632 void init_srvsvc_NetSessInfo2(struct srvsvc_NetSessInfo2
*r
,
7638 uint32_t user_flags
,
7639 const char *client_type
);
7640 void init_srvsvc_NetSessInfo10(struct srvsvc_NetSessInfo10
*r
,
7644 uint32_t idle_time
);
7645 void init_srvsvc_NetSessInfo502(struct srvsvc_NetSessInfo502
*r
,
7651 uint32_t user_flags
,
7652 const char *client_type
,
7653 const char *transport
);
7654 void init_srvsvc_NetFileInfo2(struct srvsvc_NetFileInfo2
*r
,
7656 void init_srvsvc_NetFileInfo3(struct srvsvc_NetFileInfo3
*r
,
7658 uint32_t permissions
,
7662 void init_srvsvc_NetConnInfo0(struct srvsvc_NetConnInfo0
*r
,
7664 void init_srvsvc_NetConnInfo1(struct srvsvc_NetConnInfo1
*r
,
7673 /* The following definitions come from rpc_client/ndr.c */
7675 NTSTATUS
cli_do_rpc_ndr(struct rpc_pipe_client
*cli
,
7676 TALLOC_CTX
*mem_ctx
, int p_idx
,
7677 const struct ndr_interface_table
*table
,
7678 uint32 opnum
, void *r
);
7680 /* The following definitions come from rpc_parse/parse_buffer.c */
7682 void rpcbuf_init(RPC_BUFFER
*buffer
, uint32 size
, TALLOC_CTX
*ctx
);
7683 bool prs_rpcbuffer(const char *desc
, prs_struct
*ps
, int depth
, RPC_BUFFER
*buffer
);
7684 bool prs_rpcbuffer_p(const char *desc
, prs_struct
*ps
, int depth
, RPC_BUFFER
**buffer
);
7685 bool rpcbuf_alloc_size(RPC_BUFFER
*buffer
, uint32 buffer_size
);
7686 void rpcbuf_move(RPC_BUFFER
*src
, RPC_BUFFER
**dest
);
7687 uint32
rpcbuf_get_size(RPC_BUFFER
*buffer
);
7688 bool smb_io_relstr(const char *desc
, RPC_BUFFER
*buffer
, int depth
, UNISTR
*string
);
7689 bool smb_io_relarraystr(const char *desc
, RPC_BUFFER
*buffer
, int depth
, uint16
**string
);
7690 bool smb_io_relsecdesc(const char *desc
, RPC_BUFFER
*buffer
, int depth
, SEC_DESC
**secdesc
);
7691 uint32
size_of_relative_string(UNISTR
*string
);
7693 /* The following definitions come from rpc_parse/parse_eventlog.c */
7695 bool eventlog_io_q_read_eventlog(const char *desc
, EVENTLOG_Q_READ_EVENTLOG
*q_u
,
7696 prs_struct
*ps
, int depth
);
7697 bool eventlog_io_r_read_eventlog(const char *desc
,
7698 EVENTLOG_Q_READ_EVENTLOG
*q_u
,
7699 EVENTLOG_R_READ_EVENTLOG
*r_u
,
7703 /* The following definitions come from rpc_parse/parse_misc.c */
7705 bool smb_io_time(const char *desc
, NTTIME
*nttime
, prs_struct
*ps
, int depth
);
7706 bool smb_io_nttime(const char *desc
, prs_struct
*ps
, int depth
, NTTIME
*nttime
);
7707 uint32
get_enum_hnd(ENUM_HND
*enh
);
7708 void init_enum_hnd(ENUM_HND
*enh
, uint32 hnd
);
7709 bool smb_io_enum_hnd(const char *desc
, ENUM_HND
*hnd
, prs_struct
*ps
, int depth
);
7710 bool smb_io_dom_sid(const char *desc
, DOM_SID
*sid
, prs_struct
*ps
, int depth
);
7711 void init_dom_sid2(DOM_SID2
*sid2
, const DOM_SID
*sid
);
7712 bool smb_io_dom_sid2_p(const char *desc
, prs_struct
*ps
, int depth
, DOM_SID2
**sid2
);
7713 bool smb_io_dom_sid2(const char *desc
, DOM_SID2
*sid
, prs_struct
*ps
, int depth
);
7714 bool smb_io_uuid(const char *desc
, struct GUID
*uuid
,
7715 prs_struct
*ps
, int depth
);
7716 void init_str_hdr(STRHDR
*hdr
, int max_len
, int len
, uint32 buffer
);
7717 bool smb_io_strhdr(const char *desc
, STRHDR
*hdr
, prs_struct
*ps
, int depth
);
7718 void init_uni_hdr(UNIHDR
*hdr
, UNISTR2
*str2
);
7719 bool smb_io_unihdr(const char *desc
, UNIHDR
*hdr
, prs_struct
*ps
, int depth
);
7720 void init_buf_hdr(BUFHDR
*hdr
, int max_len
, int len
);
7721 bool smb_io_hdrbuf_pre(const char *desc
, BUFHDR
*hdr
, prs_struct
*ps
, int depth
, uint32
*offset
);
7722 bool smb_io_hdrbuf_post(const char *desc
, BUFHDR
*hdr
, prs_struct
*ps
, int depth
,
7723 uint32 ptr_hdrbuf
, uint32 max_len
, uint32 len
);
7724 bool smb_io_hdrbuf(const char *desc
, BUFHDR
*hdr
, prs_struct
*ps
, int depth
);
7725 void init_unistr(UNISTR
*str
, const char *buf
);
7726 bool smb_io_unistr(const char *desc
, UNISTR
*uni
, prs_struct
*ps
, int depth
);
7727 void init_rpc_blob_uint32(RPC_DATA_BLOB
*str
, uint32 val
);
7728 void init_rpc_blob_str(RPC_DATA_BLOB
*str
, const char *buf
, int len
);
7729 void init_rpc_blob_hex(RPC_DATA_BLOB
*str
, const char *buf
);
7730 void init_rpc_blob_bytes(RPC_DATA_BLOB
*str
, uint8
*buf
, size_t len
);
7731 bool smb_io_buffer5(const char *desc
, BUFFER5
*buf5
, prs_struct
*ps
, int depth
);
7732 void init_regval_buffer(REGVAL_BUFFER
*str
, const uint8
*buf
, size_t len
);
7733 bool smb_io_regval_buffer(const char *desc
, prs_struct
*ps
, int depth
, REGVAL_BUFFER
*buf2
);
7734 void init_buf_unistr2(UNISTR2
*str
, uint32
*ptr
, const char *buf
);
7735 void copy_unistr2(UNISTR2
*str
, const UNISTR2
*from
);
7736 void init_string2(STRING2
*str
, const char *buf
, size_t max_len
, size_t str_len
);
7737 bool smb_io_string2(const char *desc
, STRING2
*str2
, uint32 buffer
, prs_struct
*ps
, int depth
);
7738 void init_unistr2(UNISTR2
*str
, const char *buf
, enum unistr2_term_codes flags
);
7739 void init_unistr4(UNISTR4
*uni4
, const char *buf
, enum unistr2_term_codes flags
);
7740 void init_unistr4_w( TALLOC_CTX
*ctx
, UNISTR4
*uni4
, const smb_ucs2_t
*buf
);
7741 void init_unistr2_w(TALLOC_CTX
*ctx
, UNISTR2
*str
, const smb_ucs2_t
*buf
);
7742 void init_unistr2_from_unistr(TALLOC_CTX
*ctx
, UNISTR2
*to
, const UNISTR
*from
);
7743 void init_unistr2_from_datablob(UNISTR2
*str
, DATA_BLOB
*blob
) ;
7744 bool prs_io_unistr2_p(const char *desc
, prs_struct
*ps
, int depth
, UNISTR2
**uni2
);
7745 bool prs_io_unistr2(const char *desc
, prs_struct
*ps
, int depth
, UNISTR2
*uni2
);
7746 bool smb_io_unistr2(const char *desc
, UNISTR2
*uni2
, uint32 buffer
, prs_struct
*ps
, int depth
);
7747 bool prs_unistr4(const char *desc
, prs_struct
*ps
, int depth
, UNISTR4
*uni4
);
7748 bool prs_unistr4_hdr(const char *desc
, prs_struct
*ps
, int depth
, UNISTR4
*uni4
);
7749 bool prs_unistr4_str(const char *desc
, prs_struct
*ps
, int depth
, UNISTR4
*uni4
);
7750 bool prs_unistr4_array(const char *desc
, prs_struct
*ps
, int depth
, UNISTR4_ARRAY
*array
);
7751 bool init_unistr4_array( UNISTR4_ARRAY
*array
, uint32 count
, const char **strings
);
7752 void init_dom_rid(DOM_RID
*prid
, uint32 rid
, uint16 type
, uint32 idx
);
7753 bool smb_io_dom_rid(const char *desc
, DOM_RID
*rid
, prs_struct
*ps
, int depth
);
7754 bool smb_io_dom_rid2(const char *desc
, DOM_RID2
*rid
, prs_struct
*ps
, int depth
);
7755 void init_dom_rid3(DOM_RID3
*rid3
, uint32 rid
, uint8 type
);
7756 bool smb_io_dom_rid3(const char *desc
, DOM_RID3
*rid3
, prs_struct
*ps
, int depth
);
7757 void init_dom_rid4(DOM_RID4
*rid4
, uint16 unknown
, uint16 attr
, uint32 rid
);
7758 void init_clnt_srv(DOM_CLNT_SRV
*logcln
, const char *logon_srv
,
7759 const char *comp_name
);
7760 bool smb_io_clnt_srv(const char *desc
, DOM_CLNT_SRV
*logcln
, prs_struct
*ps
, int depth
);
7761 void init_log_info(DOM_LOG_INFO
*loginfo
, const char *logon_srv
, const char *acct_name
,
7762 uint16 sec_chan
, const char *comp_name
);
7763 bool smb_io_log_info(const char *desc
, DOM_LOG_INFO
*loginfo
, prs_struct
*ps
, int depth
);
7764 bool smb_io_chal(const char *desc
, DOM_CHAL
*chal
, prs_struct
*ps
, int depth
);
7765 bool smb_io_cred(const char *desc
, DOM_CRED
*cred
, prs_struct
*ps
, int depth
);
7766 void init_clnt_info2(DOM_CLNT_INFO2
*clnt
,
7767 const char *logon_srv
, const char *comp_name
,
7768 const DOM_CRED
*clnt_cred
);
7769 bool smb_io_clnt_info2(const char *desc
, DOM_CLNT_INFO2
*clnt
, prs_struct
*ps
, int depth
);
7770 void init_clnt_info(DOM_CLNT_INFO
*clnt
,
7771 const char *logon_srv
, const char *acct_name
,
7772 uint16 sec_chan
, const char *comp_name
,
7773 const DOM_CRED
*cred
);
7774 bool smb_io_clnt_info(const char *desc
, DOM_CLNT_INFO
*clnt
, prs_struct
*ps
, int depth
);
7775 void init_logon_id(DOM_LOGON_ID
*logonid
, uint32 log_id_low
, uint32 log_id_high
);
7776 bool smb_io_logon_id(const char *desc
, DOM_LOGON_ID
*logonid
, prs_struct
*ps
, int depth
);
7777 void init_owf_info(OWF_INFO
*hash
, const uint8 data
[16]);
7778 bool smb_io_owf_info(const char *desc
, OWF_INFO
*hash
, prs_struct
*ps
, int depth
);
7779 bool smb_io_gid(const char *desc
, DOM_GID
*gid
, prs_struct
*ps
, int depth
);
7780 bool smb_io_pol_hnd(const char *desc
, POLICY_HND
*pol
, prs_struct
*ps
, int depth
);
7781 void init_unistr3(UNISTR3
*str
, const char *buf
);
7782 bool smb_io_unistr3(const char *desc
, UNISTR3
*name
, prs_struct
*ps
, int depth
);
7783 bool prs_uint64(const char *name
, prs_struct
*ps
, int depth
, uint64
*data64
);
7784 bool smb_io_bufhdr2(const char *desc
, BUFHDR2
*hdr
, prs_struct
*ps
, int depth
);
7785 bool smb_io_bufhdr4(const char *desc
, BUFHDR4
*hdr
, prs_struct
*ps
, int depth
);
7786 bool smb_io_rpc_blob(const char *desc
, RPC_DATA_BLOB
*blob
, prs_struct
*ps
, int depth
);
7787 bool make_uni_hdr(UNIHDR
*hdr
, int len
);
7788 bool make_bufhdr2(BUFHDR2
*hdr
, uint32 info_level
, uint32 length
, uint32 buffer
);
7789 uint32
str_len_uni(UNISTR
*source
);
7790 bool policy_handle_is_valid(const POLICY_HND
*hnd
);
7792 /* The following definitions come from rpc_parse/parse_ntsvcs.c */
7794 bool ntsvcs_io_q_get_device_list(const char *desc
, NTSVCS_Q_GET_DEVICE_LIST
*q_u
, prs_struct
*ps
, int depth
);
7795 bool ntsvcs_io_r_get_device_list(const char *desc
, NTSVCS_R_GET_DEVICE_LIST
*r_u
, prs_struct
*ps
, int depth
);
7796 bool ntsvcs_io_q_get_device_reg_property(const char *desc
, NTSVCS_Q_GET_DEVICE_REG_PROPERTY
*q_u
, prs_struct
*ps
, int depth
);
7797 bool ntsvcs_io_r_get_device_reg_property(const char *desc
, NTSVCS_R_GET_DEVICE_REG_PROPERTY
*r_u
, prs_struct
*ps
, int depth
);
7799 /* The following definitions come from rpc_parse/parse_prs.c */
7801 void prs_dump(const char *name
, int v
, prs_struct
*ps
);
7802 void prs_dump_before(const char *name
, int v
, prs_struct
*ps
);
7803 void prs_dump_region(const char *name
, int v
, prs_struct
*ps
,
7804 int from_off
, int to_off
);
7805 void prs_debug(prs_struct
*ps
, int depth
, const char *desc
, const char *fn_name
);
7806 bool prs_init(prs_struct
*ps
, uint32 size
, TALLOC_CTX
*ctx
, bool io
);
7807 void prs_mem_free(prs_struct
*ps
);
7808 void prs_mem_clear(prs_struct
*ps
);
7809 char *prs_alloc_mem_(prs_struct
*ps
, size_t size
, unsigned int count
);
7810 char *prs_alloc_mem(prs_struct
*ps
, size_t size
, unsigned int count
);
7811 TALLOC_CTX
*prs_get_mem_context(prs_struct
*ps
);
7812 void prs_give_memory(prs_struct
*ps
, char *buf
, uint32 size
, bool is_dynamic
);
7813 char *prs_take_memory(prs_struct
*ps
, uint32
*psize
);
7814 bool prs_set_buffer_size(prs_struct
*ps
, uint32 newsize
);
7815 bool prs_grow(prs_struct
*ps
, uint32 extra_space
);
7816 bool prs_force_grow(prs_struct
*ps
, uint32 extra_space
);
7817 char *prs_data_p(prs_struct
*ps
);
7818 uint32
prs_data_size(prs_struct
*ps
);
7819 uint32
prs_offset(prs_struct
*ps
);
7820 bool prs_set_offset(prs_struct
*ps
, uint32 offset
);
7821 bool prs_append_prs_data(prs_struct
*dst
, prs_struct
*src
);
7822 bool prs_append_some_prs_data(prs_struct
*dst
, prs_struct
*src
, int32 start
, uint32 len
);
7823 bool prs_copy_data_in(prs_struct
*dst
, const char *src
, uint32 len
);
7824 bool prs_copy_data_out(char *dst
, prs_struct
*src
, uint32 len
);
7825 bool prs_copy_all_data_out(char *dst
, prs_struct
*src
);
7826 void prs_set_endian_data(prs_struct
*ps
, bool endian
);
7827 bool prs_align(prs_struct
*ps
);
7828 bool prs_align_uint16(prs_struct
*ps
);
7829 bool prs_align_uint64(prs_struct
*ps
);
7830 bool prs_align_custom(prs_struct
*ps
, uint8 boundary
);
7831 bool prs_align_needed(prs_struct
*ps
, uint32 needed
);
7832 char *prs_mem_get(prs_struct
*ps
, uint32 extra_size
);
7833 void prs_switch_type(prs_struct
*ps
, bool io
);
7834 void prs_force_dynamic(prs_struct
*ps
);
7835 void prs_set_session_key(prs_struct
*ps
, const char sess_key
[16]);
7836 bool prs_uint8(const char *name
, prs_struct
*ps
, int depth
, uint8
*data8
);
7837 bool prs_pointer( const char *name
, prs_struct
*ps
, int depth
,
7838 void *dta
, size_t data_size
,
7839 bool (*prs_fn
)(const char*, prs_struct
*, int, void*) );
7840 bool prs_uint16(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
);
7841 bool prs_uint32(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
);
7842 bool prs_int32(const char *name
, prs_struct
*ps
, int depth
, int32
*data32
);
7843 bool prs_ntstatus(const char *name
, prs_struct
*ps
, int depth
, NTSTATUS
*status
);
7844 bool prs_dcerpc_status(const char *name
, prs_struct
*ps
, int depth
, NTSTATUS
*status
);
7845 bool prs_werror(const char *name
, prs_struct
*ps
, int depth
, WERROR
*status
);
7846 bool prs_uint8s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint8
*data8s
, int len
);
7847 bool prs_uint16s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint16
*data16s
, int len
);
7848 bool prs_uint16uni(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint16
*data16s
, int len
);
7849 bool prs_uint32s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint32
*data32s
, int len
);
7850 bool prs_buffer5(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, BUFFER5
*str
);
7851 bool prs_regval_buffer(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, REGVAL_BUFFER
*buf
);
7852 bool prs_string2(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, STRING2
*str
);
7853 bool prs_unistr2(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, UNISTR2
*str
);
7854 bool prs_unistr3(bool charmode
, const char *name
, UNISTR3
*str
, prs_struct
*ps
, int depth
);
7855 bool prs_unistr(const char *name
, prs_struct
*ps
, int depth
, UNISTR
*str
);
7856 bool prs_string(const char *name
, prs_struct
*ps
, int depth
, char *str
, int max_buf_size
);
7857 bool prs_string_alloc(const char *name
, prs_struct
*ps
, int depth
, const char **str
);
7858 bool prs_uint16_pre(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
, uint32
*offset
);
7859 bool prs_uint16_post(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
,
7860 uint32 ptr_uint16
, uint32 start_offset
);
7861 bool prs_uint32_pre(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
, uint32
*offset
);
7862 bool prs_uint32_post(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
,
7863 uint32 ptr_uint32
, uint32 data_size
);
7864 int tdb_prs_store(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, prs_struct
*ps
);
7865 int tdb_prs_fetch(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, prs_struct
*ps
, TALLOC_CTX
*mem_ctx
);
7866 bool prs_hash1(prs_struct
*ps
, uint32 offset
, int len
);
7867 void schannel_encode(struct schannel_auth_struct
*a
, enum pipe_auth_level auth_level
,
7868 enum schannel_direction direction
,
7869 RPC_AUTH_SCHANNEL_CHK
* verf
,
7870 char *data
, size_t data_len
);
7871 bool schannel_decode(struct schannel_auth_struct
*a
, enum pipe_auth_level auth_level
,
7872 enum schannel_direction direction
,
7873 RPC_AUTH_SCHANNEL_CHK
* verf
, char *data
, size_t data_len
);
7874 bool prs_init_data_blob(prs_struct
*prs
, DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
);
7875 bool prs_data_blob(prs_struct
*prs
, DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
);
7877 /* The following definitions come from rpc_parse/parse_rpc.c */
7879 const char *cli_get_pipe_name(int pipe_idx
);
7880 int cli_get_pipe_idx(const RPC_IFACE
*syntax
);
7881 void init_rpc_hdr(RPC_HDR
*hdr
, enum RPC_PKT_TYPE pkt_type
, uint8 flags
,
7882 uint32 call_id
, int data_len
, int auth_len
);
7883 bool smb_io_rpc_hdr(const char *desc
, RPC_HDR
*rpc
, prs_struct
*ps
, int depth
);
7884 void init_rpc_context(RPC_CONTEXT
*rpc_ctx
, uint16 context_id
,
7885 const RPC_IFACE
*abstract
, const RPC_IFACE
*transfer
);
7886 void init_rpc_hdr_rb(RPC_HDR_RB
*rpc
,
7887 uint16 max_tsize
, uint16 max_rsize
, uint32 assoc_gid
,
7888 RPC_CONTEXT
*context
);
7889 bool smb_io_rpc_context(const char *desc
, RPC_CONTEXT
*rpc_ctx
, prs_struct
*ps
, int depth
);
7890 bool smb_io_rpc_hdr_rb(const char *desc
, RPC_HDR_RB
*rpc
, prs_struct
*ps
, int depth
);
7891 void init_rpc_hdr_ba(RPC_HDR_BA
*rpc
,
7892 uint16 max_tsize
, uint16 max_rsize
, uint32 assoc_gid
,
7893 const char *pipe_addr
,
7894 uint8 num_results
, uint16 result
, uint16 reason
,
7895 RPC_IFACE
*transfer
);
7896 bool smb_io_rpc_hdr_ba(const char *desc
, RPC_HDR_BA
*rpc
, prs_struct
*ps
, int depth
);
7897 void init_rpc_hdr_req(RPC_HDR_REQ
*hdr
, uint32 alloc_hint
, uint16 opnum
);
7898 bool smb_io_rpc_hdr_req(const char *desc
, RPC_HDR_REQ
*rpc
, prs_struct
*ps
, int depth
);
7899 bool smb_io_rpc_hdr_resp(const char *desc
, RPC_HDR_RESP
*rpc
, prs_struct
*ps
, int depth
);
7900 bool smb_io_rpc_hdr_fault(const char *desc
, RPC_HDR_FAULT
*rpc
, prs_struct
*ps
, int depth
);
7901 void init_rpc_hdr_auth(RPC_HDR_AUTH
*rai
,
7902 uint8 auth_type
, uint8 auth_level
,
7904 uint32 auth_context_id
);
7905 bool smb_io_rpc_hdr_auth(const char *desc
, RPC_HDR_AUTH
*rai
, prs_struct
*ps
, int depth
);
7906 bool rpc_auth_verifier_chk(RPC_AUTH_VERIFIER
*rav
,
7907 const char *signature
, uint32 msg_type
);
7908 void init_rpc_auth_verifier(RPC_AUTH_VERIFIER
*rav
,
7909 const char *signature
, uint32 msg_type
);
7910 bool smb_io_rpc_auth_verifier(const char *desc
, RPC_AUTH_VERIFIER
*rav
, prs_struct
*ps
, int depth
);
7911 bool smb_io_rpc_schannel_verifier(const char *desc
, RPC_AUTH_VERIFIER
*rav
, prs_struct
*ps
, int depth
);
7912 void init_rpc_auth_schannel_neg(RPC_AUTH_SCHANNEL_NEG
*neg
,
7913 const char *domain
, const char *myname
);
7914 bool smb_io_rpc_auth_schannel_neg(const char *desc
, RPC_AUTH_SCHANNEL_NEG
*neg
,
7915 prs_struct
*ps
, int depth
);
7916 bool smb_io_rpc_auth_schannel_chk(const char *desc
, int auth_len
,
7917 RPC_AUTH_SCHANNEL_CHK
* chk
,
7918 prs_struct
*ps
, int depth
);
7920 /* The following definitions come from rpc_parse/parse_sec.c */
7922 bool sec_io_desc(const char *desc
, SEC_DESC
**ppsd
, prs_struct
*ps
, int depth
);
7923 bool sec_io_desc_buf(const char *desc
, SEC_DESC_BUF
**ppsdb
, prs_struct
*ps
, int depth
);
7925 /* The following definitions come from rpc_parse/parse_spoolss.c */
7927 bool spoolss_io_system_time(const char *desc
, prs_struct
*ps
, int depth
, SYSTEMTIME
*systime
);
7928 bool make_systemtime(SYSTEMTIME
*systime
, struct tm
*unixtime
);
7929 bool smb_io_notify_info_data_strings(const char *desc
,SPOOL_NOTIFY_INFO_DATA
*data
,
7930 prs_struct
*ps
, int depth
);
7931 bool spool_io_user_level_1( const char *desc
, prs_struct
*ps
, int depth
, SPOOL_USER_1
*q_u
);
7932 bool spoolss_io_devmode(const char *desc
, prs_struct
*ps
, int depth
, DEVICEMODE
*devmode
);
7933 bool make_spoolss_q_open_printer_ex(SPOOL_Q_OPEN_PRINTER_EX
*q_u
,
7934 const fstring printername
,
7935 const fstring datatype
,
7936 uint32 access_required
,
7937 const fstring clientname
,
7938 const fstring user_name
);
7939 bool make_spoolss_q_addprinterex( TALLOC_CTX
*mem_ctx
, SPOOL_Q_ADDPRINTEREX
*q_u
,
7940 const char *srv_name
, const char* clientname
, const char* user_name
,
7941 uint32 level
, PRINTER_INFO_CTR
*ctr
);
7942 bool make_spoolss_printer_info_2(TALLOC_CTX
*ctx
, SPOOL_PRINTER_INFO_LEVEL_2
**spool_info2
,
7943 PRINTER_INFO_2
*info
);
7944 bool make_spoolss_printer_info_3(TALLOC_CTX
*mem_ctx
, SPOOL_PRINTER_INFO_LEVEL_3
**spool_info3
,
7945 PRINTER_INFO_3
*info
);
7946 bool make_spoolss_printer_info_7(TALLOC_CTX
*mem_ctx
, SPOOL_PRINTER_INFO_LEVEL_7
**spool_info7
,
7947 PRINTER_INFO_7
*info
);
7948 bool spoolss_io_q_open_printer(const char *desc
, SPOOL_Q_OPEN_PRINTER
*q_u
, prs_struct
*ps
, int depth
);
7949 bool spoolss_io_r_open_printer(const char *desc
, SPOOL_R_OPEN_PRINTER
*r_u
, prs_struct
*ps
, int depth
);
7950 bool spoolss_io_q_open_printer_ex(const char *desc
, SPOOL_Q_OPEN_PRINTER_EX
*q_u
, prs_struct
*ps
, int depth
);
7951 bool spoolss_io_r_open_printer_ex(const char *desc
, SPOOL_R_OPEN_PRINTER_EX
*r_u
, prs_struct
*ps
, int depth
);
7952 bool make_spoolss_q_deleteprinterdriverex( TALLOC_CTX
*mem_ctx
,
7953 SPOOL_Q_DELETEPRINTERDRIVEREX
*q_u
,
7958 bool make_spoolss_q_deleteprinterdriver(
7959 TALLOC_CTX
*mem_ctx
,
7960 SPOOL_Q_DELETEPRINTERDRIVER
*q_u
,
7965 bool make_spoolss_q_getprinterdata(SPOOL_Q_GETPRINTERDATA
*q_u
,
7966 const POLICY_HND
*handle
,
7967 const char *valuename
, uint32 size
);
7968 bool make_spoolss_q_getprinterdataex(SPOOL_Q_GETPRINTERDATAEX
*q_u
,
7969 const POLICY_HND
*handle
,
7970 const char *keyname
,
7971 const char *valuename
, uint32 size
);
7972 bool spoolss_io_q_getprinterdata(const char *desc
, SPOOL_Q_GETPRINTERDATA
*q_u
, prs_struct
*ps
, int depth
);
7973 bool spoolss_io_q_deleteprinterdata(const char *desc
, SPOOL_Q_DELETEPRINTERDATA
*q_u
, prs_struct
*ps
, int depth
);
7974 bool spoolss_io_r_deleteprinterdata(const char *desc
, SPOOL_R_DELETEPRINTERDATA
*r_u
, prs_struct
*ps
, int depth
);
7975 bool spoolss_io_q_deleteprinterdataex(const char *desc
, SPOOL_Q_DELETEPRINTERDATAEX
*q_u
, prs_struct
*ps
, int depth
);
7976 bool spoolss_io_r_deleteprinterdataex(const char *desc
, SPOOL_R_DELETEPRINTERDATAEX
*r_u
, prs_struct
*ps
, int depth
);
7977 bool spoolss_io_r_getprinterdata(const char *desc
, SPOOL_R_GETPRINTERDATA
*r_u
, prs_struct
*ps
, int depth
);
7978 bool make_spoolss_q_closeprinter(SPOOL_Q_CLOSEPRINTER
*q_u
, POLICY_HND
*hnd
);
7979 bool spoolss_io_q_abortprinter(const char *desc
, SPOOL_Q_ABORTPRINTER
*q_u
, prs_struct
*ps
, int depth
);
7980 bool spoolss_io_r_abortprinter(const char *desc
, SPOOL_R_ABORTPRINTER
*r_u
, prs_struct
*ps
, int depth
);
7981 bool spoolss_io_q_deleteprinter(const char *desc
, SPOOL_Q_DELETEPRINTER
*q_u
, prs_struct
*ps
, int depth
);
7982 bool spoolss_io_r_deleteprinter(const char *desc
, SPOOL_R_DELETEPRINTER
*r_u
, prs_struct
*ps
, int depth
);
7983 bool spoolss_io_q_deleteprinterdriver(const char *desc
, SPOOL_Q_DELETEPRINTERDRIVER
*q_u
, prs_struct
*ps
, int depth
);
7984 bool spoolss_io_r_deleteprinterdriver(const char *desc
, SPOOL_R_DELETEPRINTERDRIVER
*r_u
, prs_struct
*ps
, int depth
);
7985 bool spoolss_io_q_deleteprinterdriverex(const char *desc
, SPOOL_Q_DELETEPRINTERDRIVEREX
*q_u
, prs_struct
*ps
, int depth
);
7986 bool spoolss_io_r_deleteprinterdriverex(const char *desc
, SPOOL_R_DELETEPRINTERDRIVEREX
*r_u
, prs_struct
*ps
, int depth
);
7987 bool spoolss_io_q_closeprinter(const char *desc
, SPOOL_Q_CLOSEPRINTER
*q_u
, prs_struct
*ps
, int depth
);
7988 bool spoolss_io_r_closeprinter(const char *desc
, SPOOL_R_CLOSEPRINTER
*r_u
, prs_struct
*ps
, int depth
);
7989 bool spoolss_io_q_startdocprinter(const char *desc
, SPOOL_Q_STARTDOCPRINTER
*q_u
, prs_struct
*ps
, int depth
);
7990 bool spoolss_io_r_startdocprinter(const char *desc
, SPOOL_R_STARTDOCPRINTER
*r_u
, prs_struct
*ps
, int depth
);
7991 bool spoolss_io_q_enddocprinter(const char *desc
, SPOOL_Q_ENDDOCPRINTER
*q_u
, prs_struct
*ps
, int depth
);
7992 bool spoolss_io_r_enddocprinter(const char *desc
, SPOOL_R_ENDDOCPRINTER
*r_u
, prs_struct
*ps
, int depth
);
7993 bool spoolss_io_q_startpageprinter(const char *desc
, SPOOL_Q_STARTPAGEPRINTER
*q_u
, prs_struct
*ps
, int depth
);
7994 bool spoolss_io_r_startpageprinter(const char *desc
, SPOOL_R_STARTPAGEPRINTER
*r_u
, prs_struct
*ps
, int depth
);
7995 bool spoolss_io_q_endpageprinter(const char *desc
, SPOOL_Q_ENDPAGEPRINTER
*q_u
, prs_struct
*ps
, int depth
);
7996 bool spoolss_io_r_endpageprinter(const char *desc
, SPOOL_R_ENDPAGEPRINTER
*r_u
, prs_struct
*ps
, int depth
);
7997 bool spoolss_io_q_writeprinter(const char *desc
, SPOOL_Q_WRITEPRINTER
*q_u
, prs_struct
*ps
, int depth
);
7998 bool spoolss_io_r_writeprinter(const char *desc
, SPOOL_R_WRITEPRINTER
*r_u
, prs_struct
*ps
, int depth
);
7999 bool spoolss_io_q_rffpcnex(const char *desc
, SPOOL_Q_RFFPCNEX
*q_u
, prs_struct
*ps
, int depth
);
8000 bool spoolss_io_r_rffpcnex(const char *desc
, SPOOL_R_RFFPCNEX
*r_u
, prs_struct
*ps
, int depth
);
8001 bool spoolss_io_q_rfnpcnex(const char *desc
, SPOOL_Q_RFNPCNEX
*q_u
, prs_struct
*ps
, int depth
);
8002 bool spoolss_io_r_rfnpcnex(const char *desc
, SPOOL_R_RFNPCNEX
*r_u
, prs_struct
*ps
, int depth
);
8003 bool smb_io_printer_info_0(const char *desc
, RPC_BUFFER
*buffer
, PRINTER_INFO_0
*info
, int depth
);
8004 bool smb_io_printer_info_1(const char *desc
, RPC_BUFFER
*buffer
, PRINTER_INFO_1
*info
, int depth
);
8005 bool smb_io_printer_info_2(const char *desc
, RPC_BUFFER
*buffer
, PRINTER_INFO_2
*info
, int depth
);
8006 bool smb_io_printer_info_3(const char *desc
, RPC_BUFFER
*buffer
, PRINTER_INFO_3
*info
, int depth
);
8007 bool smb_io_printer_info_4(const char *desc
, RPC_BUFFER
*buffer
, PRINTER_INFO_4
*info
, int depth
);
8008 bool smb_io_printer_info_5(const char *desc
, RPC_BUFFER
*buffer
, PRINTER_INFO_5
*info
, int depth
);
8009 bool smb_io_printer_info_6(const char *desc
, RPC_BUFFER
*buffer
,
8010 PRINTER_INFO_6
*info
, int depth
);
8011 bool smb_io_printer_info_7(const char *desc
, RPC_BUFFER
*buffer
, PRINTER_INFO_7
*info
, int depth
);
8012 bool smb_io_port_info_1(const char *desc
, RPC_BUFFER
*buffer
, PORT_INFO_1
*info
, int depth
);
8013 bool smb_io_port_info_2(const char *desc
, RPC_BUFFER
*buffer
, PORT_INFO_2
*info
, int depth
);
8014 bool smb_io_printer_driver_info_1(const char *desc
, RPC_BUFFER
*buffer
, DRIVER_INFO_1
*info
, int depth
) ;
8015 bool smb_io_printer_driver_info_2(const char *desc
, RPC_BUFFER
*buffer
, DRIVER_INFO_2
*info
, int depth
) ;
8016 bool smb_io_printer_driver_info_3(const char *desc
, RPC_BUFFER
*buffer
, DRIVER_INFO_3
*info
, int depth
);
8017 bool smb_io_printer_driver_info_6(const char *desc
, RPC_BUFFER
*buffer
, DRIVER_INFO_6
*info
, int depth
);
8018 bool smb_io_job_info_1(const char *desc
, RPC_BUFFER
*buffer
, JOB_INFO_1
*info
, int depth
);
8019 bool smb_io_job_info_2(const char *desc
, RPC_BUFFER
*buffer
, JOB_INFO_2
*info
, int depth
);
8020 bool smb_io_form_1(const char *desc
, RPC_BUFFER
*buffer
, FORM_1
*info
, int depth
);
8021 bool smb_io_driverdir_1(const char *desc
, RPC_BUFFER
*buffer
, DRIVER_DIRECTORY_1
*info
, int depth
);
8022 bool smb_io_port_1(const char *desc
, RPC_BUFFER
*buffer
, PORT_INFO_1
*info
, int depth
);
8023 bool smb_io_port_2(const char *desc
, RPC_BUFFER
*buffer
, PORT_INFO_2
*info
, int depth
);
8024 bool smb_io_printprocessor_info_1(const char *desc
, RPC_BUFFER
*buffer
, PRINTPROCESSOR_1
*info
, int depth
);
8025 bool smb_io_printprocdatatype_info_1(const char *desc
, RPC_BUFFER
*buffer
, PRINTPROCDATATYPE_1
*info
, int depth
);
8026 bool smb_io_printmonitor_info_1(const char *desc
, RPC_BUFFER
*buffer
, PRINTMONITOR_1
*info
, int depth
);
8027 bool smb_io_printmonitor_info_2(const char *desc
, RPC_BUFFER
*buffer
, PRINTMONITOR_2
*info
, int depth
);
8028 uint32
spoolss_size_printer_info_0(PRINTER_INFO_0
*info
);
8029 uint32
spoolss_size_printer_info_1(PRINTER_INFO_1
*info
);
8030 uint32
spoolss_size_printer_info_2(PRINTER_INFO_2
*info
);
8031 uint32
spoolss_size_printer_info_4(PRINTER_INFO_4
*info
);
8032 uint32
spoolss_size_printer_info_5(PRINTER_INFO_5
*info
);
8033 uint32
spoolss_size_printer_info_6(PRINTER_INFO_6
*info
);
8034 uint32
spoolss_size_printer_info_3(PRINTER_INFO_3
*info
);
8035 uint32
spoolss_size_printer_info_7(PRINTER_INFO_7
*info
);
8036 uint32
spoolss_size_printer_driver_info_1(DRIVER_INFO_1
*info
);
8037 uint32
spoolss_size_printer_driver_info_2(DRIVER_INFO_2
*info
);
8038 uint32
spoolss_size_string_array(uint16
*string
);
8039 uint32
spoolss_size_printer_driver_info_3(DRIVER_INFO_3
*info
);
8040 uint32
spoolss_size_printer_driver_info_6(DRIVER_INFO_6
*info
);
8041 uint32
spoolss_size_job_info_1(JOB_INFO_1
*info
);
8042 uint32
spoolss_size_job_info_2(JOB_INFO_2
*info
);
8043 uint32
spoolss_size_form_1(FORM_1
*info
);
8044 uint32
spoolss_size_port_info_1(PORT_INFO_1
*info
);
8045 uint32
spoolss_size_driverdir_info_1(DRIVER_DIRECTORY_1
*info
);
8046 uint32
spoolss_size_printprocessordirectory_info_1(PRINTPROCESSOR_DIRECTORY_1
*info
);
8047 uint32
spoolss_size_port_info_2(PORT_INFO_2
*info
);
8048 uint32
spoolss_size_printprocessor_info_1(PRINTPROCESSOR_1
*info
);
8049 uint32
spoolss_size_printprocdatatype_info_1(PRINTPROCDATATYPE_1
*info
);
8050 uint32
spoolss_size_printer_enum_values(PRINTER_ENUM_VALUES
*p
);
8051 uint32
spoolss_size_printmonitor_info_1(PRINTMONITOR_1
*info
);
8052 uint32
spoolss_size_printmonitor_info_2(PRINTMONITOR_2
*info
);
8053 bool make_spoolss_q_getprinterdriver2(SPOOL_Q_GETPRINTERDRIVER2
*q_u
,
8054 const POLICY_HND
*hnd
,
8055 const fstring architecture
,
8056 uint32 level
, uint32 clientmajor
, uint32 clientminor
,
8057 RPC_BUFFER
*buffer
, uint32 offered
);
8058 bool spoolss_io_q_getprinterdriver2(const char *desc
, SPOOL_Q_GETPRINTERDRIVER2
*q_u
, prs_struct
*ps
, int depth
);
8059 bool spoolss_io_r_getprinterdriver2(const char *desc
, SPOOL_R_GETPRINTERDRIVER2
*r_u
, prs_struct
*ps
, int depth
);
8060 bool make_spoolss_q_enumprinters(
8061 SPOOL_Q_ENUMPRINTERS
*q_u
,
8068 bool make_spoolss_q_enumports(SPOOL_Q_ENUMPORTS
*q_u
,
8069 fstring servername
, uint32 level
,
8070 RPC_BUFFER
*buffer
, uint32 offered
);
8071 bool spoolss_io_q_enumprinters(const char *desc
, SPOOL_Q_ENUMPRINTERS
*q_u
, prs_struct
*ps
, int depth
);
8072 bool spoolss_io_r_enumprinters(const char *desc
, SPOOL_R_ENUMPRINTERS
*r_u
, prs_struct
*ps
, int depth
);
8073 bool spoolss_io_r_getprinter(const char *desc
, SPOOL_R_GETPRINTER
*r_u
, prs_struct
*ps
, int depth
);
8074 bool spoolss_io_q_getprinter(const char *desc
, SPOOL_Q_GETPRINTER
*q_u
, prs_struct
*ps
, int depth
);
8075 bool make_spoolss_q_getprinter(
8076 TALLOC_CTX
*mem_ctx
,
8077 SPOOL_Q_GETPRINTER
*q_u
,
8078 const POLICY_HND
*hnd
,
8083 bool make_spoolss_q_setprinter(TALLOC_CTX
*mem_ctx
, SPOOL_Q_SETPRINTER
*q_u
,
8084 const POLICY_HND
*hnd
, uint32 level
, PRINTER_INFO_CTR
*info
,
8086 bool spoolss_io_r_setprinter(const char *desc
, SPOOL_R_SETPRINTER
*r_u
, prs_struct
*ps
, int depth
);
8087 bool spoolss_io_q_setprinter(const char *desc
, SPOOL_Q_SETPRINTER
*q_u
, prs_struct
*ps
, int depth
);
8088 bool spoolss_io_r_fcpn(const char *desc
, SPOOL_R_FCPN
*r_u
, prs_struct
*ps
, int depth
);
8089 bool spoolss_io_q_fcpn(const char *desc
, SPOOL_Q_FCPN
*q_u
, prs_struct
*ps
, int depth
);
8090 bool spoolss_io_r_addjob(const char *desc
, SPOOL_R_ADDJOB
*r_u
, prs_struct
*ps
, int depth
);
8091 bool spoolss_io_q_addjob(const char *desc
, SPOOL_Q_ADDJOB
*q_u
, prs_struct
*ps
, int depth
);
8092 bool spoolss_io_r_enumjobs(const char *desc
, SPOOL_R_ENUMJOBS
*r_u
, prs_struct
*ps
, int depth
);
8093 bool make_spoolss_q_enumjobs(SPOOL_Q_ENUMJOBS
*q_u
, const POLICY_HND
*hnd
,
8099 bool spoolss_io_q_enumjobs(const char *desc
, SPOOL_Q_ENUMJOBS
*q_u
, prs_struct
*ps
, int depth
);
8100 bool spoolss_io_r_schedulejob(const char *desc
, SPOOL_R_SCHEDULEJOB
*r_u
, prs_struct
*ps
, int depth
);
8101 bool spoolss_io_q_schedulejob(const char *desc
, SPOOL_Q_SCHEDULEJOB
*q_u
, prs_struct
*ps
, int depth
);
8102 bool spoolss_io_r_setjob(const char *desc
, SPOOL_R_SETJOB
*r_u
, prs_struct
*ps
, int depth
);
8103 bool spoolss_io_q_setjob(const char *desc
, SPOOL_Q_SETJOB
*q_u
, prs_struct
*ps
, int depth
);
8104 bool spoolss_io_r_enumprinterdrivers(const char *desc
, SPOOL_R_ENUMPRINTERDRIVERS
*r_u
, prs_struct
*ps
, int depth
);
8105 bool make_spoolss_q_enumprinterdrivers(SPOOL_Q_ENUMPRINTERDRIVERS
*q_u
,
8107 const char *environment
,
8109 RPC_BUFFER
*buffer
, uint32 offered
);
8110 bool spoolss_io_q_enumprinterdrivers(const char *desc
, SPOOL_Q_ENUMPRINTERDRIVERS
*q_u
, prs_struct
*ps
, int depth
);
8111 bool spoolss_io_q_enumforms(const char *desc
, SPOOL_Q_ENUMFORMS
*q_u
, prs_struct
*ps
, int depth
);
8112 bool spoolss_io_r_enumforms(const char *desc
, SPOOL_R_ENUMFORMS
*r_u
, prs_struct
*ps
, int depth
);
8113 bool spoolss_io_q_getform(const char *desc
, SPOOL_Q_GETFORM
*q_u
, prs_struct
*ps
, int depth
);
8114 bool spoolss_io_r_getform(const char *desc
, SPOOL_R_GETFORM
*r_u
, prs_struct
*ps
, int depth
);
8115 bool spoolss_io_r_enumports(const char *desc
, SPOOL_R_ENUMPORTS
*r_u
, prs_struct
*ps
, int depth
);
8116 bool spoolss_io_q_enumports(const char *desc
, SPOOL_Q_ENUMPORTS
*q_u
, prs_struct
*ps
, int depth
);
8117 bool spool_io_printer_info_level_1(const char *desc
, SPOOL_PRINTER_INFO_LEVEL_1
*il
, prs_struct
*ps
, int depth
);
8118 bool spool_io_printer_info_level_3(const char *desc
, SPOOL_PRINTER_INFO_LEVEL_3
*il
, prs_struct
*ps
, int depth
);
8119 bool spool_io_printer_info_level_2(const char *desc
, SPOOL_PRINTER_INFO_LEVEL_2
*il
, prs_struct
*ps
, int depth
);
8120 bool spool_io_printer_info_level_7(const char *desc
, SPOOL_PRINTER_INFO_LEVEL_7
*il
, prs_struct
*ps
, int depth
);
8121 bool spool_io_printer_info_level(const char *desc
, SPOOL_PRINTER_INFO_LEVEL
*il
, prs_struct
*ps
, int depth
);
8122 bool spoolss_io_q_addprinterex(const char *desc
, SPOOL_Q_ADDPRINTEREX
*q_u
, prs_struct
*ps
, int depth
);
8123 bool spoolss_io_r_addprinterex(const char *desc
, SPOOL_R_ADDPRINTEREX
*r_u
,
8124 prs_struct
*ps
, int depth
);
8125 bool spool_io_printer_driver_info_level_3(const char *desc
, SPOOL_PRINTER_DRIVER_INFO_LEVEL_3
**q_u
,
8126 prs_struct
*ps
, int depth
);
8127 bool spool_io_printer_driver_info_level_6(const char *desc
, SPOOL_PRINTER_DRIVER_INFO_LEVEL_6
**q_u
,
8128 prs_struct
*ps
, int depth
);
8129 bool smb_io_unibuffer(const char *desc
, UNISTR2
*buffer
, prs_struct
*ps
, int depth
);
8130 bool spool_io_printer_driver_info_level(const char *desc
, SPOOL_PRINTER_DRIVER_INFO_LEVEL
*il
, prs_struct
*ps
, int depth
);
8131 bool make_spoolss_q_addprinterdriver(TALLOC_CTX
*mem_ctx
,
8132 SPOOL_Q_ADDPRINTERDRIVER
*q_u
, const char* srv_name
,
8133 uint32 level
, PRINTER_DRIVER_CTR
*info
);
8134 bool make_spoolss_driver_info_3(TALLOC_CTX
*mem_ctx
,
8135 SPOOL_PRINTER_DRIVER_INFO_LEVEL_3
**spool_drv_info
,
8136 DRIVER_INFO_3
*info3
);
8137 bool make_spoolss_buffer5(TALLOC_CTX
*mem_ctx
, BUFFER5
*buf5
, uint32 len
, uint16
*src
);
8138 bool spoolss_io_q_addprinterdriver(const char *desc
, SPOOL_Q_ADDPRINTERDRIVER
*q_u
, prs_struct
*ps
, int depth
);
8139 bool spoolss_io_r_addprinterdriver(const char *desc
, SPOOL_R_ADDPRINTERDRIVER
*q_u
, prs_struct
*ps
, int depth
);
8140 bool spoolss_io_q_addprinterdriverex(const char *desc
, SPOOL_Q_ADDPRINTERDRIVEREX
*q_u
, prs_struct
*ps
, int depth
);
8141 bool spoolss_io_r_addprinterdriverex(const char *desc
, SPOOL_R_ADDPRINTERDRIVEREX
*q_u
, prs_struct
*ps
, int depth
);
8142 bool uni_2_asc_printer_driver_3(SPOOL_PRINTER_DRIVER_INFO_LEVEL_3
*uni
,
8143 NT_PRINTER_DRIVER_INFO_LEVEL_3
**asc
);
8144 bool uni_2_asc_printer_driver_6(SPOOL_PRINTER_DRIVER_INFO_LEVEL_6
*uni
,
8145 NT_PRINTER_DRIVER_INFO_LEVEL_6
**asc
);
8146 bool uni_2_asc_printer_info_2(const SPOOL_PRINTER_INFO_LEVEL_2
*uni
,
8147 NT_PRINTER_INFO_LEVEL_2
*d
);
8148 bool make_spoolss_q_getprinterdriverdir(SPOOL_Q_GETPRINTERDRIVERDIR
*q_u
,
8149 fstring servername
, fstring env_name
, uint32 level
,
8150 RPC_BUFFER
*buffer
, uint32 offered
);
8151 bool spoolss_io_q_getprinterdriverdir(const char *desc
, SPOOL_Q_GETPRINTERDRIVERDIR
*q_u
, prs_struct
*ps
, int depth
);
8152 bool spoolss_io_r_getprinterdriverdir(const char *desc
, SPOOL_R_GETPRINTERDRIVERDIR
*r_u
, prs_struct
*ps
, int depth
);
8153 bool spoolss_io_r_enumprintprocessors(const char *desc
, SPOOL_R_ENUMPRINTPROCESSORS
*r_u
, prs_struct
*ps
, int depth
);
8154 bool spoolss_io_q_enumprintprocessors(const char *desc
, SPOOL_Q_ENUMPRINTPROCESSORS
*q_u
, prs_struct
*ps
, int depth
);
8155 bool spoolss_io_q_addprintprocessor(const char *desc
, SPOOL_Q_ADDPRINTPROCESSOR
*q_u
, prs_struct
*ps
, int depth
);
8156 bool spoolss_io_r_addprintprocessor(const char *desc
, SPOOL_R_ADDPRINTPROCESSOR
*r_u
, prs_struct
*ps
, int depth
);
8157 bool spoolss_io_r_enumprintprocdatatypes(const char *desc
, SPOOL_R_ENUMPRINTPROCDATATYPES
*r_u
, prs_struct
*ps
, int depth
);
8158 bool spoolss_io_q_enumprintprocdatatypes(const char *desc
, SPOOL_Q_ENUMPRINTPROCDATATYPES
*q_u
, prs_struct
*ps
, int depth
);
8159 bool spoolss_io_q_enumprintmonitors(const char *desc
, SPOOL_Q_ENUMPRINTMONITORS
*q_u
, prs_struct
*ps
, int depth
);
8160 bool spoolss_io_r_enumprintmonitors(const char *desc
, SPOOL_R_ENUMPRINTMONITORS
*r_u
, prs_struct
*ps
, int depth
);
8161 bool spoolss_io_r_enumprinterdata(const char *desc
, SPOOL_R_ENUMPRINTERDATA
*r_u
, prs_struct
*ps
, int depth
);
8162 bool spoolss_io_q_enumprinterdata(const char *desc
, SPOOL_Q_ENUMPRINTERDATA
*q_u
, prs_struct
*ps
, int depth
);
8163 bool make_spoolss_q_enumprinterdata(SPOOL_Q_ENUMPRINTERDATA
*q_u
,
8164 const POLICY_HND
*hnd
,
8165 uint32 idx
, uint32 valuelen
, uint32 datalen
);
8166 bool make_spoolss_q_enumprinterdataex(SPOOL_Q_ENUMPRINTERDATAEX
*q_u
,
8167 const POLICY_HND
*hnd
, const char *key
,
8169 bool make_spoolss_q_setprinterdata(SPOOL_Q_SETPRINTERDATA
*q_u
, const POLICY_HND
*hnd
,
8170 char* value
, uint32 data_type
, char* data
, uint32 data_size
);
8171 bool make_spoolss_q_setprinterdataex(SPOOL_Q_SETPRINTERDATAEX
*q_u
, const POLICY_HND
*hnd
,
8172 char *key
, char* value
, uint32 data_type
, char* data
,
8174 bool spoolss_io_q_setprinterdata(const char *desc
, SPOOL_Q_SETPRINTERDATA
*q_u
, prs_struct
*ps
, int depth
);
8175 bool spoolss_io_r_setprinterdata(const char *desc
, SPOOL_R_SETPRINTERDATA
*r_u
, prs_struct
*ps
, int depth
);
8176 bool spoolss_io_q_resetprinter(const char *desc
, SPOOL_Q_RESETPRINTER
*q_u
, prs_struct
*ps
, int depth
);
8177 bool spoolss_io_r_resetprinter(const char *desc
, SPOOL_R_RESETPRINTER
*r_u
, prs_struct
*ps
, int depth
);
8178 bool spoolss_io_q_deleteform(const char *desc
, SPOOL_Q_DELETEFORM
*q_u
, prs_struct
*ps
, int depth
);
8179 bool spoolss_io_r_deleteform(const char *desc
, SPOOL_R_DELETEFORM
*r_u
, prs_struct
*ps
, int depth
);
8180 bool spoolss_io_q_addform(const char *desc
, SPOOL_Q_ADDFORM
*q_u
, prs_struct
*ps
, int depth
);
8181 bool spoolss_io_r_addform(const char *desc
, SPOOL_R_ADDFORM
*r_u
, prs_struct
*ps
, int depth
);
8182 bool spoolss_io_q_setform(const char *desc
, SPOOL_Q_SETFORM
*q_u
, prs_struct
*ps
, int depth
);
8183 bool spoolss_io_r_setform(const char *desc
, SPOOL_R_SETFORM
*r_u
, prs_struct
*ps
, int depth
);
8184 bool spoolss_io_r_getjob(const char *desc
, SPOOL_R_GETJOB
*r_u
, prs_struct
*ps
, int depth
);
8185 bool spoolss_io_q_getjob(const char *desc
, SPOOL_Q_GETJOB
*q_u
, prs_struct
*ps
, int depth
);
8186 void free_devmode(DEVICEMODE
*devmode
);
8187 void free_printer_info_1(PRINTER_INFO_1
*printer
);
8188 void free_printer_info_2(PRINTER_INFO_2
*printer
);
8189 void free_printer_info_3(PRINTER_INFO_3
*printer
);
8190 void free_printer_info_4(PRINTER_INFO_4
*printer
);
8191 void free_printer_info_5(PRINTER_INFO_5
*printer
);
8192 void free_printer_info_6(PRINTER_INFO_6
*printer
);
8193 void free_printer_info_7(PRINTER_INFO_7
*printer
);
8194 void free_job_info_2(JOB_INFO_2
*job
);
8195 bool make_spoolss_q_replyopenprinter(SPOOL_Q_REPLYOPENPRINTER
*q_u
,
8196 const fstring string
, uint32 printer
, uint32 type
);
8197 bool spoolss_io_q_replyopenprinter(const char *desc
, SPOOL_Q_REPLYOPENPRINTER
*q_u
, prs_struct
*ps
, int depth
);
8198 bool spoolss_io_r_replyopenprinter(const char *desc
, SPOOL_R_REPLYOPENPRINTER
*r_u
, prs_struct
*ps
, int depth
);
8199 bool make_spoolss_q_routerreplyprinter(SPOOL_Q_ROUTERREPLYPRINTER
*q_u
, POLICY_HND
*hnd
,
8200 uint32 condition
, uint32 change_id
);
8201 bool spoolss_io_q_routerreplyprinter (const char *desc
, SPOOL_Q_ROUTERREPLYPRINTER
*q_u
, prs_struct
*ps
, int depth
);
8202 bool spoolss_io_r_routerreplyprinter (const char *desc
, SPOOL_R_ROUTERREPLYPRINTER
*r_u
, prs_struct
*ps
, int depth
);
8203 bool make_spoolss_q_reply_closeprinter(SPOOL_Q_REPLYCLOSEPRINTER
*q_u
, POLICY_HND
*hnd
);
8204 bool spoolss_io_q_replycloseprinter(const char *desc
, SPOOL_Q_REPLYCLOSEPRINTER
*q_u
, prs_struct
*ps
, int depth
);
8205 bool spoolss_io_r_replycloseprinter(const char *desc
, SPOOL_R_REPLYCLOSEPRINTER
*r_u
, prs_struct
*ps
, int depth
);
8206 bool make_spoolss_q_reply_rrpcn(SPOOL_Q_REPLY_RRPCN
*q_u
, POLICY_HND
*hnd
,
8207 uint32 change_low
, uint32 change_high
,
8208 SPOOL_NOTIFY_INFO
*info
);
8209 bool spoolss_io_q_reply_rrpcn(const char *desc
, SPOOL_Q_REPLY_RRPCN
*q_u
, prs_struct
*ps
, int depth
);
8210 bool spoolss_io_r_reply_rrpcn(const char *desc
, SPOOL_R_REPLY_RRPCN
*r_u
, prs_struct
*ps
, int depth
);
8211 bool spoolss_io_q_getprinterdataex(const char *desc
, SPOOL_Q_GETPRINTERDATAEX
*q_u
, prs_struct
*ps
, int depth
);
8212 bool spoolss_io_r_getprinterdataex(const char *desc
, SPOOL_R_GETPRINTERDATAEX
*r_u
, prs_struct
*ps
, int depth
);
8213 bool spoolss_io_q_setprinterdataex(const char *desc
, SPOOL_Q_SETPRINTERDATAEX
*q_u
, prs_struct
*ps
, int depth
);
8214 bool spoolss_io_r_setprinterdataex(const char *desc
, SPOOL_R_SETPRINTERDATAEX
*r_u
, prs_struct
*ps
, int depth
);
8215 bool make_spoolss_q_enumprinterkey(SPOOL_Q_ENUMPRINTERKEY
*q_u
,
8216 POLICY_HND
*hnd
, const char *key
,
8218 bool spoolss_io_q_enumprinterkey(const char *desc
, SPOOL_Q_ENUMPRINTERKEY
*q_u
, prs_struct
*ps
, int depth
);
8219 bool spoolss_io_r_enumprinterkey(const char *desc
, SPOOL_R_ENUMPRINTERKEY
*r_u
, prs_struct
*ps
, int depth
);
8220 bool make_spoolss_q_deleteprinterkey(SPOOL_Q_DELETEPRINTERKEY
*q_u
,
8221 POLICY_HND
*hnd
, char *keyname
);
8222 bool spoolss_io_q_deleteprinterkey(const char *desc
, SPOOL_Q_DELETEPRINTERKEY
*q_u
, prs_struct
*ps
, int depth
);
8223 bool spoolss_io_r_deleteprinterkey(const char *desc
, SPOOL_R_DELETEPRINTERKEY
*r_u
, prs_struct
*ps
, int depth
);
8224 bool spoolss_io_q_enumprinterdataex(const char *desc
, SPOOL_Q_ENUMPRINTERDATAEX
*q_u
, prs_struct
*ps
, int depth
);
8225 bool spoolss_io_r_enumprinterdataex(const char *desc
, SPOOL_R_ENUMPRINTERDATAEX
*r_u
, prs_struct
*ps
, int depth
);
8226 bool make_spoolss_q_getprintprocessordirectory(SPOOL_Q_GETPRINTPROCESSORDIRECTORY
*q_u
, const char *name
, char *environment
, int level
, RPC_BUFFER
*buffer
, uint32 offered
);
8227 bool spoolss_io_q_getprintprocessordirectory(const char *desc
, SPOOL_Q_GETPRINTPROCESSORDIRECTORY
*q_u
, prs_struct
*ps
, int depth
);
8228 bool spoolss_io_r_getprintprocessordirectory(const char *desc
, SPOOL_R_GETPRINTPROCESSORDIRECTORY
*r_u
, prs_struct
*ps
, int depth
);
8229 bool smb_io_printprocessordirectory_1(const char *desc
, RPC_BUFFER
*buffer
, PRINTPROCESSOR_DIRECTORY_1
*info
, int depth
);
8230 bool make_spoolss_q_addform(SPOOL_Q_ADDFORM
*q_u
, POLICY_HND
*handle
,
8231 int level
, FORM
*form
);
8232 bool make_spoolss_q_setform(SPOOL_Q_SETFORM
*q_u
, POLICY_HND
*handle
,
8233 int level
, const char *form_name
, FORM
*form
);
8234 bool make_spoolss_q_deleteform(SPOOL_Q_DELETEFORM
*q_u
, POLICY_HND
*handle
,
8236 bool make_spoolss_q_getform(SPOOL_Q_GETFORM
*q_u
, POLICY_HND
*handle
,
8237 const char *formname
, uint32 level
,
8238 RPC_BUFFER
*buffer
, uint32 offered
);
8239 bool make_spoolss_q_enumforms(SPOOL_Q_ENUMFORMS
*q_u
, POLICY_HND
*handle
,
8240 uint32 level
, RPC_BUFFER
*buffer
,
8242 bool make_spoolss_q_setjob(SPOOL_Q_SETJOB
*q_u
, POLICY_HND
*handle
,
8243 uint32 jobid
, uint32 level
, uint32 command
);
8244 bool make_spoolss_q_getjob(SPOOL_Q_GETJOB
*q_u
, POLICY_HND
*handle
,
8245 uint32 jobid
, uint32 level
, RPC_BUFFER
*buffer
,
8247 bool make_spoolss_q_startpageprinter(SPOOL_Q_STARTPAGEPRINTER
*q_u
,
8248 POLICY_HND
*handle
);
8249 bool make_spoolss_q_endpageprinter(SPOOL_Q_ENDPAGEPRINTER
*q_u
,
8250 POLICY_HND
*handle
);
8251 bool make_spoolss_q_startdocprinter(SPOOL_Q_STARTDOCPRINTER
*q_u
,
8252 POLICY_HND
*handle
, uint32 level
,
8253 char *docname
, char *outputfile
,
8255 bool make_spoolss_q_enddocprinter(SPOOL_Q_ENDDOCPRINTER
*q_u
,
8256 POLICY_HND
*handle
);
8257 bool make_spoolss_q_writeprinter(SPOOL_Q_WRITEPRINTER
*q_u
,
8258 POLICY_HND
*handle
, uint32 data_size
,
8260 bool make_spoolss_q_deleteprinterdata(SPOOL_Q_DELETEPRINTERDATA
*q_u
,
8261 POLICY_HND
*handle
, char *valuename
);
8262 bool make_spoolss_q_deleteprinterdataex(SPOOL_Q_DELETEPRINTERDATAEX
*q_u
,
8263 POLICY_HND
*handle
, char *key
,
8265 bool make_spoolss_q_rffpcnex(SPOOL_Q_RFFPCNEX
*q_u
, POLICY_HND
*handle
,
8266 uint32 flags
, uint32 options
, const char *localmachine
,
8267 uint32 printerlocal
, SPOOL_NOTIFY_OPTION
*option
);
8268 bool spoolss_io_q_xcvdataport(const char *desc
, SPOOL_Q_XCVDATAPORT
*q_u
, prs_struct
*ps
, int depth
);
8269 bool spoolss_io_r_xcvdataport(const char *desc
, SPOOL_R_XCVDATAPORT
*r_u
, prs_struct
*ps
, int depth
);
8270 bool make_monitorui_buf( RPC_BUFFER
*buf
, const char *dllname
);
8271 bool convert_port_data_1( NT_PORT_DATA_1
*port1
, RPC_BUFFER
*buf
) ;
8273 /* The following definitions come from rpc_parse/parse_svcctl.c */
8275 bool svcctl_io_enum_services_status( const char *desc
, ENUM_SERVICES_STATUS
*enum_status
, RPC_BUFFER
*buffer
, int depth
);
8276 bool svcctl_io_service_status_process( const char *desc
, SERVICE_STATUS_PROCESS
*status
, RPC_BUFFER
*buffer
, int depth
);
8277 uint32
svcctl_sizeof_enum_services_status( ENUM_SERVICES_STATUS
*status
);
8278 uint32
svcctl_sizeof_service_config( SERVICE_CONFIG
*config
);
8279 bool svcctl_io_q_enum_services_status(const char *desc
, SVCCTL_Q_ENUM_SERVICES_STATUS
*q_u
, prs_struct
*ps
, int depth
);
8280 bool svcctl_io_r_enum_services_status(const char *desc
, SVCCTL_R_ENUM_SERVICES_STATUS
*r_u
, prs_struct
*ps
, int depth
);
8281 bool svcctl_io_q_query_service_config(const char *desc
, SVCCTL_Q_QUERY_SERVICE_CONFIG
*q_u
, prs_struct
*ps
, int depth
);
8282 bool svcctl_io_r_query_service_config(const char *desc
, SVCCTL_R_QUERY_SERVICE_CONFIG
*r_u
, prs_struct
*ps
, int depth
);
8283 bool svcctl_io_q_query_service_config2(const char *desc
, SVCCTL_Q_QUERY_SERVICE_CONFIG2
*q_u
, prs_struct
*ps
, int depth
);
8284 void init_service_description_buffer(SERVICE_DESCRIPTION
*desc
, const char *service_desc
);
8285 bool svcctl_io_service_description( const char *desc
, SERVICE_DESCRIPTION
*description
, RPC_BUFFER
*buffer
, int depth
);
8286 uint32
svcctl_sizeof_service_description( SERVICE_DESCRIPTION
*desc
);
8287 bool svcctl_io_service_fa( const char *desc
, SERVICE_FAILURE_ACTIONS
*fa
, RPC_BUFFER
*buffer
, int depth
);
8288 uint32
svcctl_sizeof_service_fa( SERVICE_FAILURE_ACTIONS
*fa
);
8289 bool svcctl_io_r_query_service_config2(const char *desc
, SVCCTL_R_QUERY_SERVICE_CONFIG2
*r_u
, prs_struct
*ps
, int depth
);
8290 bool svcctl_io_q_query_service_status_ex(const char *desc
, SVCCTL_Q_QUERY_SERVICE_STATUSEX
*q_u
, prs_struct
*ps
, int depth
);
8291 bool svcctl_io_r_query_service_status_ex(const char *desc
, SVCCTL_R_QUERY_SERVICE_STATUSEX
*r_u
, prs_struct
*ps
, int depth
);
8293 /* The following definitions come from rpc_server/srv_dfs_nt.c */
8295 void _dfs_GetManagerVersion(pipes_struct
*p
, struct dfs_GetManagerVersion
*r
);
8296 WERROR
_dfs_Add(pipes_struct
*p
, struct dfs_Add
*r
);
8297 WERROR
_dfs_Remove(pipes_struct
*p
, struct dfs_Remove
*r
);
8298 WERROR
_dfs_Enum(pipes_struct
*p
, struct dfs_Enum
*r
);
8299 WERROR
_dfs_GetInfo(pipes_struct
*p
, struct dfs_GetInfo
*r
);
8300 WERROR
_dfs_SetInfo(pipes_struct
*p
, struct dfs_SetInfo
*r
);
8301 WERROR
_dfs_Rename(pipes_struct
*p
, struct dfs_Rename
*r
);
8302 WERROR
_dfs_Move(pipes_struct
*p
, struct dfs_Move
*r
);
8303 WERROR
_dfs_ManagerGetConfigInfo(pipes_struct
*p
, struct dfs_ManagerGetConfigInfo
*r
);
8304 WERROR
_dfs_ManagerSendSiteInfo(pipes_struct
*p
, struct dfs_ManagerSendSiteInfo
*r
);
8305 WERROR
_dfs_AddFtRoot(pipes_struct
*p
, struct dfs_AddFtRoot
*r
);
8306 WERROR
_dfs_RemoveFtRoot(pipes_struct
*p
, struct dfs_RemoveFtRoot
*r
);
8307 WERROR
_dfs_AddStdRoot(pipes_struct
*p
, struct dfs_AddStdRoot
*r
);
8308 WERROR
_dfs_RemoveStdRoot(pipes_struct
*p
, struct dfs_RemoveStdRoot
*r
);
8309 WERROR
_dfs_ManagerInitialize(pipes_struct
*p
, struct dfs_ManagerInitialize
*r
);
8310 WERROR
_dfs_AddStdRootForced(pipes_struct
*p
, struct dfs_AddStdRootForced
*r
);
8311 WERROR
_dfs_GetDcAddress(pipes_struct
*p
, struct dfs_GetDcAddress
*r
);
8312 WERROR
_dfs_SetDcAddress(pipes_struct
*p
, struct dfs_SetDcAddress
*r
);
8313 WERROR
_dfs_FlushFtTable(pipes_struct
*p
, struct dfs_FlushFtTable
*r
);
8314 WERROR
_dfs_Add2(pipes_struct
*p
, struct dfs_Add2
*r
);
8315 WERROR
_dfs_Remove2(pipes_struct
*p
, struct dfs_Remove2
*r
);
8316 WERROR
_dfs_EnumEx(pipes_struct
*p
, struct dfs_EnumEx
*r
);
8317 WERROR
_dfs_SetInfo2(pipes_struct
*p
, struct dfs_SetInfo2
*r
);
8319 /* The following definitions come from rpc_server/srv_dssetup_nt.c */
8321 WERROR
_dssetup_DsRoleGetPrimaryDomainInformation(pipes_struct
*p
,
8322 struct dssetup_DsRoleGetPrimaryDomainInformation
*r
);
8323 WERROR
_dssetup_DsRoleDnsNameToFlatName(pipes_struct
*p
,
8324 struct dssetup_DsRoleDnsNameToFlatName
*r
);
8325 WERROR
_dssetup_DsRoleDcAsDc(pipes_struct
*p
,
8326 struct dssetup_DsRoleDcAsDc
*r
);
8327 WERROR
_dssetup_DsRoleDcAsReplica(pipes_struct
*p
,
8328 struct dssetup_DsRoleDcAsReplica
*r
);
8329 WERROR
_dssetup_DsRoleDemoteDc(pipes_struct
*p
,
8330 struct dssetup_DsRoleDemoteDc
*r
);
8331 WERROR
_dssetup_DsRoleGetDcOperationProgress(pipes_struct
*p
,
8332 struct dssetup_DsRoleGetDcOperationProgress
*r
);
8333 WERROR
_dssetup_DsRoleGetDcOperationResults(pipes_struct
*p
,
8334 struct dssetup_DsRoleGetDcOperationResults
*r
);
8335 WERROR
_dssetup_DsRoleCancel(pipes_struct
*p
,
8336 struct dssetup_DsRoleCancel
*r
);
8337 WERROR
_dssetup_DsRoleServerSaveStateForUpgrade(pipes_struct
*p
,
8338 struct dssetup_DsRoleServerSaveStateForUpgrade
*r
);
8339 WERROR
_dssetup_DsRoleUpgradeDownlevelServer(pipes_struct
*p
,
8340 struct dssetup_DsRoleUpgradeDownlevelServer
*r
);
8341 WERROR
_dssetup_DsRoleAbortDownlevelServerUpgrade(pipes_struct
*p
,
8342 struct dssetup_DsRoleAbortDownlevelServerUpgrade
*r
);
8344 /* The following definitions come from rpc_server/srv_echo_nt.c */
8346 void _echo_AddOne(pipes_struct
*p
, struct echo_AddOne
*r
);
8347 void _echo_EchoData(pipes_struct
*p
, struct echo_EchoData
*r
);
8348 void _echo_SinkData(pipes_struct
*p
, struct echo_SinkData
*r
);
8349 void _echo_SourceData(pipes_struct
*p
, struct echo_SourceData
*r
);
8350 void _echo_TestCall(pipes_struct
*p
, struct echo_TestCall
*r
);
8351 NTSTATUS
_echo_TestCall2(pipes_struct
*p
, struct echo_TestCall2
*r
);
8352 uint32
_echo_TestSleep(pipes_struct
*p
, struct echo_TestSleep
*r
);
8353 void _echo_TestEnum(pipes_struct
*p
, struct echo_TestEnum
*r
);
8354 void _echo_TestSurrounding(pipes_struct
*p
, struct echo_TestSurrounding
*r
);
8355 uint16
_echo_TestDoublePointer(pipes_struct
*p
, struct echo_TestDoublePointer
*r
);
8357 /* The following definitions come from rpc_server/srv_eventlog.c */
8359 NTSTATUS
rpc_eventlog2_init(void);
8360 void eventlog2_get_pipe_fns(struct api_struct
**fns
, int *n_fns
);
8362 /* The following definitions come from rpc_server/srv_eventlog_lib.c */
8364 TDB_CONTEXT
*elog_init_tdb( char *tdbfilename
);
8365 char *elog_tdbname(TALLOC_CTX
*ctx
, const char *name
);
8366 int elog_tdb_size( TDB_CONTEXT
* tdb
, int *MaxSize
, int *Retention
);
8367 bool prune_eventlog( TDB_CONTEXT
* tdb
);
8368 bool can_write_to_eventlog( TDB_CONTEXT
* tdb
, int32 needed
);
8369 ELOG_TDB
*elog_open_tdb( char *logname
, bool force_clear
);
8370 int elog_close_tdb( ELOG_TDB
*etdb
, bool force_close
);
8371 int write_eventlog_tdb( TDB_CONTEXT
* the_tdb
, Eventlog_entry
* ee
);
8372 void fixup_eventlog_entry( Eventlog_entry
* ee
);
8373 bool parse_logentry( char *line
, Eventlog_entry
* entry
, bool * eor
);
8375 /* The following definitions come from rpc_server/srv_eventlog_nt.c */
8377 NTSTATUS
_eventlog_OpenEventLogW(pipes_struct
*p
,
8378 struct eventlog_OpenEventLogW
*r
);
8379 NTSTATUS
_eventlog_ClearEventLogW(pipes_struct
*p
,
8380 struct eventlog_ClearEventLogW
*r
);
8381 NTSTATUS
_eventlog_CloseEventLog( pipes_struct
* p
, struct eventlog_CloseEventLog
*r
);
8382 NTSTATUS
_eventlog_read_eventlog( pipes_struct
* p
,
8383 EVENTLOG_Q_READ_EVENTLOG
* q_u
,
8384 EVENTLOG_R_READ_EVENTLOG
* r_u
);
8385 NTSTATUS
_eventlog_GetOldestRecord(pipes_struct
*p
,
8386 struct eventlog_GetOldestRecord
*r
);
8387 NTSTATUS
_eventlog_GetNumRecords(pipes_struct
*p
,
8388 struct eventlog_GetNumRecords
*r
);
8389 NTSTATUS
_eventlog_BackupEventLogW(pipes_struct
*p
, struct eventlog_BackupEventLogW
*r
);
8390 NTSTATUS
_eventlog_DeregisterEventSource(pipes_struct
*p
, struct eventlog_DeregisterEventSource
*r
);
8391 NTSTATUS
_eventlog_ChangeNotify(pipes_struct
*p
, struct eventlog_ChangeNotify
*r
);
8392 NTSTATUS
_eventlog_RegisterEventSourceW(pipes_struct
*p
, struct eventlog_RegisterEventSourceW
*r
);
8393 NTSTATUS
_eventlog_OpenBackupEventLogW(pipes_struct
*p
, struct eventlog_OpenBackupEventLogW
*r
);
8394 NTSTATUS
_eventlog_ReadEventLogW(pipes_struct
*p
, struct eventlog_ReadEventLogW
*r
);
8395 NTSTATUS
_eventlog_ReportEventW(pipes_struct
*p
, struct eventlog_ReportEventW
*r
);
8396 NTSTATUS
_eventlog_ClearEventLogA(pipes_struct
*p
, struct eventlog_ClearEventLogA
*r
);
8397 NTSTATUS
_eventlog_BackupEventLogA(pipes_struct
*p
, struct eventlog_BackupEventLogA
*r
);
8398 NTSTATUS
_eventlog_OpenEventLogA(pipes_struct
*p
, struct eventlog_OpenEventLogA
*r
);
8399 NTSTATUS
_eventlog_RegisterEventSourceA(pipes_struct
*p
, struct eventlog_RegisterEventSourceA
*r
);
8400 NTSTATUS
_eventlog_OpenBackupEventLogA(pipes_struct
*p
, struct eventlog_OpenBackupEventLogA
*r
);
8401 NTSTATUS
_eventlog_ReadEventLogA(pipes_struct
*p
, struct eventlog_ReadEventLogA
*r
);
8402 NTSTATUS
_eventlog_ReportEventA(pipes_struct
*p
, struct eventlog_ReportEventA
*r
);
8403 NTSTATUS
_eventlog_RegisterClusterSvc(pipes_struct
*p
, struct eventlog_RegisterClusterSvc
*r
);
8404 NTSTATUS
_eventlog_DeregisterClusterSvc(pipes_struct
*p
, struct eventlog_DeregisterClusterSvc
*r
);
8405 NTSTATUS
_eventlog_WriteClusterEvents(pipes_struct
*p
, struct eventlog_WriteClusterEvents
*r
);
8406 NTSTATUS
_eventlog_GetLogIntormation(pipes_struct
*p
, struct eventlog_GetLogIntormation
*r
);
8407 NTSTATUS
_eventlog_FlushEventLog(pipes_struct
*p
, struct eventlog_FlushEventLog
*r
);
8409 /* The following definitions come from rpc_server/srv_initshutdown_nt.c */
8411 WERROR
_initshutdown_Init(pipes_struct
*p
, struct initshutdown_Init
*r
);
8412 WERROR
_initshutdown_InitEx(pipes_struct
*p
, struct initshutdown_InitEx
*r
);
8413 WERROR
_initshutdown_Abort(pipes_struct
*p
, struct initshutdown_Abort
*r
);
8415 /* The following definitions come from rpc_server/srv_lsa_hnd.c */
8417 bool init_pipe_handle_list(pipes_struct
*p
, const char *pipe_name
);
8418 bool create_policy_hnd(pipes_struct
*p
, POLICY_HND
*hnd
, void (*free_fn
)(void *), void *data_ptr
);
8419 bool find_policy_by_hnd(pipes_struct
*p
, POLICY_HND
*hnd
, void **data_p
);
8420 bool close_policy_hnd(pipes_struct
*p
, POLICY_HND
*hnd
);
8421 void close_policy_by_pipe(pipes_struct
*p
);
8422 bool pipe_access_check(pipes_struct
*p
);
8424 /* The following definitions come from rpc_server/srv_lsa_nt.c */
8426 NTSTATUS
_lsa_OpenPolicy2(pipes_struct
*p
,
8427 struct lsa_OpenPolicy2
*r
);
8428 NTSTATUS
_lsa_OpenPolicy(pipes_struct
*p
,
8429 struct lsa_OpenPolicy
*r
);
8430 NTSTATUS
_lsa_EnumTrustDom(pipes_struct
*p
,
8431 struct lsa_EnumTrustDom
*r
);
8432 NTSTATUS
_lsa_QueryInfoPolicy(pipes_struct
*p
,
8433 struct lsa_QueryInfoPolicy
*r
);
8434 NTSTATUS
_lsa_LookupSids(pipes_struct
*p
,
8435 struct lsa_LookupSids
*r
);
8436 NTSTATUS
_lsa_LookupSids2(pipes_struct
*p
,
8437 struct lsa_LookupSids2
*r
);
8438 NTSTATUS
_lsa_LookupSids3(pipes_struct
*p
,
8439 struct lsa_LookupSids3
*r
);
8440 NTSTATUS
_lsa_LookupNames(pipes_struct
*p
,
8441 struct lsa_LookupNames
*r
);
8442 NTSTATUS
_lsa_LookupNames2(pipes_struct
*p
,
8443 struct lsa_LookupNames2
*r
);
8444 NTSTATUS
_lsa_LookupNames3(pipes_struct
*p
,
8445 struct lsa_LookupNames3
*r
);
8446 NTSTATUS
_lsa_LookupNames4(pipes_struct
*p
,
8447 struct lsa_LookupNames4
*r
);
8448 NTSTATUS
_lsa_Close(pipes_struct
*p
, struct lsa_Close
*r
);
8449 NTSTATUS
_lsa_OpenSecret(pipes_struct
*p
, struct lsa_OpenSecret
*r
);
8450 NTSTATUS
_lsa_OpenTrustedDomain(pipes_struct
*p
, struct lsa_OpenTrustedDomain
*r
);
8451 NTSTATUS
_lsa_CreateTrustedDomain(pipes_struct
*p
, struct lsa_CreateTrustedDomain
*r
);
8452 NTSTATUS
_lsa_CreateSecret(pipes_struct
*p
, struct lsa_CreateSecret
*r
);
8453 NTSTATUS
_lsa_SetSecret(pipes_struct
*p
, struct lsa_SetSecret
*r
);
8454 NTSTATUS
_lsa_DeleteObject(pipes_struct
*p
,
8455 struct lsa_DeleteObject
*r
);
8456 NTSTATUS
_lsa_EnumPrivs(pipes_struct
*p
,
8457 struct lsa_EnumPrivs
*r
);
8458 NTSTATUS
_lsa_LookupPrivDisplayName(pipes_struct
*p
,
8459 struct lsa_LookupPrivDisplayName
*r
);
8460 NTSTATUS
_lsa_EnumAccounts(pipes_struct
*p
,
8461 struct lsa_EnumAccounts
*r
);
8462 NTSTATUS
_lsa_GetUserName(pipes_struct
*p
,
8463 struct lsa_GetUserName
*r
);
8464 NTSTATUS
_lsa_CreateAccount(pipes_struct
*p
,
8465 struct lsa_CreateAccount
*r
);
8466 NTSTATUS
_lsa_OpenAccount(pipes_struct
*p
,
8467 struct lsa_OpenAccount
*r
);
8468 NTSTATUS
_lsa_EnumPrivsAccount(pipes_struct
*p
,
8469 struct lsa_EnumPrivsAccount
*r
);
8470 NTSTATUS
_lsa_GetSystemAccessAccount(pipes_struct
*p
,
8471 struct lsa_GetSystemAccessAccount
*r
);
8472 NTSTATUS
_lsa_SetSystemAccessAccount(pipes_struct
*p
,
8473 struct lsa_SetSystemAccessAccount
*r
);
8474 NTSTATUS
_lsa_AddPrivilegesToAccount(pipes_struct
*p
,
8475 struct lsa_AddPrivilegesToAccount
*r
);
8476 NTSTATUS
_lsa_RemovePrivilegesFromAccount(pipes_struct
*p
,
8477 struct lsa_RemovePrivilegesFromAccount
*r
);
8478 NTSTATUS
_lsa_QuerySecurity(pipes_struct
*p
,
8479 struct lsa_QuerySecurity
*r
);
8480 NTSTATUS
_lsa_AddAccountRights(pipes_struct
*p
,
8481 struct lsa_AddAccountRights
*r
);
8482 NTSTATUS
_lsa_RemoveAccountRights(pipes_struct
*p
,
8483 struct lsa_RemoveAccountRights
*r
);
8484 NTSTATUS
_lsa_EnumAccountRights(pipes_struct
*p
,
8485 struct lsa_EnumAccountRights
*r
);
8486 NTSTATUS
_lsa_LookupPrivValue(pipes_struct
*p
,
8487 struct lsa_LookupPrivValue
*r
);
8488 NTSTATUS
_lsa_Delete(pipes_struct
*p
, struct lsa_Delete
*r
);
8489 NTSTATUS
_lsa_SetSecObj(pipes_struct
*p
, struct lsa_SetSecObj
*r
);
8490 NTSTATUS
_lsa_ChangePassword(pipes_struct
*p
, struct lsa_ChangePassword
*r
);
8491 NTSTATUS
_lsa_SetInfoPolicy(pipes_struct
*p
, struct lsa_SetInfoPolicy
*r
);
8492 NTSTATUS
_lsa_ClearAuditLog(pipes_struct
*p
, struct lsa_ClearAuditLog
*r
);
8493 NTSTATUS
_lsa_GetQuotasForAccount(pipes_struct
*p
, struct lsa_GetQuotasForAccount
*r
);
8494 NTSTATUS
_lsa_SetQuotasForAccount(pipes_struct
*p
, struct lsa_SetQuotasForAccount
*r
);
8495 NTSTATUS
_lsa_QueryTrustedDomainInfo(pipes_struct
*p
, struct lsa_QueryTrustedDomainInfo
*r
);
8496 NTSTATUS
_lsa_SetInformationTrustedDomain(pipes_struct
*p
, struct lsa_SetInformationTrustedDomain
*r
);
8497 NTSTATUS
_lsa_QuerySecret(pipes_struct
*p
, struct lsa_QuerySecret
*r
);
8498 NTSTATUS
_lsa_LookupPrivName(pipes_struct
*p
, struct lsa_LookupPrivName
*r
);
8499 NTSTATUS
_lsa_EnumAccountsWithUserRight(pipes_struct
*p
, struct lsa_EnumAccountsWithUserRight
*r
);
8500 NTSTATUS
_lsa_QueryTrustedDomainInfoBySid(pipes_struct
*p
, struct lsa_QueryTrustedDomainInfoBySid
*r
);
8501 NTSTATUS
_lsa_SetTrustedDomainInfo(pipes_struct
*p
, struct lsa_SetTrustedDomainInfo
*r
);
8502 NTSTATUS
_lsa_DeleteTrustedDomain(pipes_struct
*p
, struct lsa_DeleteTrustedDomain
*r
);
8503 NTSTATUS
_lsa_StorePrivateData(pipes_struct
*p
, struct lsa_StorePrivateData
*r
);
8504 NTSTATUS
_lsa_RetrievePrivateData(pipes_struct
*p
, struct lsa_RetrievePrivateData
*r
);
8505 NTSTATUS
_lsa_QueryInfoPolicy2(pipes_struct
*p
, struct lsa_QueryInfoPolicy2
*r
);
8506 NTSTATUS
_lsa_SetInfoPolicy2(pipes_struct
*p
, struct lsa_SetInfoPolicy2
*r
);
8507 NTSTATUS
_lsa_QueryTrustedDomainInfoByName(pipes_struct
*p
, struct lsa_QueryTrustedDomainInfoByName
*r
);
8508 NTSTATUS
_lsa_SetTrustedDomainInfoByName(pipes_struct
*p
, struct lsa_SetTrustedDomainInfoByName
*r
);
8509 NTSTATUS
_lsa_EnumTrustedDomainsEx(pipes_struct
*p
, struct lsa_EnumTrustedDomainsEx
*r
);
8510 NTSTATUS
_lsa_CreateTrustedDomainEx(pipes_struct
*p
, struct lsa_CreateTrustedDomainEx
*r
);
8511 NTSTATUS
_lsa_CloseTrustedDomainEx(pipes_struct
*p
, struct lsa_CloseTrustedDomainEx
*r
);
8512 NTSTATUS
_lsa_QueryDomainInformationPolicy(pipes_struct
*p
, struct lsa_QueryDomainInformationPolicy
*r
);
8513 NTSTATUS
_lsa_SetDomainInformationPolicy(pipes_struct
*p
, struct lsa_SetDomainInformationPolicy
*r
);
8514 NTSTATUS
_lsa_OpenTrustedDomainByName(pipes_struct
*p
, struct lsa_OpenTrustedDomainByName
*r
);
8515 NTSTATUS
_lsa_TestCall(pipes_struct
*p
, struct lsa_TestCall
*r
);
8516 NTSTATUS
_lsa_CreateTrustedDomainEx2(pipes_struct
*p
, struct lsa_CreateTrustedDomainEx2
*r
);
8517 NTSTATUS
_lsa_CREDRWRITE(pipes_struct
*p
, struct lsa_CREDRWRITE
*r
);
8518 NTSTATUS
_lsa_CREDRREAD(pipes_struct
*p
, struct lsa_CREDRREAD
*r
);
8519 NTSTATUS
_lsa_CREDRENUMERATE(pipes_struct
*p
, struct lsa_CREDRENUMERATE
*r
);
8520 NTSTATUS
_lsa_CREDRWRITEDOMAINCREDENTIALS(pipes_struct
*p
, struct lsa_CREDRWRITEDOMAINCREDENTIALS
*r
);
8521 NTSTATUS
_lsa_CREDRREADDOMAINCREDENTIALS(pipes_struct
*p
, struct lsa_CREDRREADDOMAINCREDENTIALS
*r
);
8522 NTSTATUS
_lsa_CREDRDELETE(pipes_struct
*p
, struct lsa_CREDRDELETE
*r
);
8523 NTSTATUS
_lsa_CREDRGETTARGETINFO(pipes_struct
*p
, struct lsa_CREDRGETTARGETINFO
*r
);
8524 NTSTATUS
_lsa_CREDRPROFILELOADED(pipes_struct
*p
, struct lsa_CREDRPROFILELOADED
*r
);
8525 NTSTATUS
_lsa_CREDRGETSESSIONTYPES(pipes_struct
*p
, struct lsa_CREDRGETSESSIONTYPES
*r
);
8526 NTSTATUS
_lsa_LSARREGISTERAUDITEVENT(pipes_struct
*p
, struct lsa_LSARREGISTERAUDITEVENT
*r
);
8527 NTSTATUS
_lsa_LSARGENAUDITEVENT(pipes_struct
*p
, struct lsa_LSARGENAUDITEVENT
*r
);
8528 NTSTATUS
_lsa_LSARUNREGISTERAUDITEVENT(pipes_struct
*p
, struct lsa_LSARUNREGISTERAUDITEVENT
*r
);
8529 NTSTATUS
_lsa_lsaRQueryForestTrustInformation(pipes_struct
*p
, struct lsa_lsaRQueryForestTrustInformation
*r
);
8530 NTSTATUS
_lsa_LSARSETFORESTTRUSTINFORMATION(pipes_struct
*p
, struct lsa_LSARSETFORESTTRUSTINFORMATION
*r
);
8531 NTSTATUS
_lsa_CREDRRENAME(pipes_struct
*p
, struct lsa_CREDRRENAME
*r
);
8532 NTSTATUS
_lsa_LSAROPENPOLICYSCE(pipes_struct
*p
, struct lsa_LSAROPENPOLICYSCE
*r
);
8533 NTSTATUS
_lsa_LSARADTREGISTERSECURITYEVENTSOURCE(pipes_struct
*p
, struct lsa_LSARADTREGISTERSECURITYEVENTSOURCE
*r
);
8534 NTSTATUS
_lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE(pipes_struct
*p
, struct lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE
*r
);
8535 NTSTATUS
_lsa_LSARADTREPORTSECURITYEVENT(pipes_struct
*p
, struct lsa_LSARADTREPORTSECURITYEVENT
*r
);
8537 /* The following definitions come from rpc_server/srv_netlog_nt.c */
8539 WERROR
_netr_LogonControl(pipes_struct
*p
,
8540 struct netr_LogonControl
*r
);
8541 WERROR
_netr_LogonControl2(pipes_struct
*p
,
8542 struct netr_LogonControl2
*r
);
8543 WERROR
_netr_NetrEnumerateTrustedDomains(pipes_struct
*p
,
8544 struct netr_NetrEnumerateTrustedDomains
*r
);
8545 NTSTATUS
_netr_ServerReqChallenge(pipes_struct
*p
,
8546 struct netr_ServerReqChallenge
*r
);
8547 NTSTATUS
_netr_ServerAuthenticate(pipes_struct
*p
,
8548 struct netr_ServerAuthenticate
*r
);
8549 NTSTATUS
_netr_ServerAuthenticate2(pipes_struct
*p
,
8550 struct netr_ServerAuthenticate2
*r
);
8551 NTSTATUS
_netr_ServerPasswordSet(pipes_struct
*p
,
8552 struct netr_ServerPasswordSet
*r
);
8553 NTSTATUS
_netr_LogonSamLogoff(pipes_struct
*p
,
8554 struct netr_LogonSamLogoff
*r
);
8555 NTSTATUS
_netr_LogonSamLogon(pipes_struct
*p
,
8556 struct netr_LogonSamLogon
*r
);
8557 NTSTATUS
_netr_LogonSamLogonEx(pipes_struct
*p
,
8558 struct netr_LogonSamLogonEx
*r
);
8559 WERROR
_netr_LogonUasLogon(pipes_struct
*p
,
8560 struct netr_LogonUasLogon
*r
);
8561 WERROR
_netr_LogonUasLogoff(pipes_struct
*p
,
8562 struct netr_LogonUasLogoff
*r
);
8563 NTSTATUS
_netr_DatabaseDeltas(pipes_struct
*p
,
8564 struct netr_DatabaseDeltas
*r
);
8565 NTSTATUS
_netr_DatabaseSync(pipes_struct
*p
,
8566 struct netr_DatabaseSync
*r
);
8567 NTSTATUS
_netr_AccountDeltas(pipes_struct
*p
,
8568 struct netr_AccountDeltas
*r
);
8569 NTSTATUS
_netr_AccountSync(pipes_struct
*p
,
8570 struct netr_AccountSync
*r
);
8571 WERROR
_netr_GetDcName(pipes_struct
*p
,
8572 struct netr_GetDcName
*r
);
8573 WERROR
_netr_GetAnyDCName(pipes_struct
*p
,
8574 struct netr_GetAnyDCName
*r
);
8575 NTSTATUS
_netr_DatabaseSync2(pipes_struct
*p
,
8576 struct netr_DatabaseSync2
*r
);
8577 NTSTATUS
_netr_DatabaseRedo(pipes_struct
*p
,
8578 struct netr_DatabaseRedo
*r
);
8579 WERROR
_netr_LogonControl2Ex(pipes_struct
*p
,
8580 struct netr_LogonControl2Ex
*r
);
8581 WERROR
_netr_DsRGetDCName(pipes_struct
*p
,
8582 struct netr_DsRGetDCName
*r
);
8583 WERROR
_netr_NETRLOGONDUMMYROUTINE1(pipes_struct
*p
,
8584 struct netr_NETRLOGONDUMMYROUTINE1
*r
);
8585 WERROR
_netr_NETRLOGONSETSERVICEBITS(pipes_struct
*p
,
8586 struct netr_NETRLOGONSETSERVICEBITS
*r
);
8587 WERROR
_netr_LogonGetTrustRid(pipes_struct
*p
,
8588 struct netr_LogonGetTrustRid
*r
);
8589 WERROR
_netr_NETRLOGONCOMPUTESERVERDIGEST(pipes_struct
*p
,
8590 struct netr_NETRLOGONCOMPUTESERVERDIGEST
*r
);
8591 WERROR
_netr_NETRLOGONCOMPUTECLIENTDIGEST(pipes_struct
*p
,
8592 struct netr_NETRLOGONCOMPUTECLIENTDIGEST
*r
);
8593 NTSTATUS
_netr_ServerAuthenticate3(pipes_struct
*p
,
8594 struct netr_ServerAuthenticate3
*r
);
8595 WERROR
_netr_DsRGetDCNameEx(pipes_struct
*p
,
8596 struct netr_DsRGetDCNameEx
*r
);
8597 WERROR
_netr_DsRGetSiteName(pipes_struct
*p
,
8598 struct netr_DsRGetSiteName
*r
);
8599 NTSTATUS
_netr_LogonGetDomainInfo(pipes_struct
*p
,
8600 struct netr_LogonGetDomainInfo
*r
);
8601 NTSTATUS
_netr_ServerPasswordSet2(pipes_struct
*p
,
8602 struct netr_ServerPasswordSet2
*r
);
8603 WERROR
_netr_ServerPasswordGet(pipes_struct
*p
,
8604 struct netr_ServerPasswordGet
*r
);
8605 WERROR
_netr_NETRLOGONSENDTOSAM(pipes_struct
*p
,
8606 struct netr_NETRLOGONSENDTOSAM
*r
);
8607 WERROR
_netr_DsRAddressToSitenamesW(pipes_struct
*p
,
8608 struct netr_DsRAddressToSitenamesW
*r
);
8609 WERROR
_netr_DsRGetDCNameEx2(pipes_struct
*p
,
8610 struct netr_DsRGetDCNameEx2
*r
);
8611 WERROR
_netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN(pipes_struct
*p
,
8612 struct netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN
*r
);
8613 WERROR
_netr_NetrEnumerateTrustedDomainsEx(pipes_struct
*p
,
8614 struct netr_NetrEnumerateTrustedDomainsEx
*r
);
8615 WERROR
_netr_DsRAddressToSitenamesExW(pipes_struct
*p
,
8616 struct netr_DsRAddressToSitenamesExW
*r
);
8617 WERROR
_netr_DsrGetDcSiteCoverageW(pipes_struct
*p
,
8618 struct netr_DsrGetDcSiteCoverageW
*r
);
8619 WERROR
_netr_DsrEnumerateDomainTrusts(pipes_struct
*p
,
8620 struct netr_DsrEnumerateDomainTrusts
*r
);
8621 WERROR
_netr_DsrDeregisterDNSHostRecords(pipes_struct
*p
,
8622 struct netr_DsrDeregisterDNSHostRecords
*r
);
8623 NTSTATUS
_netr_ServerTrustPasswordsGet(pipes_struct
*p
,
8624 struct netr_ServerTrustPasswordsGet
*r
);
8625 WERROR
_netr_DsRGetForestTrustInformation(pipes_struct
*p
,
8626 struct netr_DsRGetForestTrustInformation
*r
);
8627 WERROR
_netr_GetForestTrustInformation(pipes_struct
*p
,
8628 struct netr_GetForestTrustInformation
*r
);
8629 NTSTATUS
_netr_LogonSamLogonWithFlags(pipes_struct
*p
,
8630 struct netr_LogonSamLogonWithFlags
*r
);
8631 WERROR
_netr_NETRSERVERGETTRUSTINFO(pipes_struct
*p
,
8632 struct netr_NETRSERVERGETTRUSTINFO
*r
);
8634 /* The following definitions come from rpc_server/srv_ntsvcs.c */
8636 void ntsvcs2_get_pipe_fns( struct api_struct
**fns
, int *n_fns
);
8637 NTSTATUS
rpc_ntsvcs2_init(void);
8639 /* The following definitions come from rpc_server/srv_ntsvcs_nt.c */
8641 WERROR
_PNP_GetVersion(pipes_struct
*p
,
8642 struct PNP_GetVersion
*r
);
8643 WERROR
_PNP_GetDeviceListSize(pipes_struct
*p
,
8644 struct PNP_GetDeviceListSize
*r
);
8645 WERROR
_ntsvcs_get_device_list( pipes_struct
*p
, NTSVCS_Q_GET_DEVICE_LIST
*q_u
, NTSVCS_R_GET_DEVICE_LIST
*r_u
);
8646 WERROR
_ntsvcs_get_device_reg_property( pipes_struct
*p
, NTSVCS_Q_GET_DEVICE_REG_PROPERTY
*q_u
, NTSVCS_R_GET_DEVICE_REG_PROPERTY
*r_u
);
8647 WERROR
_PNP_ValidateDeviceInstance(pipes_struct
*p
,
8648 struct PNP_ValidateDeviceInstance
*r
);
8649 WERROR
_PNP_GetHwProfInfo(pipes_struct
*p
,
8650 struct PNP_GetHwProfInfo
*r
);
8651 WERROR
_PNP_HwProfFlags(pipes_struct
*p
,
8652 struct PNP_HwProfFlags
*r
);
8653 WERROR
_PNP_Disconnect(pipes_struct
*p
,
8654 struct PNP_Disconnect
*r
);
8655 WERROR
_PNP_Connect(pipes_struct
*p
,
8656 struct PNP_Connect
*r
);
8657 WERROR
_PNP_GetGlobalState(pipes_struct
*p
,
8658 struct PNP_GetGlobalState
*r
);
8659 WERROR
_PNP_InitDetection(pipes_struct
*p
,
8660 struct PNP_InitDetection
*r
);
8661 WERROR
_PNP_ReportLogOn(pipes_struct
*p
,
8662 struct PNP_ReportLogOn
*r
);
8663 WERROR
_PNP_GetRootDeviceInstance(pipes_struct
*p
,
8664 struct PNP_GetRootDeviceInstance
*r
);
8665 WERROR
_PNP_GetRelatedDeviceInstance(pipes_struct
*p
,
8666 struct PNP_GetRelatedDeviceInstance
*r
);
8667 WERROR
_PNP_EnumerateSubKeys(pipes_struct
*p
,
8668 struct PNP_EnumerateSubKeys
*r
);
8669 WERROR
_PNP_GetDeviceList(pipes_struct
*p
,
8670 struct PNP_GetDeviceList
*r
);
8671 WERROR
_PNP_GetDepth(pipes_struct
*p
,
8672 struct PNP_GetDepth
*r
);
8673 WERROR
_PNP_GetDeviceRegProp(pipes_struct
*p
,
8674 struct PNP_GetDeviceRegProp
*r
);
8675 WERROR
_PNP_SetDeviceRegProp(pipes_struct
*p
,
8676 struct PNP_SetDeviceRegProp
*r
);
8677 WERROR
_PNP_GetClassInstance(pipes_struct
*p
,
8678 struct PNP_GetClassInstance
*r
);
8679 WERROR
_PNP_CreateKey(pipes_struct
*p
,
8680 struct PNP_CreateKey
*r
);
8681 WERROR
_PNP_DeleteRegistryKey(pipes_struct
*p
,
8682 struct PNP_DeleteRegistryKey
*r
);
8683 WERROR
_PNP_GetClassCount(pipes_struct
*p
,
8684 struct PNP_GetClassCount
*r
);
8685 WERROR
_PNP_GetClassName(pipes_struct
*p
,
8686 struct PNP_GetClassName
*r
);
8687 WERROR
_PNP_DeleteClassKey(pipes_struct
*p
,
8688 struct PNP_DeleteClassKey
*r
);
8689 WERROR
_PNP_GetInterfaceDeviceAlias(pipes_struct
*p
,
8690 struct PNP_GetInterfaceDeviceAlias
*r
);
8691 WERROR
_PNP_GetInterfaceDeviceList(pipes_struct
*p
,
8692 struct PNP_GetInterfaceDeviceList
*r
);
8693 WERROR
_PNP_GetInterfaceDeviceListSize(pipes_struct
*p
,
8694 struct PNP_GetInterfaceDeviceListSize
*r
);
8695 WERROR
_PNP_RegisterDeviceClassAssociation(pipes_struct
*p
,
8696 struct PNP_RegisterDeviceClassAssociation
*r
);
8697 WERROR
_PNP_UnregisterDeviceClassAssociation(pipes_struct
*p
,
8698 struct PNP_UnregisterDeviceClassAssociation
*r
);
8699 WERROR
_PNP_GetClassRegProp(pipes_struct
*p
,
8700 struct PNP_GetClassRegProp
*r
);
8701 WERROR
_PNP_SetClassRegProp(pipes_struct
*p
,
8702 struct PNP_SetClassRegProp
*r
);
8703 WERROR
_PNP_CreateDevInst(pipes_struct
*p
,
8704 struct PNP_CreateDevInst
*r
);
8705 WERROR
_PNP_DeviceInstanceAction(pipes_struct
*p
,
8706 struct PNP_DeviceInstanceAction
*r
);
8707 WERROR
_PNP_GetDeviceStatus(pipes_struct
*p
,
8708 struct PNP_GetDeviceStatus
*r
);
8709 WERROR
_PNP_SetDeviceProblem(pipes_struct
*p
,
8710 struct PNP_SetDeviceProblem
*r
);
8711 WERROR
_PNP_DisableDevInst(pipes_struct
*p
,
8712 struct PNP_DisableDevInst
*r
);
8713 WERROR
_PNP_UninstallDevInst(pipes_struct
*p
,
8714 struct PNP_UninstallDevInst
*r
);
8715 WERROR
_PNP_AddID(pipes_struct
*p
,
8716 struct PNP_AddID
*r
);
8717 WERROR
_PNP_RegisterDriver(pipes_struct
*p
,
8718 struct PNP_RegisterDriver
*r
);
8719 WERROR
_PNP_QueryRemove(pipes_struct
*p
,
8720 struct PNP_QueryRemove
*r
);
8721 WERROR
_PNP_RequestDeviceEject(pipes_struct
*p
,
8722 struct PNP_RequestDeviceEject
*r
);
8723 WERROR
_PNP_IsDockStationPresent(pipes_struct
*p
,
8724 struct PNP_IsDockStationPresent
*r
);
8725 WERROR
_PNP_RequestEjectPC(pipes_struct
*p
,
8726 struct PNP_RequestEjectPC
*r
);
8727 WERROR
_PNP_AddEmptyLogConf(pipes_struct
*p
,
8728 struct PNP_AddEmptyLogConf
*r
);
8729 WERROR
_PNP_FreeLogConf(pipes_struct
*p
,
8730 struct PNP_FreeLogConf
*r
);
8731 WERROR
_PNP_GetFirstLogConf(pipes_struct
*p
,
8732 struct PNP_GetFirstLogConf
*r
);
8733 WERROR
_PNP_GetNextLogConf(pipes_struct
*p
,
8734 struct PNP_GetNextLogConf
*r
);
8735 WERROR
_PNP_GetLogConfPriority(pipes_struct
*p
,
8736 struct PNP_GetLogConfPriority
*r
);
8737 WERROR
_PNP_AddResDes(pipes_struct
*p
,
8738 struct PNP_AddResDes
*r
);
8739 WERROR
_PNP_FreeResDes(pipes_struct
*p
,
8740 struct PNP_FreeResDes
*r
);
8741 WERROR
_PNP_GetNextResDes(pipes_struct
*p
,
8742 struct PNP_GetNextResDes
*r
);
8743 WERROR
_PNP_GetResDesData(pipes_struct
*p
,
8744 struct PNP_GetResDesData
*r
);
8745 WERROR
_PNP_GetResDesDataSize(pipes_struct
*p
,
8746 struct PNP_GetResDesDataSize
*r
);
8747 WERROR
_PNP_ModifyResDes(pipes_struct
*p
,
8748 struct PNP_ModifyResDes
*r
);
8749 WERROR
_PNP_DetectResourceLimit(pipes_struct
*p
,
8750 struct PNP_DetectResourceLimit
*r
);
8751 WERROR
_PNP_QueryResConfList(pipes_struct
*p
,
8752 struct PNP_QueryResConfList
*r
);
8753 WERROR
_PNP_SetHwProf(pipes_struct
*p
,
8754 struct PNP_SetHwProf
*r
);
8755 WERROR
_PNP_QueryArbitratorFreeData(pipes_struct
*p
,
8756 struct PNP_QueryArbitratorFreeData
*r
);
8757 WERROR
_PNP_QueryArbitratorFreeSize(pipes_struct
*p
,
8758 struct PNP_QueryArbitratorFreeSize
*r
);
8759 WERROR
_PNP_RunDetection(pipes_struct
*p
,
8760 struct PNP_RunDetection
*r
);
8761 WERROR
_PNP_RegisterNotification(pipes_struct
*p
,
8762 struct PNP_RegisterNotification
*r
);
8763 WERROR
_PNP_UnregisterNotification(pipes_struct
*p
,
8764 struct PNP_UnregisterNotification
*r
);
8765 WERROR
_PNP_GetCustomDevProp(pipes_struct
*p
,
8766 struct PNP_GetCustomDevProp
*r
);
8767 WERROR
_PNP_GetVersionInternal(pipes_struct
*p
,
8768 struct PNP_GetVersionInternal
*r
);
8769 WERROR
_PNP_GetBlockedDriverInfo(pipes_struct
*p
,
8770 struct PNP_GetBlockedDriverInfo
*r
);
8771 WERROR
_PNP_GetServerSideDeviceInstallFlags(pipes_struct
*p
,
8772 struct PNP_GetServerSideDeviceInstallFlags
*r
);
8774 /* The following definitions come from rpc_server/srv_pipe.c */
8776 bool create_next_pdu(pipes_struct
*p
);
8777 bool api_pipe_bind_auth3(pipes_struct
*p
, prs_struct
*rpc_in_p
);
8778 bool setup_fault_pdu(pipes_struct
*p
, NTSTATUS status
);
8779 bool setup_cancel_ack_reply(pipes_struct
*p
, prs_struct
*rpc_in_p
);
8780 bool check_bind_req(struct pipes_struct
*p
, RPC_IFACE
* abstract
,
8781 RPC_IFACE
* transfer
, uint32 context_id
);
8782 NTSTATUS
rpc_pipe_register_commands(int version
, const char *clnt
, const char *srv
, const struct api_struct
*cmds
, int size
);
8783 bool api_pipe_bind_req(pipes_struct
*p
, prs_struct
*rpc_in_p
);
8784 bool api_pipe_alter_context(pipes_struct
*p
, prs_struct
*rpc_in_p
);
8785 bool api_pipe_ntlmssp_auth_process(pipes_struct
*p
, prs_struct
*rpc_in
,
8786 uint32
*p_ss_padding_len
, NTSTATUS
*pstatus
);
8787 bool api_pipe_schannel_process(pipes_struct
*p
, prs_struct
*rpc_in
, uint32
*p_ss_padding_len
);
8788 struct current_user
*get_current_user(struct current_user
*user
, pipes_struct
*p
);
8789 void free_pipe_rpc_context( PIPE_RPC_FNS
*list
);
8790 bool api_pipe_request(pipes_struct
*p
);
8791 bool api_rpcTNP(pipes_struct
*p
, const char *rpc_name
,
8792 const struct api_struct
*api_rpc_cmds
, int n_cmds
);
8793 void get_pipe_fns( int idx
, struct api_struct
**fns
, int *n_fns
);
8795 /* The following definitions come from rpc_server/srv_pipe_hnd.c */
8797 pipes_struct
*get_first_internal_pipe(void);
8798 pipes_struct
*get_next_internal_pipe(pipes_struct
*p
);
8799 void set_pipe_handle_offset(int max_open_files
);
8800 void reset_chain_p(void);
8801 void init_rpc_pipe_hnd(void);
8802 smb_np_struct
*open_rpc_pipe_p(const char *pipe_name
,
8803 connection_struct
*conn
, uint16 vuid
);
8804 ssize_t
write_to_pipe(smb_np_struct
*p
, char *data
, size_t n
);
8805 ssize_t
read_from_pipe(smb_np_struct
*p
, char *data
, size_t n
,
8806 bool *is_data_outstanding
);
8807 bool wait_rpc_pipe_hnd_state(smb_np_struct
*p
, uint16 priority
);
8808 bool set_rpc_pipe_hnd_state(smb_np_struct
*p
, uint16 device_state
);
8809 bool close_rpc_pipe_hnd(smb_np_struct
*p
);
8810 void pipe_close_conn(connection_struct
*conn
);
8811 smb_np_struct
*get_rpc_pipe_p(uint16 pnum
);
8812 smb_np_struct
*get_rpc_pipe(int pnum
);
8814 /* The following definitions come from rpc_server/srv_samr_nt.c */
8816 NTSTATUS
_samr_Close(pipes_struct
*p
, struct samr_Close
*r
);
8817 NTSTATUS
_samr_OpenDomain(pipes_struct
*p
,
8818 struct samr_OpenDomain
*r
);
8819 NTSTATUS
_samr_GetUserPwInfo(pipes_struct
*p
,
8820 struct samr_GetUserPwInfo
*r
);
8821 NTSTATUS
_samr_SetSecurity(pipes_struct
*p
,
8822 struct samr_SetSecurity
*r
);
8823 NTSTATUS
_samr_QuerySecurity(pipes_struct
*p
,
8824 struct samr_QuerySecurity
*r
);
8825 NTSTATUS
_samr_EnumDomainUsers(pipes_struct
*p
,
8826 struct samr_EnumDomainUsers
*r
);
8827 NTSTATUS
_samr_EnumDomainGroups(pipes_struct
*p
,
8828 struct samr_EnumDomainGroups
*r
);
8829 NTSTATUS
_samr_EnumDomainAliases(pipes_struct
*p
,
8830 struct samr_EnumDomainAliases
*r
);
8831 NTSTATUS
_samr_QueryDisplayInfo(pipes_struct
*p
,
8832 struct samr_QueryDisplayInfo
*r
);
8833 NTSTATUS
_samr_QueryDisplayInfo2(pipes_struct
*p
,
8834 struct samr_QueryDisplayInfo2
*r
);
8835 NTSTATUS
_samr_QueryDisplayInfo3(pipes_struct
*p
,
8836 struct samr_QueryDisplayInfo3
*r
);
8837 NTSTATUS
_samr_QueryAliasInfo(pipes_struct
*p
,
8838 struct samr_QueryAliasInfo
*r
);
8839 NTSTATUS
_samr_LookupNames(pipes_struct
*p
,
8840 struct samr_LookupNames
*r
);
8841 NTSTATUS
_samr_ChangePasswordUser2(pipes_struct
*p
,
8842 struct samr_ChangePasswordUser2
*r
);
8843 NTSTATUS
_samr_ChangePasswordUser3(pipes_struct
*p
,
8844 struct samr_ChangePasswordUser3
*r
);
8845 NTSTATUS
_samr_LookupRids(pipes_struct
*p
,
8846 struct samr_LookupRids
*r
);
8847 NTSTATUS
_samr_OpenUser(pipes_struct
*p
,
8848 struct samr_OpenUser
*r
);
8849 NTSTATUS
_samr_QueryUserInfo(pipes_struct
*p
,
8850 struct samr_QueryUserInfo
*r
);
8851 NTSTATUS
_samr_GetGroupsForUser(pipes_struct
*p
,
8852 struct samr_GetGroupsForUser
*r
);
8853 NTSTATUS
_samr_QueryDomainInfo(pipes_struct
*p
,
8854 struct samr_QueryDomainInfo
*r
);
8855 NTSTATUS
_samr_CreateUser2(pipes_struct
*p
,
8856 struct samr_CreateUser2
*r
);
8857 NTSTATUS
_samr_Connect(pipes_struct
*p
,
8858 struct samr_Connect
*r
);
8859 NTSTATUS
_samr_Connect2(pipes_struct
*p
,
8860 struct samr_Connect2
*r
);
8861 NTSTATUS
_samr_Connect4(pipes_struct
*p
,
8862 struct samr_Connect4
*r
);
8863 NTSTATUS
_samr_Connect5(pipes_struct
*p
,
8864 struct samr_Connect5
*r
);
8865 NTSTATUS
_samr_LookupDomain(pipes_struct
*p
,
8866 struct samr_LookupDomain
*r
);
8867 NTSTATUS
_samr_EnumDomains(pipes_struct
*p
,
8868 struct samr_EnumDomains
*r
);
8869 NTSTATUS
_samr_OpenAlias(pipes_struct
*p
,
8870 struct samr_OpenAlias
*r
);
8871 NTSTATUS
_samr_SetUserInfo(pipes_struct
*p
,
8872 struct samr_SetUserInfo
*r
);
8873 NTSTATUS
_samr_SetUserInfo2(pipes_struct
*p
,
8874 struct samr_SetUserInfo2
*r
);
8875 NTSTATUS
_samr_GetAliasMembership(pipes_struct
*p
,
8876 struct samr_GetAliasMembership
*r
);
8877 NTSTATUS
_samr_GetMembersInAlias(pipes_struct
*p
,
8878 struct samr_GetMembersInAlias
*r
);
8879 NTSTATUS
_samr_QueryGroupMember(pipes_struct
*p
,
8880 struct samr_QueryGroupMember
*r
);
8881 NTSTATUS
_samr_AddAliasMember(pipes_struct
*p
,
8882 struct samr_AddAliasMember
*r
);
8883 NTSTATUS
_samr_DeleteAliasMember(pipes_struct
*p
,
8884 struct samr_DeleteAliasMember
*r
);
8885 NTSTATUS
_samr_AddGroupMember(pipes_struct
*p
,
8886 struct samr_AddGroupMember
*r
);
8887 NTSTATUS
_samr_DeleteGroupMember(pipes_struct
*p
,
8888 struct samr_DeleteGroupMember
*r
);
8889 NTSTATUS
_samr_DeleteUser(pipes_struct
*p
,
8890 struct samr_DeleteUser
*r
);
8891 NTSTATUS
_samr_DeleteDomainGroup(pipes_struct
*p
,
8892 struct samr_DeleteDomainGroup
*r
);
8893 NTSTATUS
_samr_DeleteDomAlias(pipes_struct
*p
,
8894 struct samr_DeleteDomAlias
*r
);
8895 NTSTATUS
_samr_CreateDomainGroup(pipes_struct
*p
,
8896 struct samr_CreateDomainGroup
*r
);
8897 NTSTATUS
_samr_CreateDomAlias(pipes_struct
*p
,
8898 struct samr_CreateDomAlias
*r
);
8899 NTSTATUS
_samr_QueryGroupInfo(pipes_struct
*p
,
8900 struct samr_QueryGroupInfo
*r
);
8901 NTSTATUS
_samr_SetGroupInfo(pipes_struct
*p
,
8902 struct samr_SetGroupInfo
*r
);
8903 NTSTATUS
_samr_SetAliasInfo(pipes_struct
*p
,
8904 struct samr_SetAliasInfo
*r
);
8905 NTSTATUS
_samr_GetDomPwInfo(pipes_struct
*p
,
8906 struct samr_GetDomPwInfo
*r
);
8907 NTSTATUS
_samr_OpenGroup(pipes_struct
*p
,
8908 struct samr_OpenGroup
*r
);
8909 NTSTATUS
_samr_RemoveMemberFromForeignDomain(pipes_struct
*p
,
8910 struct samr_RemoveMemberFromForeignDomain
*r
);
8911 NTSTATUS
_samr_QueryDomainInfo2(pipes_struct
*p
,
8912 struct samr_QueryDomainInfo2
*r
);
8913 NTSTATUS
_samr_SetDomainInfo(pipes_struct
*p
,
8914 struct samr_SetDomainInfo
*r
);
8915 NTSTATUS
_samr_GetDisplayEnumerationIndex(pipes_struct
*p
,
8916 struct samr_GetDisplayEnumerationIndex
*r
);
8917 NTSTATUS
_samr_GetDisplayEnumerationIndex2(pipes_struct
*p
,
8918 struct samr_GetDisplayEnumerationIndex2
*r
);
8919 NTSTATUS
_samr_Shutdown(pipes_struct
*p
,
8920 struct samr_Shutdown
*r
);
8921 NTSTATUS
_samr_CreateUser(pipes_struct
*p
,
8922 struct samr_CreateUser
*r
);
8923 NTSTATUS
_samr_SetMemberAttributesOfGroup(pipes_struct
*p
,
8924 struct samr_SetMemberAttributesOfGroup
*r
);
8925 NTSTATUS
_samr_ChangePasswordUser(pipes_struct
*p
,
8926 struct samr_ChangePasswordUser
*r
);
8927 NTSTATUS
_samr_TestPrivateFunctionsDomain(pipes_struct
*p
,
8928 struct samr_TestPrivateFunctionsDomain
*r
);
8929 NTSTATUS
_samr_TestPrivateFunctionsUser(pipes_struct
*p
,
8930 struct samr_TestPrivateFunctionsUser
*r
);
8931 NTSTATUS
_samr_QueryUserInfo2(pipes_struct
*p
,
8932 struct samr_QueryUserInfo2
*r
);
8933 NTSTATUS
_samr_AddMultipleMembersToAlias(pipes_struct
*p
,
8934 struct samr_AddMultipleMembersToAlias
*r
);
8935 NTSTATUS
_samr_RemoveMultipleMembersFromAlias(pipes_struct
*p
,
8936 struct samr_RemoveMultipleMembersFromAlias
*r
);
8937 NTSTATUS
_samr_OemChangePasswordUser2(pipes_struct
*p
,
8938 struct samr_OemChangePasswordUser2
*r
);
8939 NTSTATUS
_samr_SetBootKeyInformation(pipes_struct
*p
,
8940 struct samr_SetBootKeyInformation
*r
);
8941 NTSTATUS
_samr_GetBootKeyInformation(pipes_struct
*p
,
8942 struct samr_GetBootKeyInformation
*r
);
8943 NTSTATUS
_samr_Connect3(pipes_struct
*p
,
8944 struct samr_Connect3
*r
);
8945 NTSTATUS
_samr_RidToSid(pipes_struct
*p
,
8946 struct samr_RidToSid
*r
);
8947 NTSTATUS
_samr_SetDsrmPassword(pipes_struct
*p
,
8948 struct samr_SetDsrmPassword
*r
);
8949 NTSTATUS
_samr_ValidatePassword(pipes_struct
*p
,
8950 struct samr_ValidatePassword
*r
);
8952 /* The following definitions come from rpc_server/srv_samr_util.c */
8954 void copy_id20_to_sam_passwd(struct samu
*to
,
8955 struct samr_UserInfo20
*from
);
8956 void copy_id21_to_sam_passwd(const char *log_prefix
,
8958 struct samr_UserInfo21
*from
);
8959 void copy_id23_to_sam_passwd(struct samu
*to
,
8960 struct samr_UserInfo23
*from
);
8961 void copy_id25_to_sam_passwd(struct samu
*to
,
8962 struct samr_UserInfo25
*from
);
8964 /* The following definitions come from rpc_server/srv_spoolss.c */
8966 void spoolss_get_pipe_fns( struct api_struct
**fns
, int *n_fns
);
8967 NTSTATUS
rpc_spoolss_init(void);
8969 /* The following definitions come from rpc_server/srv_spoolss_nt.c */
8971 WERROR
delete_printer_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, const char *sharename
);
8972 void do_drv_upgrade_printer(struct messaging_context
*msg
,
8975 struct server_id server_id
,
8977 void update_monitored_printq_cache( void );
8978 void reset_all_printerdata(struct messaging_context
*msg
,
8981 struct server_id server_id
,
8983 WERROR
_spoolss_open_printer(pipes_struct
*p
, SPOOL_Q_OPEN_PRINTER
*q_u
, SPOOL_R_OPEN_PRINTER
*r_u
);
8984 WERROR
_spoolss_open_printer_ex( pipes_struct
*p
, SPOOL_Q_OPEN_PRINTER_EX
*q_u
, SPOOL_R_OPEN_PRINTER_EX
*r_u
);
8985 bool convert_devicemode(const char *printername
, const DEVICEMODE
*devmode
,
8986 NT_DEVICEMODE
**pp_nt_devmode
);
8987 WERROR
_spoolss_closeprinter(pipes_struct
*p
, SPOOL_Q_CLOSEPRINTER
*q_u
, SPOOL_R_CLOSEPRINTER
*r_u
);
8988 WERROR
_spoolss_deleteprinter(pipes_struct
*p
, SPOOL_Q_DELETEPRINTER
*q_u
, SPOOL_R_DELETEPRINTER
*r_u
);
8989 WERROR
_spoolss_deleteprinterdriver(pipes_struct
*p
, SPOOL_Q_DELETEPRINTERDRIVER
*q_u
, SPOOL_R_DELETEPRINTERDRIVER
*r_u
);
8990 WERROR
_spoolss_deleteprinterdriverex(pipes_struct
*p
, SPOOL_Q_DELETEPRINTERDRIVEREX
*q_u
, SPOOL_R_DELETEPRINTERDRIVEREX
*r_u
);
8991 WERROR
set_printer_dataex( NT_PRINTER_INFO_LEVEL
*printer
, const char *key
, const char *value
,
8992 uint32 type
, uint8
*data
, int real_len
);
8993 WERROR
_spoolss_getprinterdata(pipes_struct
*p
, SPOOL_Q_GETPRINTERDATA
*q_u
, SPOOL_R_GETPRINTERDATA
*r_u
);
8994 WERROR
_spoolss_rffpcnex(pipes_struct
*p
, SPOOL_Q_RFFPCNEX
*q_u
, SPOOL_R_RFFPCNEX
*r_u
);
8995 void spoolss_notify_server_name(int snum
,
8996 SPOOL_NOTIFY_INFO_DATA
*data
,
8997 print_queue_struct
*queue
,
8998 NT_PRINTER_INFO_LEVEL
*printer
,
8999 TALLOC_CTX
*mem_ctx
);
9000 void spoolss_notify_printer_name(int snum
,
9001 SPOOL_NOTIFY_INFO_DATA
*data
,
9002 print_queue_struct
*queue
,
9003 NT_PRINTER_INFO_LEVEL
*printer
,
9004 TALLOC_CTX
*mem_ctx
);
9005 void spoolss_notify_share_name(int snum
,
9006 SPOOL_NOTIFY_INFO_DATA
*data
,
9007 print_queue_struct
*queue
,
9008 NT_PRINTER_INFO_LEVEL
*printer
,
9009 TALLOC_CTX
*mem_ctx
);
9010 void spoolss_notify_port_name(int snum
,
9011 SPOOL_NOTIFY_INFO_DATA
*data
,
9012 print_queue_struct
*queue
,
9013 NT_PRINTER_INFO_LEVEL
*printer
,
9014 TALLOC_CTX
*mem_ctx
);
9015 void spoolss_notify_driver_name(int snum
,
9016 SPOOL_NOTIFY_INFO_DATA
*data
,
9017 print_queue_struct
*queue
,
9018 NT_PRINTER_INFO_LEVEL
*printer
,
9019 TALLOC_CTX
*mem_ctx
);
9020 void spoolss_notify_comment(int snum
,
9021 SPOOL_NOTIFY_INFO_DATA
*data
,
9022 print_queue_struct
*queue
,
9023 NT_PRINTER_INFO_LEVEL
*printer
,
9024 TALLOC_CTX
*mem_ctx
);
9025 void spoolss_notify_location(int snum
,
9026 SPOOL_NOTIFY_INFO_DATA
*data
,
9027 print_queue_struct
*queue
,
9028 NT_PRINTER_INFO_LEVEL
*printer
,
9029 TALLOC_CTX
*mem_ctx
);
9030 void spoolss_notify_sepfile(int snum
,
9031 SPOOL_NOTIFY_INFO_DATA
*data
,
9032 print_queue_struct
*queue
,
9033 NT_PRINTER_INFO_LEVEL
*printer
,
9034 TALLOC_CTX
*mem_ctx
);
9035 void spoolss_notify_print_processor(int snum
,
9036 SPOOL_NOTIFY_INFO_DATA
*data
,
9037 print_queue_struct
*queue
,
9038 NT_PRINTER_INFO_LEVEL
*printer
,
9039 TALLOC_CTX
*mem_ctx
);
9040 void spoolss_notify_parameters(int snum
,
9041 SPOOL_NOTIFY_INFO_DATA
*data
,
9042 print_queue_struct
*queue
,
9043 NT_PRINTER_INFO_LEVEL
*printer
,
9044 TALLOC_CTX
*mem_ctx
);
9045 void spoolss_notify_datatype(int snum
,
9046 SPOOL_NOTIFY_INFO_DATA
*data
,
9047 print_queue_struct
*queue
,
9048 NT_PRINTER_INFO_LEVEL
*printer
,
9049 TALLOC_CTX
*mem_ctx
);
9050 void spoolss_notify_attributes(int snum
,
9051 SPOOL_NOTIFY_INFO_DATA
*data
,
9052 print_queue_struct
*queue
,
9053 NT_PRINTER_INFO_LEVEL
*printer
,
9054 TALLOC_CTX
*mem_ctx
);
9055 void spoolss_notify_cjobs(int snum
,
9056 SPOOL_NOTIFY_INFO_DATA
*data
,
9057 print_queue_struct
*queue
,
9058 NT_PRINTER_INFO_LEVEL
*printer
,
9059 TALLOC_CTX
*mem_ctx
);
9060 void construct_info_data(SPOOL_NOTIFY_INFO_DATA
*info_data
, uint16 type
, uint16 field
, int id
);
9061 WERROR
_spoolss_rfnpcnex( pipes_struct
*p
, SPOOL_Q_RFNPCNEX
*q_u
, SPOOL_R_RFNPCNEX
*r_u
);
9062 DEVICEMODE
*construct_dev_mode(const char *servicename
);
9063 WERROR
_spoolss_enumprinters( pipes_struct
*p
, SPOOL_Q_ENUMPRINTERS
*q_u
, SPOOL_R_ENUMPRINTERS
*r_u
);
9064 WERROR
_spoolss_getprinter(pipes_struct
*p
, SPOOL_Q_GETPRINTER
*q_u
, SPOOL_R_GETPRINTER
*r_u
);
9065 WERROR
_spoolss_getprinterdriver2(pipes_struct
*p
, SPOOL_Q_GETPRINTERDRIVER2
*q_u
, SPOOL_R_GETPRINTERDRIVER2
*r_u
);
9066 WERROR
_spoolss_startpageprinter(pipes_struct
*p
, SPOOL_Q_STARTPAGEPRINTER
*q_u
, SPOOL_R_STARTPAGEPRINTER
*r_u
);
9067 WERROR
_spoolss_endpageprinter(pipes_struct
*p
, SPOOL_Q_ENDPAGEPRINTER
*q_u
, SPOOL_R_ENDPAGEPRINTER
*r_u
);
9068 WERROR
_spoolss_startdocprinter(pipes_struct
*p
, SPOOL_Q_STARTDOCPRINTER
*q_u
, SPOOL_R_STARTDOCPRINTER
*r_u
);
9069 WERROR
_spoolss_enddocprinter(pipes_struct
*p
, SPOOL_Q_ENDDOCPRINTER
*q_u
, SPOOL_R_ENDDOCPRINTER
*r_u
);
9070 WERROR
_spoolss_writeprinter(pipes_struct
*p
, SPOOL_Q_WRITEPRINTER
*q_u
, SPOOL_R_WRITEPRINTER
*r_u
);
9071 WERROR
_spoolss_abortprinter(pipes_struct
*p
, SPOOL_Q_ABORTPRINTER
*q_u
, SPOOL_R_ABORTPRINTER
*r_u
);
9072 WERROR
add_port_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, const char *portname
, const char *uri
);
9073 bool add_printer_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, NT_PRINTER_INFO_LEVEL
*printer
);
9074 WERROR
_spoolss_setprinter(pipes_struct
*p
, SPOOL_Q_SETPRINTER
*q_u
, SPOOL_R_SETPRINTER
*r_u
);
9075 WERROR
_spoolss_fcpn(pipes_struct
*p
, SPOOL_Q_FCPN
*q_u
, SPOOL_R_FCPN
*r_u
);
9076 WERROR
_spoolss_addjob(pipes_struct
*p
, SPOOL_Q_ADDJOB
*q_u
, SPOOL_R_ADDJOB
*r_u
);
9077 WERROR
_spoolss_enumjobs( pipes_struct
*p
, SPOOL_Q_ENUMJOBS
*q_u
, SPOOL_R_ENUMJOBS
*r_u
);
9078 WERROR
_spoolss_schedulejob( pipes_struct
*p
, SPOOL_Q_SCHEDULEJOB
*q_u
, SPOOL_R_SCHEDULEJOB
*r_u
);
9079 WERROR
_spoolss_setjob(pipes_struct
*p
, SPOOL_Q_SETJOB
*q_u
, SPOOL_R_SETJOB
*r_u
);
9080 WERROR
_spoolss_enumprinterdrivers( pipes_struct
*p
, SPOOL_Q_ENUMPRINTERDRIVERS
*q_u
, SPOOL_R_ENUMPRINTERDRIVERS
*r_u
);
9081 WERROR
_spoolss_enumforms(pipes_struct
*p
, SPOOL_Q_ENUMFORMS
*q_u
, SPOOL_R_ENUMFORMS
*r_u
);
9082 WERROR
_spoolss_getform(pipes_struct
*p
, SPOOL_Q_GETFORM
*q_u
, SPOOL_R_GETFORM
*r_u
);
9083 WERROR
enumports_hook(TALLOC_CTX
*ctx
, int *count
, char ***lines
);
9084 WERROR
_spoolss_enumports( pipes_struct
*p
, SPOOL_Q_ENUMPORTS
*q_u
, SPOOL_R_ENUMPORTS
*r_u
);
9085 WERROR
_spoolss_addprinterex( pipes_struct
*p
, SPOOL_Q_ADDPRINTEREX
*q_u
, SPOOL_R_ADDPRINTEREX
*r_u
);
9086 WERROR
_spoolss_addprinterdriver(pipes_struct
*p
, SPOOL_Q_ADDPRINTERDRIVER
*q_u
, SPOOL_R_ADDPRINTERDRIVER
*r_u
);
9087 WERROR
_spoolss_addprinterdriverex(pipes_struct
*p
, SPOOL_Q_ADDPRINTERDRIVEREX
*q_u
, SPOOL_R_ADDPRINTERDRIVEREX
*r_u
);
9088 WERROR
_spoolss_getprinterdriverdirectory(pipes_struct
*p
, SPOOL_Q_GETPRINTERDRIVERDIR
*q_u
, SPOOL_R_GETPRINTERDRIVERDIR
*r_u
);
9089 WERROR
_spoolss_enumprinterdata(pipes_struct
*p
, SPOOL_Q_ENUMPRINTERDATA
*q_u
, SPOOL_R_ENUMPRINTERDATA
*r_u
);
9090 WERROR
_spoolss_setprinterdata( pipes_struct
*p
, SPOOL_Q_SETPRINTERDATA
*q_u
, SPOOL_R_SETPRINTERDATA
*r_u
);
9091 WERROR
_spoolss_resetprinter(pipes_struct
*p
, SPOOL_Q_RESETPRINTER
*q_u
, SPOOL_R_RESETPRINTER
*r_u
);
9092 WERROR
_spoolss_deleteprinterdata(pipes_struct
*p
, SPOOL_Q_DELETEPRINTERDATA
*q_u
, SPOOL_R_DELETEPRINTERDATA
*r_u
);
9093 WERROR
_spoolss_addform( pipes_struct
*p
, SPOOL_Q_ADDFORM
*q_u
, SPOOL_R_ADDFORM
*r_u
);
9094 WERROR
_spoolss_deleteform( pipes_struct
*p
, SPOOL_Q_DELETEFORM
*q_u
, SPOOL_R_DELETEFORM
*r_u
);
9095 WERROR
_spoolss_setform(pipes_struct
*p
, SPOOL_Q_SETFORM
*q_u
, SPOOL_R_SETFORM
*r_u
);
9096 WERROR
_spoolss_enumprintprocessors(pipes_struct
*p
, SPOOL_Q_ENUMPRINTPROCESSORS
*q_u
, SPOOL_R_ENUMPRINTPROCESSORS
*r_u
);
9097 WERROR
_spoolss_enumprintprocdatatypes(pipes_struct
*p
, SPOOL_Q_ENUMPRINTPROCDATATYPES
*q_u
, SPOOL_R_ENUMPRINTPROCDATATYPES
*r_u
);
9098 WERROR
_spoolss_enumprintmonitors(pipes_struct
*p
, SPOOL_Q_ENUMPRINTMONITORS
*q_u
, SPOOL_R_ENUMPRINTMONITORS
*r_u
);
9099 WERROR
_spoolss_getjob( pipes_struct
*p
, SPOOL_Q_GETJOB
*q_u
, SPOOL_R_GETJOB
*r_u
);
9100 WERROR
_spoolss_getprinterdataex(pipes_struct
*p
, SPOOL_Q_GETPRINTERDATAEX
*q_u
, SPOOL_R_GETPRINTERDATAEX
*r_u
);
9101 WERROR
_spoolss_setprinterdataex(pipes_struct
*p
, SPOOL_Q_SETPRINTERDATAEX
*q_u
, SPOOL_R_SETPRINTERDATAEX
*r_u
);
9102 WERROR
_spoolss_deleteprinterdataex(pipes_struct
*p
, SPOOL_Q_DELETEPRINTERDATAEX
*q_u
, SPOOL_R_DELETEPRINTERDATAEX
*r_u
);
9103 WERROR
_spoolss_enumprinterkey(pipes_struct
*p
, SPOOL_Q_ENUMPRINTERKEY
*q_u
, SPOOL_R_ENUMPRINTERKEY
*r_u
);
9104 WERROR
_spoolss_deleteprinterkey(pipes_struct
*p
, SPOOL_Q_DELETEPRINTERKEY
*q_u
, SPOOL_R_DELETEPRINTERKEY
*r_u
);
9105 WERROR
_spoolss_enumprinterdataex(pipes_struct
*p
, SPOOL_Q_ENUMPRINTERDATAEX
*q_u
, SPOOL_R_ENUMPRINTERDATAEX
*r_u
);
9106 WERROR
_spoolss_getprintprocessordirectory(pipes_struct
*p
, SPOOL_Q_GETPRINTPROCESSORDIRECTORY
*q_u
, SPOOL_R_GETPRINTPROCESSORDIRECTORY
*r_u
);
9107 WERROR
_spoolss_xcvdataport(pipes_struct
*p
, SPOOL_Q_XCVDATAPORT
*q_u
, SPOOL_R_XCVDATAPORT
*r_u
);
9109 /* The following definitions come from rpc_server/srv_srvsvc_nt.c */
9111 WERROR
_srvsvc_NetFileEnum(pipes_struct
*p
,
9112 struct srvsvc_NetFileEnum
*r
);
9113 WERROR
_srvsvc_NetSrvGetInfo(pipes_struct
*p
,
9114 struct srvsvc_NetSrvGetInfo
*r
);
9115 WERROR
_srvsvc_NetSrvSetInfo(pipes_struct
*p
,
9116 struct srvsvc_NetSrvSetInfo
*r
);
9117 WERROR
_srvsvc_NetConnEnum(pipes_struct
*p
,
9118 struct srvsvc_NetConnEnum
*r
);
9119 WERROR
_srvsvc_NetSessEnum(pipes_struct
*p
,
9120 struct srvsvc_NetSessEnum
*r
);
9121 WERROR
_srvsvc_NetSessDel(pipes_struct
*p
,
9122 struct srvsvc_NetSessDel
*r
);
9123 WERROR
_srvsvc_NetShareEnumAll(pipes_struct
*p
,
9124 struct srvsvc_NetShareEnumAll
*r
);
9125 WERROR
_srvsvc_NetShareEnum(pipes_struct
*p
,
9126 struct srvsvc_NetShareEnum
*r
);
9127 WERROR
_srvsvc_NetShareGetInfo(pipes_struct
*p
,
9128 struct srvsvc_NetShareGetInfo
*r
);
9129 char *valid_share_pathname(TALLOC_CTX
*ctx
, const char *dos_pathname
);
9130 WERROR
_srvsvc_NetShareSetInfo(pipes_struct
*p
,
9131 struct srvsvc_NetShareSetInfo
*r
);
9132 WERROR
_srvsvc_NetShareAdd(pipes_struct
*p
,
9133 struct srvsvc_NetShareAdd
*r
);
9134 WERROR
_srvsvc_NetShareDel(pipes_struct
*p
,
9135 struct srvsvc_NetShareDel
*r
);
9136 WERROR
_srvsvc_NetShareDelSticky(pipes_struct
*p
,
9137 struct srvsvc_NetShareDelSticky
*r
);
9138 WERROR
_srvsvc_NetRemoteTOD(pipes_struct
*p
,
9139 struct srvsvc_NetRemoteTOD
*r
);
9140 WERROR
_srvsvc_NetGetFileSecurity(pipes_struct
*p
,
9141 struct srvsvc_NetGetFileSecurity
*r
);
9142 WERROR
_srvsvc_NetSetFileSecurity(pipes_struct
*p
,
9143 struct srvsvc_NetSetFileSecurity
*r
);
9144 WERROR
_srvsvc_NetDiskEnum(pipes_struct
*p
,
9145 struct srvsvc_NetDiskEnum
*r
);
9146 WERROR
_srvsvc_NetNameValidate(pipes_struct
*p
,
9147 struct srvsvc_NetNameValidate
*r
);
9148 WERROR
_srvsvc_NetFileClose(pipes_struct
*p
, struct srvsvc_NetFileClose
*r
);
9149 WERROR
_srvsvc_NetCharDevEnum(pipes_struct
*p
, struct srvsvc_NetCharDevEnum
*r
);
9150 WERROR
_srvsvc_NetCharDevGetInfo(pipes_struct
*p
, struct srvsvc_NetCharDevGetInfo
*r
);
9151 WERROR
_srvsvc_NetCharDevControl(pipes_struct
*p
, struct srvsvc_NetCharDevControl
*r
);
9152 WERROR
_srvsvc_NetCharDevQEnum(pipes_struct
*p
, struct srvsvc_NetCharDevQEnum
*r
);
9153 WERROR
_srvsvc_NetCharDevQGetInfo(pipes_struct
*p
, struct srvsvc_NetCharDevQGetInfo
*r
);
9154 WERROR
_srvsvc_NetCharDevQSetInfo(pipes_struct
*p
, struct srvsvc_NetCharDevQSetInfo
*r
);
9155 WERROR
_srvsvc_NetCharDevQPurge(pipes_struct
*p
, struct srvsvc_NetCharDevQPurge
*r
);
9156 WERROR
_srvsvc_NetCharDevQPurgeSelf(pipes_struct
*p
, struct srvsvc_NetCharDevQPurgeSelf
*r
);
9157 WERROR
_srvsvc_NetFileGetInfo(pipes_struct
*p
, struct srvsvc_NetFileGetInfo
*r
);
9158 WERROR
_srvsvc_NetShareCheck(pipes_struct
*p
, struct srvsvc_NetShareCheck
*r
);
9159 WERROR
_srvsvc_NetServerStatisticsGet(pipes_struct
*p
, struct srvsvc_NetServerStatisticsGet
*r
);
9160 WERROR
_srvsvc_NetTransportAdd(pipes_struct
*p
, struct srvsvc_NetTransportAdd
*r
);
9161 WERROR
_srvsvc_NetTransportEnum(pipes_struct
*p
, struct srvsvc_NetTransportEnum
*r
);
9162 WERROR
_srvsvc_NetTransportDel(pipes_struct
*p
, struct srvsvc_NetTransportDel
*r
);
9163 WERROR
_srvsvc_NetSetServiceBits(pipes_struct
*p
, struct srvsvc_NetSetServiceBits
*r
);
9164 WERROR
_srvsvc_NetPathType(pipes_struct
*p
, struct srvsvc_NetPathType
*r
);
9165 WERROR
_srvsvc_NetPathCanonicalize(pipes_struct
*p
, struct srvsvc_NetPathCanonicalize
*r
);
9166 WERROR
_srvsvc_NetPathCompare(pipes_struct
*p
, struct srvsvc_NetPathCompare
*r
);
9167 WERROR
_srvsvc_NETRPRNAMECANONICALIZE(pipes_struct
*p
, struct srvsvc_NETRPRNAMECANONICALIZE
*r
);
9168 WERROR
_srvsvc_NetPRNameCompare(pipes_struct
*p
, struct srvsvc_NetPRNameCompare
*r
);
9169 WERROR
_srvsvc_NetShareDelStart(pipes_struct
*p
, struct srvsvc_NetShareDelStart
*r
);
9170 WERROR
_srvsvc_NetShareDelCommit(pipes_struct
*p
, struct srvsvc_NetShareDelCommit
*r
);
9171 WERROR
_srvsvc_NetServerTransportAddEx(pipes_struct
*p
, struct srvsvc_NetServerTransportAddEx
*r
);
9172 WERROR
_srvsvc_NetServerSetServiceBitsEx(pipes_struct
*p
, struct srvsvc_NetServerSetServiceBitsEx
*r
);
9173 WERROR
_srvsvc_NETRDFSGETVERSION(pipes_struct
*p
, struct srvsvc_NETRDFSGETVERSION
*r
);
9174 WERROR
_srvsvc_NETRDFSCREATELOCALPARTITION(pipes_struct
*p
, struct srvsvc_NETRDFSCREATELOCALPARTITION
*r
);
9175 WERROR
_srvsvc_NETRDFSDELETELOCALPARTITION(pipes_struct
*p
, struct srvsvc_NETRDFSDELETELOCALPARTITION
*r
);
9176 WERROR
_srvsvc_NETRDFSSETLOCALVOLUMESTATE(pipes_struct
*p
, struct srvsvc_NETRDFSSETLOCALVOLUMESTATE
*r
);
9177 WERROR
_srvsvc_NETRDFSSETSERVERINFO(pipes_struct
*p
, struct srvsvc_NETRDFSSETSERVERINFO
*r
);
9178 WERROR
_srvsvc_NETRDFSCREATEEXITPOINT(pipes_struct
*p
, struct srvsvc_NETRDFSCREATEEXITPOINT
*r
);
9179 WERROR
_srvsvc_NETRDFSDELETEEXITPOINT(pipes_struct
*p
, struct srvsvc_NETRDFSDELETEEXITPOINT
*r
);
9180 WERROR
_srvsvc_NETRDFSMODIFYPREFIX(pipes_struct
*p
, struct srvsvc_NETRDFSMODIFYPREFIX
*r
);
9181 WERROR
_srvsvc_NETRDFSFIXLOCALVOLUME(pipes_struct
*p
, struct srvsvc_NETRDFSFIXLOCALVOLUME
*r
);
9182 WERROR
_srvsvc_NETRDFSMANAGERREPORTSITEINFO(pipes_struct
*p
, struct srvsvc_NETRDFSMANAGERREPORTSITEINFO
*r
);
9183 WERROR
_srvsvc_NETRSERVERTRANSPORTDELEX(pipes_struct
*p
, struct srvsvc_NETRSERVERTRANSPORTDELEX
*r
);
9185 /* The following definitions come from rpc_server/srv_svcctl.c */
9187 void svcctl2_get_pipe_fns( struct api_struct
**fns
, int *n_fns
);
9188 NTSTATUS
rpc_svcctl2_init(void);
9190 /* The following definitions come from rpc_server/srv_svcctl_nt.c */
9192 bool init_service_op_table( void );
9193 WERROR
_svcctl_OpenSCManagerW(pipes_struct
*p
,
9194 struct svcctl_OpenSCManagerW
*r
);
9195 WERROR
_svcctl_OpenServiceW(pipes_struct
*p
,
9196 struct svcctl_OpenServiceW
*r
);
9197 WERROR
_svcctl_CloseServiceHandle(pipes_struct
*p
, struct svcctl_CloseServiceHandle
*r
);
9198 WERROR
_svcctl_GetServiceDisplayNameW(pipes_struct
*p
,
9199 struct svcctl_GetServiceDisplayNameW
*r
);
9200 WERROR
_svcctl_QueryServiceStatus(pipes_struct
*p
,
9201 struct svcctl_QueryServiceStatus
*r
);
9202 WERROR
_svcctl_enum_services_status(pipes_struct
*p
, SVCCTL_Q_ENUM_SERVICES_STATUS
*q_u
, SVCCTL_R_ENUM_SERVICES_STATUS
*r_u
);
9203 WERROR
_svcctl_StartServiceW(pipes_struct
*p
,
9204 struct svcctl_StartServiceW
*r
);
9205 WERROR
_svcctl_ControlService(pipes_struct
*p
,
9206 struct svcctl_ControlService
*r
);
9207 WERROR
_svcctl_EnumDependentServicesW(pipes_struct
*p
,
9208 struct svcctl_EnumDependentServicesW
*r
);
9209 WERROR
_svcctl_query_service_status_ex( pipes_struct
*p
, SVCCTL_Q_QUERY_SERVICE_STATUSEX
*q_u
, SVCCTL_R_QUERY_SERVICE_STATUSEX
*r_u
);
9210 WERROR
_svcctl_query_service_config( pipes_struct
*p
, SVCCTL_Q_QUERY_SERVICE_CONFIG
*q_u
, SVCCTL_R_QUERY_SERVICE_CONFIG
*r_u
);
9211 WERROR
_svcctl_query_service_config2( pipes_struct
*p
, SVCCTL_Q_QUERY_SERVICE_CONFIG2
*q_u
, SVCCTL_R_QUERY_SERVICE_CONFIG2
*r_u
);
9212 WERROR
_svcctl_LockServiceDatabase(pipes_struct
*p
,
9213 struct svcctl_LockServiceDatabase
*r
);
9214 WERROR
_svcctl_UnlockServiceDatabase(pipes_struct
*p
,
9215 struct svcctl_UnlockServiceDatabase
*r
);
9216 WERROR
_svcctl_QueryServiceObjectSecurity(pipes_struct
*p
,
9217 struct svcctl_QueryServiceObjectSecurity
*r
);
9218 WERROR
_svcctl_SetServiceObjectSecurity(pipes_struct
*p
,
9219 struct svcctl_SetServiceObjectSecurity
*r
);
9220 WERROR
_svcctl_DeleteService(pipes_struct
*p
, struct svcctl_DeleteService
*r
);
9221 WERROR
_svcctl_SetServiceStatus(pipes_struct
*p
, struct svcctl_SetServiceStatus
*r
);
9222 WERROR
_svcctl_NotifyBootConfigStatus(pipes_struct
*p
, struct svcctl_NotifyBootConfigStatus
*r
);
9223 WERROR
_svcctl_SCSetServiceBitsW(pipes_struct
*p
, struct svcctl_SCSetServiceBitsW
*r
);
9224 WERROR
_svcctl_ChangeServiceConfigW(pipes_struct
*p
, struct svcctl_ChangeServiceConfigW
*r
);
9225 WERROR
_svcctl_CreateServiceW(pipes_struct
*p
, struct svcctl_CreateServiceW
*r
);
9226 WERROR
_svcctl_EnumServicesStatusW(pipes_struct
*p
, struct svcctl_EnumServicesStatusW
*r
);
9227 WERROR
_svcctl_QueryServiceConfigW(pipes_struct
*p
, struct svcctl_QueryServiceConfigW
*r
);
9228 WERROR
_svcctl_QueryServiceLockStatusW(pipes_struct
*p
, struct svcctl_QueryServiceLockStatusW
*r
);
9229 WERROR
_svcctl_GetServiceKeyNameW(pipes_struct
*p
, struct svcctl_GetServiceKeyNameW
*r
);
9230 WERROR
_svcctl_SCSetServiceBitsA(pipes_struct
*p
, struct svcctl_SCSetServiceBitsA
*r
);
9231 WERROR
_svcctl_ChangeServiceConfigA(pipes_struct
*p
, struct svcctl_ChangeServiceConfigA
*r
);
9232 WERROR
_svcctl_CreateServiceA(pipes_struct
*p
, struct svcctl_CreateServiceA
*r
);
9233 WERROR
_svcctl_EnumDependentServicesA(pipes_struct
*p
, struct svcctl_EnumDependentServicesA
*r
);
9234 WERROR
_svcctl_EnumServicesStatusA(pipes_struct
*p
, struct svcctl_EnumServicesStatusA
*r
);
9235 WERROR
_svcctl_OpenSCManagerA(pipes_struct
*p
, struct svcctl_OpenSCManagerA
*r
);
9236 WERROR
_svcctl_OpenServiceA(pipes_struct
*p
, struct svcctl_OpenServiceA
*r
);
9237 WERROR
_svcctl_QueryServiceConfigA(pipes_struct
*p
, struct svcctl_QueryServiceConfigA
*r
);
9238 WERROR
_svcctl_QueryServiceLockStatusA(pipes_struct
*p
, struct svcctl_QueryServiceLockStatusA
*r
);
9239 WERROR
_svcctl_StartServiceA(pipes_struct
*p
, struct svcctl_StartServiceA
*r
);
9240 WERROR
_svcctl_GetServiceDisplayNameA(pipes_struct
*p
, struct svcctl_GetServiceDisplayNameA
*r
);
9241 WERROR
_svcctl_GetServiceKeyNameA(pipes_struct
*p
, struct svcctl_GetServiceKeyNameA
*r
);
9242 WERROR
_svcctl_GetCurrentGroupeStateW(pipes_struct
*p
, struct svcctl_GetCurrentGroupeStateW
*r
);
9243 WERROR
_svcctl_EnumServiceGroupW(pipes_struct
*p
, struct svcctl_EnumServiceGroupW
*r
);
9244 WERROR
_svcctl_ChangeServiceConfig2A(pipes_struct
*p
, struct svcctl_ChangeServiceConfig2A
*r
);
9245 WERROR
_svcctl_ChangeServiceConfig2W(pipes_struct
*p
, struct svcctl_ChangeServiceConfig2W
*r
);
9246 WERROR
_svcctl_QueryServiceConfig2A(pipes_struct
*p
, struct svcctl_QueryServiceConfig2A
*r
);
9247 WERROR
_svcctl_QueryServiceConfig2W(pipes_struct
*p
, struct svcctl_QueryServiceConfig2W
*r
);
9248 WERROR
_svcctl_QueryServiceStatusEx(pipes_struct
*p
, struct svcctl_QueryServiceStatusEx
*r
);
9249 WERROR
_EnumServicesStatusExA(pipes_struct
*p
, struct EnumServicesStatusExA
*r
);
9250 WERROR
_EnumServicesStatusExW(pipes_struct
*p
, struct EnumServicesStatusExW
*r
);
9251 WERROR
_svcctl_SCSendTSMessage(pipes_struct
*p
, struct svcctl_SCSendTSMessage
*r
);
9253 /* The following definitions come from rpc_server/srv_winreg_nt.c */
9255 WERROR
_winreg_CloseKey(pipes_struct
*p
, struct winreg_CloseKey
*r
);
9256 WERROR
_winreg_OpenHKLM(pipes_struct
*p
, struct winreg_OpenHKLM
*r
);
9257 WERROR
_winreg_OpenHKPD(pipes_struct
*p
, struct winreg_OpenHKPD
*r
);
9258 WERROR
_winreg_OpenHKPT(pipes_struct
*p
, struct winreg_OpenHKPT
*r
);
9259 WERROR
_winreg_OpenHKCR(pipes_struct
*p
, struct winreg_OpenHKCR
*r
);
9260 WERROR
_winreg_OpenHKU(pipes_struct
*p
, struct winreg_OpenHKU
*r
);
9261 WERROR
_winreg_OpenHKCU(pipes_struct
*p
, struct winreg_OpenHKCU
*r
);
9262 WERROR
_winreg_OpenHKCC(pipes_struct
*p
, struct winreg_OpenHKCC
*r
);
9263 WERROR
_winreg_OpenHKDD(pipes_struct
*p
, struct winreg_OpenHKDD
*r
);
9264 WERROR
_winreg_OpenHKPN(pipes_struct
*p
, struct winreg_OpenHKPN
*r
);
9265 WERROR
_winreg_OpenKey(pipes_struct
*p
, struct winreg_OpenKey
*r
);
9266 WERROR
_winreg_QueryValue(pipes_struct
*p
, struct winreg_QueryValue
*r
);
9267 WERROR
_winreg_QueryInfoKey(pipes_struct
*p
, struct winreg_QueryInfoKey
*r
);
9268 WERROR
_winreg_GetVersion(pipes_struct
*p
, struct winreg_GetVersion
*r
);
9269 WERROR
_winreg_EnumKey(pipes_struct
*p
, struct winreg_EnumKey
*r
);
9270 WERROR
_winreg_EnumValue(pipes_struct
*p
, struct winreg_EnumValue
*r
);
9271 WERROR
_winreg_InitiateSystemShutdown(pipes_struct
*p
, struct winreg_InitiateSystemShutdown
*r
);
9272 WERROR
_winreg_InitiateSystemShutdownEx(pipes_struct
*p
, struct winreg_InitiateSystemShutdownEx
*r
);
9273 WERROR
_winreg_AbortSystemShutdown(pipes_struct
*p
, struct winreg_AbortSystemShutdown
*r
);
9274 WERROR
_winreg_RestoreKey(pipes_struct
*p
, struct winreg_RestoreKey
*r
);
9275 WERROR
_winreg_SaveKey(pipes_struct
*p
, struct winreg_SaveKey
*r
);
9276 WERROR
_winreg_SaveKeyEx(pipes_struct
*p
, struct winreg_SaveKeyEx
*r
);
9277 WERROR
_winreg_CreateKey( pipes_struct
*p
, struct winreg_CreateKey
*r
);
9278 WERROR
_winreg_SetValue(pipes_struct
*p
, struct winreg_SetValue
*r
);
9279 WERROR
_winreg_DeleteKey(pipes_struct
*p
, struct winreg_DeleteKey
*r
);
9280 WERROR
_winreg_DeleteValue(pipes_struct
*p
, struct winreg_DeleteValue
*r
);
9281 WERROR
_winreg_GetKeySecurity(pipes_struct
*p
, struct winreg_GetKeySecurity
*r
);
9282 WERROR
_winreg_SetKeySecurity(pipes_struct
*p
, struct winreg_SetKeySecurity
*r
);
9283 WERROR
_winreg_FlushKey(pipes_struct
*p
, struct winreg_FlushKey
*r
);
9284 WERROR
_winreg_UnLoadKey(pipes_struct
*p
, struct winreg_UnLoadKey
*r
);
9285 WERROR
_winreg_ReplaceKey(pipes_struct
*p
, struct winreg_ReplaceKey
*r
);
9286 WERROR
_winreg_LoadKey(pipes_struct
*p
, struct winreg_LoadKey
*r
);
9287 WERROR
_winreg_NotifyChangeKeyValue(pipes_struct
*p
, struct winreg_NotifyChangeKeyValue
*r
);
9288 WERROR
_winreg_QueryMultipleValues(pipes_struct
*p
, struct winreg_QueryMultipleValues
*r
);
9289 WERROR
_winreg_QueryMultipleValues2(pipes_struct
*p
, struct winreg_QueryMultipleValues2
*r
);
9291 /* The following definitions come from rpc_server/srv_wkssvc_nt.c */
9293 WERROR
_wkssvc_NetWkstaGetInfo(pipes_struct
*p
, struct wkssvc_NetWkstaGetInfo
*r
);
9294 WERROR
_wkssvc_NetWkstaSetInfo(pipes_struct
*p
, struct wkssvc_NetWkstaSetInfo
*r
);
9295 WERROR
_wkssvc_NetWkstaEnumUsers(pipes_struct
*p
, struct wkssvc_NetWkstaEnumUsers
*r
);
9296 WERROR
_wkssvc_NetrWkstaUserGetInfo(pipes_struct
*p
, struct wkssvc_NetrWkstaUserGetInfo
*r
);
9297 WERROR
_wkssvc_NetrWkstaUserSetInfo(pipes_struct
*p
, struct wkssvc_NetrWkstaUserSetInfo
*r
);
9298 WERROR
_wkssvc_NetWkstaTransportEnum(pipes_struct
*p
, struct wkssvc_NetWkstaTransportEnum
*r
);
9299 WERROR
_wkssvc_NetrWkstaTransportAdd(pipes_struct
*p
, struct wkssvc_NetrWkstaTransportAdd
*r
);
9300 WERROR
_wkssvc_NetrWkstaTransportDel(pipes_struct
*p
, struct wkssvc_NetrWkstaTransportDel
*r
);
9301 WERROR
_wkssvc_NetrUseAdd(pipes_struct
*p
, struct wkssvc_NetrUseAdd
*r
);
9302 WERROR
_wkssvc_NetrUseGetInfo(pipes_struct
*p
, struct wkssvc_NetrUseGetInfo
*r
);
9303 WERROR
_wkssvc_NetrUseDel(pipes_struct
*p
, struct wkssvc_NetrUseDel
*r
);
9304 WERROR
_wkssvc_NetrUseEnum(pipes_struct
*p
, struct wkssvc_NetrUseEnum
*r
);
9305 WERROR
_wkssvc_NetrMessageBufferSend(pipes_struct
*p
, struct wkssvc_NetrMessageBufferSend
*r
);
9306 WERROR
_wkssvc_NetrWorkstationStatisticsGet(pipes_struct
*p
, struct wkssvc_NetrWorkstationStatisticsGet
*r
) ;
9307 WERROR
_wkssvc_NetrLogonDomainNameAdd(pipes_struct
*p
, struct wkssvc_NetrLogonDomainNameAdd
*r
);
9308 WERROR
_wkssvc_NetrLogonDomainNameDel(pipes_struct
*p
, struct wkssvc_NetrLogonDomainNameDel
*r
);
9309 WERROR
_wkssvc_NetrJoinDomain(pipes_struct
*p
, struct wkssvc_NetrJoinDomain
*r
);
9310 WERROR
_wkssvc_NetrUnjoinDomain(pipes_struct
*p
, struct wkssvc_NetrUnjoinDomain
*r
);
9311 WERROR
_wkssvc_NetrRenameMachineInDomain(pipes_struct
*p
, struct wkssvc_NetrRenameMachineInDomain
*r
);
9312 WERROR
_wkssvc_NetrValidateName(pipes_struct
*p
, struct wkssvc_NetrValidateName
*r
);
9313 WERROR
_wkssvc_NetrGetJoinInformation(pipes_struct
*p
, struct wkssvc_NetrGetJoinInformation
*r
);
9314 WERROR
_wkssvc_NetrGetJoinableOus(pipes_struct
*p
, struct wkssvc_NetrGetJoinableOus
*r
);
9315 WERROR
_wkssvc_NetrJoinDomain2(pipes_struct
*p
,
9316 struct wkssvc_NetrJoinDomain2
*r
);
9317 WERROR
_wkssvc_NetrUnjoinDomain2(pipes_struct
*p
,
9318 struct wkssvc_NetrUnjoinDomain2
*r
);
9319 WERROR
_wkssvc_NetrRenameMachineInDomain2(pipes_struct
*p
, struct wkssvc_NetrRenameMachineInDomain2
*r
);
9320 WERROR
_wkssvc_NetrValidateName2(pipes_struct
*p
, struct wkssvc_NetrValidateName2
*r
);
9321 WERROR
_wkssvc_NetrGetJoinableOus2(pipes_struct
*p
, struct wkssvc_NetrGetJoinableOus2
*r
);
9322 WERROR
_wkssvc_NetrAddAlternateComputerName(pipes_struct
*p
, struct wkssvc_NetrAddAlternateComputerName
*r
);
9323 WERROR
_wkssvc_NetrRemoveAlternateComputerName(pipes_struct
*p
, struct wkssvc_NetrRemoveAlternateComputerName
*r
);
9324 WERROR
_wkssvc_NetrSetPrimaryComputername(pipes_struct
*p
, struct wkssvc_NetrSetPrimaryComputername
*r
);
9325 WERROR
_wkssvc_NetrEnumerateComputerNames(pipes_struct
*p
, struct wkssvc_NetrEnumerateComputerNames
*r
);
9327 /* The following definitions come from rpcclient/cmd_dfs.c */
9330 /* The following definitions come from rpcclient/cmd_dssetup.c */
9333 /* The following definitions come from rpcclient/cmd_echo.c */
9336 /* The following definitions come from rpcclient/cmd_lsarpc.c */
9339 /* The following definitions come from rpcclient/cmd_netlogon.c */
9342 /* The following definitions come from rpcclient/cmd_ntsvcs.c */
9345 /* The following definitions come from rpcclient/cmd_samr.c */
9348 /* The following definitions come from rpcclient/cmd_shutdown.c */
9351 /* The following definitions come from rpcclient/cmd_spoolss.c */
9353 void set_drv_info_3_env (DRIVER_INFO_3
*info
, const char *arch
);
9355 /* The following definitions come from rpcclient/cmd_srvsvc.c */
9358 /* The following definitions come from rpcclient/cmd_test.c */
9361 /* The following definitions come from rpcclient/cmd_wkssvc.c */
9364 /* The following definitions come from rpcclient/rpcclient.c */
9367 /* The following definitions come from services/services_db.c */
9369 void svcctl_init_keys( void );
9370 SEC_DESC
*svcctl_get_secdesc( TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
9371 bool svcctl_set_secdesc( TALLOC_CTX
*ctx
, const char *name
, SEC_DESC
*sec_desc
, NT_USER_TOKEN
*token
);
9372 const char *svcctl_lookup_dispname(TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
9373 const char *svcctl_lookup_description(TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
9374 REGVAL_CTR
*svcctl_fetch_regvalues( const char *name
, NT_USER_TOKEN
*token
);
9376 /* The following definitions come from services/svc_netlogon.c */
9379 /* The following definitions come from services/svc_rcinit.c */
9382 /* The following definitions come from services/svc_spoolss.c */
9385 /* The following definitions come from services/svc_winreg.c */
9388 /* The following definitions come from services/svc_wins.c */
9391 /* The following definitions come from smbd/aio.c */
9393 void aio_request_done(uint16_t mid
);
9394 bool aio_finished(void);
9395 void initialize_async_io_handler(void);
9396 bool schedule_aio_read_and_X(connection_struct
*conn
,
9397 struct smb_request
*req
,
9398 files_struct
*fsp
, SMB_OFF_T startpos
,
9400 bool schedule_aio_write_and_X(connection_struct
*conn
,
9401 struct smb_request
*req
,
9402 files_struct
*fsp
, char *data
,
9405 int process_aio_queue(void);
9406 int wait_for_aio_completion(files_struct
*fsp
);
9407 void cancel_aio_by_fsp(files_struct
*fsp
);
9408 bool aio_finished(void);
9409 void initialize_async_io_handler(void);
9410 int process_aio_queue(void);
9411 bool schedule_aio_read_and_X(connection_struct
*conn
,
9412 struct smb_request
*req
,
9413 files_struct
*fsp
, SMB_OFF_T startpos
,
9415 bool schedule_aio_write_and_X(connection_struct
*conn
,
9416 struct smb_request
*req
,
9417 files_struct
*fsp
, char *data
,
9420 void cancel_aio_by_fsp(files_struct
*fsp
);
9421 int wait_for_aio_completion(files_struct
*fsp
);
9423 /* The following definitions come from smbd/blocking.c */
9425 bool push_blocking_lock_request( struct byte_range_lock
*br_lck
,
9426 const struct smb_request
*req
,
9431 enum brl_type lock_type
,
9432 enum brl_flavour lock_flav
,
9433 SMB_BIG_UINT offset
,
9435 uint32 blocking_pid
);
9436 void cancel_pending_lock_requests_by_fid(files_struct
*fsp
, struct byte_range_lock
*br_lck
);
9437 void remove_pending_lock_requests_by_mid(int mid
);
9438 bool blocking_lock_was_deferred(int mid
);
9439 bool blocking_lock_cancel(files_struct
*fsp
,
9441 SMB_BIG_UINT offset
,
9443 enum brl_flavour lock_flav
,
9444 unsigned char locktype
,
9447 /* The following definitions come from smbd/change_trust_pw.c */
9449 NTSTATUS
change_trust_account_password( const char *domain
, const char *remote_machine
);
9451 /* The following definitions come from smbd/chgpasswd.c */
9453 bool chgpasswd(const char *name
, const struct passwd
*pass
,
9454 const char *oldpass
, const char *newpass
, bool as_root
);
9455 bool chgpasswd(const char *name
, const struct passwd
*pass
,
9456 const char *oldpass
, const char *newpass
, bool as_root
);
9457 bool check_lanman_password(char *user
, uchar
* pass1
,
9458 uchar
* pass2
, struct samu
**hnd
);
9459 bool change_lanman_password(struct samu
*sampass
, uchar
*pass2
);
9460 NTSTATUS
pass_oem_change(char *user
,
9461 uchar password_encrypted_with_lm_hash
[516],
9462 const uchar old_lm_hash_encrypted
[16],
9463 uchar password_encrypted_with_nt_hash
[516],
9464 const uchar old_nt_hash_encrypted
[16],
9465 uint32
*reject_reason
);
9466 NTSTATUS
change_oem_password(struct samu
*hnd
, char *old_passwd
, char *new_passwd
, bool as_root
, uint32
*samr_reject_reason
);
9468 /* The following definitions come from smbd/close.c */
9470 void set_close_write_time(struct files_struct
*fsp
, struct timespec ts
);
9471 NTSTATUS
close_file(files_struct
*fsp
, enum file_close_type close_type
);
9472 void msg_close_file(struct messaging_context
*msg_ctx
,
9475 struct server_id server_id
,
9478 /* The following definitions come from smbd/conn.c */
9480 void conn_init(void);
9481 int conn_num_open(void);
9482 bool conn_snum_used(int snum
);
9483 connection_struct
*conn_find(unsigned cnum
);
9484 connection_struct
*conn_new(void);
9485 void conn_close_all(void);
9486 bool conn_idle_all(time_t t
);
9487 void conn_clear_vuid_caches(uint16 vuid
);
9488 void conn_free_internal(connection_struct
*conn
);
9489 void conn_free(connection_struct
*conn
);
9490 void msg_force_tdis(struct messaging_context
*msg
,
9493 struct server_id server_id
,
9496 /* The following definitions come from smbd/connection.c */
9498 bool yield_connection(connection_struct
*conn
, const char *name
);
9499 int count_current_connections( const char *sharename
, bool clear
);
9500 int count_all_current_connections(void);
9501 bool claim_connection(connection_struct
*conn
, const char *name
,
9503 bool register_message_flags(bool doreg
, uint32 msg_flags
);
9504 bool store_pipe_opendb( smb_np_struct
*p
);
9505 bool delete_pipe_opendb( smb_np_struct
*p
);
9507 /* The following definitions come from smbd/dfree.c */
9509 SMB_BIG_UINT
sys_disk_free(connection_struct
*conn
, const char *path
, bool small_query
,
9510 SMB_BIG_UINT
*bsize
,SMB_BIG_UINT
*dfree
,SMB_BIG_UINT
*dsize
);
9511 SMB_BIG_UINT
get_dfree_info(connection_struct
*conn
,
9514 SMB_BIG_UINT
*bsize
,
9515 SMB_BIG_UINT
*dfree
,
9516 SMB_BIG_UINT
*dsize
);
9518 /* The following definitions come from smbd/dir.c */
9520 bool make_dir_struct(TALLOC_CTX
*ctx
,
9528 void init_dptrs(void);
9529 char *dptr_path(int key
);
9530 char *dptr_wcard(int key
);
9531 uint16
dptr_attr(int key
);
9532 void dptr_close(int *key
);
9533 void dptr_closecnum(connection_struct
*conn
);
9534 void dptr_idlecnum(connection_struct
*conn
);
9535 void dptr_closepath(char *path
,uint16 spid
);
9536 NTSTATUS
dptr_create(connection_struct
*conn
, const char *path
, bool old_handle
, bool expect_close
,uint16 spid
,
9537 const char *wcard
, bool wcard_has_wild
, uint32 attr
, struct dptr_struct
**dptr_ret
);
9538 int dptr_CloseDir(struct dptr_struct
*dptr
);
9539 void dptr_SeekDir(struct dptr_struct
*dptr
, long offset
);
9540 long dptr_TellDir(struct dptr_struct
*dptr
);
9541 bool dptr_has_wild(struct dptr_struct
*dptr
);
9542 int dptr_dnum(struct dptr_struct
*dptr
);
9543 const char *dptr_ReadDirName(TALLOC_CTX
*ctx
,
9544 struct dptr_struct
*dptr
,
9546 SMB_STRUCT_STAT
*pst
);
9547 bool dptr_SearchDir(struct dptr_struct
*dptr
, const char *name
, long *poffset
, SMB_STRUCT_STAT
*pst
);
9548 void dptr_DirCacheAdd(struct dptr_struct
*dptr
, const char *name
, long offset
);
9549 bool dptr_fill(char *buf1
,unsigned int key
);
9550 struct dptr_struct
*dptr_fetch(char *buf
,int *num
);
9551 struct dptr_struct
*dptr_fetch_lanman2(int dptr_num
);
9552 bool dir_check_ftype(connection_struct
*conn
, uint32 mode
, uint32 dirtype
);
9553 bool get_dir_entry(TALLOC_CTX
*ctx
,
9554 connection_struct
*conn
,
9557 char **pp_fname_out
,
9562 bool ask_sharemode
);
9563 bool is_visible_file(connection_struct
*conn
, const char *dir_path
, const char *name
, SMB_STRUCT_STAT
*pst
, bool use_veto
);
9564 struct smb_Dir
*OpenDir(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
9565 const char *name
, const char *mask
, uint32 attr
);
9566 const char *ReadDirName(struct smb_Dir
*dirp
, long *poffset
);
9567 void RewindDir(struct smb_Dir
*dirp
, long *poffset
);
9568 void SeekDir(struct smb_Dir
*dirp
, long offset
);
9569 long TellDir(struct smb_Dir
*dirp
);
9570 void DirCacheAdd(struct smb_Dir
*dirp
, const char *name
, long offset
);
9571 bool SearchDir(struct smb_Dir
*dirp
, const char *name
, long *poffset
);
9572 NTSTATUS
can_delete_directory(struct connection_struct
*conn
,
9573 const char *dirname
);
9575 /* The following definitions come from smbd/dmapi.c */
9577 const void *dmapi_get_current_session(void);
9578 bool dmapi_have_session(void);
9579 bool dmapi_new_session(void);
9580 bool dmapi_destroy_session(void);
9581 uint32
dmapi_file_flags(const char * const path
);
9583 /* The following definitions come from smbd/dnsregister.c */
9585 void dns_register_close(struct dns_reg_state
**dns_state_ptr
);
9586 void dns_register_smbd(struct dns_reg_state
** dns_state_ptr
,
9590 struct timeval
*timeout
);
9591 bool dns_register_smbd_reply(struct dns_reg_state
*dns_state
,
9592 fd_set
*lfds
, struct timeval
*timeout
);
9594 /* The following definitions come from smbd/dosmode.c */
9596 mode_t
unix_mode(connection_struct
*conn
, int dosmode
, const char *fname
,
9597 const char *inherit_from_dir
);
9598 uint32
dos_mode_msdfs(connection_struct
*conn
, const char *path
,SMB_STRUCT_STAT
*sbuf
);
9599 uint32
dos_mode(connection_struct
*conn
, const char *path
,SMB_STRUCT_STAT
*sbuf
);
9600 int file_set_dosmode(connection_struct
*conn
, const char *fname
,
9601 uint32 dosmode
, SMB_STRUCT_STAT
*st
,
9602 const char *parent_dir
,
9604 int file_ntimes(connection_struct
*conn
, const char *fname
, const struct timespec ts
[2]);
9605 bool set_write_time_path(connection_struct
*conn
, const char *fname
,
9606 struct file_id fileid
, const struct timespec mtime
,
9608 bool set_write_time_fsp(struct files_struct
*fsp
, const struct timespec mtime
,
9611 /* The following definitions come from smbd/error.c */
9613 bool use_nt_status(void);
9614 void error_packet_set(char *outbuf
, uint8 eclass
, uint32 ecode
, NTSTATUS ntstatus
, int line
, const char *file
);
9615 int error_packet(char *outbuf
, uint8 eclass
, uint32 ecode
, NTSTATUS ntstatus
, int line
, const char *file
);
9616 void reply_nt_error(struct smb_request
*req
, NTSTATUS ntstatus
,
9617 int line
, const char *file
);
9618 void reply_force_nt_error(struct smb_request
*req
, NTSTATUS ntstatus
,
9619 int line
, const char *file
);
9620 void reply_dos_error(struct smb_request
*req
, uint8 eclass
, uint32 ecode
,
9621 int line
, const char *file
);
9622 void reply_both_error(struct smb_request
*req
, uint8 eclass
, uint32 ecode
,
9623 NTSTATUS status
, int line
, const char *file
);
9624 void reply_openerror(struct smb_request
*req
, NTSTATUS status
);
9625 void reply_unix_error(struct smb_request
*req
, uint8 defclass
, uint32 defcode
,
9626 NTSTATUS defstatus
, int line
, const char *file
);
9628 /* The following definitions come from smbd/fake_file.c */
9630 enum FAKE_FILE_TYPE
is_fake_file(const char *fname
);
9631 NTSTATUS
open_fake_file(connection_struct
*conn
,
9632 uint16_t current_vuid
,
9633 enum FAKE_FILE_TYPE fake_file_type
,
9636 files_struct
**result
);
9637 void destroy_fake_file_handle(struct fake_file_handle
**fh
);
9638 NTSTATUS
close_fake_file(files_struct
*fsp
);
9640 /* The following definitions come from smbd/file_access.c */
9642 bool can_access_file_acl(struct connection_struct
*conn
,
9643 const char * fname
, SMB_STRUCT_STAT
*psbuf
,
9644 uint32_t access_mask
);
9645 bool can_delete_file_in_directory(connection_struct
*conn
, const char *fname
);
9646 bool can_access_file_data(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
, uint32 access_mask
);
9647 bool can_write_to_file(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
);
9648 bool directory_has_default_acl(connection_struct
*conn
, const char *fname
);
9650 /* The following definitions come from smbd/fileio.c */
9652 ssize_t
read_file(files_struct
*fsp
,char *data
,SMB_OFF_T pos
,size_t n
);
9653 void trigger_write_time_update(struct files_struct
*fsp
);
9654 ssize_t
write_file(struct smb_request
*req
,
9659 void delete_write_cache(files_struct
*fsp
);
9660 void set_filelen_write_cache(files_struct
*fsp
, SMB_OFF_T file_size
);
9661 ssize_t
flush_write_cache(files_struct
*fsp
, enum flush_reason_enum reason
);
9662 NTSTATUS
sync_file(connection_struct
*conn
, files_struct
*fsp
, bool write_through
);
9663 int fsp_stat(files_struct
*fsp
, SMB_STRUCT_STAT
*pst
);
9665 /* The following definitions come from smbd/filename.c */
9667 NTSTATUS
unix_convert(TALLOC_CTX
*ctx
,
9668 connection_struct
*conn
,
9669 const char *orig_path
,
9670 bool allow_wcard_last_component
,
9671 char **pp_conv_path
,
9672 char **pp_saved_last_component
,
9673 SMB_STRUCT_STAT
*pst
);
9674 NTSTATUS
check_name(connection_struct
*conn
, const char *name
);
9676 /* The following definitions come from smbd/files.c */
9678 NTSTATUS
file_new(connection_struct
*conn
, files_struct
**result
);
9679 void file_close_conn(connection_struct
*conn
);
9680 void file_close_pid(uint16 smbpid
, int vuid
);
9681 void file_init(void);
9682 void file_close_user(int vuid
);
9683 void file_dump_open_table(void);
9684 files_struct
*file_find_fd(int fd
);
9685 files_struct
*file_find_dif(struct file_id id
, unsigned long gen_id
);
9686 files_struct
*file_find_fsp(files_struct
*orig_fsp
);
9687 files_struct
*file_find_di_first(struct file_id id
);
9688 files_struct
*file_find_di_next(files_struct
*start_fsp
);
9689 files_struct
*file_find_print(void);
9690 void file_sync_all(connection_struct
*conn
);
9691 void file_free(files_struct
*fsp
);
9692 files_struct
*file_fnum(uint16 fnum
);
9693 files_struct
*file_fsp(uint16 fid
);
9694 void file_chain_reset(void);
9695 NTSTATUS
dup_file_fsp(files_struct
*fsp
,
9697 uint32 share_access
,
9698 uint32 create_options
,
9699 files_struct
**result
);
9701 /* The following definitions come from smbd/ipc.c */
9703 void send_trans_reply(connection_struct
*conn
,
9704 struct smb_request
*req
,
9705 char *rparam
, int rparam_len
,
9706 char *rdata
, int rdata_len
,
9707 bool buffer_too_large
);
9708 void reply_trans(struct smb_request
*req
);
9709 void reply_transs(struct smb_request
*req
);
9711 /* The following definitions come from smbd/lanman.c */
9713 void api_reply(connection_struct
*conn
, uint16 vuid
,
9714 struct smb_request
*req
,
9715 char *data
, char *params
,
9716 int tdscnt
, int tpscnt
,
9717 int mdrcnt
, int mprcnt
);
9719 /* The following definitions come from smbd/mangle.c */
9721 void mangle_reset_cache(void);
9722 void mangle_change_to_posix(void);
9723 bool mangle_is_mangled(const char *s
, const struct share_params
*p
);
9724 bool mangle_is_8_3(const char *fname
, bool check_case
,
9725 const struct share_params
*p
);
9726 bool mangle_is_8_3_wildcards(const char *fname
, bool check_case
,
9727 const struct share_params
*p
);
9728 bool mangle_must_mangle(const char *fname
,
9729 const struct share_params
*p
);
9730 bool mangle_lookup_name_from_8_3(TALLOC_CTX
*ctx
,
9732 char **out
, /* talloced on the given context. */
9733 const struct share_params
*p
);
9734 bool name_to_8_3(const char *in
,
9737 const struct share_params
*p
);
9739 /* The following definitions come from smbd/mangle_hash.c */
9741 struct mangle_fns
*mangle_hash_init(void);
9743 /* The following definitions come from smbd/mangle_hash2.c */
9745 struct mangle_fns
*mangle_hash2_init(void);
9746 struct mangle_fns
*posix_mangle_init(void);
9748 /* The following definitions come from smbd/map_username.c */
9750 bool map_username(fstring user
);
9752 /* The following definitions come from smbd/message.c */
9754 void reply_sends(struct smb_request
*req
);
9755 void reply_sendstrt(struct smb_request
*req
);
9756 void reply_sendtxt(struct smb_request
*req
);
9757 void reply_sendend(struct smb_request
*req
);
9759 /* The following definitions come from smbd/msdfs.c */
9761 bool is_msdfs_link(connection_struct
*conn
,
9763 SMB_STRUCT_STAT
*sbufp
);
9764 NTSTATUS
get_referred_path(TALLOC_CTX
*ctx
,
9765 const char *dfs_path
,
9766 struct junction_map
*jucn
,
9768 bool *self_referralp
);
9769 int setup_dfs_referral(connection_struct
*orig_conn
,
9770 const char *dfs_path
,
9771 int max_referral_level
,
9772 char **ppdata
, NTSTATUS
*pstatus
);
9773 bool create_junction(TALLOC_CTX
*ctx
,
9774 const char *dfs_path
,
9775 struct junction_map
*jucn
);
9776 bool create_msdfs_link(const struct junction_map
*jucn
,
9778 bool remove_msdfs_link(const struct junction_map
*jucn
);
9779 struct junction_map
*enum_msdfs_links(TALLOC_CTX
*ctx
, size_t *p_num_jn
);
9780 NTSTATUS
resolve_dfspath(TALLOC_CTX
*ctx
,
9781 connection_struct
*conn
,
9783 const char *name_in
,
9784 char **pp_name_out
);
9785 NTSTATUS
resolve_dfspath_wcard(TALLOC_CTX
*ctx
,
9786 connection_struct
*conn
,
9788 const char *name_in
,
9790 bool *ppath_contains_wcard
);
9792 /* The following definitions come from smbd/negprot.c */
9794 void reply_negprot(struct smb_request
*req
);
9796 /* The following definitions come from smbd/notify.c */
9798 void change_notify_reply(connection_struct
*conn
,
9799 const uint8
*request_buf
, uint32 max_param
,
9800 struct notify_change_buf
*notify_buf
);
9801 NTSTATUS
change_notify_create(struct files_struct
*fsp
, uint32 filter
,
9803 NTSTATUS
change_notify_add_request(const struct smb_request
*req
,
9805 uint32 filter
, bool recursive
,
9806 struct files_struct
*fsp
);
9807 void remove_pending_change_notify_requests_by_mid(uint16 mid
);
9808 void remove_pending_change_notify_requests_by_fid(files_struct
*fsp
,
9810 void notify_fname(connection_struct
*conn
, uint32 action
, uint32 filter
,
9812 char *notify_filter_string(TALLOC_CTX
*mem_ctx
, uint32 filter
);
9813 struct sys_notify_context
*sys_notify_context_create(connection_struct
*conn
,
9814 TALLOC_CTX
*mem_ctx
,
9815 struct event_context
*ev
);
9816 NTSTATUS
sys_notify_watch(struct sys_notify_context
*ctx
,
9817 struct notify_entry
*e
,
9818 void (*callback
)(struct sys_notify_context
*ctx
,
9820 struct notify_event
*ev
),
9821 void *private_data
, void *handle
);
9823 /* The following definitions come from smbd/notify_inotify.c */
9825 NTSTATUS
inotify_watch(struct sys_notify_context
*ctx
,
9826 struct notify_entry
*e
,
9827 void (*callback
)(struct sys_notify_context
*ctx
,
9829 struct notify_event
*ev
),
9833 /* The following definitions come from smbd/notify_internal.c */
9835 struct notify_context
*notify_init(TALLOC_CTX
*mem_ctx
, struct server_id server
,
9836 struct messaging_context
*messaging_ctx
,
9837 struct event_context
*ev
,
9838 connection_struct
*conn
);
9839 NTSTATUS
notify_add(struct notify_context
*notify
, struct notify_entry
*e0
,
9840 void (*callback
)(void *, const struct notify_event
*),
9841 void *private_data
);
9842 NTSTATUS
notify_remove(struct notify_context
*notify
, void *private_data
);
9843 void notify_trigger(struct notify_context
*notify
,
9844 uint32_t action
, uint32_t filter
, const char *path
);
9846 /* The following definitions come from smbd/ntquotas.c */
9848 int vfs_get_ntquota(files_struct
*fsp
, enum SMB_QUOTA_TYPE qtype
, DOM_SID
*psid
, SMB_NTQUOTA_STRUCT
*qt
);
9849 int vfs_set_ntquota(files_struct
*fsp
, enum SMB_QUOTA_TYPE qtype
, DOM_SID
*psid
, SMB_NTQUOTA_STRUCT
*qt
);
9850 int vfs_get_user_ntquota_list(files_struct
*fsp
, SMB_NTQUOTA_LIST
**qt_list
);
9851 void *init_quota_handle(TALLOC_CTX
*mem_ctx
);
9853 /* The following definitions come from smbd/nttrans.c */
9855 void send_nt_replies(connection_struct
*conn
,
9856 struct smb_request
*req
, NTSTATUS nt_error
,
9857 char *params
, int paramsize
,
9858 char *pdata
, int datasize
);
9859 bool is_ntfs_stream_name(const char *fname
);
9860 void reply_ntcreate_and_X(struct smb_request
*req
);
9861 void reply_ntcancel(struct smb_request
*req
);
9862 void reply_ntrename(struct smb_request
*req
);
9863 void reply_nttrans(struct smb_request
*req
);
9864 void reply_nttranss(struct smb_request
*req
);
9866 /* The following definitions come from smbd/open.c */
9868 NTSTATUS
fd_close(files_struct
*fsp
);
9869 bool map_open_params_to_ntcreate(const char *fname
, int deny_mode
, int open_func
,
9870 uint32
*paccess_mask
,
9871 uint32
*pshare_mode
,
9872 uint32
*pcreate_disposition
,
9873 uint32
*pcreate_options
);
9874 NTSTATUS
open_file_ntcreate(connection_struct
*conn
,
9875 struct smb_request
*req
,
9877 SMB_STRUCT_STAT
*psbuf
,
9878 uint32 access_mask
, /* access bits (FILE_READ_DATA etc.) */
9879 uint32 share_access
, /* share constants (FILE_SHARE_READ etc) */
9880 uint32 create_disposition
, /* FILE_OPEN_IF etc. */
9881 uint32 create_options
, /* options such as delete on close. */
9882 uint32 new_dos_attributes
, /* attributes used for new file. */
9883 int oplock_request
, /* internal Samba oplock codes. */
9884 /* Information (FILE_EXISTS etc.) */
9886 files_struct
**result
);
9887 NTSTATUS
open_file_fchmod(connection_struct
*conn
, const char *fname
,
9888 SMB_STRUCT_STAT
*psbuf
, files_struct
**result
);
9889 NTSTATUS
close_file_fchmod(files_struct
*fsp
);
9890 NTSTATUS
open_directory(connection_struct
*conn
,
9891 struct smb_request
*req
,
9893 SMB_STRUCT_STAT
*psbuf
,
9895 uint32 share_access
,
9896 uint32 create_disposition
,
9897 uint32 create_options
,
9898 uint32 file_attributes
,
9900 files_struct
**result
);
9901 NTSTATUS
create_directory(connection_struct
*conn
, struct smb_request
*req
, const char *directory
);
9902 void msg_file_was_renamed(struct messaging_context
*msg
,
9905 struct server_id server_id
,
9907 NTSTATUS
create_file_unixpath(connection_struct
*conn
,
9908 struct smb_request
*req
,
9910 uint32_t access_mask
,
9911 uint32_t share_access
,
9912 uint32_t create_disposition
,
9913 uint32_t create_options
,
9914 uint32_t file_attributes
,
9915 uint32_t oplock_request
,
9916 SMB_BIG_UINT allocation_size
,
9917 struct security_descriptor
*sd
,
9918 struct ea_list
*ea_list
,
9920 files_struct
**result
,
9922 SMB_STRUCT_STAT
*psbuf
);
9923 NTSTATUS
create_file(connection_struct
*conn
,
9924 struct smb_request
*req
,
9925 uint16_t root_dir_fid
,
9927 uint32_t access_mask
,
9928 uint32_t share_access
,
9929 uint32_t create_disposition
,
9930 uint32_t create_options
,
9931 uint32_t file_attributes
,
9932 uint32_t oplock_request
,
9933 SMB_BIG_UINT allocation_size
,
9934 struct security_descriptor
*sd
,
9935 struct ea_list
*ea_list
,
9937 files_struct
**result
,
9939 SMB_STRUCT_STAT
*psbuf
);
9941 /* The following definitions come from smbd/oplock.c */
9943 int32
get_number_of_exclusive_open_oplocks(void);
9944 bool oplock_message_waiting(fd_set
*fds
);
9945 void process_kernel_oplocks(struct messaging_context
*msg_ctx
, fd_set
*pfds
);
9946 bool set_file_oplock(files_struct
*fsp
, int oplock_type
);
9947 void release_file_oplock(files_struct
*fsp
);
9948 bool remove_oplock(files_struct
*fsp
);
9949 bool downgrade_oplock(files_struct
*fsp
);
9950 int oplock_notify_fd(void);
9951 void reply_to_oplock_break_requests(files_struct
*fsp
);
9952 void release_level_2_oplocks_on_change(files_struct
*fsp
);
9953 void share_mode_entry_to_message(char *msg
, const struct share_mode_entry
*e
);
9954 void message_to_share_mode_entry(struct share_mode_entry
*e
, char *msg
);
9955 bool init_oplocks(struct messaging_context
*msg_ctx
);
9957 /* The following definitions come from smbd/oplock_irix.c */
9959 struct kernel_oplocks
*irix_init_kernel_oplocks(void) ;
9961 /* The following definitions come from smbd/oplock_linux.c */
9963 void linux_set_lease_capability(void);
9964 int linux_set_lease_sighandler(int fd
);
9965 int linux_setlease(int fd
, int leasetype
);
9966 struct kernel_oplocks
*linux_init_kernel_oplocks(void) ;
9968 /* The following definitions come from smbd/password.c */
9970 user_struct
*get_valid_user_struct(uint16 vuid
);
9971 bool is_partial_auth_vuid(uint16 vuid
);
9972 user_struct
*get_partial_auth_user_struct(uint16 vuid
);
9973 void invalidate_vuid(uint16 vuid
);
9974 void invalidate_all_vuids(void);
9975 int register_initial_vuid(void);
9976 int register_existing_vuid(uint16 vuid
,
9977 auth_serversupplied_info
*server_info
,
9978 DATA_BLOB response_blob
,
9979 const char *smb_name
);
9980 void add_session_user(const char *user
);
9981 void add_session_workgroup(const char *workgroup
);
9982 const char *get_session_workgroup(void);
9983 bool user_in_netgroup(const char *user
, const char *ngname
);
9984 bool user_in_list(const char *user
,const char **list
);
9985 bool authorise_login(int snum
, fstring user
, DATA_BLOB password
,
9988 /* The following definitions come from smbd/pipes.c */
9990 void reply_open_pipe_and_X(connection_struct
*conn
, struct smb_request
*req
);
9991 void reply_pipe_write(struct smb_request
*req
);
9992 void reply_pipe_write_and_X(struct smb_request
*req
);
9993 void reply_pipe_read_and_X(struct smb_request
*req
);
9994 void reply_pipe_close(connection_struct
*conn
, struct smb_request
*req
);
9996 /* The following definitions come from smbd/posix_acls.c */
9998 NTSTATUS
unpack_nt_owners(int snum
, uid_t
*puser
, gid_t
*pgrp
, uint32 security_info_sent
, SEC_DESC
*psd
);
9999 SMB_ACL_T
free_empty_sys_acl(connection_struct
*conn
, SMB_ACL_T the_acl
);
10000 NTSTATUS
posix_fget_nt_acl(struct files_struct
*fsp
, uint32_t security_info
,
10001 SEC_DESC
**ppdesc
);
10002 NTSTATUS
posix_get_nt_acl(struct connection_struct
*conn
, const char *name
,
10003 uint32_t security_info
, SEC_DESC
**ppdesc
);
10004 int try_chown(connection_struct
*conn
, const char *fname
, uid_t uid
, gid_t gid
);
10005 NTSTATUS
set_nt_acl(files_struct
*fsp
, uint32 security_info_sent
, SEC_DESC
*psd
);
10006 int get_acl_group_bits( connection_struct
*conn
, const char *fname
, mode_t
*mode
);
10007 int chmod_acl(connection_struct
*conn
, const char *name
, mode_t mode
);
10008 int inherit_access_posix_acl(connection_struct
*conn
, const char *inherit_from_dir
,
10009 const char *name
, mode_t mode
);
10010 int fchmod_acl(files_struct
*fsp
, mode_t mode
);
10011 bool set_unix_posix_default_acl(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
,
10012 uint16 num_def_acls
, const char *pdata
);
10013 bool set_unix_posix_acl(connection_struct
*conn
, files_struct
*fsp
, const char *fname
, uint16 num_acls
, const char *pdata
);
10014 SEC_DESC
*get_nt_acl_no_snum( TALLOC_CTX
*ctx
, const char *fname
);
10016 /* The following definitions come from smbd/process.c */
10018 bool srv_send_smb(int fd
, char *buffer
, bool do_encrypt
);
10019 int srv_set_message(char *buf
,
10023 void init_smb_request(struct smb_request
*req
,
10024 const uint8
*inbuf
,
10025 size_t unread_bytes
,
10027 void remove_deferred_open_smb_message(uint16 mid
);
10028 void schedule_deferred_open_smb_message(uint16 mid
);
10029 bool open_was_deferred(uint16 mid
);
10030 struct pending_message_list
*get_open_deferred_message(uint16 mid
);
10031 bool push_deferred_smb_message(struct smb_request
*req
,
10032 struct timeval request_time
,
10033 struct timeval timeout
,
10034 char *private_data
, size_t priv_len
);
10035 struct idle_event
*event_add_idle(struct event_context
*event_ctx
,
10036 TALLOC_CTX
*mem_ctx
,
10037 struct timeval interval
,
10039 bool (*handler
)(const struct timeval
*now
,
10040 void *private_data
),
10041 void *private_data
);
10042 NTSTATUS
allow_new_trans(struct trans_state
*list
, int mid
);
10043 void respond_to_all_remaining_local_messages(void);
10044 void reply_outbuf(struct smb_request
*req
, uint8 num_words
, uint32 num_bytes
);
10045 const char *smb_fn_name(int type
);
10046 void add_to_common_flags2(uint32 v
);
10047 void remove_from_common_flags2(uint32 v
);
10048 void construct_reply_common(const char *inbuf
, char *outbuf
);
10049 void chain_reply(struct smb_request
*req
);
10050 void check_reload(time_t t
);
10051 void smbd_process(void);
10053 /* The following definitions come from smbd/quotas.c */
10055 bool disk_quotas(const char *path
, SMB_BIG_UINT
*bsize
, SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
);
10056 bool disk_quotas(const char *path
, SMB_BIG_UINT
*bsize
, SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
);
10057 bool disk_quotas(const char *path
,
10058 SMB_BIG_UINT
*bsize
,
10059 SMB_BIG_UINT
*dfree
,
10060 SMB_BIG_UINT
*dsize
);
10061 bool disk_quotas(const char *path
, SMB_BIG_UINT
*bsize
, SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
);
10062 bool disk_quotas(const char *path
, SMB_BIG_UINT
*bsize
, SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
);
10063 bool disk_quotas(const char *path
, SMB_BIG_UINT
*bsize
, SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
);
10064 bool disk_quotas_vxfs(const char *name
, char *path
, SMB_BIG_UINT
*bsize
, SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
);
10065 bool disk_quotas(const char *path
,SMB_BIG_UINT
*bsize
,SMB_BIG_UINT
*dfree
,SMB_BIG_UINT
*dsize
);
10066 bool disk_quotas(const char *path
,SMB_BIG_UINT
*bsize
,SMB_BIG_UINT
*dfree
,SMB_BIG_UINT
*dsize
);
10068 /* The following definitions come from smbd/reply.c */
10070 NTSTATUS
check_path_syntax(char *path
);
10071 NTSTATUS
check_path_syntax_wcard(char *path
, bool *p_contains_wcard
);
10072 NTSTATUS
check_path_syntax_posix(char *path
);
10073 size_t srvstr_get_path_wcard(TALLOC_CTX
*ctx
,
10081 bool *contains_wcard
);
10082 size_t srvstr_get_path(TALLOC_CTX
*ctx
,
10090 bool check_fsp_open(connection_struct
*conn
, struct smb_request
*req
,
10091 files_struct
*fsp
, struct current_user
*user
);
10092 bool check_fsp(connection_struct
*conn
, struct smb_request
*req
,
10093 files_struct
*fsp
, struct current_user
*user
);
10094 bool fsp_belongs_conn(connection_struct
*conn
, struct smb_request
*req
,
10095 files_struct
*fsp
, struct current_user
*user
);
10096 void reply_special(char *inbuf
);
10097 void reply_tcon(struct smb_request
*req
);
10098 void reply_tcon_and_X(struct smb_request
*req
);
10099 void reply_unknown_new(struct smb_request
*req
, uint8 type
);
10100 void reply_ioctl(struct smb_request
*req
);
10101 void reply_checkpath(struct smb_request
*req
);
10102 void reply_getatr(struct smb_request
*req
);
10103 void reply_setatr(struct smb_request
*req
);
10104 void reply_dskattr(struct smb_request
*req
);
10105 void reply_search(struct smb_request
*req
);
10106 void reply_fclose(struct smb_request
*req
);
10107 void reply_open(struct smb_request
*req
);
10108 void reply_open_and_X(struct smb_request
*req
);
10109 void reply_ulogoffX(struct smb_request
*req
);
10110 void reply_mknew(struct smb_request
*req
);
10111 void reply_ctemp(struct smb_request
*req
);
10112 NTSTATUS
unlink_internals(connection_struct
*conn
, struct smb_request
*req
,
10113 uint32 dirtype
, const char *name_in
, bool has_wild
);
10114 void reply_unlink(struct smb_request
*req
);
10115 void send_file_readbraw(connection_struct
*conn
,
10117 SMB_OFF_T startpos
,
10120 void reply_readbraw(struct smb_request
*req
);
10121 void reply_lockread(struct smb_request
*req
);
10122 void reply_read(struct smb_request
*req
);
10123 void reply_read_and_X(struct smb_request
*req
);
10124 void error_to_writebrawerr(struct smb_request
*req
);
10125 void reply_writebraw(struct smb_request
*req
);
10126 void reply_writeunlock(struct smb_request
*req
);
10127 void reply_write(struct smb_request
*req
);
10128 bool is_valid_writeX_buffer(const uint8_t *inbuf
);
10129 void reply_write_and_X(struct smb_request
*req
);
10130 void reply_lseek(struct smb_request
*req
);
10131 void reply_flush(struct smb_request
*req
);
10132 void reply_exit(struct smb_request
*req
);
10133 void reply_close(struct smb_request
*req
);
10134 void reply_writeclose(struct smb_request
*req
);
10135 void reply_lock(struct smb_request
*req
);
10136 void reply_unlock(struct smb_request
*req
);
10137 void reply_tdis(struct smb_request
*req
);
10138 void reply_echo(struct smb_request
*req
);
10139 void reply_printopen(struct smb_request
*req
);
10140 void reply_printclose(struct smb_request
*req
);
10141 void reply_printqueue(struct smb_request
*req
);
10142 void reply_printwrite(struct smb_request
*req
);
10143 void reply_mkdir(struct smb_request
*req
);
10144 NTSTATUS
rmdir_internals(TALLOC_CTX
*ctx
,
10145 connection_struct
*conn
,
10146 const char *directory
);
10147 void reply_rmdir(struct smb_request
*req
);
10148 NTSTATUS
rename_internals_fsp(connection_struct
*conn
,
10151 const char *newname_last_component
,
10153 bool replace_if_exists
);
10154 NTSTATUS
rename_internals(TALLOC_CTX
*ctx
,
10155 connection_struct
*conn
,
10156 struct smb_request
*req
,
10157 const char *name_in
,
10158 const char *newname_in
,
10160 bool replace_if_exists
,
10162 bool dest_has_wild
,
10163 uint32_t access_mask
);
10164 void reply_mv(struct smb_request
*req
);
10165 NTSTATUS
copy_file(TALLOC_CTX
*ctx
,
10166 connection_struct
*conn
,
10171 bool target_is_directory
);
10172 void reply_copy(struct smb_request
*req
);
10173 uint32
get_lock_pid( char *data
, int data_offset
, bool large_file_format
);
10174 SMB_BIG_UINT
get_lock_count( char *data
, int data_offset
, bool large_file_format
);
10175 SMB_BIG_UINT
get_lock_offset( char *data
, int data_offset
, bool large_file_format
, bool *err
);
10176 void reply_lockingX(struct smb_request
*req
);
10177 void reply_readbmpx(struct smb_request
*req
);
10178 void reply_readbs(struct smb_request
*req
);
10179 void reply_setattrE(struct smb_request
*req
);
10180 void reply_writebmpx(struct smb_request
*req
);
10181 void reply_writebs(struct smb_request
*req
);
10182 void reply_getattrE(struct smb_request
*req
);
10184 /* The following definitions come from smbd/seal.c */
10186 uint16_t srv_enc_ctx(void);
10187 bool is_encrypted_packet(const uint8_t *inbuf
);
10188 void srv_free_enc_buffer(char *buf
);
10189 NTSTATUS
srv_decrypt_buffer(char *buf
);
10190 NTSTATUS
srv_encrypt_buffer(char *buf
, char **buf_out
);
10191 NTSTATUS
srv_request_encryption_setup(connection_struct
*conn
,
10192 unsigned char **ppdata
,
10193 size_t *p_data_size
,
10194 unsigned char **pparam
,
10195 size_t *p_param_size
);
10196 NTSTATUS
srv_encryption_start(connection_struct
*conn
);
10197 void server_encryption_shutdown(void);
10199 /* The following definitions come from smbd/sec_ctx.c */
10201 bool unix_token_equal(const UNIX_USER_TOKEN
*t1
, const UNIX_USER_TOKEN
*t2
);
10202 bool push_sec_ctx(void);
10203 void set_sec_ctx(uid_t uid
, gid_t gid
, int ngroups
, gid_t
*groups
, NT_USER_TOKEN
*token
);
10204 void set_root_sec_ctx(void);
10205 bool pop_sec_ctx(void);
10206 void init_sec_ctx(void);
10208 /* The following definitions come from smbd/server.c */
10210 int smbd_server_fd(void);
10211 int get_client_fd(void);
10212 int client_get_tcp_info(struct sockaddr_in
*server
, struct sockaddr_in
*client
);
10213 struct event_context
*smbd_event_context(void);
10214 struct messaging_context
*smbd_messaging_context(void);
10215 struct memcache
*smbd_memcache(void);
10216 void reload_printers(void);
10217 bool reload_services(bool test
);
10218 void exit_server(const char *const explanation
);
10219 void exit_server_cleanly(const char *const explanation
);
10220 void exit_server_fault(void);
10222 /* The following definitions come from smbd/service.c */
10224 bool set_conn_connectpath(connection_struct
*conn
, const char *connectpath
);
10225 bool set_current_service(connection_struct
*conn
, uint16 flags
, bool do_chdir
);
10226 void load_registry_shares(void);
10227 int add_home_service(const char *service
, const char *username
, const char *homedir
);
10228 int find_service(fstring service
);
10229 connection_struct
*make_connection_with_chdir(const char *service_in
,
10230 DATA_BLOB password
,
10231 const char *dev
, uint16 vuid
,
10233 connection_struct
*make_connection(const char *service_in
, DATA_BLOB password
,
10234 const char *pdev
, uint16 vuid
,
10236 void close_cnum(connection_struct
*conn
, uint16 vuid
);
10238 /* The following definitions come from smbd/session.c */
10240 bool session_init(void);
10241 bool session_claim(user_struct
*vuser
);
10242 void session_yield(user_struct
*vuser
);
10243 int list_sessions(TALLOC_CTX
*mem_ctx
, struct sessionid
**session_list
);
10245 /* The following definitions come from smbd/sesssetup.c */
10247 NTSTATUS
parse_spnego_mechanisms(DATA_BLOB blob_in
,
10248 DATA_BLOB
*pblob_out
,
10249 char **kerb_mechOID
);
10250 void reply_sesssetup_and_X(struct smb_request
*req
);
10252 /* The following definitions come from smbd/share_access.c */
10254 bool token_contains_name_in_list(const char *username
,
10255 const char *domain
,
10256 const char *sharename
,
10257 const struct nt_user_token
*token
,
10258 const char **list
);
10259 bool user_ok_token(const char *username
, const char *domain
,
10260 struct nt_user_token
*token
, int snum
);
10261 bool is_share_read_only_for_token(const char *username
,
10262 const char *domain
,
10263 struct nt_user_token
*token
, int snum
);
10265 /* The following definitions come from smbd/srvstr.c */
10267 size_t srvstr_push_fn(const char *function
, unsigned int line
,
10268 const char *base_ptr
, uint16 smb_flags2
, void *dest
,
10269 const char *src
, int dest_len
, int flags
);
10270 ssize_t
message_push_string(uint8
**outbuf
, const char *str
, int flags
);
10272 /* The following definitions come from smbd/statcache.c */
10274 void stat_cache_add( const char *full_orig_name
,
10275 char *translated_path
,
10276 bool case_sensitive
);
10277 bool stat_cache_lookup(connection_struct
*conn
,
10281 SMB_STRUCT_STAT
*pst
);
10282 void send_stat_cache_delete_message(const char *name
);
10283 void stat_cache_delete(const char *name
);
10284 unsigned int fast_string_hash(TDB_DATA
*key
);
10285 bool reset_stat_cache( void );
10287 /* The following definitions come from smbd/statvfs.c */
10289 int sys_statvfs(const char *path
, vfs_statvfs_struct
*statbuf
);
10291 /* The following definitions come from smbd/trans2.c */
10293 SMB_BIG_UINT
smb_roundup(connection_struct
*conn
, SMB_BIG_UINT val
);
10294 SMB_BIG_UINT
get_allocation_size(connection_struct
*conn
, files_struct
*fsp
, const SMB_STRUCT_STAT
*sbuf
);
10295 NTSTATUS
get_ea_value(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
10296 files_struct
*fsp
, const char *fname
,
10297 const char *ea_name
, struct ea_struct
*pea
);
10298 NTSTATUS
get_ea_names_from_file(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
10299 files_struct
*fsp
, const char *fname
,
10300 char ***pnames
, size_t *pnum_names
);
10301 NTSTATUS
set_ea(connection_struct
*conn
, files_struct
*fsp
, const char *fname
, struct ea_list
*ea_list
);
10302 struct ea_list
*read_ea_list_entry(TALLOC_CTX
*ctx
, const char *pdata
, size_t data_size
, size_t *pbytes_used
);
10303 void send_trans2_replies(connection_struct
*conn
,
10304 struct smb_request
*req
,
10305 const char *params
,
10309 int max_data_bytes
);
10310 unsigned char *create_volume_objectid(connection_struct
*conn
, unsigned char objid
[16]);
10311 NTSTATUS
hardlink_internals(TALLOC_CTX
*ctx
,
10312 connection_struct
*conn
,
10313 const char *oldname_in
,
10314 const char *newname_in
);
10315 NTSTATUS
smb_set_file_time(connection_struct
*conn
,
10318 const SMB_STRUCT_STAT
*psbuf
,
10319 struct timespec ts
[2],
10320 bool setting_write_time
);
10321 void reply_findclose(struct smb_request
*req
);
10322 void reply_findnclose(struct smb_request
*req
);
10323 void reply_trans2(struct smb_request
*req
);
10324 void reply_transs2(struct smb_request
*req
);
10326 /* The following definitions come from smbd/uid.c */
10328 bool change_to_guest(void);
10329 void conn_clear_vuid_cache(connection_struct
*conn
, uint16_t vuid
);
10330 bool change_to_user(connection_struct
*conn
, uint16 vuid
);
10331 bool change_to_root_user(void);
10332 bool become_authenticated_pipe_user(pipes_struct
*p
);
10333 bool unbecome_authenticated_pipe_user(void);
10334 void become_root(void);
10335 void unbecome_root(void);
10336 bool become_user(connection_struct
*conn
, uint16 vuid
);
10337 bool unbecome_user(void);
10339 /* The following definitions come from smbd/utmp.c */
10341 void sys_utmp_claim(const char *username
, const char *hostname
,
10342 const char *ip_addr_str
,
10343 const char *id_str
, int id_num
);
10344 void sys_utmp_yield(const char *username
, const char *hostname
,
10345 const char *ip_addr_str
,
10346 const char *id_str
, int id_num
);
10347 void sys_utmp_yield(const char *username
, const char *hostname
,
10348 const char *ip_addr_str
,
10349 const char *id_str
, int id_num
);
10350 void sys_utmp_claim(const char *username
, const char *hostname
,
10351 const char *ip_addr_str
,
10352 const char *id_str
, int id_num
);
10354 /* The following definitions come from smbd/vfs.c */
10356 NTSTATUS
smb_register_vfs(int version
, const char *name
, const vfs_op_tuple
*vfs_op_tuples
);
10357 bool vfs_init_custom(connection_struct
*conn
, const char *vfs_object
);
10358 void *vfs_add_fsp_extension_notype(vfs_handle_struct
*handle
, files_struct
*fsp
, size_t ext_size
);
10359 void vfs_remove_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
10360 void *vfs_memctx_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
10361 void *vfs_fetch_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
10362 bool smbd_vfs_init(connection_struct
*conn
);
10363 bool vfs_directory_exist(connection_struct
*conn
, const char *dname
, SMB_STRUCT_STAT
*st
);
10364 bool vfs_object_exist(connection_struct
*conn
,const char *fname
,SMB_STRUCT_STAT
*sbuf
);
10365 bool vfs_file_exist(connection_struct
*conn
, const char *fname
,SMB_STRUCT_STAT
*sbuf
);
10366 ssize_t
vfs_read_data(files_struct
*fsp
, char *buf
, size_t byte_count
);
10367 ssize_t
vfs_pread_data(files_struct
*fsp
, char *buf
,
10368 size_t byte_count
, SMB_OFF_T offset
);
10369 ssize_t
vfs_write_data(struct smb_request
*req
,
10371 const char *buffer
,
10373 ssize_t
vfs_pwrite_data(struct smb_request
*req
,
10375 const char *buffer
,
10378 int vfs_allocate_file_space(files_struct
*fsp
, SMB_BIG_UINT len
);
10379 int vfs_set_filelen(files_struct
*fsp
, SMB_OFF_T len
);
10380 int vfs_fill_sparse(files_struct
*fsp
, SMB_OFF_T len
);
10381 SMB_OFF_T
vfs_transfer_file(files_struct
*in
, files_struct
*out
, SMB_OFF_T n
);
10382 char *vfs_readdirname(connection_struct
*conn
, void *p
);
10383 int vfs_ChDir(connection_struct
*conn
, const char *path
);
10384 char *vfs_GetWd(TALLOC_CTX
*ctx
, connection_struct
*conn
);
10385 NTSTATUS
check_reduced_name(connection_struct
*conn
, const char *fname
);
10387 /* The following definitions come from torture/denytest.c */
10389 bool torture_denytest1(int dummy
);
10390 bool torture_denytest2(int dummy
);
10392 /* The following definitions come from torture/mangle_test.c */
10394 bool torture_mangle(int dummy
);
10396 /* The following definitions come from torture/nbio.c */
10398 double nbio_total(void);
10399 void nb_alarm(int ignore
);
10400 void nbio_shmem(int n
);
10401 void nb_setup(struct cli_state
*cli
);
10402 void nb_unlink(const char *fname
);
10403 void nb_createx(const char *fname
,
10404 unsigned create_options
, unsigned create_disposition
, int handle
);
10405 void nb_writex(int handle
, int offset
, int size
, int ret_size
);
10406 void nb_readx(int handle
, int offset
, int size
, int ret_size
);
10407 void nb_close(int handle
);
10408 void nb_rmdir(const char *fname
);
10409 void nb_rename(const char *oldname
, const char *newname
);
10410 void nb_qpathinfo(const char *fname
);
10411 void nb_qfileinfo(int fnum
);
10412 void nb_qfsinfo(int level
);
10413 void nb_findfirst(const char *mask
);
10414 void nb_flush(int fnum
);
10415 void nb_deltree(const char *dname
);
10416 void nb_cleanup(void);
10418 /* The following definitions come from torture/scanner.c */
10420 bool torture_trans2_scan(int dummy
);
10421 bool torture_nttrans_scan(int dummy
);
10423 /* The following definitions come from torture/torture.c */
10425 void start_timer(void);
10426 double end_timer(void);
10427 void *shm_setup(int size
);
10428 bool smbcli_parse_unc(const char *unc_name
, TALLOC_CTX
*mem_ctx
,
10429 char **hostname
, char **sharename
);
10430 void torture_open_connection_free_unclist(char **unc_list
);
10431 bool torture_open_connection(struct cli_state
**c
, int conn_index
);
10432 bool torture_cli_session_setup2(struct cli_state
*cli
, uint16
*new_vuid
);
10433 bool torture_close_connection(struct cli_state
*c
);
10434 bool torture_ioctl_test(int dummy
);
10435 bool torture_chkpath_test(int dummy
);
10437 /* The following definitions come from torture/utable.c */
10439 bool torture_utable(int dummy
);
10440 bool torture_casetable(int dummy
);
10442 /* The following definitions come from utils/passwd_util.c */
10444 char *stdin_new_passwd( void);
10445 char *get_pass( const char *prompt
, bool stdin_get
);
10447 /* The following definitions come from winbindd/idmap.c */
10449 bool idmap_is_offline(void);
10450 NTSTATUS
smb_register_idmap(int version
, const char *name
,
10451 struct idmap_methods
*methods
);
10452 NTSTATUS
smb_register_idmap_alloc(int version
, const char *name
,
10453 struct idmap_alloc_methods
*methods
);
10454 NTSTATUS
idmap_close(void);
10455 NTSTATUS
idmap_init_cache(void);
10456 NTSTATUS
idmap_init(void);
10457 NTSTATUS
idmap_allocate_uid(struct unixid
*id
);
10458 NTSTATUS
idmap_allocate_gid(struct unixid
*id
);
10459 NTSTATUS
idmap_set_uid_hwm(struct unixid
*id
);
10460 NTSTATUS
idmap_set_gid_hwm(struct unixid
*id
);
10461 NTSTATUS
idmap_unixids_to_sids(struct id_map
**ids
);
10462 NTSTATUS
idmap_sids_to_unixids(struct id_map
**ids
);
10463 NTSTATUS
idmap_set_mapping(const struct id_map
*id
);
10464 char *idmap_fetch_secret(const char *backend
, bool alloc
,
10465 const char *domain
, const char *identity
);
10467 /* The following definitions come from winbindd/idmap_cache.c */
10469 struct idmap_cache_ctx
*idmap_cache_init(TALLOC_CTX
*memctx
);
10470 NTSTATUS
idmap_cache_set(struct idmap_cache_ctx
*cache
, const struct id_map
*id
);
10471 NTSTATUS
idmap_cache_set_negative_sid(struct idmap_cache_ctx
*cache
, const struct id_map
*id
);
10472 NTSTATUS
idmap_cache_set_negative_id(struct idmap_cache_ctx
*cache
, const struct id_map
*id
);
10473 NTSTATUS
idmap_cache_map_sid(struct idmap_cache_ctx
*cache
, struct id_map
*id
);
10474 NTSTATUS
idmap_cache_map_id(struct idmap_cache_ctx
*cache
, struct id_map
*id
);
10476 /* The following definitions come from winbindd/idmap_nss.c */
10478 NTSTATUS
idmap_nss_init(void);
10480 /* The following definitions come from winbindd/idmap_passdb.c */
10482 NTSTATUS
idmap_passdb_init(void);
10484 /* The following definitions come from winbindd/idmap_tdb.c */
10486 bool idmap_tdb_tdb_close(TDB_CONTEXT
*tdbctx
);
10487 NTSTATUS
idmap_alloc_tdb_init(void);
10488 NTSTATUS
idmap_tdb_init(void);
10490 /* The following definitions come from winbindd/idmap_util.c */
10492 NTSTATUS
idmap_uid_to_sid(DOM_SID
*sid
, uid_t uid
);
10493 NTSTATUS
idmap_gid_to_sid(DOM_SID
*sid
, gid_t gid
);
10494 NTSTATUS
idmap_sid_to_uid(DOM_SID
*sid
, uid_t
*uid
);
10495 NTSTATUS
idmap_sid_to_gid(DOM_SID
*sid
, gid_t
*gid
);
10497 /* The following definitions come from winbindd/nss_info.c */
10500 /* The following definitions come from winbindd/nss_info_template.c */
10502 NTSTATUS
nss_info_template_init( void );
10504 #endif /* _PROTO_H_ */