summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorArturo Borrero Gonzalez <arturo@debian.org>2017-04-20 19:28:11 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2017-05-08 19:50:28 +0200
commit131df891f77dc75515d5eabdedd9818105d29f5a (patch)
treef3796e75c40ebd4ac63d0a1d013934b358d22abf /src
parent381827a8152d27d8afe92a914968b814ec9ac155 (diff)
conntrackd: factorize resync operations
Resync operations factorization. There are two: * resync_send --> conntrackd -B (send bulk resync) * resync_req --> conntrackd -n (request resync) Future patches reuse this factorized code. Signed-off-by: Arturo Borrero Gonzalez <arturo@debian.org> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/resync.c40
-rw-r--r--src/sync-ftfw.c10
-rw-r--r--src/sync-notrack.c14
4 files changed, 47 insertions, 19 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 39c7315..a9a8685 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -52,7 +52,7 @@ conntrackd_SOURCES = alarm.c main.c run.c hash.c queue.c queue_tx.c rbtree.c \
external_cache.c external_inject.c \
internal_cache.c internal_bypass.c \
read_config_yy.y read_config_lex.l \
- stack.c
+ stack.c resync.c
if HAVE_CTHELPER
conntrackd_SOURCES += cthelper.c helpers.c utils.c expect.c
diff --git a/src/resync.c b/src/resync.c
new file mode 100644
index 0000000..dbb2b6f
--- /dev/null
+++ b/src/resync.c
@@ -0,0 +1,40 @@
+/*
+ * (C) 2006-2011 by Pablo Neira Ayuso <pablo@netfilter.org>
+ * (C) 2011 by Vyatta Inc. <http://www.vyatta.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include "conntrackd.h"
+#include "network.h"
+#include "log.h"
+#include "queue_tx.h"
+#include "resync.h"
+#include "cache.h"
+
+void resync_req(void)
+{
+ dlog(LOG_NOTICE, "resync requested");
+ tx_queue_add_ctlmsg(NET_F_RESYNC, 0, 0);
+}
+
+void resync_send(int (*do_cache_to_tx)(void *data1, void *data2))
+{
+ dlog(LOG_NOTICE, "sending bulk update");
+ cache_iterate(STATE(mode)->internal->ct.data,
+ NULL, do_cache_to_tx);
+ cache_iterate(STATE(mode)->internal->exp.data,
+ NULL, do_cache_to_tx);
+}
diff --git a/src/sync-ftfw.c b/src/sync-ftfw.c
index ce5270b..6fdb058 100644
--- a/src/sync-ftfw.c
+++ b/src/sync-ftfw.c
@@ -26,6 +26,7 @@
#include "log.h"
#include "cache.h"
#include "fds.h"
+#include "resync.h"
#include <string.h>
#include <errno.h>
@@ -189,15 +190,10 @@ static int ftfw_local(int fd, int type, void *data)
switch(type) {
case REQUEST_DUMP:
- dlog(LOG_NOTICE, "request resync");
- tx_queue_add_ctlmsg(NET_F_RESYNC, 0, 0);
+ resync_req();
break;
case SEND_BULK:
- dlog(LOG_NOTICE, "sending bulk update");
- cache_iterate(STATE(mode)->internal->ct.data,
- NULL, do_cache_to_tx);
- cache_iterate(STATE(mode)->internal->exp.data,
- NULL, do_cache_to_tx);
+ resync_send(do_cache_to_tx);
break;
case STATS_RSQUEUE:
ftfw_local_queue(fd);
diff --git a/src/sync-notrack.c b/src/sync-notrack.c
index 5b6814d..7ce62d9 100644
--- a/src/sync-notrack.c
+++ b/src/sync-notrack.c
@@ -25,6 +25,7 @@
#include "log.h"
#include "cache.h"
#include "fds.h"
+#include "resync.h"
#include <string.h>
@@ -103,19 +104,10 @@ static int notrack_local(int fd, int type, void *data)
switch(type) {
case REQUEST_DUMP:
- dlog(LOG_NOTICE, "request resync");
- tx_queue_add_ctlmsg(NET_F_RESYNC, 0, 0);
+ resync_req();
break;
case SEND_BULK:
- dlog(LOG_NOTICE, "sending bulk update");
- if (CONFIG(sync).internal_cache_disable) {
- kernel_resync();
- } else {
- cache_iterate(STATE(mode)->internal->ct.data,
- NULL, do_cache_to_tx);
- cache_iterate(STATE(mode)->internal->exp.data,
- NULL, do_cache_to_tx);
- }
+ resync_send(do_cache_to_tx);
break;
default:
ret = 0;