qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: Howard Spoelstra <hsp.cat7@gmail.com>
Cc: Jason Wang <jasowang@redhat.com>, Bin Meng <bmeng.cn@gmail.com>,
	qemu-devel qemu-devel <qemu-devel@nongnu.org>
Subject: Re: Bug with Windows tap network when running qemu-system-ppc with Mac OS 9 guest
Date: Thu, 25 Mar 2021 17:34:49 +0000	[thread overview]
Message-ID: <CAFEAcA-79VsatyDSP8_u+=m=PpQLyjsuNBQh_-xt2RZ-6vqkgw@mail.gmail.com> (raw)
In-Reply-To: <CABLmASGq42X5pEuTkWZTp_djr5qmo98BD_9wi4zFnG1DYNnJ9A@mail.gmail.com>

(adding the relevant people to the cc list)

On Thu, 25 Mar 2021 at 17:26, Howard Spoelstra <hsp.cat7@gmail.com> wrote:
>
> Hi,
>
> When running qemu-system-ppc with Mac OS guest, the guest crashes when
> using a tap network connection. Openvpn 2.4.9-I601-win10 is installed
> with TAP-Windows 9.24.2. A tap connection called TapQemu is bridged
> with the default ethernet connection. It gets activated when I start
> qemu.
>
> To reproduce, compile qemu-system-ppc from current source and run:
>
> qemu-system-ppc.exe ^
> -L pc-bios ^
> -M mac99 ^
> -m 128 ^
> -sdl -serial stdio ^
> -boot c ^
> -drive file=C:\Mac-disks\9.2.img,format=raw,media=disk ^
> -device sungem,netdev=network01 -netdev tap,ifname=TapQemu,id=network01
>
> I bisected to the commit below. Thanks for looking into this.
>
> Best,
> Howard
>
> 969e50b61a285b0cc8dea6d4d2ade3f758d5ecc7 is the first bad commit
> commit 969e50b61a285b0cc8dea6d4d2ade3f758d5ecc7
> Author: Bin Meng <bmeng.cn@gmail.com>
> Date:   Wed Mar 17 14:26:29 2021 +0800
>
>     net: Pad short frames to minimum size before sending from SLiRP/TAP
>
>     The minimum Ethernet frame length is 60 bytes. For short frames with
>     smaller length like ARP packets (only 42 bytes), on a real world NIC
>     it can choose either padding its length to the minimum required 60
>     bytes, or sending it out directly to the wire. Such behavior can be
>     hardcoded or controled by a register bit. Similarly on the receive
>     path, NICs can choose either dropping such short frames directly or
>     handing them over to software to handle.
>
>     On the other hand, for the network backends like SLiRP/TAP, they
>     don't expose a way to control the short frame behavior. As of today
>     they just send/receive data from/to the other end connected to them,
>     which means any sized packet is acceptable. So they can send and
>     receive short frames without any problem. It is observed that ARP
>     packets sent from SLiRP/TAP are 42 bytes, and SLiRP/TAP just send
>     these ARP packets to the other end which might be a NIC model that
>     does not allow short frames to pass through.
>
>     To provide better compatibility, for packets sent from QEMU network
>     backends like SLiRP/TAP, we change to pad short frames before sending
>     it out to the other end, if the other end does not forbid it via the
>     nc->do_not_pad flag. This ensures a backend as an Ethernet sender
>     does not violate the spec. But with this change, the behavior of
>     dropping short frames from SLiRP/TAP interfaces in the NIC model
>     cannot be emulated because it always receives a packet that is spec
>     complaint. The capability of sending short frames from NIC models is
>     still supported and short frames can still pass through SLiRP/TAP.
>
>     This commit should be able to fix the issue as reported with some
>     NIC models before, that ARP requests get dropped, preventing the
>     guest from becoming visible on the network. It was workarounded in
>     these NIC models on the receive path, that when a short frame is
>     received, it is padded up to 60 bytes.
>
>     The following 2 commits seem to be the one to workaround this issue
>     in e1000 and vmxenet3 before, and should probably be reverted.
>
>       commit 78aeb23eded2 ("e1000: Pad short frames to minimum size (60 bytes)")
>       commit 40a87c6c9b11 ("vmxnet3: Pad short frames to minimum size
> (60 bytes)")
>
>     Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>     Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>     Signed-off-by: Jason Wang <jasowang@redhat.com>
>
>  net/slirp.c     | 10 ++++++++++
>  net/tap-win32.c | 10 ++++++++++
>  net/tap.c       | 10 ++++++++++
>  3 files changed, 30 insertions(+)
>


  reply	other threads:[~2021-03-25 17:37 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-25 17:19 Bug with Windows tap network when running qemu-system-ppc with Mac OS 9 guest Howard Spoelstra
2021-03-25 17:34 ` Peter Maydell [this message]
2021-03-26  1:50   ` Bin Meng
2021-03-26  6:40     ` Howard Spoelstra
2021-03-26  6:51       ` Bin Meng
2021-03-26  7:58       ` Howard Spoelstra
2021-03-26  8:21       ` BALATON Zoltan
2021-03-26  8:48         ` Jason Wang
2021-03-26  9:00           ` Bin Meng
2021-03-26 15:58             ` Howard Spoelstra
2021-03-26 19:54               ` BALATON Zoltan
2021-03-27  5:13                 ` Howard Spoelstra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAFEAcA-79VsatyDSP8_u+=m=PpQLyjsuNBQh_-xt2RZ-6vqkgw@mail.gmail.com' \
    --to=peter.maydell@linaro.org \
    --cc=bmeng.cn@gmail.com \
    --cc=hsp.cat7@gmail.com \
    --cc=jasowang@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).