qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v4 0/1] Libslirp patches
@ 2021-08-03 14:18 marcandre.lureau
  2021-08-03 14:18 ` [PULL v4 1/1] Update libslirp to v4.6.1 marcandre.lureau
  2021-08-03 18:49 ` [PULL v4 0/1] Libslirp patches Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: marcandre.lureau @ 2021-08-03 14:18 UTC (permalink / raw)
  To: peter.maydell, qemu-devel; +Cc: samuel.thibault, Marc-André Lureau

From: Marc-André Lureau <marcandre.lureau@redhat.com>

The following changes since commit 7f1cab9c628a798ae2607940993771e6300e9e00:

  Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging (2021-08-02 17:21:50 +0100)

are available in the Git repository at:

  git@github.com:elmarco/qemu.git tags/libslirp-pull-request

for you to fetch changes up to 43f547b73dfaf108c9aaacb0b36200e2e7a200f1:

  Update libslirp to v4.6.1 (2021-08-03 16:07:22 +0400)

----------------------------------------------------------------
Update libslirp

Hi,

v4:
 - drop subproject patch
 - fix OSX linking issue

v3:
 - rebased
 - (checked compilation with P. Maydell extra-cflags reported failure & gitlab CI)

v2:
 - fix unused variables on macos
 - fork_exec_child_setup: improve signal handling

----------------------------------------------------------------

Marc-André Lureau (1):
  Update libslirp to v4.6.1

 meson.build | 2 ++
 slirp       | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

-- 
2.32.0.264.g75ae10bc75




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

* [PULL v4 1/1] Update libslirp to v4.6.1
  2021-08-03 14:18 [PULL v4 0/1] Libslirp patches marcandre.lureau
@ 2021-08-03 14:18 ` marcandre.lureau
  2021-08-03 18:49 ` [PULL v4 0/1] Libslirp patches Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: marcandre.lureau @ 2021-08-03 14:18 UTC (permalink / raw)
  To: peter.maydell, qemu-devel; +Cc: samuel.thibault, Marc-André Lureau

From: Marc-André Lureau <marcandre.lureau@redhat.com>

Switch from stable-4.2 branch to upstream v4.6.1 release + fixes.

## [Unreleased]

### Fixed

 - Haiku fixes. !98 !99
 - Fix a minor DHCP regression introduced in 4.6.0. !97

## [4.6.1] - 2021-06-18

### Fixed

 - Fix DHCP regression introduced in 4.6.0. !95

## [4.6.0] - 2021-06-14

### Added

 - mbuf: Add debugging helpers for allocation. !90

### Changed

 -  Revert "Set macOS deployment target to macOS 10.4". !93

### Fixed

 - mtod()-related buffer overflows (CVE-2021-3592 #44, CVE-2021-3593 #45,
   CVE-2021-3594 #47, CVE-2021-3595 #46).
 - poll_fd: add missing fd registration for UDP and ICMP
 - ncsi: make ncsi_calculate_checksum work with unaligned data. !89
 - Various typos and doc fixes. !88

## [4.5.0] - 2021-05-18

### Added

 - IPv6 forwarding. !62 !75 !77
 - slirp_neighbor_info() to dump the ARP/NDP tables. !71

### Changed

 - Lazy guest address resolution for IPv6. !81
 - Improve signal handling when spawning a child. !61
 - Set macOS deployment target to macOS 10.4. !72
 - slirp_add_hostfwd: Ensure all error paths set errno. !80
 - More API documentation.

### Fixed

 - Assertion failure on unspecified IPv6 address. !86
 - Disable polling for PRI on MacOS, fixing some closing streams issues. !73
 - Various memory leak fixes on fastq/batchq. !68
 - Memory leak on IPv6 fast-send. !67
 - Slow socket response on Windows. !64
 - Misc build and code cleanups. !60 !63 !76 !79 !84

## [4.4.0] - 2020-12-02

### Added

 - udp, udp6, icmp: handle TTL value. !48
 - Enable forwarding ICMP errors. !49
 - Add DNS resolving for iOS. !54

### Changed

 - Improve meson subproject() support. !53
 - Removed Makefile-based build system. !56

### Fixed

 - socket: consume empty packets. !55
 - check pkt_len before reading protocol header (CVE-2020-29129). !57
 - ip_stripoptions use memmove (fixes undefined behaviour). !47
 - various Coverity-related changes/fixes.

## [4.3.1] - 2020-07-08

### Changed

 - A silent truncation could occur in `slirp_fmt()`, which will now print a
   critical message. See also #22.

### Fixed

 - CVE-2020-10756 - Drop bogus IPv6 messages that could lead to data leakage.
   See !44 and !42.
 - Fix win32 builds by using the SLIRP_PACKED definition.
 - Various coverity scan errors fixed. !41
 - Fix new GCC warnings. !43

## [4.3.0] - 2020-04-22

### Added

 - `SLIRP_VERSION_STRING` macro, with the git sha suffix when building from git
 - `SlirpConfig.disable_dns`, to disable DNS redirection #16

### Changed

 - `slirp_version_string()` now has the git sha suffix when building form git
 - Limit DNS redirection to port 53 #16

### Fixed

 - Fix build regression with mingw & NetBSD
 - Fix use-afte-free in `ip_reass()` (CVE-2020-1983)

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Doug Evans <dje@google.com>
---
 meson.build | 2 ++
 slirp       | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index f2e148eaf9..af9bbb83db 100644
--- a/meson.build
+++ b/meson.build
@@ -1824,6 +1824,8 @@ if have_system
     slirp_deps = []
     if targetos == 'windows'
       slirp_deps = cc.find_library('iphlpapi')
+    elif targetos == 'darwin'
+      slirp_deps = cc.find_library('resolv')
     endif
     slirp_conf = configuration_data()
     slirp_conf.set('SLIRP_MAJOR_VERSION', meson.project_version().split('.')[0])
diff --git a/slirp b/slirp
index 8f43a99191..a88d9ace23 160000
--- a/slirp
+++ b/slirp
@@ -1 +1 @@
-Subproject commit 8f43a99191afb47ca3f3c6972f6306209f367ece
+Subproject commit a88d9ace234a24ce1c17189642ef9104799425e0
-- 
2.32.0.264.g75ae10bc75



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

* Re: [PULL v4 0/1] Libslirp patches
  2021-08-03 14:18 [PULL v4 0/1] Libslirp patches marcandre.lureau
  2021-08-03 14:18 ` [PULL v4 1/1] Update libslirp to v4.6.1 marcandre.lureau
@ 2021-08-03 18:49 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2021-08-03 18:49 UTC (permalink / raw)
  To: Marc-André Lureau; +Cc: Samuel Thibault, QEMU Developers

On Tue, 3 Aug 2021 at 15:18, <marcandre.lureau@redhat.com> wrote:
>
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> The following changes since commit 7f1cab9c628a798ae2607940993771e6300e9e00:
>
>   Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging (2021-08-02 17:21:50 +0100)
>
> are available in the Git repository at:
>
>   git@github.com:elmarco/qemu.git tags/libslirp-pull-request
>
> for you to fetch changes up to 43f547b73dfaf108c9aaacb0b36200e2e7a200f1:
>
>   Update libslirp to v4.6.1 (2021-08-03 16:07:22 +0400)
>
> ----------------------------------------------------------------
> Update libslirp
>
> Hi,
>
> v4:
>  - drop subproject patch
>  - fix OSX linking issue
>
> v3:
>  - rebased
>  - (checked compilation with P. Maydell extra-cflags reported failure & gitlab CI)
>
> v2:
>  - fix unused variables on macos
>  - fork_exec_child_setup: improve signal handling
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.1
for any user-visible changes.

-- PMM


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

end of thread, other threads:[~2021-08-03 18:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-03 14:18 [PULL v4 0/1] Libslirp patches marcandre.lureau
2021-08-03 14:18 ` [PULL v4 1/1] Update libslirp to v4.6.1 marcandre.lureau
2021-08-03 18:49 ` [PULL v4 0/1] Libslirp patches Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).