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