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