]> git.pld-linux.org Git - packages/iptraf-ng.git/commitdiff
- up to 1.1.4 auto/th/iptraf-ng-1.1.4-1
authorJan Rękorajski <baggins@pld-linux.org>
Tue, 28 Jan 2014 19:44:38 +0000 (20:44 +0100)
committerJan Rękorajski <baggins@pld-linux.org>
Tue, 28 Jan 2014 19:44:38 +0000 (20:44 +0100)
- obsolete venerable iptraf
- pulled bugfix from fedora
- removed obsolete include patch

0001-BUGFIX-fix-Floating-point-exception-in-tcplog_flowra.patch [new file with mode: 0644]
iptraf-ng-format-security.patch
iptraf-ng-include.patch [deleted file]
iptraf-ng.spec

diff --git a/0001-BUGFIX-fix-Floating-point-exception-in-tcplog_flowra.patch b/0001-BUGFIX-fix-Floating-point-exception-in-tcplog_flowra.patch
new file mode 100644 (file)
index 0000000..7a156b6
--- /dev/null
@@ -0,0 +1,37 @@
+From 9b320138755542b927df650da0bd1e61ecaa41d7 Mon Sep 17 00:00:00 2001
+Message-Id: <9b320138755542b927df650da0bd1e61ecaa41d7.1378117677.git.npajkovs@redhat.com>
+From: Vitezslav Samel <vitezslav@samel.cz>
+Date: Thu, 29 Aug 2013 10:11:42 +0200
+Subject: [PATCH] BUGFIX: fix "Floating point exception" in
+ tcplog_flowrate_msg()
+
+commit 0d55bee "tcplog_flowrate_msg(): cleanup and fix") removed
+condition, which leads to zero division.
+
+Time diff between current time and ->conn_starttime is 0, because of
+rate_print updates happen in less then 1 sec and later on, we try to
+divide ->bcount by interval, which is 0, hencs zero division.
+
+Reported-by: Erik K. <ummeegge@ipfire.org>
+Signed-off-by: Vitezslav Samel <vitezslav@samel.cz>
+Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
+---
+ src/tcptable.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/tcptable.c b/src/tcptable.c
+index a4133d9..e217b19 100644
+--- a/src/tcptable.c
++++ b/src/tcptable.c
+@@ -437,6 +437,8 @@ static char *tcplog_flowrate_msg(struct tcptableent *entry, char *buf,
+                                size_t bufsize)
+ {
+       time_t interval = time(NULL) - entry->conn_starttime;
++      if (interval < 1)
++              interval = 1;
+       char rbuf[64];
+       rate_print(entry->bcount / interval, rbuf, sizeof(rbuf));
+-- 
+1.8.1.2
+
index c8c51603d488ace9438107305a3e0806b845f36f..7b6bb93e531fe48f58c0e70ff7ff8670fb3702d5 100644 (file)
                                doagain = 0;
 --- iptraf-ng-1.1.3.1/src/othptab.c.formatsec  2013-02-05 14:02:18.220828537 +0100
 +++ iptraf-ng-1.1.3.1/src/othptab.c    2013-02-05 14:09:36.732870661 +0100
-@@ -410,7 +410,7 @@ void printothpentry(struct othptable *ta
-                               break;
-                       }
--                      sprintf(scratchpad, inet_ntoa(saddr));
-+                      sprintf(scratchpad, "%s", inet_ntoa(saddr));
-                       strcat(msgstring, scratchpad);
-                       wattrset(table->othpwin, ARPATTR);
-                       break;
 @@ -430,7 +430,7 @@ void printothpentry(struct othptable *ta
                                break;
                        }
diff --git a/iptraf-ng-include.patch b/iptraf-ng-include.patch
deleted file mode 100644 (file)
index 803577f..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- iptraf-ng-1.1.3.1/src/iptraf-ng-compat.h.tokenring 2013-02-05 13:54:53.008646938 +0100
-+++ iptraf-ng-1.1.3.1/src/iptraf-ng-compat.h   2013-02-05 13:55:25.261805541 +0100
-@@ -39,7 +39,7 @@
- #include <linux/if_ether.h>
- #include <linux/if_packet.h>
- #include <linux/if_fddi.h>
--#include <linux/if_tr.h>
-+#include <netinet/if_tr.h>
- #include <linux/types.h>
- #include <linux/isdn.h>
index d0e55e4f9c69e75c765d8426d12501009d74fc86..9bcf2c4ba9fa79797390d05026cf6ad7ba81a718 100644 (file)
@@ -5,16 +5,17 @@ Summary(pt_BR.UTF-8): Ferramenta baseada no console para monitoração de rede
 Summary(ru.UTF-8):     IPTraf - консольная программа мониторинга сетевого траффика
 Summary(uk.UTF-8):     IPTraf - консольна програма моніторингу трафіку в мережі
 Name:          iptraf-ng
-Version:       1.1.3.1
+Version:       1.1.4
 Release:       1
 License:       GPL
 Group:         Networking/Utilities
 Source0:       https://fedorahosted.org/releases/i/p/iptraf-ng/%{name}-%{version}.tar.gz
-# Source0-md5: 1a2c02944b0b012d6a3de96207610fa2
+# Source0-md5: de27cfeeede96e2acfb0edc8439b034a
+Patch0:                %{name}-format-security.patch
+Patch1:                0001-BUGFIX-fix-Floating-point-exception-in-tcplog_flowra.patch
 URL:           https://fedorahosted.org/iptraf-ng/
-Patch0:                %{name}-include.patch
-Patch1:                %{name}-format-security.patch
 BuildRequires: ncurses-ext-devel >= 5.4
+Obsoletes:     iptraf
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
This page took 0.079993 seconds and 4 git commands to generate.