/usr/include/syslog-ng/logmsg/logmsg.h is in syslog-ng-dev 3.13.2-3.
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 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 | /*
* Copyright (c) 2002-2013 Balabit
* Copyright (c) 1998-2013 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 LOGMSG_H_INCLUDED
#define LOGMSG_H_INCLUDED
#include "syslog-ng.h"
#include "gsockaddr.h"
#include "atomic.h"
#include "serialize.h"
#include "logstamp.h"
#include "logmsg/nvtable.h"
#include "msg-format.h"
#include "logmsg/tags.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/time.h>
#include <iv_list.h>
typedef enum
{
AT_UNDEFINED,
AT_PROCESSED,
AT_ABORTED,
AT_SUSPENDED
} AckType;
#define IS_ACK_ABORTED(x) ((x) == AT_ABORTED ? 1 : 0)
#define IS_ABORTFLAG_ON(x) ((x) == 1 ? TRUE : FALSE)
#define IS_ACK_SUSPENDED(x) ((x) == AT_SUSPENDED ? 1 : 0)
#define IS_SUSPENDFLAG_ON(x) ((x) == 1 ? TRUE : FALSE)
#define STRICT_ROUND_TO_NEXT_EIGHT(x) ((x + 8) & ~7)
typedef struct _LogPathOptions LogPathOptions;
typedef void (*LMAckFunc)(LogMessage *lm, AckType ack_type);
#define RE_MAX_MATCHES 256
typedef enum
{
LM_TS_STAMP = 0,
LM_TS_RECVD = 1,
LM_TS_MAX
} LogMessageTimeStamp;
/* builtin values */
enum
{
LM_V_NONE,
LM_V_HOST,
LM_V_HOST_FROM,
LM_V_MESSAGE,
LM_V_PROGRAM,
LM_V_PID,
LM_V_MSGID,
LM_V_SOURCE,
LM_V_LEGACY_MSGHDR,
/* NOTE: this is used as the number of "statically" allocated elements in
* an NVTable. NVTable may impose restrictions on this value (for
* instance had to be an even number earlier). So be sure to validate
* whether LM_V_MAX would fit NVTable if you add further enums here.
*/
LM_V_MAX,
};
enum
{
LM_VF_SDATA = 0x0001,
LM_VF_MATCH = 0x0002,
LM_VF_MACRO = 0x0004,
};
enum
{
/* these flags also matter when the message is serialized */
LF_OLD_UNPARSED = 0x0001,
/* message payload is guaranteed to be valid utf8 */
LF_UTF8 = 0x0001,
/* message was generated from within syslog-ng, doesn't matter if it came from the internal() source */
LF_INTERNAL = 0x0002,
/* message was received on a local transport, e.g. it was generated on the local machine */
LF_LOCAL = 0x0004,
/* message is a MARK mode */
LF_MARK = 0x0008,
/* state flags that only matter during syslog-ng runtime and never
* when a message is serialized */
LF_STATE_MASK = 0xFFF0,
LF_STATE_OWN_PAYLOAD = 0x0010,
LF_STATE_OWN_SADDR = 0x0020,
LF_STATE_OWN_TAGS = 0x0040,
LF_STATE_OWN_SDATA = 0x0080,
LF_STATE_OWN_MASK = 0x00F0,
/* In the log header the hostname shall be printed individually (no group name, no chain hosts)*/
LF_SIMPLE_HOSTNAME = 0x0100,
LF_CHAINED_HOSTNAME = 0x00010000,
/* NOTE: this flag is now unused. The original intent was to save whether
* LEGACY_MSGHDR was saved by the parser code. Now we simply check
* whether the length of ${LEGACY_MSGHDR} is non-zero. This used to be a
* slow operation (when name-value pairs were stored in a hashtable), now
* it is much faster. Also, this makes it possible to reproduce a message
* entirely based on name-value pairs. Without this change, even if
* LEGACY_MSGHDR was transferred (e.g. ewmm), the other side couldn't
* reproduce the original message, as this flag was not transferred.
*
* The flag remains here for documentation, and also because it is serialized in disk-buffers
*/
__UNUSED_LF_LEGACY_MSGHDR = 0x00020000,
};
typedef struct _LogMessageQueueNode
{
struct iv_list_head list;
LogMessage *msg;
gboolean ack_needed:1, embedded:1, flow_control_requested:1;
} LogMessageQueueNode;
/* NOTE: the members are ordered according to the presumed use frequency.
* The structure itself is 2 cachelines, the border is right after the "msg"
* member */
struct _LogMessage
{
/* if you change any of the fields here, be sure to adjust
* log_msg_clone_cow() as well to initialize fields properly */
/* ack_and_ref_and_abort_and_suspended is a 32 bit integer that is accessed in an atomic way.
* The upper half contains the ACK count (and the abort flag), the lower half
* the REF count. It is not a GAtomicCounter as due to ref/ack caching it has
* a lot of magic behind its implementation. See the logmsg.c file, around
* log_msg_ref/unref.
*/
/* FIXME: the structure has holes, but right now it's 1 byte short to make
* it smaller (it is possible to create a 7 byte contiguos block but 8
* byte alignment is needed. Let's check this with the inline-tags stuff */
gint ack_and_ref_and_abort_and_suspended;
AckRecord *ack_record;
LMAckFunc ack_func;
LogMessage *original;
gsize allocated_bytes;
/* message parts */
/* the contents of the members below is directly copied into another
* LogMessage with pointer values. To change any of the fields please use
* log_msg_set_*() functions, which will handle borrowed data members
* correctly.
*/
/* ==== start of directly copied part ==== */
LogStamp timestamps[LM_TS_MAX];
guint32 host_id;
gulong *tags;
NVHandle *sdata;
GSockAddr *saddr;
NVTable *payload;
guint32 flags;
guint16 pri;
guint8 initial_parse:1,
recursed:1;
guint8 num_matches;
guint8 num_tags;
guint8 alloc_sdata;
guint8 num_sdata;
/* ==== end of directly copied part ==== */
guint8 num_nodes;
guint8 cur_node;
guint8 protect_cnt;
guint64 rcptid;
/* preallocated LogQueueNodes used to insert this message into a LogQueue */
LogMessageQueueNode nodes[0];
/* a preallocated space for the inital NVTable (payload) may follow */
};
extern NVRegistry *logmsg_registry;
extern const char logmsg_sd_prefix[];
extern const gint logmsg_sd_prefix_len;
extern gint logmsg_node_max;
LogMessage *log_msg_ref(LogMessage *m);
void log_msg_unref(LogMessage *m);
void log_msg_write_protect(LogMessage *m);
void log_msg_write_unprotect(LogMessage *m);
LogMessage *log_msg_clone_cow(LogMessage *msg, const LogPathOptions *path_options);
LogMessage *log_msg_make_writable(LogMessage **pmsg, const LogPathOptions *path_options);
gboolean log_msg_write(LogMessage *self, SerializeArchive *sa);
gboolean log_msg_read(LogMessage *self, SerializeArchive *sa);
/* generic values that encapsulate log message fields, dynamic values and structured data */
NVHandle log_msg_get_value_handle(const gchar *value_name);
gboolean log_msg_is_value_name_valid(const gchar *value);
gboolean log_msg_is_handle_macro(NVHandle handle);
gboolean log_msg_is_handle_sdata(NVHandle handle);
gboolean log_msg_is_handle_match(NVHandle handle);
static inline gboolean
log_msg_is_handle_settable_with_an_indirect_value(NVHandle handle)
{
return (handle >= LM_V_MAX);
}
const gchar *log_msg_get_macro_value(const LogMessage *self, gint id, gssize *value_len);
static inline const gchar *
log_msg_get_value(const LogMessage *self, NVHandle handle, gssize *value_len)
{
guint16 flags;
flags = nv_registry_get_handle_flags(logmsg_registry, handle);
if ((flags & LM_VF_MACRO) == 0)
return nv_table_get_value(self->payload, handle, value_len);
else
return log_msg_get_macro_value(self, flags >> 8, value_len);
}
static inline const gchar *
log_msg_get_value_if_set(const LogMessage *self, NVHandle handle, gssize *value_len)
{
guint16 flags;
flags = nv_registry_get_handle_flags(logmsg_registry, handle);
if ((flags & LM_VF_MACRO) == 0)
return nv_table_get_value_if_set(self->payload, handle, value_len);
else
return log_msg_get_macro_value(self, flags >> 8, value_len);
}
static inline const gchar *
log_msg_get_value_by_name(const LogMessage *self, const gchar *name, gssize *value_len)
{
NVHandle handle = log_msg_get_value_handle(name);
return log_msg_get_value(self, handle, value_len);
}
static inline const gchar *
log_msg_get_value_name(NVHandle handle, gssize *name_len)
{
return nv_registry_get_handle_name(logmsg_registry, handle, name_len);
}
typedef gboolean (*LogMessageTagsForeachFunc)(const LogMessage *self, LogTagId tag_id, const gchar *name, gpointer user_data);
void log_msg_set_value(LogMessage *self, NVHandle handle, const gchar *new_value, gssize length);
void log_msg_set_value_indirect(LogMessage *self, NVHandle handle, NVHandle ref_handle, guint8 type, guint16 ofs, guint16 len);
void log_msg_unset_value(LogMessage *self, NVHandle handle);
void log_msg_unset_value_by_name(LogMessage *self, const gchar *name);
gboolean log_msg_values_foreach(const LogMessage *self, NVTableForeachFunc func, gpointer user_data);
void log_msg_set_match(LogMessage *self, gint index, const gchar *value, gssize value_len);
void log_msg_set_match_indirect(LogMessage *self, gint index, NVHandle ref_handle, guint8 type, guint16 ofs, guint16 len);
void log_msg_clear_matches(LogMessage *self);
static inline void
log_msg_set_value_by_name(LogMessage *self, const gchar *name, const gchar *value, gssize length)
{
NVHandle handle = log_msg_get_value_handle(name);
log_msg_set_value(self, handle, value, length);
}
void log_msg_append_format_sdata(const LogMessage *self, GString *result, guint32 seq_num);
void log_msg_format_sdata(const LogMessage *self, GString *result, guint32 seq_num);
void log_msg_set_tag_by_id_onoff(LogMessage *self, LogTagId id, gboolean on);
void log_msg_set_tag_by_id(LogMessage *self, LogTagId id);
void log_msg_set_tag_by_name(LogMessage *self, const gchar *name);
void log_msg_clear_tag_by_id(LogMessage *self, LogTagId id);
void log_msg_clear_tag_by_name(LogMessage *self, const gchar *name);
gboolean log_msg_is_tag_by_id(LogMessage *self, LogTagId id);
gboolean log_msg_is_tag_by_name(LogMessage *self, const gchar *name);
void log_msg_tags_foreach(const LogMessage *self, LogMessageTagsForeachFunc callback, gpointer user_data);
void log_msg_print_tags(const LogMessage *self, GString *result);
LogMessageQueueNode *log_msg_alloc_queue_node(LogMessage *msg, const LogPathOptions *path_options);
LogMessageQueueNode *log_msg_alloc_dynamic_queue_node(LogMessage *msg, const LogPathOptions *path_options);
void log_msg_free_queue_node(LogMessageQueueNode *node);
void log_msg_clear(LogMessage *self);
void log_msg_merge_context(LogMessage *self, LogMessage **context, gsize context_len);
LogMessage *log_msg_new(const gchar *msg, gint length,
GSockAddr *saddr,
MsgFormatOptions *parse_options);
LogMessage *log_msg_new_mark(void);
LogMessage *log_msg_new_internal(gint prio, const gchar *msg);
LogMessage *log_msg_new_empty(void);
LogMessage *log_msg_new_local(void);
void log_msg_add_ack(LogMessage *msg, const LogPathOptions *path_options);
void log_msg_ack(LogMessage *msg, const LogPathOptions *path_options, AckType ack_type);
void log_msg_drop(LogMessage *msg, const LogPathOptions *path_options, AckType ack_type);
const LogPathOptions *log_msg_break_ack(LogMessage *msg, const LogPathOptions *path_options, LogPathOptions *local_options);
void log_msg_refcache_start_producer(LogMessage *self);
void log_msg_refcache_start_consumer(LogMessage *self, const LogPathOptions *path_options);
void log_msg_refcache_stop(void);
void log_msg_registry_init(void);
void log_msg_registry_deinit(void);
void log_msg_global_init(void);
void log_msg_global_deinit(void);
void log_msg_stats_global_init(void);
void log_msg_registry_foreach(GHFunc func, gpointer user_data);
gint log_msg_lookup_time_stamp_name(const gchar *name);
gssize log_msg_get_size(LogMessage *self);
#endif
|