s3-netapi: implement NetShutdownInit_r and NetShutdownAbort_r.
[jra/samba/.git] / source3 / lib / netapi / shutdown.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  NetApi Shutdown Support
4  *  Copyright (C) Guenther Deschner 2009
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 #include "includes.h"
21
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
27 /****************************************************************
28 ****************************************************************/
29
30 WERROR NetShutdownInit_r(struct libnetapi_ctx *ctx,
31                          struct NetShutdownInit *r)
32 {
33         WERROR werr;
34         NTSTATUS status;
35         struct rpc_pipe_client *pipe_cli = NULL;
36         struct lsa_StringLarge message;
37
38         werr = libnetapi_open_pipe(ctx, r->in.server_name,
39                                    &ndr_table_initshutdown.syntax_id,
40                                    &pipe_cli);
41         if (!W_ERROR_IS_OK(werr)) {
42                 goto done;
43         }
44
45         init_lsa_StringLarge(&message, r->in.message);
46
47         status = rpccli_initshutdown_Init(pipe_cli, ctx,
48                                           NULL,
49                                           &message,
50                                           r->in.timeout,
51                                           r->in.force_apps,
52                                           r->in.do_reboot,
53                                           &werr);
54         if (!NT_STATUS_IS_OK(status)) {
55                 werr = ntstatus_to_werror(status);
56                 goto done;
57         }
58
59  done:
60         return werr;
61 }
62
63 /****************************************************************
64 ****************************************************************/
65
66 WERROR NetShutdownInit_l(struct libnetapi_ctx *ctx,
67                          struct NetShutdownInit *r)
68 {
69         LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShutdownInit);
70 }
71
72 /****************************************************************
73 ****************************************************************/
74
75 WERROR NetShutdownAbort_r(struct libnetapi_ctx *ctx,
76                           struct NetShutdownAbort *r)
77 {
78         WERROR werr;
79         NTSTATUS status;
80         struct rpc_pipe_client *pipe_cli = NULL;
81
82         werr = libnetapi_open_pipe(ctx, r->in.server_name,
83                                    &ndr_table_initshutdown.syntax_id,
84                                    &pipe_cli);
85         if (!W_ERROR_IS_OK(werr)) {
86                 goto done;
87         }
88
89         status = rpccli_initshutdown_Abort(pipe_cli, ctx,
90                                            NULL,
91                                            &werr);
92         if (!NT_STATUS_IS_OK(status)) {
93                 werr = ntstatus_to_werror(status);
94                 goto done;
95         }
96
97  done:
98         return werr;
99 }
100
101 /****************************************************************
102 ****************************************************************/
103
104 WERROR NetShutdownAbort_l(struct libnetapi_ctx *ctx,
105                           struct NetShutdownAbort *r)
106 {
107         LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShutdownAbort);
108 }