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