dc4b94f546a432f48dc74951374fb38f6efa868a
[metze/samba/wip.git] / source3 / utils / net.h
1 /*
2    Samba Unix/Linux SMB client library
3    Distributed SMB/CIFS Server Management Utility
4    Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
5
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.
10
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.
15
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/>.  */
18
19 /*
20  * A function of this type is passed to the '
21  * run_rpc_command' wrapper.  Must go before the net_proto.h
22  * include
23  */
24
25 struct cli_state;
26 struct rpc_pipe_client;
27
28 #include "../librpc/gen_ndr/lsa.h"
29
30 #include "intl.h"
31 #ifdef HAVE_LIBINTL_H
32 #include <libintl.h>
33 #endif
34
35 #if defined(HAVE_GETTEXT) && !defined(__LCLINT__)
36 #define _(foo) gettext(foo)
37 #else
38 #define _(foo) foo
39 #endif
40
41 #define MODULE_NAME "net"
42
43 struct net_context {
44         const char *opt_requester_name;
45         const char *opt_host;
46         const char *opt_password;
47         const char *opt_user_name;
48         bool opt_user_specified;
49         const char *opt_workgroup;
50         int opt_long_list_entries;
51         int opt_reboot;
52         int opt_force;
53         int opt_stdin;
54         int opt_port;
55         int opt_verbose;
56         int opt_maxusers;
57         const char *opt_comment;
58         const char *opt_container;
59         int opt_flags;
60         int opt_timeout;
61         int opt_request_timeout;
62         const char *opt_target_workgroup;
63         int opt_machine_pass;
64         int opt_localgroup;
65         int opt_domaingroup;
66         int do_talloc_report;
67         const char *opt_newntname;
68         int opt_rid;
69         int opt_acls;
70         int opt_attrs;
71         int opt_timestamps;
72         const char *opt_exclude;
73         const char *opt_destination;
74         int opt_testmode;
75         int opt_kerberos;
76         int opt_force_full_repl;
77         int opt_ccache;
78         int opt_single_obj_repl;
79         int opt_clean_old_entries;
80         const char *opt_db;
81         int opt_lock;
82         int opt_auto;
83         int opt_repair;
84         int opt_reg_version;
85         const char *opt_output;
86         int opt_wipe;
87         const char *opt_precheck;
88         int opt_no_dns_updates;
89         int opt_keep_account;
90         int opt_json;
91
92         int opt_have_ip;
93         struct sockaddr_storage opt_dest_ip;
94         bool smb_encrypt;
95         struct libnetapi_ctx *netapi_ctx;
96         struct messaging_context *msg_ctx;
97         struct netlogon_creds_cli_context *netlogon_creds;
98
99         bool display_usage;
100         void *private_data;
101 };
102
103 struct net_dc_info {
104         bool is_dc;
105         bool is_pdc;
106         bool is_ad;
107         bool is_mixed_mode;
108         const char *netbios_domain_name;
109         const char *dns_domain_name;
110         const char *forest_name;
111 };
112
113 #define NET_TRANSPORT_LOCAL 0x01
114 #define NET_TRANSPORT_RAP   0x02
115 #define NET_TRANSPORT_RPC   0x04
116 #define NET_TRANSPORT_ADS   0x08
117
118 struct functable {
119         const char *funcname;
120         int (*fn)(struct net_context *c, int argc, const char **argv);
121         int valid_transports;
122         const char *description;
123         const char *usage;
124 };
125
126 typedef NTSTATUS (*rpc_command_fn)(struct net_context *c,
127                                 const struct dom_sid *,
128                                 const char *,
129                                 struct cli_state *cli,
130                                 struct rpc_pipe_client *,
131                                 TALLOC_CTX *,
132                                 int,
133                                 const char **);
134
135 typedef struct copy_clistate {
136         TALLOC_CTX *mem_ctx;
137         struct cli_state *cli_share_src;
138         struct cli_state *cli_share_dst;
139         char *cwd;
140         uint16_t attribute;
141         struct net_context *c;
142 }copy_clistate;
143
144 struct rpc_sh_ctx {
145         struct cli_state *cli;
146
147         struct dom_sid *domain_sid;
148         const char *domain_name;
149
150         const char *whoami;
151         const char *thiscmd;
152         struct rpc_sh_cmd *cmds;
153         struct rpc_sh_ctx *parent;
154 };
155
156 struct rpc_sh_cmd {
157         const char *name;
158         struct rpc_sh_cmd *(*sub)(struct net_context *c,
159                                   TALLOC_CTX *mem_ctx,
160                                   struct rpc_sh_ctx *ctx);
161         const struct ndr_interface_table *table;
162         NTSTATUS (*fn)(struct net_context *c, TALLOC_CTX *mem_ctx,
163                        struct rpc_sh_ctx *ctx,
164                        struct rpc_pipe_client *pipe_hnd,
165                        int argc, const char **argv);
166         const char *help;
167 };
168
169 enum netdom_domain_t { ND_TYPE_NT4, ND_TYPE_AD };
170
171 /* INCLUDE FILES */
172
173 #include "utils/net_proto.h"
174 #include "utils/net_help_common.h"
175
176 /* MACROS & DEFINES */
177
178 #define NET_FLAGS_MASTER                        0x00000001
179 #define NET_FLAGS_DMB                           0x00000002
180 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE      0x00000004      /* Would it be insane to set 'localhost'
181                                                                    as the default remote host for this
182                                                                    operation?  For example, localhost
183                                                                    is insane for a 'join' operation.  */
184 #define NET_FLAGS_PDC                           0x00000008      /* PDC only */
185 #define NET_FLAGS_ANONYMOUS                     0x00000010      /* use an anonymous connection */
186 #define NET_FLAGS_NO_PIPE                       0x00000020      /* don't open an RPC pipe */
187 #define NET_FLAGS_SIGN                          0x00000040      /* sign RPC connection */
188 #define NET_FLAGS_SEAL                          0x00000080      /* seal RPC connection */
189 #define NET_FLAGS_TCP                           0x00000100      /* use ncacn_ip_tcp */
190 #define NET_FLAGS_EXPECT_FALLBACK               0x00000200      /* the caller will fallback */
191
192 /* net share operation modes */
193 #define NET_MODE_SHARE_MIGRATE 1
194