2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
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 * A function of this type is passed to the '
21 * run_rpc_command' wrapper. Must go before the net_proto.h
27 #include "../librpc/gen_ndr/lsa.h"
34 #if defined(HAVE_GETTEXT) && !defined(__LCLINT__)
35 #define _(foo) gettext(foo)
40 #define MODULE_NAME "net"
43 const char *opt_requester_name
;
45 const char *opt_password
;
46 const char *opt_user_name
;
47 bool opt_user_specified
;
48 const char *opt_workgroup
;
49 int opt_long_list_entries
;
56 const char *opt_comment
;
57 const char *opt_container
;
60 int opt_request_timeout
;
61 const char *opt_target_workgroup
;
66 const char *opt_newntname
;
71 const char *opt_exclude
;
72 const char *opt_destination
;
75 int opt_force_full_repl
;
77 int opt_single_obj_repl
;
78 int opt_clean_old_entries
;
84 const char *opt_output
;
86 const char *opt_precheck
;
87 int opt_no_dns_updates
;
90 int opt_continue_on_error
;
92 int opt_follow_symlink
;
94 const char *opt_witness_registration
;
95 const char *opt_witness_net_name
;
96 const char *opt_witness_share_name
;
97 const char *opt_witness_ip_address
;
98 const char *opt_witness_client_computer_name
;
99 int opt_witness_apply_to_all
;
100 const char *opt_witness_new_ip
;
101 int opt_witness_new_node
;
102 const char *opt_witness_forced_response
;
105 struct sockaddr_storage opt_dest_ip
;
107 struct libnetapi_ctx
*netapi_ctx
;
108 struct messaging_context
*msg_ctx
;
109 struct netlogon_creds_cli_context
*netlogon_creds
;
110 struct cli_credentials
*creds
;
111 struct loadparm_context
*lp_ctx
;
122 const char *netbios_domain_name
;
123 const char *dns_domain_name
;
124 const char *forest_name
;
127 #define NET_TRANSPORT_LOCAL 0x01
128 #define NET_TRANSPORT_RAP 0x02
129 #define NET_TRANSPORT_RPC 0x04
130 #define NET_TRANSPORT_ADS 0x08
133 const char *funcname
;
134 int (*fn
)(struct net_context
*c
, int argc
, const char **argv
);
135 int valid_transports
;
136 const char *description
;
140 typedef NTSTATUS (*rpc_command_fn
)(struct net_context
*c
,
141 const struct dom_sid
*,
143 struct cli_state
*cli
,
144 struct rpc_pipe_client
*,
149 typedef struct copy_clistate
{
151 struct cli_state
*cli_share_src
;
152 struct cli_state
*cli_share_dst
;
155 struct net_context
*c
;
159 struct cli_state
*cli
;
161 struct dom_sid
*domain_sid
;
162 const char *domain_name
;
166 struct rpc_sh_cmd
*cmds
;
167 struct rpc_sh_ctx
*parent
;
172 struct rpc_sh_cmd
*(*sub
)(struct net_context
*c
,
174 struct rpc_sh_ctx
*ctx
);
175 const struct ndr_interface_table
*table
;
176 NTSTATUS (*fn
)(struct net_context
*c
, TALLOC_CTX
*mem_ctx
,
177 struct rpc_sh_ctx
*ctx
,
178 struct rpc_pipe_client
*pipe_hnd
,
179 int argc
, const char **argv
);
183 enum netdom_domain_t
{ ND_TYPE_NT4
, ND_TYPE_AD
};
187 #include "utils/net_proto.h"
188 #include "utils/net_help_common.h"
190 /* MACROS & DEFINES */
192 #define NET_FLAGS_MASTER 0x00000001
193 #define NET_FLAGS_DMB 0x00000002
194 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE 0x00000004 /* Would it be insane to set 'localhost'
195 as the default remote host for this
196 operation? For example, localhost
197 is insane for a 'join' operation. */
198 #define NET_FLAGS_PDC 0x00000008 /* PDC only */
199 #define NET_FLAGS_ANONYMOUS 0x00000010 /* use an anonymous connection */
200 #define NET_FLAGS_NO_PIPE 0x00000020 /* don't open an RPC pipe */
201 #define NET_FLAGS_SIGN 0x00000040 /* sign RPC connection */
202 #define NET_FLAGS_SEAL 0x00000080 /* seal RPC connection */
203 #define NET_FLAGS_TCP 0x00000100 /* use ncacn_ip_tcp */
204 #define NET_FLAGS_EXPECT_FALLBACK 0x00000200 /* the caller will fallback */
206 /* net share operation modes */
207 #define NET_MODE_SHARE_MIGRATE 1