mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
fa37bbd9d0
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
111 lines
2.9 KiB
C
111 lines
2.9 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
* NetApi Shutdown Support
|
|
* Copyright (C) Guenther Deschner 2009
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
|
|
#include "librpc/gen_ndr/libnetapi.h"
|
|
#include "lib/netapi/netapi.h"
|
|
#include "lib/netapi/netapi_private.h"
|
|
#include "lib/netapi/libnetapi.h"
|
|
#include "../librpc/gen_ndr/ndr_initshutdown_c.h"
|
|
#include "rpc_client/init_lsa.h"
|
|
|
|
/****************************************************************
|
|
****************************************************************/
|
|
|
|
WERROR NetShutdownInit_r(struct libnetapi_ctx *ctx,
|
|
struct NetShutdownInit *r)
|
|
{
|
|
WERROR werr;
|
|
NTSTATUS status;
|
|
struct lsa_StringLarge message;
|
|
struct dcerpc_binding_handle *b;
|
|
|
|
werr = libnetapi_get_binding_handle(ctx, r->in.server_name,
|
|
&ndr_table_initshutdown,
|
|
&b);
|
|
if (!W_ERROR_IS_OK(werr)) {
|
|
goto done;
|
|
}
|
|
|
|
init_lsa_StringLarge(&message, r->in.message);
|
|
|
|
status = dcerpc_initshutdown_Init(b, talloc_tos(),
|
|
NULL,
|
|
&message,
|
|
r->in.timeout,
|
|
r->in.force_apps,
|
|
r->in.do_reboot,
|
|
&werr);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
werr = ntstatus_to_werror(status);
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
return werr;
|
|
}
|
|
|
|
/****************************************************************
|
|
****************************************************************/
|
|
|
|
WERROR NetShutdownInit_l(struct libnetapi_ctx *ctx,
|
|
struct NetShutdownInit *r)
|
|
{
|
|
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShutdownInit);
|
|
}
|
|
|
|
/****************************************************************
|
|
****************************************************************/
|
|
|
|
WERROR NetShutdownAbort_r(struct libnetapi_ctx *ctx,
|
|
struct NetShutdownAbort *r)
|
|
{
|
|
WERROR werr;
|
|
NTSTATUS status;
|
|
struct dcerpc_binding_handle *b;
|
|
|
|
werr = libnetapi_get_binding_handle(ctx, r->in.server_name,
|
|
&ndr_table_initshutdown,
|
|
&b);
|
|
if (!W_ERROR_IS_OK(werr)) {
|
|
goto done;
|
|
}
|
|
|
|
status = dcerpc_initshutdown_Abort(b, talloc_tos(),
|
|
NULL,
|
|
&werr);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
werr = ntstatus_to_werror(status);
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
return werr;
|
|
}
|
|
|
|
/****************************************************************
|
|
****************************************************************/
|
|
|
|
WERROR NetShutdownAbort_l(struct libnetapi_ctx *ctx,
|
|
struct NetShutdownAbort *r)
|
|
{
|
|
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShutdownAbort);
|
|
}
|