3 * Samba Unix/Linux SMB client utility
4 * Write Eventlog records to a tdb, perform other eventlog related functions
7 * Copyright (C) Brian Moran 2005.
8 * Copyright (C) Guenther Deschner 2009.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <http://www.gnu.org/licenses/>.
26 #include "lib/eventlog/eventlog.h"
28 #include "registry/reg_api.h"
29 #include "registry/reg_init_basic.h"
30 #include "registry/reg_util_token.h"
31 #include "registry/reg_backend_db.h"
32 #include "../libcli/registry/util_reg.h"
33 #include "cmdline_contexts.h"
40 static void usage( char *s
)
42 printf( "\nUsage: %s [OPTION]\n\n", s
);
43 printf( " -o write <Eventlog Name> \t\t\t\t\tWrites records to eventlog from STDIN\n" );
44 printf( " -o addsource <EventlogName> <sourcename> <msgfileDLLname> \tAdds the specified source & DLL eventlog registry entry\n" );
45 printf( " -o dump <Eventlog Name> <starting_record>\t\t\t\t\tDump stored eventlog entries on STDOUT\n" );
46 printf( "\nMiscellaneous options:\n" );
47 printf( " -s <filename>\t\t\t\t\t\t\tUse configuration file <filename>.\n");
48 printf( " -d\t\t\t\t\t\t\t\tturn debug on\n" );
49 printf( " -h\t\t\t\t\t\t\t\tdisplay help\n\n" );
52 static void display_eventlog_names( void )
57 elogs
= lp_eventlog_list( );
58 printf( "Active eventlog names:\n" );
59 printf( "--------------------------------------\n" );
61 for ( i
= 0; elogs
[i
]; i
++ ) {
62 printf( "\t%s\n", elogs
[i
] );
66 printf( "\t<None specified>\n");
69 /*********************************************************************
70 for an eventlog, add in a source name. If the eventlog doesn't
71 exist (not in the list) do nothing. If a source for the log
72 already exists, change the information (remove, replace)
73 *********************************************************************/
74 static bool eventlog_add_source( const char *eventlog
, const char *sourcename
,
75 const char *messagefile
)
77 /* Find all of the eventlogs, add keys for each of them */
78 /* need to add to the value KEY_EVENTLOG/<eventlog>/Sources string (Creating if necessary)
79 need to add KEY of source to KEY_EVENTLOG/<eventlog>/<source> */
81 const char **elogs
= lp_eventlog_list( );
82 const char **wrklist
, **wp
;
83 char *evtlogpath
= NULL
;
88 TALLOC_CTX
*ctx
= talloc_stackframe();
90 struct registry_key
*key_hive
, *key_eventlog
, *key_source
;
91 struct security_token
*token
= NULL
;
92 const char *hive_name
, *relpath
;
93 enum winreg_CreateAction action
;
94 struct registry_value
*value
;
95 static const uint32_t ACCESS
= REG_KEY_READ
| REG_KEY_WRITE
;
99 d_printf("No Eventlogs configured\n");
103 for ( i
= 0; elogs
[i
]; i
++ ) {
104 if ( strequal( elogs
[i
], eventlog
) )
109 d_printf("Eventlog [%s] not found in list of valid event logs\n",
114 /* have to assume that the evenlog key itself exists at this point */
115 /* add in a key of [sourcename] under the eventlog key */
117 /* todo add to Sources */
119 evtlogpath
= talloc_asprintf(ctx
, "%s\\%s", KEY_EVENTLOG
, eventlog
);
121 d_printf("Out of memory\n");
125 relpath
= evtlogpath
+ sizeof(KEY_EVENTLOG
);
126 hive_name
= talloc_strndup(ctx
, evtlogpath
, relpath
- evtlogpath
);
128 d_printf("Out of memory\n");
133 werr
= ntstatus_to_werror(registry_create_admin_token(ctx
, &token
));
134 if (!W_ERROR_IS_OK(werr
)) {
135 d_printf("Failed to create admin token: %s\n", win_errstr(werr
));
139 werr
= reg_openhive(ctx
, hive_name
, ACCESS
, token
, &key_hive
);
140 if (!W_ERROR_IS_OK(werr
)) {
141 d_printf("Failed to open hive [%s]: %s\n", hive_name
, win_errstr(werr
));
145 werr
= reg_openkey(ctx
, key_hive
, relpath
, ACCESS
, &key_eventlog
);
146 if (!W_ERROR_IS_OK(werr
)) {
147 d_printf("Failed to open key [%s]: %s\n", evtlogpath
, win_errstr(werr
));
151 werr
= reg_queryvalue(ctx
, key_eventlog
, "Sources", &value
);
152 if (!W_ERROR_IS_OK(werr
)) {
153 d_printf("Failed to get value \"Sources\" for [%s]: %s\n", evtlogpath
, win_errstr(werr
));
156 /* perhaps this adding a new string to a multi_sz should be a fn? */
157 /* check to see if it's there already */
159 if ( value
->type
!= REG_MULTI_SZ
) {
160 d_printf("Wrong type for \"Sources\", should be REG_MULTI_SZ\n");
163 /* convert to a 'regulah' chars to do some comparisons */
167 dump_data(1, value
->data
.data
, value
->data
.length
);
169 if (!pull_reg_multi_sz(ctx
, &value
->data
, &wrklist
)) {
170 d_printf("Failed to pull REG_MULTI_SZ from \"Sources\"\n");
174 for (ii
=0; wrklist
[ii
]; ii
++) {
178 if (numsources
> 0) {
179 /* see if it's in there already */
183 if ( strequal( *wp
, sourcename
) ) {
184 d_printf("Source name [%s] already in list for [%s] \n",
185 sourcename
, eventlog
);
192 d_printf("Nothing in the sources list, this might be a problem\n");
196 /* make a new list with an additional entry; copy values, add another */
197 wp
= talloc_realloc(ctx
, wrklist
, const char *, numsources
+ 2 );
199 d_printf("Out of memory\n");
203 wp
[numsources
] = sourcename
;
204 wp
[numsources
+1] = NULL
;
205 if (!push_reg_multi_sz(ctx
, &value
->data
, wp
)) {
206 d_printf("Failed to push Sources\n");
209 dump_data( 1, value
->data
.data
, value
->data
.length
);
210 werr
= reg_setvalue(key_eventlog
, "Sources", value
);
211 if (!W_ERROR_IS_OK(werr
)) {
212 d_printf("Failed to set value Sources: %s\n", win_errstr(werr
));
216 d_printf("Source name [%s] found in existing list of sources\n",
220 werr
= reg_createkey(ctx
, key_eventlog
, sourcename
, ACCESS
, &key_source
, &action
);
221 if (!W_ERROR_IS_OK(werr
)) {
222 d_printf("Failed to create subkey \"%s\" of \"%s\": %s\n", sourcename
, evtlogpath
, win_errstr(werr
));
226 if (action
== REG_CREATED_NEW_KEY
) {
227 d_printf(" Source name [%s] for eventlog [%s] didn't exist, adding \n",
228 sourcename
, eventlog
);
231 /* at this point KEY_EVENTLOG/<eventlog>/<sourcename> key is in there. Now need to add EventMessageFile */
233 /* now add the values to the KEY_EVENTLOG/Application form key */
234 d_printf("Storing EventMessageFile [%s] to eventlog path of [%s]\n",
235 messagefile
, evtlogpath
);
237 if (!push_reg_sz(ctx
, &value
->data
, messagefile
)) {
238 d_printf("Failed to push \"EventMessageFile\"\n");
241 value
->type
= REG_SZ
;
243 werr
= reg_setvalue(key_source
, "EventMessageFile", value
);
244 if (!W_ERROR_IS_OK(werr
)) {
245 d_printf("Failed to set value \"EventMessageFile\": %s\n", win_errstr(werr
));
254 static int DoAddSourceCommand( int argc
, char **argv
, bool debugflag
, char *exename
)
259 printf( "need more arguments:\n" );
260 printf( "-o addsource EventlogName SourceName /path/to/EventMessageFile.dll\n" );
264 /* must open the registry before we access it */
265 werr
= registry_init_common();
266 if (!W_ERROR_IS_OK(werr
)) {
267 printf("Can't open the registry: %s.\n", win_errstr(werr
));
270 werr
= regdb_transaction_start();
271 if (!W_ERROR_IS_OK(werr
)) {
272 printf("Can't start transaction on registry: %s.\n", win_errstr(werr
));
276 if ( !eventlog_add_source( argv
[0], argv
[1], argv
[2] ) ) {
277 regdb_transaction_cancel();
280 werr
= regdb_transaction_commit();
281 if (!W_ERROR_IS_OK(werr
)) {
282 printf("Failed to commit transaction on registry: %s.\n", win_errstr(werr
));
288 static int DoWriteCommand( int argc
, char **argv
, bool debugflag
, char *exename
)
295 /* fixed constants are bad bad bad */
298 struct eventlog_Record_tdb ee
;
299 uint32_t record_number
= 0;
300 TALLOC_CTX
*mem_ctx
= talloc_tos();
304 printf( "Can't open STDIN\n" );
309 printf( "Starting write for eventlog [%s]\n", argv
[0] );
310 display_eventlog_names( );
315 if ( !( etdb
= elog_open_tdb( argfname
, False
, False
) ) ) {
316 printf( "can't open the eventlog TDB (%s)\n", argfname
);
320 ZERO_STRUCT( ee
); /* MUST initialize between records */
322 while ( !feof( f1
) ) {
323 if (fgets( linein
, sizeof( linein
) - 1, f1
) == NULL
) {
326 if ((strlen(linein
) > 0)
327 && (linein
[strlen(linein
)-1] == '\n')) {
328 linein
[strlen(linein
)-1] = 0;
332 printf( "Read line [%s]\n", linein
);
337 parse_logentry( mem_ctx
, ( char * ) &linein
, &ee
, &is_eor
);
338 /* should we do something with the return code? */
341 fixup_eventlog_record_tdb( &ee
);
344 printf( "record number [%d], tg [%d] , tw [%d]\n",
345 ee
.record_number
, (int)ee
.time_generated
, (int)ee
.time_written
);
347 if ( ee
.time_generated
!= 0 ) {
349 /* printf("Writing to the event log\n"); */
351 status
= evlog_push_record_tdb( mem_ctx
, ELOG_TDB_CTX(etdb
),
352 &ee
, &record_number
);
353 if ( !NT_STATUS_IS_OK(status
) ) {
354 printf( "Can't write to the event log: %s\n",
358 printf( "Wrote record %d\n",
363 printf( "<null record>\n" );
365 ZERO_STRUCT( ee
); /* MUST initialize between records */
369 elog_close_tdb( etdb
, False
);
374 static int DoDumpCommand(int argc
, char **argv
, bool debugflag
, char *exename
)
377 TALLOC_CTX
*mem_ctx
= talloc_tos();
385 count
= atoi(argv
[1]);
388 etdb
= elog_open_tdb(argv
[0], false, true);
390 printf("can't open the eventlog TDB (%s)\n", argv
[0]);
396 struct eventlog_Record_tdb
*r
;
399 r
= evlog_pull_record_tdb(mem_ctx
, etdb
->tdb
, count
);
404 printf("displaying record: %d\n", count
);
406 s
= NDR_PRINT_STRUCT_STRING(mem_ctx
, eventlog_Record_tdb
, r
);
414 elog_close_tdb(etdb
, false);
419 /* would be nice to use the popT stuff here, however doing so forces us to drag in a lot of other infrastructure */
421 int main( int argc
, char *argv
[] )
425 char *configfile
= NULL
;
426 TALLOC_CTX
*frame
= talloc_stackframe();
433 opt_debug
= 0; /* todo set this from getopts */
439 fstrcpy( opname
, "write" ); /* the default */
441 #if 0 /* TESTING CODE */
442 eventlog_add_source( "System", "TestSourceX", "SomeTestPathX" );
444 while ( ( opt
= getopt( argc
, argv
, "dho:s:" ) ) != EOF
) {
448 fstrcpy( opname
, optarg
);
453 display_eventlog_names( );
461 configfile
= talloc_strdup(frame
, optarg
);
471 printf( "\nNot enough arguments!\n" );
476 cmdline_messaging_context(configfile
== NULL
?
477 get_dyn_CONFIGFILE() : configfile
);
479 if ( configfile
== NULL
) {
480 lp_load_global(get_dyn_CONFIGFILE());
481 } else if (!lp_load_global(configfile
)) {
482 printf("Unable to parse configfile '%s'\n",configfile
);
486 /* note that the separate command types should call usage if they need to... */
488 if ( !strcasecmp_m( opname
, "addsource" ) ) {
489 rc
= DoAddSourceCommand( argc
, argv
, opt_debug
,
493 if ( !strcasecmp_m( opname
, "write" ) ) {
494 rc
= DoWriteCommand( argc
, argv
, opt_debug
, exename
);
497 if ( !strcasecmp_m( opname
, "dump" ) ) {
498 rc
= DoDumpCommand( argc
, argv
, opt_debug
, exename
);
501 printf( "unknown command [%s]\n", opname
);