all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Robert Pluim <rpluim@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 62990@debbugs.gnu.org, mail@vasilij.de
Subject: bug#62990: 30.0.50; UDP server closes connection upon receiving an empty packet
Date: Wed, 26 Apr 2023 13:47:49 +0200	[thread overview]
Message-ID: <87o7nasw4a.fsf@gmail.com> (raw)
In-Reply-To: <83pm7rszbc.fsf@gnu.org> (Eli Zaretskii's message of "Wed, 26 Apr 2023 13:38:47 +0300")

>>>>> On Wed, 26 Apr 2023 13:38:47 +0300, Eli Zaretskii <eliz@gnu.org> said:

    >> From: Robert Pluim <rpluim@gmail.com>
    >> Cc: 62990@debbugs.gnu.org,  mail@vasilij.de
    >> Date: Wed, 26 Apr 2023 12:35:21 +0200
    >> 
    >> >>>>> On Wed, 26 Apr 2023 13:30:32 +0300, Eli Zaretskii <eliz@gnu.org> said:
    >> 
    Eli> Do we want some variable to get back the old behavior, in case some
    Eli> application out there depends on that?
    >> 
    >> For which one?

    Eli> The 2nd one.

I guess we could, but if the application asks us to send an empty
packet we should do it.

    >> Does it help if I say that [1] is a security fix? 😜

    Eli> No.  But it will help if you convince me that it's a bug-fix.

It transforms this:

    recvfrom(5, "hello", 4096, 0, {sa_family=AF_INET, sin_port=htons(56845), sin_addr=inet_addr("127.0.0.1")}, [16]) = 5
    Received string (5): "hello"
    recvfrom(5, "", 4096, 0, {sa_family=AF_INET, sin_port=htons(56845), sin_addr=inet_addr("127.0.0.1")}, [16]) = 0
    Received event: "connection broken by remote peer

into this:

    recvfrom(5, "hello", 4096, 0, {sa_family=AF_INET, sin_port=htons(55486), sin_addr=inet_addr("127.0.0.1")}, [16]) = 5
    Received string (5): "hello"
    recvfrom(5, "", 4096, 0, {sa_family=AF_INET, sin_port=htons(55486), sin_addr=inet_addr("127.0.0.1")}, [16]) = 0
    recvfrom(5, "world", 4096, 0, {sa_family=AF_INET, sin_port=htons(55486), sin_addr=inet_addr("127.0.0.1")}, [16]) = 5
    Received string (5): "world"

ie the UDP process is still running and can still receive messages

Robert
-- 





  reply	other threads:[~2023-04-26 11:47 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-21 10:36 bug#62990: 30.0.50; UDP server closes connection upon receiving an empty packet Vasilij Schneidermann
2023-04-24  8:51 ` Robert Pluim
2023-04-24 21:04   ` Vasilij Schneidermann
2023-04-25  8:07     ` Robert Pluim
2023-04-26  9:14       ` Robert Pluim
2023-04-26 10:30         ` Eli Zaretskii
2023-04-26 10:35           ` Robert Pluim
2023-04-26 10:38             ` Eli Zaretskii
2023-04-26 11:47               ` Robert Pluim [this message]
2023-04-26 12:24                 ` Eli Zaretskii
2023-04-26 14:27                   ` Robert Pluim
2023-04-26 10:58             ` Vasilij Schneidermann
2023-04-26 10:56       ` Vasilij Schneidermann
2023-04-26 11:50         ` Robert Pluim
2023-04-26 14:31           ` Robert Pluim
2024-03-09 13:40             ` Vasilij Schneidermann

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=87o7nasw4a.fsf@gmail.com \
    --to=rpluim@gmail.com \
    --cc=62990@debbugs.gnu.org \
    --cc=eliz@gnu.org \
    --cc=mail@vasilij.de \
    /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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

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.