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"
34 #include "lib/util/string_wrappers.h"
41 static void usage( char *s
)
43 printf( "\nUsage: %s [OPTION]\n\n", s
);
44 printf( " -o write <Eventlog Name> \t\t\t\t\tWrites records to eventlog from STDIN\n" );
45 printf( " -o addsource <EventlogName> <sourcename> <msgfileDLLname> \tAdds the specified source & DLL eventlog registry entry\n" );
46 printf( " -o dump <Eventlog Name> <starting_record>\t\t\t\t\tDump stored eventlog entries on STDOUT\n" );
47 printf( "\nMiscellaneous options:\n" );
48 printf( " -s <filename>\t\t\t\t\t\t\tUse configuration file <filename>.\n");
49 printf( " -d\t\t\t\t\t\t\t\tturn debug on\n" );
50 printf( " -h\t\t\t\t\t\t\t\tdisplay help\n\n" );
53 static void display_eventlog_names( void )
58 elogs
= lp_eventlog_list( );
59 printf( "Active eventlog names:\n" );
60 printf( "--------------------------------------\n" );
62 for ( i
= 0; elogs
[i
]; i
++ ) {
63 printf( "\t%s\n", elogs
[i
] );
67 printf( "\t<None specified>\n");
70 /*********************************************************************
71 for an eventlog, add in a source name. If the eventlog doesn't
72 exist (not in the list) do nothing. If a source for the log
73 already exists, change the information (remove, replace)
74 *********************************************************************/
75 static bool eventlog_add_source( const char *eventlog
, const char *sourcename
,
76 const char *messagefile
)
78 /* Find all of the eventlogs, add keys for each of them */
79 /* need to add to the value KEY_EVENTLOG/<eventlog>/Sources string (Creating if necessary)
80 need to add KEY of source to KEY_EVENTLOG/<eventlog>/<source> */
82 const char **elogs
= lp_eventlog_list( );
83 const char **wrklist
, **wp
;
84 char *evtlogpath
= NULL
;
89 TALLOC_CTX
*ctx
= talloc_stackframe();
91 struct registry_key
*key_hive
, *key_eventlog
, *key_source
;
92 struct security_token
*token
= NULL
;
93 const char *hive_name
, *relpath
;
94 enum winreg_CreateAction action
;
95 struct registry_value
*value
;
96 static const uint32_t ACCESS
= REG_KEY_READ
| REG_KEY_WRITE
;
100 d_printf("No Eventlogs configured\n");
104 for ( i
= 0; elogs
[i
]; i
++ ) {
105 if ( strequal( elogs
[i
], eventlog
) )
110 d_printf("Eventlog [%s] not found in list of valid event logs\n",
115 /* have to assume that the evenlog key itself exists at this point */
116 /* add in a key of [sourcename] under the eventlog key */
118 /* todo add to Sources */
120 evtlogpath
= talloc_asprintf(ctx
, "%s\\%s", KEY_EVENTLOG
, eventlog
);
122 d_printf("Out of memory\n");
126 relpath
= evtlogpath
+ sizeof(KEY_EVENTLOG
);
127 hive_name
= talloc_strndup(ctx
, evtlogpath
, relpath
- evtlogpath
);
129 d_printf("Out of memory\n");
134 werr
= ntstatus_to_werror(registry_create_admin_token(ctx
, &token
));
135 if (!W_ERROR_IS_OK(werr
)) {
136 d_printf("Failed to create admin token: %s\n", win_errstr(werr
));
140 werr
= reg_openhive(ctx
, hive_name
, ACCESS
, token
, &key_hive
);
141 if (!W_ERROR_IS_OK(werr
)) {
142 d_printf("Failed to open hive [%s]: %s\n", hive_name
, win_errstr(werr
));
146 werr
= reg_openkey(ctx
, key_hive
, relpath
, ACCESS
, &key_eventlog
);
147 if (!W_ERROR_IS_OK(werr
)) {
148 d_printf("Failed to open key [%s]: %s\n", evtlogpath
, win_errstr(werr
));
152 werr
= reg_queryvalue(ctx
, key_eventlog
, "Sources", &value
);
153 if (!W_ERROR_IS_OK(werr
)) {
154 d_printf("Failed to get value \"Sources\" for [%s]: %s\n", evtlogpath
, win_errstr(werr
));
157 /* perhaps this adding a new string to a multi_sz should be a fn? */
158 /* check to see if it's there already */
160 if ( value
->type
!= REG_MULTI_SZ
) {
161 d_printf("Wrong type for \"Sources\", should be REG_MULTI_SZ\n");
164 /* convert to a 'regulah' chars to do some comparisons */
168 dump_data(1, value
->data
.data
, value
->data
.length
);
170 if (!pull_reg_multi_sz(ctx
, &value
->data
, &wrklist
)) {
171 d_printf("Failed to pull REG_MULTI_SZ from \"Sources\"\n");
175 for (ii
=0; wrklist
[ii
]; ii
++) {
179 if (numsources
> 0) {
180 /* see if it's in there already */
184 if ( strequal( *wp
, sourcename
) ) {
185 d_printf("Source name [%s] already in list for [%s] \n",
186 sourcename
, eventlog
);
193 d_printf("Nothing in the sources list, this might be a problem\n");
197 /* make a new list with an additional entry; copy values, add another */
198 wp
= talloc_realloc(ctx
, wrklist
, const char *, numsources
+ 2 );
200 d_printf("Out of memory\n");
204 wp
[numsources
] = sourcename
;
205 wp
[numsources
+1] = NULL
;
206 if (!push_reg_multi_sz(ctx
, &value
->data
, wp
)) {
207 d_printf("Failed to push Sources\n");
210 dump_data( 1, value
->data
.data
, value
->data
.length
);
211 werr
= reg_setvalue(key_eventlog
, "Sources", value
);
212 if (!W_ERROR_IS_OK(werr
)) {
213 d_printf("Failed to set value Sources: %s\n", win_errstr(werr
));
217 d_printf("Source name [%s] found in existing list of sources\n",
221 werr
= reg_createkey(ctx
, key_eventlog
, sourcename
, ACCESS
, &key_source
, &action
);
222 if (!W_ERROR_IS_OK(werr
)) {
223 d_printf("Failed to create subkey \"%s\" of \"%s\": %s\n", sourcename
, evtlogpath
, win_errstr(werr
));
227 if (action
== REG_CREATED_NEW_KEY
) {
228 d_printf(" Source name [%s] for eventlog [%s] didn't exist, adding \n",
229 sourcename
, eventlog
);
232 /* at this point KEY_EVENTLOG/<eventlog>/<sourcename> key is in there. Now need to add EventMessageFile */
234 /* now add the values to the KEY_EVENTLOG/Application form key */
235 d_printf("Storing EventMessageFile [%s] to eventlog path of [%s]\n",
236 messagefile
, evtlogpath
);
238 if (!push_reg_sz(ctx
, &value
->data
, messagefile
)) {
239 d_printf("Failed to push \"EventMessageFile\"\n");
242 value
->type
= REG_SZ
;
244 werr
= reg_setvalue(key_source
, "EventMessageFile", value
);
245 if (!W_ERROR_IS_OK(werr
)) {
246 d_printf("Failed to set value \"EventMessageFile\": %s\n", win_errstr(werr
));
255 static int DoAddSourceCommand( int argc
, char **argv
, bool debugflag
, char *exename
)
260 printf( "need more arguments:\n" );
261 printf( "-o addsource EventlogName SourceName /path/to/EventMessageFile.dll\n" );
265 /* must open the registry before we access it */
266 werr
= registry_init_common();
267 if (!W_ERROR_IS_OK(werr
)) {
268 printf("Can't open the registry: %s.\n", win_errstr(werr
));
271 werr
= regdb_transaction_start();
272 if (!W_ERROR_IS_OK(werr
)) {
273 printf("Can't start transaction on registry: %s.\n", win_errstr(werr
));
277 if ( !eventlog_add_source( argv
[0], argv
[1], argv
[2] ) ) {
278 regdb_transaction_cancel();
281 werr
= regdb_transaction_commit();
282 if (!W_ERROR_IS_OK(werr
)) {
283 printf("Failed to commit transaction on registry: %s.\n", win_errstr(werr
));
289 static int DoWriteCommand( int argc
, char **argv
, bool debugflag
, char *exename
)
296 /* fixed constants are bad bad bad */
299 struct eventlog_Record_tdb ee
;
300 uint32_t record_number
= 0;
301 TALLOC_CTX
*mem_ctx
= talloc_tos();
305 printf( "Can't open STDIN\n" );
310 printf( "Starting write for eventlog [%s]\n", argv
[0] );
311 display_eventlog_names( );
316 if ( !( etdb
= elog_open_tdb( argfname
, False
, False
) ) ) {
317 printf( "can't open the eventlog TDB (%s)\n", argfname
);
321 ZERO_STRUCT( ee
); /* MUST initialize between records */
323 while ( !feof( f1
) ) {
324 if (fgets( linein
, sizeof( linein
) - 1, f1
) == NULL
) {
327 if ((strlen(linein
) > 0)
328 && (linein
[strlen(linein
)-1] == '\n')) {
329 linein
[strlen(linein
)-1] = 0;
333 printf( "Read line [%s]\n", linein
);
338 parse_logentry( mem_ctx
, ( char * ) &linein
, &ee
, &is_eor
);
339 /* should we do something with the return code? */
342 fixup_eventlog_record_tdb( &ee
);
345 printf( "record number [%d], tg [%d] , tw [%d]\n",
346 ee
.record_number
, (int)ee
.time_generated
, (int)ee
.time_written
);
348 if ( ee
.time_generated
!= 0 ) {
350 /* printf("Writing to the event log\n"); */
352 status
= evlog_push_record_tdb( mem_ctx
, ELOG_TDB_CTX(etdb
),
353 &ee
, &record_number
);
354 if ( !NT_STATUS_IS_OK(status
) ) {
355 printf( "Can't write to the event log: %s\n",
359 printf( "Wrote record %d\n",
364 printf( "<null record>\n" );
366 ZERO_STRUCT( ee
); /* MUST initialize between records */
370 elog_close_tdb( etdb
, False
);
375 static int DoDumpCommand(int argc
, char **argv
, bool debugflag
, char *exename
)
378 TALLOC_CTX
*mem_ctx
= talloc_tos();
386 count
= atoi(argv
[1]);
389 etdb
= elog_open_tdb(argv
[0], false, true);
391 printf("can't open the eventlog TDB (%s)\n", argv
[0]);
397 struct eventlog_Record_tdb
*r
;
400 r
= evlog_pull_record_tdb(mem_ctx
, etdb
->tdb
, count
);
405 printf("displaying record: %d\n", count
);
407 s
= NDR_PRINT_STRUCT_STRING(mem_ctx
, eventlog_Record_tdb
, r
);
415 elog_close_tdb(etdb
, false);
420 /* would be nice to use the popT stuff here, however doing so forces us to drag in a lot of other infrastructure */
422 int main( int argc
, char *argv
[] )
426 char *configfile
= NULL
;
427 TALLOC_CTX
*frame
= talloc_stackframe();
434 opt_debug
= 0; /* todo set this from getopts */
440 fstrcpy( opname
, "write" ); /* the default */
442 #if 0 /* TESTING CODE */
443 eventlog_add_source( "System", "TestSourceX", "SomeTestPathX" );
445 while ( ( opt
= getopt( argc
, argv
, "dho:s:" ) ) != EOF
) {
449 fstrcpy( opname
, optarg
);
454 display_eventlog_names( );
462 configfile
= talloc_strdup(frame
, optarg
);
472 printf( "\nNot enough arguments!\n" );
477 if ( configfile
== NULL
) {
478 lp_load_global(get_dyn_CONFIGFILE());
479 } else if (!lp_load_global(configfile
)) {
480 printf("Unable to parse configfile '%s'\n",configfile
);
484 /* note that the separate command types should call usage if they need to... */
486 if ( !strcasecmp_m( opname
, "addsource" ) ) {
487 rc
= DoAddSourceCommand( argc
, argv
, opt_debug
,
491 if ( !strcasecmp_m( opname
, "write" ) ) {
492 rc
= DoWriteCommand( argc
, argv
, opt_debug
, exename
);
495 if ( !strcasecmp_m( opname
, "dump" ) ) {
496 rc
= DoDumpCommand( argc
, argv
, opt_debug
, exename
);
499 printf( "unknown command [%s]\n", opname
);