This file is indexed.

/usr/include/syslog-ng/modules/add-contextual-data/context-info-db.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
/*
 * Copyright (c) 2016 Balabit
 *
 * 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.
 *
 */

#ifndef CONTEXTINFODB_H_INCLUDED
#define CONTEXTINFODB_H_INCLUDED

#include "syslog-ng.h"
#include "contextual-data-record-scanner.h"
#include <stdio.h>

typedef struct _ContextInfoDB ContextInfoDB;

typedef void (*ADD_CONTEXT_INFO_CB) (gpointer arg,
                                     const ContextualDataRecord *record);

void context_info_db_enable_ordering(ContextInfoDB *self);
GList * context_info_db_ordered_selectors(ContextInfoDB *self);
ContextInfoDB *context_info_db_new(void);
void context_info_db_free(ContextInfoDB *self);

ContextInfoDB *context_info_db_ref(ContextInfoDB *self);
void context_info_db_unref(ContextInfoDB *self);

void context_info_db_purge(ContextInfoDB *self);
void context_info_db_index(ContextInfoDB *self);
gboolean context_info_db_is_loaded(const ContextInfoDB *self);
gboolean context_info_db_is_indexed(const ContextInfoDB *self);

void context_info_db_insert(ContextInfoDB *self,
                            const ContextualDataRecord *record);

gboolean context_info_db_contains(ContextInfoDB *self,
                                  const gchar *selector);

gsize context_info_db_number_of_records(ContextInfoDB *self,
                                        const gchar *selector);

void context_info_db_foreach_record(ContextInfoDB *self,
                                    const gchar *selector,
                                    ADD_CONTEXT_INFO_CB callback,
                                    gpointer arg);

GList *context_info_db_get_selectors(ContextInfoDB *self);

gboolean context_info_db_import(ContextInfoDB *self, FILE *fp,
                                ContextualDataRecordScanner *scanner);

#endif