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
|
/*
* Copyright (c) 2019 Balabit
* Copyright (c) 1998-2010 Balázs Scheidler
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "dump.h"
#include "add.h"
#include "generate.h"
#include "persist-tool.h"
#include "reloc.h"
#include "messages.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#if SYSLOG_NG_HAVE_GETOPT_H
#include <getopt.h>
#endif
static void
load_state_handler_modules(GlobalConfig *cfg)
{
plugin_context_init_instance(&cfg->plugin_context);
plugin_context_set_module_path(&cfg->plugin_context, (const gchar *)get_installation_path_for(SYSLOG_NG_MODULE_PATH));
plugin_discover_candidate_modules(&cfg->plugin_context);
}
static gboolean
persist_tool_start_state(PersistTool *self)
{
main_thread_handle = get_thread_id();
self->state = persist_state_new(self->persist_filename);
gboolean start_result;
switch (self->mode)
{
case persist_mode_normal:
start_result = persist_state_start(self->state);
break;
case persist_mode_dump:
start_result = persist_state_start_dump(self->state);
break;
case persist_mode_edit:
start_result = persist_state_start_edit(self->state);
break;
default:
fprintf(stderr, "Invalid perist mode: %d\n", self->mode);
start_result = FALSE;
break;
}
if (!start_result)
{
fprintf(stderr, "Invalid persist file: %s\n", self->persist_filename);
persist_state_cancel(self->state);
persist_state_free(self->state);
self->state = NULL;
return FALSE;
}
return TRUE;
}
void
persist_tool_revert_changes(PersistTool *self)
{
if (self->state == NULL)
{
self->state = self->cfg->state;
}
persist_state_cancel(self->state);
persist_state_start(self->state);
}
PersistTool *
persist_tool_new(gchar *persist_filename, PersistStateMode open_mode)
{
PersistTool *self = g_new0(PersistTool, 1);
self->mode = open_mode;
self->persist_filename = g_strdup(persist_filename);
self->cfg = cfg_new(0);
if (!persist_tool_start_state(self))
{
persist_tool_free(self);
return NULL;
}
load_state_handler_modules(self->cfg);
return self;
}
void persist_tool_free(PersistTool *self)
{
if (self->cfg)
{
cfg_free(self->cfg);
}
if (self->state)
{
if (self->mode != persist_mode_dump)
{
persist_state_commit(self->state);
}
else
{
persist_state_cancel(self->state);
}
persist_state_free(self->state);
}
g_free(self->persist_filename);
g_free(self);
}
gchar *persist_state_dir;
gchar *persist_state_name;
gboolean force_generate;
gchar *generate_output_dir;
static GOptionEntry dump_options[] =
{
{ NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL }
};
static GOptionEntry add_options[] =
{
{ "output-dir", 'o', 0, G_OPTION_ARG_STRING, &persist_state_dir, "The directory where persist file is located.", "<directory>" },
{ "persist-name", 'p', 0, G_OPTION_ARG_STRING, &persist_state_name, "The name of the persist file to generate. If not specified it will be the default syslog-ng.persist.", "<persist_name>"},
{ NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL }
};
static GOptionEntry generate_options[] =
{
{ "force", 'f', 0, G_OPTION_ARG_NONE, &force_generate, "Overwrite the persist file if it already exists. WARNING: Use this option with care, persist-tool will not ask for confirmation", NULL},
{ "output-dir", 'o', 0, G_OPTION_ARG_FILENAME, &generate_output_dir, "The directory where persist file will be generated to. The name of the persist file will be syslog-ng.persist", "<directory>"},
{ NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL }
};
typedef struct _PersistToolMode
{
const gchar *mode;
const GOptionEntry *options;
const gchar *description;
const gchar *parameter_description;
gint
(*main)(gint argc, gchar *argv[]);
} PersistToolMode;
static PersistToolMode modes[] =
{
{ "dump", dump_options, "Dump the contents of the persist file", "<persist_file>", dump_main },
{ "generate", generate_options, "Generate an empty persist file", "", generate_main },
{ "add", add_options, "Add new or change entry in the persist file", "<input_file>", add_main },
{ NULL, NULL },
};
const gchar *
get_mode(int *argc, char **argv[])
{
gint i;
const gchar *mode;
for (i = 1; i < (*argc); i++)
{
if ((*argv)[i][0] != '-')
{
mode = (*argv)[i];
memmove(&(*argv)[i], &(*argv)[i+1], ((*argc) - i) * sizeof(gchar *));
(*argc)--;
return mode;
}
}
return NULL;
}
void
usage(const gchar *bin_name)
{
gint mode;
fprintf(stderr, "Syntax: %s <command> [options]\nPossible commands are:\n",
bin_name);
for (mode = 0; modes[mode].mode; mode++)
{
fprintf(stderr, " %-20s %s\n", modes[mode].mode,
modes[mode].description);
}
}
int
main(int argc, char *argv[])
{
const gchar *mode_string;
GOptionContext *ctx = NULL;
gint mode;
GError *error = NULL;
int result;
msg_init(FALSE);
setvbuf(stderr, NULL, _IONBF, 0);
mode_string = get_mode(&argc, &argv);
if (!mode_string)
{
usage(argv[0]);
return 1;
}
for (mode = 0; modes[mode].mode; mode++)
{
if (strcmp(modes[mode].mode, mode_string) == 0)
{
ctx = g_option_context_new(modes[mode].parameter_description);
g_option_context_set_summary(ctx, modes[mode].description);
g_option_context_add_main_entries(ctx, modes[mode].options, NULL );
break;
}
}
if (!ctx)
{
fprintf(stderr, "Unknown command\n");
usage(argv[0]);
return 1;
}
argv[0] = g_strdup_printf("%s %s", argv[0], mode_string);
if (!g_option_context_parse(ctx, &argc, &argv, &error))
{
fprintf(stderr, "Error parsing command line arguments: %s\n",
error ? error->message : "Invalid arguments");
g_clear_error(&error);
g_option_context_free(ctx);
return 1;
}
g_option_context_free(ctx);
result = modes[mode].main(argc, argv);
return result;
}
|