2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "librpc/gen_ndr/netlogon.h"
22 struct libnet_SamSync_state
{
23 struct libnet_context
*machine_net_ctx
;
24 struct dcerpc_pipe
*netlogon_pipe
;
25 const char *domain_name
;
26 const struct dom_sid
*domain_sid
;
28 struct GUID
*domain_guid
;
31 /* struct and enum for doing a remote domain vampire dump */
32 struct libnet_SamSync
{
34 const char *binding_string
;
35 NTSTATUS (*init_fn
)(TALLOC_CTX
*mem_ctx
,
37 struct libnet_SamSync_state
*samsync_state
,
39 NTSTATUS (*delta_fn
)(TALLOC_CTX
*mem_ctx
,
41 enum netr_SamDatabaseID database
,
42 struct netr_DELTA_ENUM
*delta
,
45 struct cli_credentials
*machine_account
;
48 const char *error_string
;
52 struct libnet_SamDump
{
54 const char *binding_string
;
55 struct cli_credentials
*machine_account
;
58 const char *error_string
;
62 struct libnet_SamDump_keytab
{
64 const char *binding_string
;
65 const char *keytab_name
;
66 struct cli_credentials
*machine_account
;
69 const char *error_string
;
73 struct libnet_samsync_ldb
{
75 const char *binding_string
;
76 struct cli_credentials
*machine_account
;
77 struct auth_session_info
*session_info
;
80 const char *error_string
;