net: Split out common help functions.
[Samba.git] / source / utils / net.h
blobf40222ed71139a4eadf6bdb5260c27867067643a
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 "lib/netapi/netapi.h"
27 typedef NTSTATUS (*rpc_command_fn)(struct net_context *c,
28 const DOM_SID *,
29 const char *,
30 struct cli_state *cli,
31 struct rpc_pipe_client *,
32 TALLOC_CTX *,
33 int,
34 const char **);
36 typedef struct copy_clistate {
37 TALLOC_CTX *mem_ctx;
38 struct cli_state *cli_share_src;
39 struct cli_state *cli_share_dst;
40 char *cwd;
41 uint16 attribute;
42 struct net_context *c;
43 }copy_clistate;
45 struct rpc_sh_ctx {
46 struct cli_state *cli;
48 DOM_SID *domain_sid;
49 const char *domain_name;
51 const char *whoami;
52 const char *thiscmd;
53 struct rpc_sh_cmd *cmds;
54 struct rpc_sh_ctx *parent;
57 struct rpc_sh_cmd {
58 const char *name;
59 struct rpc_sh_cmd *(*sub)(struct net_context *c,
60 TALLOC_CTX *mem_ctx,
61 struct rpc_sh_ctx *ctx);
62 int pipe_idx;
63 NTSTATUS (*fn)(struct net_context *c, TALLOC_CTX *mem_ctx,
64 struct rpc_sh_ctx *ctx,
65 struct rpc_pipe_client *pipe_hnd,
66 int argc, const char **argv);
67 const char *help;
70 enum netdom_domain_t { ND_TYPE_NT4, ND_TYPE_AD };
72 struct net_context {
73 const char *opt_requester_name;
74 const char *opt_host;
75 const char *opt_password;
76 const char *opt_user_name;
77 bool opt_user_specified;
78 const char *opt_workgroup;
79 int opt_long_list_entries;
80 int opt_reboot;
81 int opt_force;
82 int opt_stdin;
83 int opt_port;
84 int opt_verbose;
85 int opt_maxusers;
86 const char *opt_comment;
87 const char *opt_container;
88 int opt_flags;
89 int opt_timeout;
90 const char *opt_target_workgroup;
91 int opt_machine_pass;
92 int opt_localgroup;
93 int opt_domaingroup;
94 int do_talloc_report;
95 const char *opt_newntname;
96 int opt_rid;
97 int opt_acls;
98 int opt_attrs;
99 int opt_timestamps;
100 const char *opt_exclude;
101 const char *opt_destination;
102 int opt_testmode;
104 int opt_have_ip;
105 struct sockaddr_storage opt_dest_ip;
106 bool smb_encrypt;
107 struct libnetapi_ctx *netapi_ctx;
109 bool AllowDebugChange;
110 const char *share_type[];
113 /* INCLUDE FILES */
115 #include "utils/net_proto.h"
116 #include "utils/net_help_common.h"
118 /* MACROS & DEFINES */
120 #define NET_FLAGS_MASTER 0x00000001
121 #define NET_FLAGS_DMB 0x00000002
122 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE 0x00000004 /* Would it be insane to set 'localhost'
123 as the default remote host for this
124 operation? For example, localhost
125 is insane for a 'join' operation. */
126 #define NET_FLAGS_PDC 0x00000008 /* PDC only */
127 #define NET_FLAGS_ANONYMOUS 0x00000010 /* use an anonymous connection */
128 #define NET_FLAGS_NO_PIPE 0x00000020 /* don't open an RPC pipe */
130 /* net share operation modes */
131 #define NET_MODE_SHARE_MIGRATE 1
133 /* Structure for mapping accounts to groups */
134 /* Array element is the group rid */
135 typedef struct _groupmap {
136 uint32 rid;
137 uint32 gidNumber;
138 fstring sambaSID;
139 fstring group_dn;
140 } GROUPMAP;
142 typedef struct _accountmap {
143 uint32 rid;
144 fstring cn;
145 } ACCOUNTMAP;