backport: fix possible overflows
Signed-off-by: lvgenggeng <lvgenggeng@uniontech.com> (cherry picked from commit 63e91864340cccb5fbb78f1efa2b0a9db56c9544)
This commit is contained in:
parent
078746132c
commit
843970b945
37
backport-Fix-possible-overflows.patch
Normal file
37
backport-Fix-possible-overflows.patch
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
From 425162fb7a9577f212d44c1b6f6e2ccc36acf131 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Thomas Habets <habets@google.com>
|
||||||
|
Date: Fri, 1 Nov 2019 17:08:08 +0000
|
||||||
|
Subject: [PATCH 1/1] Fix possible overflows
|
||||||
|
|
||||||
|
---
|
||||||
|
src/libnet_port_list.c | 7 ++++---
|
||||||
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/libnet_port_list.c b/src/libnet_port_list.c
|
||||||
|
index fff151e..942a856 100644
|
||||||
|
--- a/src/libnet_port_list.c
|
||||||
|
+++ b/src/libnet_port_list.c
|
||||||
|
@@ -250,16 +250,17 @@ libnet_plist_chain_dump_string(libnet_plist_t *plist)
|
||||||
|
{
|
||||||
|
if (plist->bport == plist->eport)
|
||||||
|
{
|
||||||
|
- i = snprintf(&buf[j], BUFSIZ, "%d", plist->bport);
|
||||||
|
+ i = snprintf(&buf[j], BUFSIZ-j, "%d", plist->bport);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
- i = snprintf(&buf[j], BUFSIZ, "%d-%d", plist->bport, plist->eport);
|
||||||
|
+ i = snprintf(&buf[j], BUFSIZ-j, "%d-%d", plist->bport, plist->eport);
|
||||||
|
}
|
||||||
|
j += i;
|
||||||
|
if (plist->next)
|
||||||
|
{
|
||||||
|
- snprintf(&buf[j++], BUFSIZ, ",");
|
||||||
|
+ snprintf(&buf[j], BUFSIZ-j, ",");
|
||||||
|
+ j++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return (strdup(buf)); /* XXX - reentrancy == no */
|
||||||
|
--
|
||||||
|
2.20.1
|
||||||
|
|
||||||
@ -1,10 +1,11 @@
|
|||||||
Name: libnet
|
Name: libnet
|
||||||
Version: 1.2
|
Version: 1.2
|
||||||
Release: 1
|
Release: 2
|
||||||
Summary: A C library to help with construction and handling of network packets
|
Summary: A C library to help with construction and handling of network packets
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: https://github.com/libnet/libnet/
|
URL: https://github.com/libnet/libnet/
|
||||||
Source: https://github.com/libnet/libnet/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
Source: https://github.com/libnet/libnet/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
Patch0: backport-Fix-possible-overflows.patch
|
||||||
BuildRequires: automake autoconf libtool
|
BuildRequires: automake autoconf libtool
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -70,6 +71,9 @@ rm -f doc/html/Makefile*
|
|||||||
%doc %{_docdir}/*
|
%doc %{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Dec 27 2023 lvgenggeng<lvgenggeng@uniontech.com> - 1.2-2
|
||||||
|
- backport: fix possible overflows
|
||||||
|
|
||||||
* Wed Aug 19 2020 yuboyun<yuboyun@huawei.com> - 1.2-1
|
* Wed Aug 19 2020 yuboyun<yuboyun@huawei.com> - 1.2-1
|
||||||
- Update to version 1.2
|
- Update to version 1.2
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user