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