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