1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | RPC pipe client
|
---|
4 |
|
---|
5 | Copyright (C) GÃŒnther Deschner 2007
|
---|
6 |
|
---|
7 | This program is free software; you can redistribute it and/or modify
|
---|
8 | it under the terms of the GNU General Public License as published by
|
---|
9 | the Free Software Foundation; either version 3 of the License, or
|
---|
10 | (at your option) any later version.
|
---|
11 |
|
---|
12 | This program is distributed in the hope that it will be useful,
|
---|
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | GNU General Public License for more details.
|
---|
16 |
|
---|
17 | You should have received a copy of the GNU General Public License
|
---|
18 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 |
|
---|
21 | #include "includes.h"
|
---|
22 | #include "rpcclient.h"
|
---|
23 |
|
---|
24 | static WERROR cmd_wkssvc_wkstagetinfo(struct rpc_pipe_client *cli,
|
---|
25 | TALLOC_CTX *mem_ctx,
|
---|
26 | int argc,
|
---|
27 | const char **argv)
|
---|
28 | {
|
---|
29 | NTSTATUS status;
|
---|
30 | WERROR werr;
|
---|
31 | uint32_t level = 100;
|
---|
32 | union wkssvc_NetWkstaInfo info;
|
---|
33 | const char *server_name;
|
---|
34 |
|
---|
35 | if (argc > 2) {
|
---|
36 | printf("usage: %s <level>\n", argv[0]);
|
---|
37 | return WERR_OK;
|
---|
38 | }
|
---|
39 |
|
---|
40 | if (argc > 1) {
|
---|
41 | level = atoi(argv[1]);
|
---|
42 | }
|
---|
43 |
|
---|
44 | server_name = cli->cli->desthost;
|
---|
45 |
|
---|
46 | status = rpccli_wkssvc_NetWkstaGetInfo(cli, mem_ctx,
|
---|
47 | server_name,
|
---|
48 | level,
|
---|
49 | &info,
|
---|
50 | &werr);
|
---|
51 | if (!NT_STATUS_IS_OK(status)) {
|
---|
52 | return ntstatus_to_werror(status);
|
---|
53 | }
|
---|
54 |
|
---|
55 | return werr;
|
---|
56 | }
|
---|
57 |
|
---|
58 | static WERROR cmd_wkssvc_getjoininformation(struct rpc_pipe_client *cli,
|
---|
59 | TALLOC_CTX *mem_ctx,
|
---|
60 | int argc,
|
---|
61 | const char **argv)
|
---|
62 | {
|
---|
63 | const char *server_name;
|
---|
64 | const char *name_buffer;
|
---|
65 | enum wkssvc_NetJoinStatus name_type;
|
---|
66 | NTSTATUS status;
|
---|
67 | WERROR werr;
|
---|
68 |
|
---|
69 | server_name = cli->cli->desthost;
|
---|
70 | name_buffer = "";
|
---|
71 |
|
---|
72 | status = rpccli_wkssvc_NetrGetJoinInformation(cli, mem_ctx,
|
---|
73 | server_name,
|
---|
74 | &name_buffer,
|
---|
75 | &name_type,
|
---|
76 | &werr);
|
---|
77 | if (!NT_STATUS_IS_OK(status)) {
|
---|
78 | return ntstatus_to_werror(status);
|
---|
79 | }
|
---|
80 |
|
---|
81 | if (W_ERROR_IS_OK(werr)) {
|
---|
82 | printf("%s (%d)\n", name_buffer, name_type);
|
---|
83 | }
|
---|
84 |
|
---|
85 | return werr;
|
---|
86 | }
|
---|
87 |
|
---|
88 | static WERROR cmd_wkssvc_messagebuffersend(struct rpc_pipe_client *cli,
|
---|
89 | TALLOC_CTX *mem_ctx,
|
---|
90 | int argc,
|
---|
91 | const char **argv)
|
---|
92 | {
|
---|
93 | const char *server_name = cli->cli->desthost;
|
---|
94 | const char *message_name = cli->cli->desthost;
|
---|
95 | const char *message_sender_name = cli->cli->desthost;
|
---|
96 | smb_ucs2_t *message_buffer = NULL;
|
---|
97 | size_t message_size = 0;
|
---|
98 | const char *message = "my message";
|
---|
99 | NTSTATUS status;
|
---|
100 | WERROR werr;
|
---|
101 |
|
---|
102 | if (argc > 1) {
|
---|
103 | message = argv[1];
|
---|
104 | }
|
---|
105 |
|
---|
106 | message_size = push_ucs2_talloc(mem_ctx,
|
---|
107 | &message_buffer,
|
---|
108 | message);
|
---|
109 | if (message_size == -1) {
|
---|
110 | return WERR_NOMEM;
|
---|
111 | }
|
---|
112 |
|
---|
113 | status = rpccli_wkssvc_NetrMessageBufferSend(cli, mem_ctx,
|
---|
114 | server_name,
|
---|
115 | message_name,
|
---|
116 | message_sender_name,
|
---|
117 | (uint8_t *)message_buffer,
|
---|
118 | message_size,
|
---|
119 | &werr);
|
---|
120 | if (!NT_STATUS_IS_OK(status)) {
|
---|
121 | return ntstatus_to_werror(status);
|
---|
122 | }
|
---|
123 |
|
---|
124 | return werr;
|
---|
125 | }
|
---|
126 |
|
---|
127 | static WERROR cmd_wkssvc_enumeratecomputernames(struct rpc_pipe_client *cli,
|
---|
128 | TALLOC_CTX *mem_ctx,
|
---|
129 | int argc,
|
---|
130 | const char **argv)
|
---|
131 | {
|
---|
132 | const char *server_name;
|
---|
133 | enum wkssvc_ComputerNameType name_type = NetAllComputerNames;
|
---|
134 | NTSTATUS status;
|
---|
135 | struct wkssvc_ComputerNamesCtr *ctr = NULL;
|
---|
136 | WERROR werr;
|
---|
137 |
|
---|
138 | server_name = cli->cli->desthost;
|
---|
139 |
|
---|
140 | if (argc >= 2) {
|
---|
141 | name_type = atoi(argv[1]);
|
---|
142 | }
|
---|
143 |
|
---|
144 | status = rpccli_wkssvc_NetrEnumerateComputerNames(cli, mem_ctx,
|
---|
145 | server_name,
|
---|
146 | name_type, 0,
|
---|
147 | &ctr,
|
---|
148 | &werr);
|
---|
149 | if (!NT_STATUS_IS_OK(status)) {
|
---|
150 | return ntstatus_to_werror(status);
|
---|
151 | }
|
---|
152 |
|
---|
153 | if (W_ERROR_IS_OK(werr)) {
|
---|
154 | int i=0;
|
---|
155 | for (i = 0; i < ctr->count; i++) {
|
---|
156 | printf("name: %d %s\n", i, ctr->computer_name->string);
|
---|
157 | }
|
---|
158 | }
|
---|
159 |
|
---|
160 | return werr;
|
---|
161 | }
|
---|
162 |
|
---|
163 | struct cmd_set wkssvc_commands[] = {
|
---|
164 |
|
---|
165 | { "WKSSVC" },
|
---|
166 | { "wkssvc_wkstagetinfo", RPC_RTYPE_WERROR, NULL, cmd_wkssvc_wkstagetinfo, PI_WKSSVC, NULL, "Query WKSSVC Workstation Information", "" },
|
---|
167 | { "wkssvc_getjoininformation", RPC_RTYPE_WERROR, NULL, cmd_wkssvc_getjoininformation, PI_WKSSVC, NULL, "Query WKSSVC Join Information", "" },
|
---|
168 | { "wkssvc_messagebuffersend", RPC_RTYPE_WERROR, NULL, cmd_wkssvc_messagebuffersend, PI_WKSSVC, NULL, "Send WKSSVC message", "" },
|
---|
169 | { "wkssvc_enumeratecomputernames", RPC_RTYPE_WERROR, NULL, cmd_wkssvc_enumeratecomputernames, PI_WKSSVC, NULL, "Enumerate WKSSVC computer names", "" },
|
---|
170 | { NULL }
|
---|
171 | };
|
---|