2 * Unix SMB/CIFS implementation.
3 * NetApi Shutdown Support
4 * Copyright (C) Guenther Deschner 2009
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.
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.
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/>.
22 #include "librpc/gen_ndr/libnetapi.h"
23 #include "lib/netapi/netapi.h"
24 #include "lib/netapi/netapi_private.h"
25 #include "lib/netapi/libnetapi.h"
26 #include "../librpc/gen_ndr/cli_initshutdown.h"
27 #include "rpc_client/init_lsa.h"
29 /****************************************************************
30 ****************************************************************/
32 WERROR
NetShutdownInit_r(struct libnetapi_ctx
*ctx
,
33 struct NetShutdownInit
*r
)
37 struct rpc_pipe_client
*pipe_cli
= NULL
;
38 struct lsa_StringLarge message
;
40 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
41 &ndr_table_initshutdown
.syntax_id
,
43 if (!W_ERROR_IS_OK(werr
)) {
47 init_lsa_StringLarge(&message
, r
->in
.message
);
49 status
= rpccli_initshutdown_Init(pipe_cli
, talloc_tos(),
56 if (!NT_STATUS_IS_OK(status
)) {
57 werr
= ntstatus_to_werror(status
);
65 /****************************************************************
66 ****************************************************************/
68 WERROR
NetShutdownInit_l(struct libnetapi_ctx
*ctx
,
69 struct NetShutdownInit
*r
)
71 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetShutdownInit
);
74 /****************************************************************
75 ****************************************************************/
77 WERROR
NetShutdownAbort_r(struct libnetapi_ctx
*ctx
,
78 struct NetShutdownAbort
*r
)
82 struct rpc_pipe_client
*pipe_cli
= NULL
;
84 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
85 &ndr_table_initshutdown
.syntax_id
,
87 if (!W_ERROR_IS_OK(werr
)) {
91 status
= rpccli_initshutdown_Abort(pipe_cli
, talloc_tos(),
94 if (!NT_STATUS_IS_OK(status
)) {
95 werr
= ntstatus_to_werror(status
);
103 /****************************************************************
104 ****************************************************************/
106 WERROR
NetShutdownAbort_l(struct libnetapi_ctx
*ctx
,
107 struct NetShutdownAbort
*r
)
109 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetShutdownAbort
);