Commit Graph

29 Commits

Author SHA1 Message Date
Hirokazu MORIKAWA 02a982bc10 libuv: fix CVE-2024-24806
Update to 1.48.0
CVE-2024-24806 : Improper Domain Lookup that potentially leads to SSRF attacks

Vulnerabilities fixed
* CVE-2024-24806 / GHSA-f74f-cvh7-c6q6 0f2d7e7, 3530bcc and e0327e1
Notable Changes
* linux: disable io_uring on ppc64 and ppc64le #4285
* linux: disable io_uring on hppa below kernel 6.1.51 #4224
* win/spawn: optionally run executable paths with no file extension #4292 (We recommend that most users consider setting this by default)
Important Bugs Fixed
* unix,win: fix busy loop with zero timeout timers #4250, #4304.

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2024-02-20 13:46:50 +08:00
Hirokazu MORIKAWA e257404154 libuv: bump to 1.45.0
1.45.0
* linux: introduce io_uring support
* src: add new metrics APIs
* unix,win: give thread pool threads an 8 MB stack
* win,unix: change execution order of timers

1.44.2
* loop: better align order-of-events behavior between platforms
* zos: fix fs event not fired if the watched file is moved/removed/recreated
* win: Fix pipe resource leak if closed during connect (and other bugs)
* zos: don't error when killing a zombie process
* macos: avoid posix_spawnp() cwd bug
* kqueue: skip EVFILT_PROC events when invalidating events for an fd.

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2023-06-18 08:00:00 +02:00
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
Marko Ratkaj 31b9ce0289 libuv: bump to v1.44.1
Changes:
* bumped version to 1.44.1
* bumped maintainer email

Signed-off-by: Marko Ratkaj <markoratkaj@gmail.com>
2022-03-30 19:38:57 -07:00
Hirokazu MORIKAWA a374b76f9e libuv: bump to 1.41.1
Update to 1.41.1
 include fix CVE-2021-22918

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2021-07-12 14:20:33 +09:00
Hirokazu MORIKAWA aaa46eb44e libuv: fix CVE-2021-22918
idna: fix OOB read in punycode decoder

libuv was vulnerable to out-of-bounds reads in the uv__idna_toascii()
function which is used to convert strings to ASCII. This is called by
the DNS resolution function and can lead to information disclosures or
crashes.

b7466e31e4
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=990561
https://nodejs.org/en/blog/vulnerability/july-2021-security-releases/

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2021-07-06 13:49:15 +09:00
Rosen Penev 2e654b19f3 treewide: back to cmake.mk
Ninja was merged to base and therefore we can now use normal cmake.mk

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 21:05:01 -07:00
Rosen Penev 59ec9e6363 libuv: update to 1.41.0
Switch to AUTORELEASE for simplicity.

Switch to building with Ninja for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-03-20 17:23:30 -07:00
Rosen Penev 4ee2e27896
libuv: fix pkgconfig paths for libuv-static.pc as well
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-10 01:50:27 -08:00
Hirokazu MORIKAWA 97cea69569 libuv: update to 1.40.0
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2020-10-01 13:34:27 +09:00
Hirokazu MORIKAWA 979d2dab5d libuv: update to 1.39.0
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2020-09-25 08:28:31 +09:00
Hirokazu MORIKAWA f1e15068cb libuv: update to 1.34.2
Update is required to build the latest node.js v12.16.0

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2020-02-13 16:04:54 +09:00
Hirokazu MORIKAWA f8ecbf529b libuv: update to 1.32.0
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2019-09-18 13:50:42 +09:00
Marko Ratkaj 2938dbcdb1 libs: libuv: bump to 1.29.1
Version bump from 1.24.1 to 1.29.1

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2019-06-09 17:12:47 +02:00
Rosen Penev a27f729ad0
libuv: Update to 1.24.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-12-17 13:41:39 -08:00
Marko Ratkaj 21be76ee83 libs: libuv: bump version to 1.23.2
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2018-11-06 17:32:07 +01:00
Marko Ratkaj de1152a954 libuv: bump to 1.20.3
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2018-06-08 12:31:29 +02:00
Marko Ratkaj 4f341306d3 libuv: bump to 1.19.2
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2018-03-10 13:40:52 +08:00
Marko Ratkaj 25905cb392 libuv: bump to 1.17.0
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2017-11-29 13:42:28 +01:00
Marko Ratkaj 949f7f1947 libuv: bump to 1.15.0
Update libuv to version 1.15.0

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2017-10-17 15:28:17 +02:00
Marko Ratkaj 6659efa770 libuv: bump to version 1.14.0
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2017-08-21 17:00:14 +02:00
Luka Perkov f44dd8b06e libuv: bump to 1.11.0
Signed-off-by: Luka Perkov <luka.perkov@sartura.hr>
2017-05-14 00:35:40 +02:00
Luka Perkov ee9b3f8e7e libuv: bump to 1.10.2
Signed-off-by: Luka Perkov <luka.perkov@sartura.hr>
2017-01-15 19:30:03 +01:00
Luka Perkov 54b2e9f7f9 libuv: bump to latest version
While at it install in staging_dir libuv.a used for static linking and update
my email address.

Signed-off-by: Luka Perkov <luka.perkov@sartura.hr>
2017-01-01 23:44:01 +01:00
Denis Osvald eae7e4e605 libuv: bump version to 1.9.1
Signed-off-by: Denis Osvald <denis.osvald@sartura.hr>
2016-09-09 12:54:34 +02:00
John Crispin 62581b3851 libuv: fix download path
Signed-off-by: John Crispin <blogic@openwrt.org>
2015-08-22 01:12:31 +02:00
Luka Perkov e07a07985e libuv: bump to 1.6.1
Signed-off-by: Luka Perkov <luka@openwrt.org>
2015-06-08 00:53:52 +02:00
Luka Perkov 494dc7d1e2 libuv: update to 1.5.0
Signed-off-by: Luka Perkov <luka@openwrt.org>
2015-05-13 01:57:33 +02:00
Luka Perkov 5f49225e71 libuv: add package
Signed-off-by: Luka Perkov <luka@openwrt.org>
2015-03-04 22:11:29 +01:00