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
|
/*
* Copyright (c) 2002-2016 Balabit
* Copyright (c) 2016 Viktor Juhasz <viktor.juhasz@balabit.com>
*
* 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 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, 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 "diskq-options.h"
#include "syslog-ng.h"
#include "messages.h"
#include "reloc.h"
void
disk_queue_options_qout_size_set(DiskQueueOptions *self, gint qout_size)
{
if (qout_size < 64)
{
msg_warning("WARNING: The configured qout size is smaller than the minimum allowed",
evt_tag_int("configured_size", qout_size),
evt_tag_int("minimum_allowed_size", 64),
evt_tag_int("new_size", 64));
qout_size = 64;
}
self->qout_size = qout_size;
}
void
disk_queue_options_disk_buf_size_set(DiskQueueOptions *self, gint64 disk_buf_size)
{
if (disk_buf_size < MIN_DISK_BUF_SIZE)
{
msg_warning("WARNING: The configured disk buffer size is smaller than the minimum allowed",
evt_tag_long("configured_size", disk_buf_size),
evt_tag_long("minimum_allowed_size", MIN_DISK_BUF_SIZE),
evt_tag_long("new_size", MIN_DISK_BUF_SIZE));
disk_buf_size = MIN_DISK_BUF_SIZE;
}
self->disk_buf_size = disk_buf_size;
}
void
disk_queue_options_reliable_set(DiskQueueOptions *self, gboolean reliable)
{
self->reliable = reliable;
}
void
disk_queue_options_mem_buf_size_set(DiskQueueOptions *self, gint mem_buf_size)
{
self->mem_buf_size = mem_buf_size;
}
void
disk_queue_options_mem_buf_length_set(DiskQueueOptions *self, gint mem_buf_length)
{
self->mem_buf_length = mem_buf_length;
}
void
disk_queue_options_check_plugin_settings(DiskQueueOptions *self)
{
if (self->reliable)
{
if (self->mem_buf_length > 0)
{
msg_warning("WARNING: mem-buf-length parameter was ignored as it is not compatible with reliable queue. Did you mean mem-buf-size?");
}
}
else
{
if (self->mem_buf_size > 0)
{
msg_warning("WARNING: mem-buf-size parameter was ignored as it is not compatible with non-reliable queue. Did you mean mem-buf-length?");
}
}
}
gchar *
_normalize_path(const gchar *path)
{
const int length = strlen(path);
if ('/' == path[length-1] || '\\' == path[length-1])
return g_path_get_dirname(path);
return g_strdup(path);
}
void
disk_queue_options_set_dir(DiskQueueOptions *self, const gchar *dir)
{
if (self->dir)
{
g_free(self->dir);
}
self->dir = _normalize_path(dir);
}
void
disk_queue_options_set_default_options(DiskQueueOptions *self)
{
self->disk_buf_size = -1;
self->mem_buf_length = -1;
self->reliable = FALSE;
self->mem_buf_size = -1;
self->qout_size = -1;
self->dir = g_strdup(get_installation_path_for(SYSLOG_NG_PATH_LOCALSTATEDIR));
}
void
disk_queue_options_destroy(DiskQueueOptions *self)
{
if (self->dir)
{
g_free(self->dir);
self->dir = NULL;
}
}
|