All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3
@ 2017-10-30 19:11 Baruch Siach
  2017-10-30 19:11 ` [Buildroot] [PATCH 2/2] apr-util: security bump to version 1.6.1 Baruch Siach
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Baruch Siach @ 2017-10-30 19:11 UTC (permalink / raw)
  To: buildroot

Fixes CVE-2017-12613: Out-of-bounds array deref in apr_time_exp*()
functions.

Use upstream provided SHA256 hash.

Add license has.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/apr/apr.hash | 6 ++++--
 package/apr/apr.mk   | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/package/apr/apr.hash b/package/apr/apr.hash
index 7a5969e52fdb..be130a5d780c 100644
--- a/package/apr/apr.hash
+++ b/package/apr/apr.hash
@@ -1,2 +1,4 @@
-# From http://archive.apache.org/dist/apr/apr-1.6.2.tar.bz2.sha1
-sha1 01b0d4faa0194825e8e525b9ac7ccfb832471d50  apr-1.6.2.tar.bz2
+# From http://www.apache.org/dist/apr/apr-1.6.3.tar.bz2.sha256
+sha256 131f06d16d7aabd097fa992a33eec2b6af3962f93e6d570a9bd4d85e95993172  apr-1.6.3.tar.bz2
+# Locally calculated
+sha256 f854aeef66ecd55a126226e82b3f26793fc3b1c584647f6a0edc5639974c38ad  LICENSE
diff --git a/package/apr/apr.mk b/package/apr/apr.mk
index ffb30991ecbf..58b1d86b2845 100644
--- a/package/apr/apr.mk
+++ b/package/apr/apr.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-APR_VERSION = 1.6.2
+APR_VERSION = 1.6.3
 APR_SOURCE = apr-$(APR_VERSION).tar.bz2
 APR_SITE = http://archive.apache.org/dist/apr
 APR_LICENSE = Apache-2.0
-- 
2.14.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 2/2] apr-util: security bump to version 1.6.1
  2017-10-30 19:11 [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3 Baruch Siach
@ 2017-10-30 19:11 ` Baruch Siach
  2017-11-26  9:05   ` Peter Korsgaard
  2017-10-31 10:57 ` [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3 Thomas Petazzoni
  2017-11-26  9:05 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Baruch Siach @ 2017-10-30 19:11 UTC (permalink / raw)
  To: buildroot

Fixes CVE-2017-12618: Out-of-bounds access in corrupted SDBM database.

Switch to bz2 compressed tarball.

Use upstream provided SHA256 hash.

Add license hash.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/apr-util/apr-util.hash | 6 ++++--
 package/apr-util/apr-util.mk   | 3 ++-
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/package/apr-util/apr-util.hash b/package/apr-util/apr-util.hash
index 3db43960585b..82ad475619e1 100644
--- a/package/apr-util/apr-util.hash
+++ b/package/apr-util/apr-util.hash
@@ -1,2 +1,4 @@
-# From http://archive.apache.org/dist/apr/apr-util-1.5.4.tar.gz.sha1
-sha1	72cc3ac693b52fb831063d5c0de18723bc8e0095	apr-util-1.5.4.tar.gz
+# From http://www.apache.org/dist/apr/apr-util-1.6.1.tar.bz2.sha256
+sha256	d3e12f7b6ad12687572a3a39475545a072608f4ba03a6ce8a3778f607dd0035b	apr-util-1.6.1.tar.bz2
+# Locally calculated
+sha256	ef5609d18601645ad6fe22c6c122094be40e976725c1d0490778abacc836e7a2	LICENSE
diff --git a/package/apr-util/apr-util.mk b/package/apr-util/apr-util.mk
index bc0572e1109a..c44cef009f82 100644
--- a/package/apr-util/apr-util.mk
+++ b/package/apr-util/apr-util.mk
@@ -4,7 +4,8 @@
 #
 ################################################################################
 
-APR_UTIL_VERSION = 1.5.4
+APR_UTIL_VERSION = 1.6.1
+APR_UTIL_SOURCE = apr-util-$(APR_UTIL_VERSION).tar.bz2
 APR_UTIL_SITE = http://archive.apache.org/dist/apr
 APR_UTIL_LICENSE = Apache-2.0
 APR_UTIL_LICENSE_FILES = LICENSE
-- 
2.14.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3
  2017-10-30 19:11 [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3 Baruch Siach
  2017-10-30 19:11 ` [Buildroot] [PATCH 2/2] apr-util: security bump to version 1.6.1 Baruch Siach
@ 2017-10-31 10:57 ` Thomas Petazzoni
  2017-11-26  9:05 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2017-10-31 10:57 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 30 Oct 2017 21:11:01 +0200, Baruch Siach wrote:
> Fixes CVE-2017-12613: Out-of-bounds array deref in apr_time_exp*()
> functions.
> 
> Use upstream provided SHA256 hash.
> 
> Add license has.
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/apr/apr.hash | 6 ++++--
>  package/apr/apr.mk   | 2 +-
>  2 files changed, 5 insertions(+), 3 deletions(-)

Both applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3
  2017-10-30 19:11 [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3 Baruch Siach
  2017-10-30 19:11 ` [Buildroot] [PATCH 2/2] apr-util: security bump to version 1.6.1 Baruch Siach
  2017-10-31 10:57 ` [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3 Thomas Petazzoni
@ 2017-11-26  9:05 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-11-26  9:05 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > Fixes CVE-2017-12613: Out-of-bounds array deref in apr_time_exp*()
 > functions.

 > Use upstream provided SHA256 hash.

 > Add license has.

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2017.02.x and 2017.08.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 2/2] apr-util: security bump to version 1.6.1
  2017-10-30 19:11 ` [Buildroot] [PATCH 2/2] apr-util: security bump to version 1.6.1 Baruch Siach
@ 2017-11-26  9:05   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-11-26  9:05 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > Fixes CVE-2017-12618: Out-of-bounds access in corrupted SDBM database.
 > Switch to bz2 compressed tarball.

 > Use upstream provided SHA256 hash.

 > Add license hash.

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2017.02.x and 2017.08.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-11-26  9:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-30 19:11 [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3 Baruch Siach
2017-10-30 19:11 ` [Buildroot] [PATCH 2/2] apr-util: security bump to version 1.6.1 Baruch Siach
2017-11-26  9:05   ` Peter Korsgaard
2017-10-31 10:57 ` [Buildroot] [PATCH 1/2] apr: security bump to version 1.6.3 Thomas Petazzoni
2017-11-26  9:05 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.