net: Add net_run_function3
[Samba/gebeck_regimport.git] / source3 / utils / net.h
blobb816aec4e6b09e54e3310c5c01345aaac42e4773
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 struct net_context {
28 const char *opt_requester_name;
29 const char *opt_host;
30 const char *opt_password;
31 const char *opt_user_name;
32 bool opt_user_specified;
33 const char *opt_workgroup;
34 int opt_long_list_entries;
35 int opt_reboot;
36 int opt_force;
37 int opt_stdin;
38 int opt_port;
39 int opt_verbose;
40 int opt_maxusers;
41 const char *opt_comment;
42 const char *opt_container;
43 int opt_flags;
44 int opt_timeout;
45 const char *opt_target_workgroup;
46 int opt_machine_pass;
47 int opt_localgroup;
48 int opt_domaingroup;
49 int do_talloc_report;
50 const char *opt_newntname;
51 int opt_rid;
52 int opt_acls;
53 int opt_attrs;
54 int opt_timestamps;
55 const char *opt_exclude;
56 const char *opt_destination;
57 int opt_testmode;
59 int opt_have_ip;
60 struct sockaddr_storage opt_dest_ip;
61 bool smb_encrypt;
62 struct libnetapi_ctx *netapi_ctx;
64 bool display_usage;
65 const char *share_type[];
68 #define NET_TRANSPORT_LOCAL 0x01
69 #define NET_TRANSPORT_RAP 0x02
70 #define NET_TRANSPORT_RPC 0x04
71 #define NET_TRANSPROT_ADS 0x08
73 struct functable {
74 const char *funcname;
75 int (*fn)(struct net_context *c, int argc, const char **argv);
78 struct functable2 {
79 const char *funcname;
80 int (*fn)(struct net_context *c, int argc, const char **argv);
81 const char *helptext;
84 struct functable3 {
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;
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 **);
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;
110 struct rpc_sh_ctx {
111 struct cli_state *cli;
113 DOM_SID *domain_sid;
114 const char *domain_name;
116 const char *whoami;
117 const char *thiscmd;
118 struct rpc_sh_cmd *cmds;
119 struct rpc_sh_ctx *parent;
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 int pipe_idx;
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;
135 enum netdom_domain_t { ND_TYPE_NT4, ND_TYPE_AD };
137 /* INCLUDE FILES */
139 #include "utils/net_proto.h"
140 #include "utils/net_help_common.h"
142 /* MACROS & DEFINES */
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 */
154 /* net share operation modes */
155 #define NET_MODE_SHARE_MIGRATE 1
157 /* Structure for mapping accounts to groups */
158 /* Array element is the group rid */
159 typedef struct _groupmap {
160 uint32 rid;
161 uint32 gidNumber;
162 fstring sambaSID;
163 fstring group_dn;
164 } GROUPMAP;
166 typedef struct _accountmap {
167 uint32 rid;
168 fstring cn;
169 } ACCOUNTMAP;