* [PATCH v2] slirp: update submodule to v4.2.0 + mingw-fix
@ 2020-03-17 18:13 Marc-André Lureau
2020-03-18 23:12 ` Samuel Thibault
0 siblings, 1 reply; 2+ messages in thread
From: Marc-André Lureau @ 2020-03-17 18:13 UTC (permalink / raw)
To: qemu-devel; +Cc: Marc-André Lureau, Samuel Thibault
git shortlog
126c04acbabd7ad32c2b018fe10dfac2a3bc1210..7012a2c62e5b54eab88c119383022ec7ce86e9b2
5eraph (1):
Use specific outbound IP address
Akihiro Suda (8):
remove confusing comment that exists from ancient slirp
add slirp_new(SlirpConfig *, SlirpCb *, void *)
allow custom MTU
add disable_host_loopback (prohibit connections to 127.0.0.1)
add SlirpConfig version
emu: remove dead code
emu: disable by default
fix a typo in a comment
Anders Waldenborg (1):
state: fix loading of guestfwd state
Giuseppe Scrivano (1):
socket: avoid getpeername after shutdown(SHUT_WR)
Jindrich Novy (1):
Don't leak memory when reallocation fails.
Jordi Pujol Palomer (1):
fork_exec: correctly parse command lines that contain spaces
Marc-André Lureau (54):
Merge branch 'AkihiroSuda/libslirp-slirp4netns'
Merge branch 'fix-typo' into 'master'
meson: make it subproject friendly
Merge branch 'meson' into 'master'
misc: fix compilation warnings
Merge branch 'fix-shutdown-wr' into 'master'
sbuf: remove unused and undefined sbcopy() path
sbuf: check more strictly sbcopy() bounds with offset
sbuf: replace a comment with a runtime warning
Replace remaining malloc/free user with glib
tcp_attach() can no longer fail
state: can't ENOMEM
sbuf: use unsigned types
sbuf: simplify sbreserve()
dnssearch: use g_strv_length()
vmstate: silence scan-build warning
gitlab-ci: run scan-build
Merge branch 'mem-cleanups' into 'master'
libslirp.map: bind slirp_new to SLIRP_4.1 version
meson: fix libtool versioning
Release v4.1.0
Merge branch '4.1.0' into 'master'
CHANGELOG: start unreleased section
Merge branch 'add-unix' into 'master'
util: add G_SIZEOF_MEMBER() macro
Check bootp_filename is not going to be truncated
bootp: remove extra cast
bootp: replace simple snprintf() with strcpy()
tftp: clarify what is actually OACK m_len
tcp_emu: add more fixme/warnings comments
util: add slirp_fmt() helpers
dhcpv6: use slirp_fmt()
misc: use slirp_fmt0()
tftp: use slirp_fmt0()
tcp_ctl: use slirp_fmt()
tcp_emu: fix unsafe snprintf() usages
misc: improve error report
Use g_snprintf()
util: add gnuc format function attribute to slirp_fmt*
Merge branch 'aw-guestfwd-state' into 'master'
Merge branch 'slirp-fmt' into 'master'
socket: remove extra label and variable
socket: factor out sotranslate ipv4/ipv6 handling
socket: remove need for extra scope_id variable
socket: do not fallback on host loopback if get_dns_addr() failed
socket: do not fallback on loopback addr for addresses in our mask/prefix
Prepare for v4.2.0 release
Merge branch 'translate-fix' into 'master'
Merge branch 'release-v4.2.0' into 'master'
changelog: post-release
changelog: fix link
.gitlab-ci: add --werror, treat CI build warnings as errors
Revert "socket: remove need for extra scope_id variable"
Merge branch 'mingw-fix' into 'master'
PanNengyuan (1):
libslirp: fix NULL pointer dereference in tcp_sockclosed
Philippe Mathieu-Daudé (1):
Add a git-publish configuration file
Prasad J Pandit (4):
slirp: ncsi: compute checksum for valid data length
slirp: use correct size while emulating IRC commands
slirp: use correct size while emulating commands
slirp: tftp: restrict relative path access
Renzo Davoli (2):
Add slirp_remove_guestfwd()
Add slirp_add_unix()
Samuel Thibault (14):
ip_reass: explain why we should not always update the q pointer
Merge branch 'comment' into 'master'
Merge branch 'no-emu' into 'master'
Fix bogus indent, no source change
ip_reass: Fix use after free
Merge branch 'reass2' into 'master'
Make host receive broadcast packets
arp: Allow 0.0.0.0 destination address
Merge branch 'warnings' into 'master'
Merge branch 'arp_0' into 'master'
Merge branch 'broadcast' into 'master'
tcp_emu: Fix oob access
Merge branch 'oob' into 'master'
Merge branch 'master' into 'master'
Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
slirp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/slirp b/slirp
index 126c04acba..7012a2c62e 160000
--- a/slirp
+++ b/slirp
@@ -1 +1 @@
-Subproject commit 126c04acbabd7ad32c2b018fe10dfac2a3bc1210
+Subproject commit 7012a2c62e5b54eab88c119383022ec7ce86e9b2
--
2.25.0.rc2.1.g09a9a1a997
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] slirp: update submodule to v4.2.0 + mingw-fix
2020-03-17 18:13 [PATCH v2] slirp: update submodule to v4.2.0 + mingw-fix Marc-André Lureau
@ 2020-03-18 23:12 ` Samuel Thibault
0 siblings, 0 replies; 2+ messages in thread
From: Samuel Thibault @ 2020-03-18 23:12 UTC (permalink / raw)
To: Marc-André Lureau; +Cc: qemu-devel
Marc-André Lureau, le mar. 17 mars 2020 19:13:36 +0100, a ecrit:
> git shortlog
> 126c04acbabd7ad32c2b018fe10dfac2a3bc1210..7012a2c62e5b54eab88c119383022ec7ce86e9b2
>
> 5eraph (1):
> Use specific outbound IP address
>
> Akihiro Suda (8):
> remove confusing comment that exists from ancient slirp
> add slirp_new(SlirpConfig *, SlirpCb *, void *)
> allow custom MTU
> add disable_host_loopback (prohibit connections to 127.0.0.1)
> add SlirpConfig version
> emu: remove dead code
> emu: disable by default
> fix a typo in a comment
>
> Anders Waldenborg (1):
> state: fix loading of guestfwd state
>
> Giuseppe Scrivano (1):
> socket: avoid getpeername after shutdown(SHUT_WR)
>
> Jindrich Novy (1):
> Don't leak memory when reallocation fails.
>
> Jordi Pujol Palomer (1):
> fork_exec: correctly parse command lines that contain spaces
>
> Marc-André Lureau (54):
> Merge branch 'AkihiroSuda/libslirp-slirp4netns'
> Merge branch 'fix-typo' into 'master'
> meson: make it subproject friendly
> Merge branch 'meson' into 'master'
> misc: fix compilation warnings
> Merge branch 'fix-shutdown-wr' into 'master'
> sbuf: remove unused and undefined sbcopy() path
> sbuf: check more strictly sbcopy() bounds with offset
> sbuf: replace a comment with a runtime warning
> Replace remaining malloc/free user with glib
> tcp_attach() can no longer fail
> state: can't ENOMEM
> sbuf: use unsigned types
> sbuf: simplify sbreserve()
> dnssearch: use g_strv_length()
> vmstate: silence scan-build warning
> gitlab-ci: run scan-build
> Merge branch 'mem-cleanups' into 'master'
> libslirp.map: bind slirp_new to SLIRP_4.1 version
> meson: fix libtool versioning
> Release v4.1.0
> Merge branch '4.1.0' into 'master'
> CHANGELOG: start unreleased section
> Merge branch 'add-unix' into 'master'
> util: add G_SIZEOF_MEMBER() macro
> Check bootp_filename is not going to be truncated
> bootp: remove extra cast
> bootp: replace simple snprintf() with strcpy()
> tftp: clarify what is actually OACK m_len
> tcp_emu: add more fixme/warnings comments
> util: add slirp_fmt() helpers
> dhcpv6: use slirp_fmt()
> misc: use slirp_fmt0()
> tftp: use slirp_fmt0()
> tcp_ctl: use slirp_fmt()
> tcp_emu: fix unsafe snprintf() usages
> misc: improve error report
> Use g_snprintf()
> util: add gnuc format function attribute to slirp_fmt*
> Merge branch 'aw-guestfwd-state' into 'master'
> Merge branch 'slirp-fmt' into 'master'
> socket: remove extra label and variable
> socket: factor out sotranslate ipv4/ipv6 handling
> socket: remove need for extra scope_id variable
> socket: do not fallback on host loopback if get_dns_addr() failed
> socket: do not fallback on loopback addr for addresses in our mask/prefix
> Prepare for v4.2.0 release
> Merge branch 'translate-fix' into 'master'
> Merge branch 'release-v4.2.0' into 'master'
> changelog: post-release
> changelog: fix link
> .gitlab-ci: add --werror, treat CI build warnings as errors
> Revert "socket: remove need for extra scope_id variable"
> Merge branch 'mingw-fix' into 'master'
>
> PanNengyuan (1):
> libslirp: fix NULL pointer dereference in tcp_sockclosed
>
> Philippe Mathieu-Daudé (1):
> Add a git-publish configuration file
>
> Prasad J Pandit (4):
> slirp: ncsi: compute checksum for valid data length
> slirp: use correct size while emulating IRC commands
> slirp: use correct size while emulating commands
> slirp: tftp: restrict relative path access
>
> Renzo Davoli (2):
> Add slirp_remove_guestfwd()
> Add slirp_add_unix()
>
> Samuel Thibault (14):
> ip_reass: explain why we should not always update the q pointer
> Merge branch 'comment' into 'master'
> Merge branch 'no-emu' into 'master'
> Fix bogus indent, no source change
> ip_reass: Fix use after free
> Merge branch 'reass2' into 'master'
> Make host receive broadcast packets
> arp: Allow 0.0.0.0 destination address
> Merge branch 'warnings' into 'master'
> Merge branch 'arp_0' into 'master'
> Merge branch 'broadcast' into 'master'
> tcp_emu: Fix oob access
> Merge branch 'oob' into 'master'
> Merge branch 'master' into 'master'
>
> Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
> ---
> slirp | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/slirp b/slirp
> index 126c04acba..7012a2c62e 160000
> --- a/slirp
> +++ b/slirp
> @@ -1 +1 @@
> -Subproject commit 126c04acbabd7ad32c2b018fe10dfac2a3bc1210
> +Subproject commit 7012a2c62e5b54eab88c119383022ec7ce86e9b2
> --
> 2.25.0.rc2.1.g09a9a1a997
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-18 23:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-17 18:13 [PATCH v2] slirp: update submodule to v4.2.0 + mingw-fix Marc-André Lureau
2020-03-18 23:12 ` Samuel Thibault
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).