1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
/*
* Unix SMB/CIFS implementation.
*
* Eventlog RPC server keys initialization
*
* Copyright (c) 2005 Marcin Krzysztof Porwit
* Copyright (c) 2005 Brian Moran
* Copyright (c) 2005 Gerald (Jerry) Carter
* Copyright (c) 2011 Andreas Schneider <asn@samba.org>
*
* 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/ndr_winreg_c.h"
#include "rpc_client/cli_winreg_int.h"
#include "rpc_client/cli_winreg.h"
#include "rpc_server/eventlog/srv_eventlog_reg.h"
#include "auth.h"
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_REGISTRY
#define TOP_LEVEL_EVENTLOG_KEY "SYSTEM\\CurrentControlSet\\Services\\Eventlog"
bool eventlog_init_winreg(struct messaging_context *msg_ctx)
{
struct dcerpc_binding_handle *h = NULL;
uint32_t access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
struct policy_handle hive_hnd, key_hnd;
uint32_t uiMaxSize = 0x00080000;
uint32_t uiRetention = 0x93A80;
const char **elogs = lp_eventlog_list();
const char **subkeys = NULL;
uint32_t num_subkeys = 0;
uint32_t i;
char *key = NULL;
NTSTATUS status;
WERROR result = WERR_OK;
bool ok = false;
TALLOC_CTX *tmp_ctx;
tmp_ctx = talloc_stackframe();
if (tmp_ctx == NULL) {
return false;
}
DEBUG(3, ("Initialise the eventlog registry keys if needed.\n"));
key = talloc_strdup(tmp_ctx, TOP_LEVEL_EVENTLOG_KEY);
status = dcerpc_winreg_int_hklm_openkey(tmp_ctx,
get_session_info_system(),
msg_ctx,
&h,
key,
false,
access_mask,
&hive_hnd,
&key_hnd,
&result);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0, ("eventlog_init_winreg: Could not open %s - %s\n",
key, nt_errstr(status)));
goto done;
}
if (!W_ERROR_IS_OK(result)) {
DEBUG(0, ("eventlog_init_winreg: Could not open %s - %s\n",
key, win_errstr(result)));
goto done;
}
status = dcerpc_winreg_enum_keys(tmp_ctx,
h,
&key_hnd,
&num_subkeys,
&subkeys,
&result);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0, ("eventlog_init_winreg: Could enum keys at %s - %s\n",
key, nt_errstr(status)));
goto done;
}
if (!W_ERROR_IS_OK(result)) {
DEBUG(0, ("eventlog_init_winreg: Could enum keys at %s - %s\n",
key, win_errstr(result)));
goto done;
}
if (is_valid_policy_hnd(&key_hnd)) {
dcerpc_winreg_CloseKey(h, tmp_ctx, &key_hnd, &result);
}
/* create subkeys if they don't exist */
while (elogs && *elogs) {
enum winreg_CreateAction action = REG_ACTION_NONE;
char *evt_tdb = NULL;
struct winreg_String wkey;
struct winreg_String wkeyclass;
bool skip = false;
for (i = 0; i < num_subkeys; i++) {
if (strequal(subkeys[i], *elogs)) {
skip = true;
}
}
if (skip) {
elogs++;
continue;
}
ZERO_STRUCT(key_hnd);
ZERO_STRUCT(wkey);
wkey.name = talloc_asprintf(tmp_ctx, "%s\\%s", key, *elogs);
if (wkey.name == NULL) {
result = WERR_NOMEM;
goto done;
}
ZERO_STRUCT(wkeyclass);
wkeyclass.name = "";
status = dcerpc_winreg_CreateKey(h,
tmp_ctx,
&hive_hnd,
wkey,
wkeyclass,
0,
access_mask,
NULL,
&key_hnd,
&action,
&result);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0, ("eventlog_init_winreg_keys: Could not create key %s: %s\n",
wkey.name, nt_errstr(status)));
goto done;
}
if (!W_ERROR_IS_OK(result)) {
DEBUG(0, ("eventlog_init_winreg_keys: Could not create key %s: %s\n",
wkey.name, win_errstr(result)));
goto done;
}
status = dcerpc_winreg_set_dword(tmp_ctx,
h,
&key_hnd,
"MaxSize",
uiMaxSize,
&result);
status = dcerpc_winreg_set_dword(tmp_ctx,
h,
&key_hnd,
"Retention",
uiRetention,
&result);
status = dcerpc_winreg_set_sz(tmp_ctx,
h,
&key_hnd,
"PrimaryModule",
*elogs,
&result);
evt_tdb = talloc_asprintf(tmp_ctx,
"%%SystemRoot%%\\system32\\config\\%s.tdb",
*elogs);
if (evt_tdb == NULL) {
goto done;
}
status = dcerpc_winreg_set_expand_sz(tmp_ctx,
h,
&key_hnd,
"File",
evt_tdb,
&result);
TALLOC_FREE(evt_tdb);
status = dcerpc_winreg_add_multi_sz(tmp_ctx,
h,
&key_hnd,
"Sources",
*elogs,
&result);
if (is_valid_policy_hnd(&key_hnd)) {
dcerpc_winreg_CloseKey(h, tmp_ctx, &key_hnd, &result);
}
/* sub-subkeys */
{
uint32_t uiCategoryCount = 0x00000007;
wkey.name = talloc_asprintf(tmp_ctx,
"%s\\%s",
wkey.name, *elogs);
if (wkey.name == NULL) {
result = WERR_NOMEM;
goto done;
}
status = dcerpc_winreg_CreateKey(h,
tmp_ctx,
&hive_hnd,
wkey,
wkeyclass,
0,
access_mask,
NULL,
&key_hnd,
&action,
&result);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0, ("eventlog_init_winreg_keys: Could not create key %s: %s\n",
wkey.name, nt_errstr(status)));
goto done;
}
if (!W_ERROR_IS_OK(result)) {
DEBUG(0, ("eventlog_init_winreg_keys: Could not create key %s: %s\n",
wkey.name, win_errstr(result)));
goto done;
}
status = dcerpc_winreg_set_dword(tmp_ctx,
h,
&key_hnd,
"CategoryCount",
uiCategoryCount,
&result);
status = dcerpc_winreg_set_expand_sz(tmp_ctx,
h,
&key_hnd,
"CategoryMessageFile",
"%SystemRoot%\\system32\\eventlog.dll",
&result);
if (is_valid_policy_hnd(&key_hnd)) {
dcerpc_winreg_CloseKey(h, tmp_ctx, &key_hnd, &result);
}
}
elogs++;
} /* loop */
ok = true;
done:
TALLOC_FREE(tmp_ctx);
return ok;
}
/* vim: set ts=8 sw=8 noet cindent syntax=c.doxygen: */
|