net: Use samba default command line arguments.
[samba.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 #include "lib/netapi/netapi.h"
26 #include "libnet/libnet.h"
27
28 struct net_context {
29         const char *opt_requester_name;
30         const char *opt_host;
31         int opt_long_list_entries;
32         const char *opt_workgroup;
33         int opt_reboot;
34         int opt_force;
35         int opt_stdin;
36         int opt_port;
37         int opt_verbose;
38         int opt_maxusers;
39         const char *opt_comment;
40         const char *opt_container;
41         int opt_flags;
42         int opt_timeout;
43         int opt_request_timeout;
44         const char *opt_target_workgroup;
45         int opt_localgroup;
46         int opt_domaingroup;
47         int do_talloc_report;
48         const char *opt_newntname;
49         int opt_rid;
50         int opt_acls;
51         int opt_attrs;
52         int opt_timestamps;
53         const char *opt_exclude;
54         const char *opt_destination;
55         int opt_testmode;
56         int opt_force_full_repl;
57         int opt_single_obj_repl;
58         int opt_clean_old_entries;
59
60         int opt_have_ip;
61         struct sockaddr_storage opt_dest_ip;
62         struct libnetapi_ctx *netapi_ctx;
63         struct user_auth_info *auth_info;
64
65         bool display_usage;
66         void *private_data;
67 };
68
69 struct net_dc_info {
70         bool is_dc;
71         bool is_pdc;
72         bool is_ad;
73         bool is_mixed_mode;
74         const char *netbios_domain_name;
75         const char *dns_domain_name;
76         const char *forest_name;
77 };
78
79 #define NET_TRANSPORT_LOCAL 0x01
80 #define NET_TRANSPORT_RAP   0x02
81 #define NET_TRANSPORT_RPC   0x04
82 #define NET_TRANSPORT_ADS   0x08
83
84 struct functable {
85         const char *funcname;
86         int (*fn)(struct net_context *c, int argc, const char **argv);
87         int valid_transports;
88         const char *description;
89         const char *usage;
90 };
91
92 typedef NTSTATUS (*rpc_command_fn)(struct net_context *c,
93                                 const DOM_SID *,
94                                 const char *,
95                                 struct cli_state *cli,
96                                 struct rpc_pipe_client *,
97                                 TALLOC_CTX *,
98                                 int,
99                                 const char **);
100
101 typedef struct copy_clistate {
102         TALLOC_CTX *mem_ctx;
103         struct cli_state *cli_share_src;
104         struct cli_state *cli_share_dst;
105         char *cwd;
106         uint16 attribute;
107         struct net_context *c;
108 }copy_clistate;
109
110 struct rpc_sh_ctx {
111         struct cli_state *cli;
112
113         DOM_SID *domain_sid;
114         const char *domain_name;
115
116         const char *whoami;
117         const char *thiscmd;
118         struct rpc_sh_cmd *cmds;
119         struct rpc_sh_ctx *parent;
120 };
121
122 struct rpc_sh_cmd {
123         const char *name;
124         struct rpc_sh_cmd *(*sub)(struct net_context *c,
125                                   TALLOC_CTX *mem_ctx,
126                                   struct rpc_sh_ctx *ctx);
127         const struct ndr_syntax_id *interface;
128         NTSTATUS (*fn)(struct net_context *c, TALLOC_CTX *mem_ctx,
129                        struct rpc_sh_ctx *ctx,
130                        struct rpc_pipe_client *pipe_hnd,
131                        int argc, const char **argv);
132         const char *help;
133 };
134
135 enum netdom_domain_t { ND_TYPE_NT4, ND_TYPE_AD };
136
137 /* INCLUDE FILES */
138
139 #include "utils/net_proto.h"
140 #include "utils/net_help_common.h"
141
142 /* MACROS & DEFINES */
143
144 #define NET_FLAGS_MASTER                        0x00000001
145 #define NET_FLAGS_DMB                           0x00000002
146 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE      0x00000004      /* Would it be insane to set 'localhost'
147                                                                    as the default remote host for this
148                                                                    operation?  For example, localhost
149                                                                    is insane for a 'join' operation.  */
150 #define NET_FLAGS_PDC                           0x00000008      /* PDC only */
151 #define NET_FLAGS_ANONYMOUS                     0x00000010      /* use an anonymous connection */
152 #define NET_FLAGS_NO_PIPE                       0x00000020      /* don't open an RPC pipe */
153 #define NET_FLAGS_SIGN                          0x00000040      /* sign RPC connection */
154 #define NET_FLAGS_SEAL                          0x00000080      /* seal RPC connection */
155
156 /* net share operation modes */
157 #define NET_MODE_SHARE_MIGRATE 1
158