2 Unix SMB/CIFS implementation.
5 Copyright (C) Günther Deschner 2007
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.
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.
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/>.
22 #include "rpcclient.h"
24 static WERROR
cmd_wkssvc_wkstagetinfo(struct rpc_pipe_client
*cli
,
32 union wkssvc_NetWkstaInfo info
;
33 const char *server_name
;
36 printf("usage: %s <level>\n", argv
[0]);
41 level
= atoi(argv
[1]);
44 server_name
= cli
->desthost
;
46 status
= rpccli_wkssvc_NetWkstaGetInfo(cli
, mem_ctx
,
51 if (!NT_STATUS_IS_OK(status
)) {
52 return ntstatus_to_werror(status
);
58 static WERROR
cmd_wkssvc_getjoininformation(struct rpc_pipe_client
*cli
,
63 const char *server_name
;
64 const char *name_buffer
;
65 enum wkssvc_NetJoinStatus name_type
;
69 server_name
= cli
->desthost
;
72 status
= rpccli_wkssvc_NetrGetJoinInformation(cli
, mem_ctx
,
77 if (!NT_STATUS_IS_OK(status
)) {
78 return ntstatus_to_werror(status
);
81 if (W_ERROR_IS_OK(werr
)) {
82 printf("%s (%d)\n", name_buffer
, name_type
);
88 static WERROR
cmd_wkssvc_messagebuffersend(struct rpc_pipe_client
*cli
,
93 const char *server_name
= cli
->desthost
;
94 const char *message_name
= cli
->desthost
;
95 const char *message_sender_name
= cli
->desthost
;
96 smb_ucs2_t
*message_buffer
= NULL
;
97 size_t message_size
= 0;
98 const char *message
= "my message";
106 if (!push_ucs2_talloc(mem_ctx
, &message_buffer
, message
,
112 status
= rpccli_wkssvc_NetrMessageBufferSend(cli
, mem_ctx
,
116 (uint8_t *)message_buffer
,
119 if (!NT_STATUS_IS_OK(status
)) {
120 return ntstatus_to_werror(status
);
126 static WERROR
cmd_wkssvc_enumeratecomputernames(struct rpc_pipe_client
*cli
,
131 const char *server_name
;
132 enum wkssvc_ComputerNameType name_type
= NetAllComputerNames
;
134 struct wkssvc_ComputerNamesCtr
*ctr
= NULL
;
137 server_name
= cli
->desthost
;
140 name_type
= atoi(argv
[1]);
143 status
= rpccli_wkssvc_NetrEnumerateComputerNames(cli
, mem_ctx
,
148 if (!NT_STATUS_IS_OK(status
)) {
149 return ntstatus_to_werror(status
);
152 if (W_ERROR_IS_OK(werr
)) {
154 for (i
= 0; i
< ctr
->count
; i
++) {
155 printf("name: %d %s\n", i
, ctr
->computer_name
->string
);
162 struct cmd_set wkssvc_commands
[] = {
165 { "wkssvc_wkstagetinfo", RPC_RTYPE_WERROR
, NULL
, cmd_wkssvc_wkstagetinfo
, &ndr_table_wkssvc
.syntax_id
, NULL
, "Query WKSSVC Workstation Information", "" },
166 { "wkssvc_getjoininformation", RPC_RTYPE_WERROR
, NULL
, cmd_wkssvc_getjoininformation
, &ndr_table_wkssvc
.syntax_id
, NULL
, "Query WKSSVC Join Information", "" },
167 { "wkssvc_messagebuffersend", RPC_RTYPE_WERROR
, NULL
, cmd_wkssvc_messagebuffersend
, &ndr_table_wkssvc
.syntax_id
, NULL
, "Send WKSSVC message", "" },
168 { "wkssvc_enumeratecomputernames", RPC_RTYPE_WERROR
, NULL
, cmd_wkssvc_enumeratecomputernames
, &ndr_table_wkssvc
.syntax_id
, NULL
, "Enumerate WKSSVC computer names", "" },