mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
b5bec1a6d7
Guenther
495 lines
13 KiB
C
495 lines
13 KiB
C
/*
|
|
Samba Unix/Linux SMB client library
|
|
Distributed SMB/CIFS Server Management Utility
|
|
Copyright (C) 2006,2008 Guenther Deschner
|
|
|
|
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 "utils/net.h"
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static int net_help_audit(struct net_context *c, int argc, const char **argv)
|
|
{
|
|
d_printf("net rpc audit list View configured Auditing policies\n");
|
|
d_printf("net rpc audit enable Enable Auditing\n");
|
|
d_printf("net rpc audit disable Disable Auditing\n");
|
|
d_printf("net rpc audit get <category> View configured Auditing policy setting\n");
|
|
d_printf("net rpc audit set <category> <policy> Set Auditing policies\n\n");
|
|
d_printf("\tcategory can be one of: SYSTEM, LOGON, OBJECT, PRIVILEGE, PROCESS, POLICY, SAM, DIRECTORY or ACCOUNT\n");
|
|
d_printf("\tpolicy can be one of: SUCCESS, FAILURE, ALL or NONE\n\n");
|
|
|
|
return -1;
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static void print_auditing_category(const char *policy, const char *value)
|
|
{
|
|
fstring padding;
|
|
int pad_len, col_len = 30;
|
|
|
|
if (policy == NULL) {
|
|
policy = "Unknown";
|
|
}
|
|
if (value == NULL) {
|
|
value = "Invalid";
|
|
}
|
|
|
|
/* calculate padding space for d_printf to look nicer */
|
|
pad_len = col_len - strlen(policy);
|
|
padding[pad_len] = 0;
|
|
do padding[--pad_len] = ' '; while (pad_len > 0);
|
|
|
|
d_printf("\t%s%s%s\n", policy, padding, value);
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static NTSTATUS rpc_audit_get_internal(struct net_context *c,
|
|
const DOM_SID *domain_sid,
|
|
const char *domain_name,
|
|
struct cli_state *cli,
|
|
struct rpc_pipe_client *pipe_hnd,
|
|
TALLOC_CTX *mem_ctx,
|
|
int argc,
|
|
const char **argv)
|
|
{
|
|
struct policy_handle pol;
|
|
NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
|
|
union lsa_PolicyInformation *info = NULL;
|
|
int i;
|
|
uint32_t audit_category;
|
|
|
|
if (argc < 1 || argc > 2) {
|
|
d_printf("insufficient arguments\n");
|
|
net_help_audit(c, argc, argv);
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
if (!get_audit_category_from_param(argv[0], &audit_category)) {
|
|
d_printf("invalid auditing category: %s\n", argv[0]);
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
|
|
SEC_FLAG_MAXIMUM_ALLOWED,
|
|
&pol);
|
|
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
result = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
|
|
&pol,
|
|
LSA_POLICY_INFO_AUDIT_EVENTS,
|
|
&info);
|
|
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
for (i=0; i < info->audit_events.count; i++) {
|
|
|
|
const char *val = NULL, *policy = NULL;
|
|
|
|
if (i != audit_category) {
|
|
continue;
|
|
}
|
|
|
|
val = audit_policy_str(mem_ctx, info->audit_events.settings[i]);
|
|
policy = audit_description_str(i);
|
|
print_auditing_category(policy, val);
|
|
}
|
|
|
|
done:
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
d_printf("failed to get auditing policy: %s\n",
|
|
nt_errstr(result));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static NTSTATUS rpc_audit_set_internal(struct net_context *c,
|
|
const DOM_SID *domain_sid,
|
|
const char *domain_name,
|
|
struct cli_state *cli,
|
|
struct rpc_pipe_client *pipe_hnd,
|
|
TALLOC_CTX *mem_ctx,
|
|
int argc,
|
|
const char **argv)
|
|
{
|
|
struct policy_handle pol;
|
|
NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
|
|
union lsa_PolicyInformation *info = NULL;
|
|
uint32_t audit_policy, audit_category;
|
|
|
|
if (argc < 2 || argc > 3) {
|
|
d_printf("insufficient arguments\n");
|
|
net_help_audit(c, argc, argv);
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
if (!get_audit_category_from_param(argv[0], &audit_category)) {
|
|
d_printf("invalid auditing category: %s\n", argv[0]);
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
audit_policy = LSA_AUDIT_POLICY_CLEAR;
|
|
|
|
if (strequal(argv[1], "Success")) {
|
|
audit_policy |= LSA_AUDIT_POLICY_SUCCESS;
|
|
} else if (strequal(argv[1], "Failure")) {
|
|
audit_policy |= LSA_AUDIT_POLICY_FAILURE;
|
|
} else if (strequal(argv[1], "All")) {
|
|
audit_policy |= LSA_AUDIT_POLICY_ALL;
|
|
} else if (strequal(argv[1], "None")) {
|
|
audit_policy = LSA_AUDIT_POLICY_CLEAR;
|
|
} else {
|
|
d_printf("invalid auditing policy: %s\n", argv[1]);
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
|
|
SEC_FLAG_MAXIMUM_ALLOWED,
|
|
&pol);
|
|
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
result = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
|
|
&pol,
|
|
LSA_POLICY_INFO_AUDIT_EVENTS,
|
|
&info);
|
|
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
info->audit_events.settings[audit_category] = audit_policy;
|
|
|
|
result = rpccli_lsa_SetInfoPolicy(pipe_hnd, mem_ctx,
|
|
&pol,
|
|
LSA_POLICY_INFO_AUDIT_EVENTS,
|
|
info);
|
|
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
result = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
|
|
&pol,
|
|
LSA_POLICY_INFO_AUDIT_EVENTS,
|
|
&info);
|
|
{
|
|
const char *val = audit_policy_str(mem_ctx, info->audit_events.settings[audit_category]);
|
|
const char *policy = audit_description_str(audit_category);
|
|
print_auditing_category(policy, val);
|
|
}
|
|
|
|
done:
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
d_printf("failed to set audit policy: %s\n", nt_errstr(result));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static NTSTATUS rpc_audit_enable_internal_ext(struct rpc_pipe_client *pipe_hnd,
|
|
TALLOC_CTX *mem_ctx,
|
|
int argc,
|
|
const char **argv,
|
|
bool enable)
|
|
{
|
|
struct policy_handle pol;
|
|
NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
|
|
union lsa_PolicyInformation *info = NULL;
|
|
|
|
result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
|
|
SEC_FLAG_MAXIMUM_ALLOWED,
|
|
&pol);
|
|
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
result = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
|
|
&pol,
|
|
LSA_POLICY_INFO_AUDIT_EVENTS,
|
|
&info);
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
info->audit_events.auditing_mode = enable;
|
|
|
|
result = rpccli_lsa_SetInfoPolicy(pipe_hnd, mem_ctx,
|
|
&pol,
|
|
LSA_POLICY_INFO_AUDIT_EVENTS,
|
|
info);
|
|
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
d_printf("failed to %s audit policy: %s\n",
|
|
enable ? "enable":"disable", nt_errstr(result));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static NTSTATUS rpc_audit_disable_internal(struct net_context *c,
|
|
const DOM_SID *domain_sid,
|
|
const char *domain_name,
|
|
struct cli_state *cli,
|
|
struct rpc_pipe_client *pipe_hnd,
|
|
TALLOC_CTX *mem_ctx,
|
|
int argc,
|
|
const char **argv)
|
|
{
|
|
return rpc_audit_enable_internal_ext(pipe_hnd, mem_ctx, argc, argv,
|
|
false);
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static NTSTATUS rpc_audit_enable_internal(struct net_context *c,
|
|
const DOM_SID *domain_sid,
|
|
const char *domain_name,
|
|
struct cli_state *cli,
|
|
struct rpc_pipe_client *pipe_hnd,
|
|
TALLOC_CTX *mem_ctx,
|
|
int argc,
|
|
const char **argv)
|
|
{
|
|
return rpc_audit_enable_internal_ext(pipe_hnd, mem_ctx, argc, argv,
|
|
true);
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static NTSTATUS rpc_audit_list_internal(struct net_context *c,
|
|
const DOM_SID *domain_sid,
|
|
const char *domain_name,
|
|
struct cli_state *cli,
|
|
struct rpc_pipe_client *pipe_hnd,
|
|
TALLOC_CTX *mem_ctx,
|
|
int argc,
|
|
const char **argv)
|
|
{
|
|
struct policy_handle pol;
|
|
NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
|
|
union lsa_PolicyInformation *info = NULL;
|
|
int i;
|
|
|
|
result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
|
|
SEC_FLAG_MAXIMUM_ALLOWED,
|
|
&pol);
|
|
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
result = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
|
|
&pol,
|
|
LSA_POLICY_INFO_AUDIT_EVENTS,
|
|
&info);
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
goto done;
|
|
}
|
|
|
|
printf("Auditing:\t\t");
|
|
switch (info->audit_events.auditing_mode) {
|
|
case true:
|
|
printf("Enabled");
|
|
break;
|
|
case false:
|
|
printf("Disabled");
|
|
break;
|
|
default:
|
|
printf("unknown (%d)", info->audit_events.auditing_mode);
|
|
break;
|
|
}
|
|
printf("\n");
|
|
|
|
printf("Auditing categories:\t%d\n", info->audit_events.count);
|
|
printf("Auditing settings:\n");
|
|
|
|
for (i=0; i < info->audit_events.count; i++) {
|
|
const char *val = audit_policy_str(mem_ctx, info->audit_events.settings[i]);
|
|
const char *policy = audit_description_str(i);
|
|
print_auditing_category(policy, val);
|
|
}
|
|
|
|
done:
|
|
if (!NT_STATUS_IS_OK(result)) {
|
|
d_printf("failed to list auditing policies: %s\n",
|
|
nt_errstr(result));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static int rpc_audit_get(struct net_context *c, int argc, const char **argv)
|
|
{
|
|
if (c->display_usage) {
|
|
d_printf("Usage:\n"
|
|
"net rpc audit get\n"
|
|
" View configured audit setting\n");
|
|
return 0;
|
|
}
|
|
|
|
return run_rpc_command(c, NULL, &ndr_table_lsarpc.syntax_id, 0,
|
|
rpc_audit_get_internal, argc, argv);
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static int rpc_audit_set(struct net_context *c, int argc, const char **argv)
|
|
{
|
|
if (c->display_usage) {
|
|
d_printf("Usage:\n"
|
|
"net rpc audit set\n"
|
|
" Set audit policies\n");
|
|
return 0;
|
|
}
|
|
|
|
return run_rpc_command(c, NULL, &ndr_table_lsarpc.syntax_id, 0,
|
|
rpc_audit_set_internal, argc, argv);
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static int rpc_audit_enable(struct net_context *c, int argc, const char **argv)
|
|
{
|
|
if (c->display_usage) {
|
|
d_printf("Usage:\n"
|
|
"net rpc audit enable\n"
|
|
" Enable auditing\n");
|
|
return 0;
|
|
}
|
|
|
|
return run_rpc_command(c, NULL, &ndr_table_lsarpc.syntax_id, 0,
|
|
rpc_audit_enable_internal, argc, argv);
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static int rpc_audit_disable(struct net_context *c, int argc, const char **argv)
|
|
{
|
|
if (c->display_usage) {
|
|
d_printf("Usage:\n"
|
|
"net rpc audit disable\n"
|
|
" Disable auditing\n");
|
|
return 0;
|
|
}
|
|
|
|
return run_rpc_command(c, NULL, &ndr_table_lsarpc.syntax_id, 0,
|
|
rpc_audit_disable_internal, argc, argv);
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
static int rpc_audit_list(struct net_context *c, int argc, const char **argv)
|
|
{
|
|
if (c->display_usage) {
|
|
d_printf("Usage:\n"
|
|
"net rpc audit list\n"
|
|
" List auditing settings\n");
|
|
return 0;
|
|
}
|
|
|
|
return run_rpc_command(c, NULL, &ndr_table_lsarpc.syntax_id, 0,
|
|
rpc_audit_list_internal, argc, argv);
|
|
}
|
|
|
|
/********************************************************************
|
|
********************************************************************/
|
|
|
|
int net_rpc_audit(struct net_context *c, int argc, const char **argv)
|
|
{
|
|
struct functable func[] = {
|
|
{
|
|
"get",
|
|
rpc_audit_get,
|
|
NET_TRANSPORT_RPC,
|
|
"View configured auditing settings",
|
|
"net rpc audit get\n"
|
|
" View configured auditing settings"
|
|
},
|
|
{
|
|
"set",
|
|
rpc_audit_set,
|
|
NET_TRANSPORT_RPC,
|
|
"Set auditing policies",
|
|
"net rpc audit set\n"
|
|
" Set auditing policies"
|
|
},
|
|
{
|
|
"enable",
|
|
rpc_audit_enable,
|
|
NET_TRANSPORT_RPC,
|
|
"Enable auditing",
|
|
"net rpc audit enable\n"
|
|
" Enable auditing"
|
|
},
|
|
{
|
|
"disable",
|
|
rpc_audit_disable,
|
|
NET_TRANSPORT_RPC,
|
|
"Disable auditing",
|
|
"net rpc audit disable\n"
|
|
" Disable auditing"
|
|
},
|
|
{
|
|
"list",
|
|
rpc_audit_list,
|
|
NET_TRANSPORT_RPC,
|
|
"List configured auditing settings",
|
|
"net rpc audit list\n"
|
|
" List configured auditing settings"
|
|
},
|
|
{NULL, NULL, 0, NULL, NULL}
|
|
};
|
|
|
|
return net_run_function(c, argc, argv, "net rpc audit", func);
|
|
}
|