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 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
/*
* Copyright (c) 2002-2010 BalaBit IT Ltd, Budapest, Hungary
* Copyright (c) 1998-2010 Balázs Scheidler
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, 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 "afprog.h"
#include "driver.h"
#include "messages.h"
#include "logwriter.h"
#include "children.h"
#include "misc.h"
#include "stats.h"
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
static gboolean
afprogram_popen(const gchar *cmdline, GIOCondition cond, pid_t *pid, gint *fd)
{
int msg_pipe[2];
g_return_val_if_fail(cond == G_IO_IN || cond == G_IO_OUT, FALSE);
if (pipe(msg_pipe) == -1)
{
msg_error("Error creating program pipe",
evt_tag_str("cmdline", cmdline),
evt_tag_errno(EVT_TAG_OSERROR, errno),
NULL);
return FALSE;
}
if ((*pid = fork()) < 0)
{
msg_error("Error in fork()",
evt_tag_errno(EVT_TAG_OSERROR, errno),
NULL);
close(msg_pipe[0]);
close(msg_pipe[1]);
return FALSE;
}
if (*pid == 0)
{
/* child */
int devnull = open("/dev/null", O_WRONLY);
if (devnull == -1)
{
_exit(127);
}
if (cond == G_IO_IN)
{
dup2(msg_pipe[1], 1);
dup2(devnull, 0);
dup2(devnull, 2);
}
else
{
dup2(msg_pipe[0], 0);
dup2(devnull, 1);
dup2(devnull, 2);
}
close(devnull);
close(msg_pipe[0]);
close(msg_pipe[1]);
execl("/bin/sh", "/bin/sh", "-c", cmdline, NULL);
_exit(127);
}
if (cond == G_IO_IN)
{
*fd = msg_pipe[0];
close(msg_pipe[1]);
}
else
{
*fd = msg_pipe[1];
close(msg_pipe[0]);
}
return TRUE;
}
/* source driver */
static void
afprogram_sd_exit(pid_t pid, int status, gpointer s)
{
AFProgramSourceDriver *self = (AFProgramSourceDriver *) s;
/* Note: self->pid being -1 means that deinit was called, thus we don't
* need to restart the command. self->pid might change due to EPIPE
* handling restarting the command before this handler is run. */
if (self->pid != -1 && self->pid == pid)
{
msg_verbose("Child program exited, restarting",
evt_tag_str("cmdline", self->cmdline->str),
evt_tag_int("status", status),
NULL);
self->pid = -1;
}
}
static gboolean
afprogram_sd_init(LogPipe *s)
{
AFProgramSourceDriver *self = (AFProgramSourceDriver *) s;
GlobalConfig *cfg = log_pipe_get_config(s);
gint fd;
if (!log_src_driver_init_method(s))
return FALSE;
if (cfg)
log_reader_options_init(&self->reader_options, cfg, self->super.super.group);
msg_verbose("Starting source program",
evt_tag_str("cmdline", self->cmdline->str),
NULL);
if (!afprogram_popen(self->cmdline->str, G_IO_IN, &self->pid, &fd))
return FALSE;
/* parent */
child_manager_register(self->pid, afprogram_sd_exit, log_pipe_ref(&self->super.super.super), (GDestroyNotify) log_pipe_unref);
g_fd_set_nonblock(fd, TRUE);
g_fd_set_cloexec(fd, TRUE);
if (!self->reader)
{
LogTransport *transport;
transport = log_transport_plain_new(fd, 0);
transport->timeout = 10;
self->reader = log_reader_new(log_proto_text_server_new(transport, self->reader_options.msg_size, 0));
log_reader_set_options(self->reader, s, &self->reader_options, 0, SCS_PROGRAM, self->super.super.id, self->cmdline->str);
}
log_pipe_append(self->reader, &self->super.super.super);
if (!log_pipe_init(self->reader, NULL))
{
msg_error("Error initializing program source, closing fd",
evt_tag_int("fd", fd),
NULL);
log_pipe_unref(self->reader);
self->reader = NULL;
close(fd);
return FALSE;
}
return TRUE;
}
static gboolean
afprogram_sd_deinit(LogPipe *s)
{
AFProgramSourceDriver *self = (AFProgramSourceDriver *) s;
if (self->pid != -1)
{
msg_verbose("Sending source program a TERM signal",
evt_tag_str("cmdline", self->cmdline->str),
evt_tag_int("child_pid", self->pid),
NULL);
kill(self->pid, SIGTERM);
self->pid = -1;
}
if (self->reader)
{
log_pipe_deinit(self->reader);
log_pipe_unref(self->reader);
self->reader = NULL;
}
if (!log_src_driver_deinit_method(s))
return FALSE;
return TRUE;
}
static void
afprogram_sd_free(LogPipe *s)
{
AFProgramSourceDriver *self = (AFProgramSourceDriver *) s;
log_reader_options_destroy(&self->reader_options);
g_string_free(self->cmdline, TRUE);
log_src_driver_free(s);
}
static void
afprogram_sd_notify(LogPipe *s, LogPipe *sender, gint notify_code, gpointer user_data)
{
switch (notify_code)
{
case NC_CLOSE:
case NC_READ_ERROR:
afprogram_sd_deinit(s);
afprogram_sd_init(s);
break;
}
}
LogDriver *
afprogram_sd_new(gchar *cmdline)
{
AFProgramSourceDriver *self = g_new0(AFProgramSourceDriver, 1);
log_src_driver_init_instance(&self->super);
self->super.super.super.init = afprogram_sd_init;
self->super.super.super.deinit = afprogram_sd_deinit;
self->super.super.super.free_fn = afprogram_sd_free;
self->super.super.super.notify = afprogram_sd_notify;
self->cmdline = g_string_new(cmdline);
log_reader_options_defaults(&self->reader_options);
self->reader_options.parse_options.flags |= LP_LOCAL;
return &self->super.super;
}
/* dest driver */
static void afprogram_dd_exit(pid_t pid, int status, gpointer s);
static gchar *
afprogram_dd_format_persist_name(AFProgramDestDriver *self)
{
static gchar persist_name[256];
g_snprintf(persist_name, sizeof(persist_name),
"afprogram_dd_qname(%s,%s)", self->cmdline->str, self->super.super.id);
return persist_name;
}
static gboolean
afprogram_dd_reopen(AFProgramDestDriver *self)
{
int fd;
if (self->pid != -1)
{
msg_verbose("Sending destination program a TERM signal",
evt_tag_str("cmdline", self->cmdline->str),
evt_tag_int("child_pid", self->pid),
NULL);
kill(self->pid, SIGTERM);
self->pid = -1;
}
msg_verbose("Starting destination program",
evt_tag_str("cmdline", self->cmdline->str),
NULL);
if (!afprogram_popen(self->cmdline->str, G_IO_OUT, &self->pid, &fd))
return FALSE;
child_manager_register(self->pid, afprogram_dd_exit, log_pipe_ref(&self->super.super.super), (GDestroyNotify) log_pipe_unref);
g_fd_set_nonblock(fd, TRUE);
log_writer_reopen(self->writer, log_proto_text_client_new(log_transport_plain_new(fd, 0)));
return TRUE;
}
static void
afprogram_dd_exit(pid_t pid, int status, gpointer s)
{
AFProgramDestDriver *self = (AFProgramDestDriver *) s;
/* Note: self->pid being -1 means that deinit was called, thus we don't
* need to restart the command. self->pid might change due to EPIPE
* handling restarting the command before this handler is run. */
if (self->pid != -1 && self->pid == pid)
{
msg_verbose("Child program exited, restarting",
evt_tag_str("cmdline", self->cmdline->str),
evt_tag_int("status", status),
NULL);
self->pid = -1;
afprogram_dd_reopen(self);
}
}
static gboolean
afprogram_dd_init(LogPipe *s)
{
AFProgramDestDriver *self = (AFProgramDestDriver *) s;
GlobalConfig *cfg = log_pipe_get_config(s);
if (!log_dest_driver_init_method(s))
return FALSE;
log_writer_options_init(&self->writer_options, cfg, 0);
if (!self->writer)
self->writer = log_writer_new(LW_FORMAT_FILE);
log_writer_set_options((LogWriter *) self->writer, s, &self->writer_options, 0, SCS_PROGRAM, self->super.super.id, self->cmdline->str);
log_writer_set_queue(self->writer, log_dest_driver_acquire_queue(&self->super, afprogram_dd_format_persist_name(self)));
log_pipe_init(self->writer, NULL);
log_pipe_append(&self->super.super.super, self->writer);
return afprogram_dd_reopen(self);
}
static gboolean
afprogram_dd_deinit(LogPipe *s)
{
AFProgramDestDriver *self = (AFProgramDestDriver *) s;
if (self->pid != -1)
{
msg_verbose("Sending destination program a TERM signal",
evt_tag_str("cmdline", self->cmdline->str),
evt_tag_int("child_pid", self->pid),
NULL);
kill(self->pid, SIGTERM);
self->pid = -1;
}
if (self->writer)
log_pipe_deinit(self->writer);
if (!log_dest_driver_deinit_method(s))
return FALSE;
return TRUE;
}
static void
afprogram_dd_free(LogPipe *s)
{
AFProgramDestDriver *self = (AFProgramDestDriver *) s;
log_pipe_unref(self->writer);
g_string_free(self->cmdline, TRUE);
log_writer_options_destroy(&self->writer_options);
log_dest_driver_free(s);
}
static void
afprogram_dd_notify(LogPipe *s, LogPipe *sender, gint notify_code, gpointer user_data)
{
AFProgramDestDriver *self = (AFProgramDestDriver *) s;
switch (notify_code)
{
case NC_CLOSE:
case NC_WRITE_ERROR:
afprogram_dd_reopen(self);
break;
}
}
LogDriver *
afprogram_dd_new(gchar *cmdline)
{
AFProgramDestDriver *self = g_new0(AFProgramDestDriver, 1);
log_dest_driver_init_instance(&self->super);
self->super.super.super.init = afprogram_dd_init;
self->super.super.super.deinit = afprogram_dd_deinit;
self->super.super.super.free_fn = afprogram_dd_free;
self->super.super.super.notify = afprogram_dd_notify;
self->cmdline = g_string_new(cmdline);
self->pid = -1;
log_writer_options_defaults(&self->writer_options);
return &self->super.super;
}
|