GNU logs - #62990, boring messages


Message sent to bug-gnu-emacs@HIDDEN:


X-Loop: help-debbugs@HIDDEN
Subject: bug#62990: 30.0.50; UDP server closes connection upon receiving an empty packet
Resent-From: Vasilij Schneidermann <mail@HIDDEN>
Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
Resent-CC: bug-gnu-emacs@HIDDEN
Resent-Date: Fri, 21 Apr 2023 10:38:01 +0000
Resent-Message-ID: <handler.62990.B.168207343618579 <at> debbugs.gnu.org>
Resent-Sender: help-debbugs@HIDDEN
X-GNU-PR-Message: report 62990
X-GNU-PR-Package: emacs
X-GNU-PR-Keywords: 
To: 62990 <at> debbugs.gnu.org
X-Debbugs-Original-To: bug-gnu-emacs@HIDDEN
Received: via spool by submit <at> debbugs.gnu.org id=B.168207343618579
          (code B ref -1); Fri, 21 Apr 2023 10:38:01 +0000
Received: (at submit) by debbugs.gnu.org; 21 Apr 2023 10:37:16 +0000
Received: from localhost ([127.0.0.1]:39434 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1ppo8h-0004pb-J6
	for submit <at> debbugs.gnu.org; Fri, 21 Apr 2023 06:37:16 -0400
Received: from lists.gnu.org ([209.51.188.17]:34604)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <mail@HIDDEN>) id 1ppo8g-0004pT-48
 for submit <at> debbugs.gnu.org; Fri, 21 Apr 2023 06:37:14 -0400
Received: from eggs.gnu.org ([2001:470:142:3::10])
 by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <mail@HIDDEN>) id 1ppo8f-0006kO-RK
 for bug-gnu-emacs@HIDDEN; Fri, 21 Apr 2023 06:37:13 -0400
Received: from mout-p-101.mailbox.org ([2001:67c:2050:0:465::101])
 by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256)
 (Exim 4.90_1) (envelope-from <mail@HIDDEN>) id 1ppo8a-00064h-Te
 for bug-gnu-emacs@HIDDEN; Fri, 21 Apr 2023 06:37:13 -0400
Received: from smtp1.mailbox.org (smtp1.mailbox.org [10.196.197.1])
 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest
 SHA256) (No client certificate requested)
 by mout-p-101.mailbox.org (Postfix) with ESMTPS id 4Q2rYf21Gpz9sTH
 for <bug-gnu-emacs@HIDDEN>; Fri, 21 Apr 2023 12:36:54 +0200 (CEST)
Date: Fri, 21 Apr 2023 12:36:52 +0200
From: Vasilij Schneidermann <mail@HIDDEN>
Message-ID: <ZEJnRHE7R4hWSwWl@odonien>
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha256;
 protocol="application/pgp-signature"; boundary="/3sKrgmUpC55A0Fr"
Content-Disposition: inline
Received-SPF: pass client-ip=2001:67c:2050:0:465::101;
 envelope-from=mail@HIDDEN; helo=mout-p-101.mailbox.org
X-Spam_score_int: -25
X-Spam_score: -2.6
X-Spam_bar: --
X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7,
 SPF_HELO_NONE=0.001, SPF_PASS=-0.001,
 T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no
X-Spam_action: no action
X-Spam-Score: -1.6 (-)
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -2.6 (--)


--/3sKrgmUpC55A0Fr
Content-Type: multipart/mixed; boundary="u2JkDqnouQE3X9SG"
Content-Disposition: inline


--u2JkDqnouQE3X9SG
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

I'm doing network programming with Emacs Lisp and one of the tasks was
implementing a UDP server reading individual packets. I've found that
when a client sends an empty packet, the server hangs up with a
connection error and no longer accepts subsequent packets. This seems to
be reasonable behavior for TCP (from what I understand, empty TCP
messages are a sign of the connection being closed), but not for
UDP. I've attached test programs written in Emacs Lisp and Guile to
reproduce both correctly and incorrectly functioning servers and clients
respectively. One minor nitpick is that sending an empty UDP packet from
Emacs Lisp doesn't work either, but I'm unsure whether this is a bug
(socat behaves similarly).


In GNU Emacs 30.0.50 (build 2, x86_64-pc-linux-gnu, GTK+ Version
 3.24.37, cairo version 1.17.8) of 2023-04-15 built on odonien
Repository revision: c60b59e04c3776a90adaa8c8fe53af3075a833b8
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12101007
System Description: Arch Linux

Configured using:
 'configure 'CFLAGS=3D-g -ggdb -O0''

Configured features:
ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG
JSON LCMS2 LIBOTF LIBSYSTEMD LIBXML2 M17N_FLT MODULES NOTIFY INOTIFY
PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS
TREE_SITTER WEBP X11 XDBE XIM XINPUT2 XPM GTK3 ZLIB

Important settings:
  value of $LC_MESSAGES:=20
  value of $LANG: en_US.UTF-8
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  eldoc-mode: t
  show-paren-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  line-number-mode: t
  indent-tabs-mode: t
  transient-mark-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug message mailcap yank-media puny dired
dired-loaddefs rfc822 mml mml-sec password-cache epa derived epg rfc6068
epg-config gnus-util text-property-search time-date subr-x mm-decode
mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader
cl-loaddefs cl-lib sendmail rfc2047 rfc2045 ietf-drums mm-util
mail-prsvr mail-utils rmc iso-transl tooltip cconv eldoc paren electric
uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel
term/x-win x-win term/common-win x-dnd tool-bar dnd fontset image
regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode
prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu
timer select scroll-bar mouse jit-lock font-lock syntax font-core
term/tty-colors frame minibuffer nadvice seq simple cl-generic
indonesian philippine cham georgian utf-8-lang misc-lang vietnamese
tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek
romanian slovak czech european ethiopic indian cyrillic chinese
composite emoji-zwj charscript charprop case-table epa-hook
jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs
theme-loaddefs faces cus-face macroexp files window text-properties
overlay sha1 md5 base64 format env code-pages mule custom widget keymap
hashtable-print-readable backquote threads dbusbind inotify lcms2
dynamic-setting system-font-setting font-render-setting cairo
move-toolbar gtk x-toolkit xinput2 x multi-tty make-network-process
emacs)

Memory information:
((conses 16 36403 15371)
 (symbols 48 5177 0)
 (strings 32 13201 2082)
 (string-bytes 1 377158)
 (vectors 16 9346)
 (vector-slots 8 149422 15364)
 (floats 8 21 24)
 (intervals 56 212 0)
 (buffers 984 10))

--u2JkDqnouQE3X9SG
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment; filename="bug-client.el"

;; -*- lexical-binding: t; -*-

(defun make-client ()
  (make-network-process
   :name "bug-client"
   :type 'datagram
   :host "127.0.0.1"
   :service 10000
   :family 'ipv4
   :coding 'binary))

(defvar client (make-client))

(process-send-string client "hello")
(process-send-string client "")
(process-send-string client "world")

(while t
  (accept-process-output nil 0.01))

--u2JkDqnouQE3X9SG
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment; filename="bug-server.el"

;; -*- lexical-binding: t; -*-

(defun server-filter (process string)
  (message "Received string (%s): %S" (length string) string))

(defun server-sentinel (process event)
  (message "Received event: %S" event)
  (when (eq (process-status process) 'closed)
    (delete-process process)
    (kill-buffer (process-buffer process))))

(defun make-server ()
  (make-network-process
   :name "bug-server"
   :type 'datagram
   :server t
   :host "127.0.0.1"
   :service 10000
   :family 'ipv4
   :coding 'binary
   :filter #'server-filter
   :sentinel #'server-sentinel))

(defvar server (make-server))

(while t
  (accept-process-output nil 0.01))

--u2JkDqnouQE3X9SG
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment; filename="fixed-client.scm"

(import (rnrs bytevectors))

(define client (socket PF_INET SOCK_DGRAM 0))
(connect client AF_INET (inet-pton AF_INET "127.0.0.1") 10000)

(send client (string->utf8 "hello"))
(send client (string->utf8 ""))
(send client (string->utf8 "world"))
(close client)

--u2JkDqnouQE3X9SG
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment; filename="fixed-server.scm"

(use-modules (ice-9 format))

(import (rnrs bytevectors))
(import (rnrs bytevectors gnu))
(import (srfi 18))

(define server (socket PF_INET SOCK_DGRAM 0))
(bind server AF_INET (inet-pton AF_INET "127.0.0.1") 10000)

(define buffer (make-u8vector 1024))

(let loop ()
  (let* ((len (car (recvfrom! server buffer)))
         (message (utf8->string (bytevector-slice buffer 0 len))))
    (format #t "Received string (~a): ~s~%" len message)
    (loop)))

--u2JkDqnouQE3X9SG--

--/3sKrgmUpC55A0Fr
Content-Type: application/pgp-signature; name="signature.asc"

-----BEGIN PGP SIGNATURE-----

iQEzBAABCAAdFiEE0dAcySl3bqM8O17WFmfJg6zCifoFAmRCZ0EACgkQFmfJg6zC
ifq0jwf/a+d4HHiISU09dTbZjcq9LOH2MG2UHnuwvaJoHo++pVOtrcl0AH2QhlBk
HBypkckV+/Lg53bnKHNDI5/UpWI7aw9/teIewMBt5X0gVG4y36kghsaPaYrAOyk2
udYHL/xY+KBzX1vuotaItC+TY5cXt+sbVqxpanbi4HK5wZZEdKukTa/MOYNmHw2T
t2rS1Co2LBGNlR9XXmZpv5qwPNgkDEXlGCl2WO1lBT/SOpfKZObE0+0egNwGmLJB
rzPu6rGyTvFyDgeg3sZJKe+BvZ2pDmvZxH9BdXPT3j0nVrn5aSae0xz2Ei1If+tf
D/S1xkZgREztiGuPWjUPuHvDBGfMxQ==
=YQoQ
-----END PGP SIGNATURE-----

--/3sKrgmUpC55A0Fr--




Message sent:


Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
X-Mailer: MIME-tools 5.505 (Entity 5.505)
Content-Type: text/plain; charset=utf-8
X-Loop: help-debbugs@HIDDEN
From: help-debbugs@HIDDEN (GNU bug Tracking System)
To: Vasilij Schneidermann <mail@HIDDEN>
Subject: bug#62990: Acknowledgement (30.0.50; UDP server closes connection
 upon receiving an empty packet)
Message-ID: <handler.62990.B.168207343618579.ack <at> debbugs.gnu.org>
References: <ZEJnRHE7R4hWSwWl@odonien>
X-Gnu-PR-Message: ack 62990
X-Gnu-PR-Package: emacs
Reply-To: 62990 <at> debbugs.gnu.org
Date: Fri, 21 Apr 2023 10:38:02 +0000

Thank you for filing a new bug report with debbugs.gnu.org.

This is an automatically generated reply to let you know your message
has been received.

Your message is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

Your message has been sent to the package maintainer(s):
 bug-gnu-emacs@HIDDEN

If you wish to submit further information on this problem, please
send it to 62990 <at> debbugs.gnu.org.

Please do not send mail to help-debbugs@HIDDEN unless you wish
to report a problem with the Bug-tracking system.

--=20
62990: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D62990
GNU Bug Tracking System
Contact help-debbugs@HIDDEN with problems


Message sent to bug-gnu-emacs@HIDDEN:


X-Loop: help-debbugs@HIDDEN
Subject: bug#62990: 30.0.50; UDP server closes connection upon receiving an empty packet
Resent-From: Robert Pluim <rpluim@HIDDEN>
Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
Resent-CC: bug-gnu-emacs@HIDDEN
Resent-Date: Mon, 24 Apr 2023 08:52:01 +0000
Resent-Message-ID: <handler.62990.B62990.168232627719363 <at> debbugs.gnu.org>
Resent-Sender: help-debbugs@HIDDEN
X-GNU-PR-Message: followup 62990
X-GNU-PR-Package: emacs
X-GNU-PR-Keywords: 
To: Vasilij Schneidermann <mail@HIDDEN>
Cc: 62990 <at> debbugs.gnu.org
Received: via spool by 62990-submit <at> debbugs.gnu.org id=B62990.168232627719363
          (code B ref 62990); Mon, 24 Apr 2023 08:52:01 +0000
Received: (at 62990) by debbugs.gnu.org; 24 Apr 2023 08:51:17 +0000
Received: from localhost ([127.0.0.1]:47463 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1pqrum-00052D-By
	for submit <at> debbugs.gnu.org; Mon, 24 Apr 2023 04:51:16 -0400
Received: from mail-wr1-f43.google.com ([209.85.221.43]:57733)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <rpluim@HIDDEN>) id 1pqruk-00051N-47
 for 62990 <at> debbugs.gnu.org; Mon, 24 Apr 2023 04:51:14 -0400
Received: by mail-wr1-f43.google.com with SMTP id
 ffacd0b85a97d-2fa0ce30ac2so3774725f8f.3
 for <62990 <at> debbugs.gnu.org>; Mon, 24 Apr 2023 01:51:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=gmail.com; s=20221208; t=1682326268; x=1684918268;
 h=content-transfer-encoding:mime-version:message-id:date:references
 :in-reply-to:subject:cc:to:from:from:to:cc:subject:date:message-id
 :reply-to; bh=r4j7iKSK+9RNdJP6dJ4k4DUprwohLaazuaNUHD4mO3A=;
 b=mvwrAgg8hjchtda4k5D/qMYqfCQK/iinsSDkgtb4nZArT++MUUQce8M3fEmjelSl1E
 s0tU6WMXECVYf7EzoJpZPXyvcGz+2DSWiP0FE0p9KfqBVdtxMjKfRJWRIhe1NAAe2Gc4
 gicQgxRZb7gtJWJzmssH61N8i2uqxDPGOCIYxNfi4Z81B2GPcaD292K/ilKu+Q6j4m22
 UBi76XcHXXTIlOEDc+s1EghHOXbHZp/rxCw0S9ZfnPVEznQkFoLqt+Ki31D3aqiqWduQ
 1ez4ZyNq4QKF/2gVepfSmkLMy7jt6hyaZmOW/jiX6CJxS3oUZYTfpqI/GXjvpCtl9JRg
 n53g==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20221208; t=1682326268; x=1684918268;
 h=content-transfer-encoding:mime-version:message-id:date:references
 :in-reply-to:subject:cc:to:from:x-gm-message-state:from:to:cc
 :subject:date:message-id:reply-to;
 bh=r4j7iKSK+9RNdJP6dJ4k4DUprwohLaazuaNUHD4mO3A=;
 b=BXf55ihcZiC6/DV61ksa2vvwFq5hYr48WNBmQLdKmYbSF/pB+uQYM+mAChF1p5ACyp
 PQYjuNdlnEjaMb9AM61tVdLoq2oR1sYsHEZ+hRuM4DPTa2tAuYRK/h5XerE/DB1uqG3a
 VH1u6SfhaXl55eyevpJE3/JmTEWxG/3k2maLzQ3tDF2xqo4zRsCNFXR7Z2TGDAct0TkU
 xxdcw/+gCVDbg2YSLNqRg+alDDBpeJrd3MnySZdRkz/hirF+ccSZXJP3c4sRruGwyyJq
 wBKNfobj3ya53GHLOg7VubTcPCZM0xiBWNWEavXM0Dbqo7/O5cRGiuJIQNkax1tmdAOO
 YQzg==
X-Gm-Message-State: AAQBX9eIVmslnKzQZpyzC2Qywgcj+KRE2c1texZtQwLGi/0ThikYNgcs
 d92KOn596YuNjfAwnBauUq1XHul/ehM=
X-Google-Smtp-Source: AKy350YoToM7ZTKz8yIByuXtXyw5J0L9FmWhmnYHB2VWSqEtNcY1B4sjhhpOjtWv+CNvyXH1DJNAJg==
X-Received: by 2002:adf:cf0d:0:b0:2f1:e162:d48 with SMTP id
 o13-20020adfcf0d000000b002f1e1620d48mr8995491wrj.47.1682326267766; 
 Mon, 24 Apr 2023 01:51:07 -0700 (PDT)
Received: from rltb ([82.66.8.55]) by smtp.gmail.com with ESMTPSA id
 m10-20020a5d56ca000000b002c54c9bd71fsm10291434wrw.93.2023.04.24.01.51.07
 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);
 Mon, 24 Apr 2023 01:51:07 -0700 (PDT)
From: Robert Pluim <rpluim@HIDDEN>
In-Reply-To: <ZEJnRHE7R4hWSwWl@odonien> (Vasilij Schneidermann's message of
 "Fri, 21 Apr 2023 12:36:52 +0200")
References: <ZEJnRHE7R4hWSwWl@odonien>
Date: Mon, 24 Apr 2023 10:51:06 +0200
Message-ID: <87wn21br45.fsf@HIDDEN>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
X-Spam-Score: 0.0 (/)
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

>>>>> On Fri, 21 Apr 2023 12:36:52 +0200, Vasilij Schneidermann <mail@vasil=
ij.de> said:

    Vasilij> I'm doing network programming with Emacs Lisp and one of the t=
asks was
    Vasilij> implementing a UDP server reading individual packets. I've fou=
nd that
    Vasilij> when a client sends an empty packet, the server hangs up with a
    Vasilij> connection error and no longer accepts subsequent packets. Thi=
s seems to
    Vasilij> be reasonable behavior for TCP (from what I understand, empty =
TCP
    Vasilij> messages are a sign of the connection being closed), but
    Vasilij> not for UDP.

Empty TCP messages are perfectly valid, but they should be hidden from
you. recvfrom returning 0 means the connection has been closed, but
that=CA=BCs a separate thing.

Empty UDP messages are also valid, and are indicated by recvfrom returning
0.

Could you show how you=CA=BCre generating the empty packets?

    Vasilij> I've attached test programs written in Emacs Lisp and Guile to
    Vasilij> reproduce both correctly and incorrectly functioning servers a=
nd clients
    Vasilij> respectively. One minor nitpick is that sending an empty UDP p=
acket from
    Vasilij> Emacs Lisp doesn't work either, but I'm unsure whether this is=
 a bug
    Vasilij> (socat behaves similarly).

It=CA=BCs allowed by the protocol. I guess it could be useful for people
wanting to implement their own keep-alive protocol over UDP.

Robert
--=20





Last modified: Mon, 24 Apr 2023 09:00:02 UTC

GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997 nCipher Corporation Ltd, 1994-97 Ian Jackson.