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
|
/*
* Copyright (c) 2017 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.
*
*/
#include "directory-monitor-content-comparator.h"
#include "messages.h"
#include "timeutils/misc.h"
#include "glib.h"
#include "glib/gstdio.h"
#include <iv.h>
static void
_handle_new_entry(CollectionComparatorEntry *entry, gpointer user_data)
{
DirectoryMonitorContentComparator *self = (DirectoryMonitorContentComparator *)user_data;
if (self->super.callback)
{
DirectoryMonitorEvent event;
event.name = entry->value;
event.full_path = build_filename(self->super.real_path, event.name);
event.event_type = g_file_test(event.full_path, G_FILE_TEST_IS_DIR) ? DIRECTORY_CREATED : FILE_CREATED;
self->super.callback(&event, self->super.callback_data);
g_free(event.full_path);
}
}
static void
_handle_deleted_entry(CollectionComparatorEntry *entry, gpointer user_data)
{
DirectoryMonitorContentComparator *self = (DirectoryMonitorContentComparator *)user_data;
if (self->super.callback)
{
DirectoryMonitorEvent event;
event.name = entry->value;
event.event_type = FILE_DELETED;
event.full_path = build_filename(self->super.real_path, event.name);
self->super.callback(&event, self->super.callback_data);
g_free(event.full_path);
}
}
static void
_handle_deleted_self(DirectoryMonitorContentComparator *self)
{
if (self->super.callback)
{
DirectoryMonitorEvent event;
event.name = self->super.real_path;
event.event_type = DIRECTORY_DELETED;
event.full_path = self->super.real_path;
self->super.callback(&event, self->super.callback_data);
}
}
void
directory_monitor_content_comparator_rescan_directory(DirectoryMonitorContentComparator *self, gboolean initial_scan)
{
GError *error = NULL;
GDir *directory = g_dir_open(self->super.real_path, 0, &error);
if (FALSE == initial_scan)
collection_comparator_start(self->comparator);
if (directory)
{
const gchar *filename;
while((filename = g_dir_read_name(directory)))
{
gchar *full_filename = build_filename(self->super.real_path, filename);
GStatBuf file_stat;
if (g_stat(full_filename, &file_stat) == 0)
{
g_free(full_filename);
gint64 fids[2] = { file_stat.st_dev, file_stat.st_ino };
if (initial_scan)
collection_comparator_add_initial_value(self->comparator, fids, filename);
else
collection_comparator_add_value(self->comparator, fids, filename);
}
else
{
g_free(full_filename);
msg_error("Error invoking g_stat() on file", evt_tag_str("filename", filename));
}
}
g_dir_close(directory);
if (FALSE == initial_scan)
collection_comparator_stop(self->comparator);
}
else
{
if (FALSE == initial_scan)
collection_comparator_stop(self->comparator);
_handle_deleted_self(self);
msg_debug("Error while opening directory",
evt_tag_str("dirname", self->super.real_path),
evt_tag_str("error", error->message));
g_clear_error(&error);
}
}
static void
_free_fn(DirectoryMonitor *s)
{
DirectoryMonitorContentComparator *self = (DirectoryMonitorContentComparator *)s;
directory_monitor_content_comparator_free(self);
}
void
directory_monitor_content_comparator_free(DirectoryMonitorContentComparator *self)
{
if (self->comparator)
collection_comparator_free(self->comparator);
}
void
directory_monitor_content_comparator_init_instance(DirectoryMonitorContentComparator *self,
const gchar *dir, guint recheck_time,
const gchar *method)
{
self->super.free_fn = _free_fn;
directory_monitor_init_instance(&self->super, dir, recheck_time, method);
self->comparator = collection_comparator_new();
collection_comporator_set_callbacks(self->comparator,
_handle_new_entry,
_handle_deleted_entry,
self);
}
DirectoryMonitor *
directory_monitor_content_comparator_new(void)
{
DirectoryMonitorContentComparator *self = g_new0(DirectoryMonitorContentComparator, 1);
return &self->super;
}
|