/usr/include/syslog-ng/driver.h is in syslog-ng-dev 3.5.6-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* Copyright (c) 2002-2012 BalaBit IT Ltd, Budapest, Hungary
* Copyright (c) 1998-2012 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.
*
*/
#ifndef DRIVER_H_INCLUDED
#define DRIVER_H_INCLUDED
#include "syslog-ng.h"
#include "logpipe.h"
#include "logqueue.h"
#include "cfg.h"
/*
* Drivers overview
* ================
*
* In syslog-ng nomenclature a driver is either responsible for handling
* incoming messages (also known as source driver), or to send them out to
* another party (also known as the destination driver). Source drivers are
* created in "source" statements and destination drivers are similarly
* created in "destination" statements.
*
* Drivers are derived from LogPipes, in essence they use the same "queue"
* method to forward messages further down the processing pipeline.
*
* Driver plugins
* ==============
*
* It is possible to change the behaviour of a driver somewhat by adding
* "plugins" to drivers. These plugins basically get a chance to override
* LogDriver virtual methods, change their semantics and possibly rely on
* the original behaviour too. This way, functionalities that are present
* in all destination drivers can easily be shared, without having to recode
* the same stuff multiple times.
*
* Driver plugins are activated with the "attach" virtual method, which in
* turn may redirect any of the LogDriver virtual methods to themselves.
* They can even have a "user_data" pointer, so that they can locate their
* associated state.
*
* Multiple plugins can hook into the same method, by saving the original
* address & original user_data value.
*
*/
/* direction agnostic driver class: LogDriver, see specialized source & destination drivers below */
typedef struct _LogDriver LogDriver;
typedef struct _LogDriverPlugin LogDriverPlugin;
struct _LogDriverPlugin
{
/* this function is called when the plugin is attached to a LogDriver
* instance. It should do whatever it is necessary to extend the
* functionality of the driver specified (e.g. hook into various
* methods).
*/
gboolean (*attach)(LogDriverPlugin *s, LogDriver *d);
void (*detach)(LogDriverPlugin *s, LogDriver *d);
void (*free_fn)(LogDriverPlugin *s);
};
static inline gboolean
log_driver_plugin_attach(LogDriverPlugin *self, LogDriver *d)
{
return self->attach(self, d);
}
static inline void
log_driver_plugin_detach(LogDriverPlugin *self, LogDriver *d)
{
if (self->detach)
self->detach(self, d);
}
static inline void
log_driver_plugin_free(LogDriverPlugin *self)
{
self->free_fn(self);
}
void log_driver_plugin_init_instance(LogDriverPlugin *self);
void log_driver_plugin_free_method(LogDriverPlugin *self);
struct _LogDriver
{
LogPipe super;
gboolean optional;
gchar *group;
gchar *id;
GList *plugins;
StatsCounterItem *processed_group_messages;
};
void log_driver_add_plugin(LogDriver *self, LogDriverPlugin *plugin);
void log_driver_append(LogDriver *self, LogDriver *next);
/* methods registered to the init/deinit virtual functions */
gboolean log_driver_init_method(LogPipe *s);
gboolean log_driver_deinit_method(LogPipe *s);
/* source driver class: LogSourceDriver */
typedef struct _LogSrcDriver LogSrcDriver;
struct _LogSrcDriver
{
LogDriver super;
gint group_len;
StatsCounterItem *received_global_messages;
};
gboolean log_src_driver_init_method(LogPipe *s);
gboolean log_src_driver_deinit_method(LogPipe *s);
void log_src_driver_init_instance(LogSrcDriver *self);
void log_src_driver_free(LogPipe *s);
/* destination driver class: LogDestDriver */
typedef struct _LogDestDriver LogDestDriver;
struct _LogDestDriver
{
LogDriver super;
gpointer acquire_queue_data;
LogQueue *(*acquire_queue)(LogDestDriver *s, gchar *persist_name, gpointer user_data);
gpointer release_queue_data;
void (*release_queue)(LogDestDriver *s, LogQueue *q, gpointer user_data);
/* queues managed by this LogDestDriver, all constructed queues come
* here and are automatically saved into cfg_persist & persist_state. */
GList *queues;
gint log_fifo_size;
gint throttle;
StatsCounterItem *queued_global_messages;
};
/* returns a reference */
static inline LogQueue *
log_dest_driver_acquire_queue(LogDestDriver *self, gchar *persist_name)
{
LogQueue *q;
q = self->acquire_queue(self, persist_name, self->acquire_queue_data);
if (q)
{
log_queue_ref(q);
self->queues = g_list_prepend(self->queues, q);
}
return q;
}
/* consumes the reference in @q */
static inline void
log_dest_driver_release_queue(LogDestDriver *self, LogQueue *q)
{
if (q)
{
self->queues = g_list_remove(self->queues, q);
/* this drops the reference passed by the caller */
self->release_queue(self, q, self->release_queue_data);
/* this drops the reference stored on the list */
log_queue_unref(q);
}
}
gboolean log_dest_driver_init_method(LogPipe *s);
gboolean log_dest_driver_deinit_method(LogPipe *s);
void log_dest_driver_queue_method(LogPipe *s, LogMessage *msg, const LogPathOptions *path_options, gpointer user_data);
void log_dest_driver_init_instance(LogDestDriver *self);
void log_dest_driver_free(LogPipe *s);
#endif
|