DPDK-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>
Subject: [PATCH 00/13] make signal handlers async-signal-safe
Date: Sun,  6 Sep 2026 16:24:35 -0700	[thread overview]
Message-ID: <20260906232716.496546-1-stephen@networkplumber.org> (raw)

Signal handlers may only call the functions listed in signal-safety(7).
Many DPDK examples ignored this and did printf() a "preparing to exit"
message before setting the quit flag. A signal during another printf
call can deadlock. And some of the programs did even more
unsafe things.

GCC 14 -fanalyzer reports these:

  warning: call to 'printf' from within signal handler [CWE-479]
	[-Wanalyzer-unsafe-call-within-signal-handler]

The fix is the same throughout: the handler only sets the existing
volatile flag, and any real work moves to the main loop or to main()
after the lcores are joined. The message is dropped; the user pressed ^C
and knows a signal was sent.

Patches 1-2 only delete the printf(). Patches 3-13 also relocate work
that was being done in the handler.

Behaviour changes worth review:

- examples/ntb: SIGINT used to printf(), restore SIG_DFL and re-raise,
  killing the process without stopping the forwarding lcores or closing
  the devices. It now sets the per-lcore stopped flag, so SIGINT stops
  forwarding and returns to the ntb> prompt; quit does the teardown.

- examples/vdpa: the teardown moved to main() now also closes the vDPA
  devices when leaving interactive mode, which was missing before.

- examples/eventdev_pipeline: the second-signal escape hatch becomes
  _exit() instead of rte_exit(), the --dump-dev exit dump moves to
  main() (and uses the real dev_id rather than a hardcoded 0), and
  SIGTSTP now sets cdata.dump_dev_signal, which schedule_devices()
  already drained but nothing ever set. The SIGTSTP dump therefore
  requires a scheduler lcore.

Only examples/ethtool and examples/vmdq_dcb carry a Fixes: tag; the rest
remove an unsafe call that has not been seen to deadlock in practice and
are cleanups rather than backport material.

Applications outside the analyzer's reach likely have the same pattern;
this covers what GCC flagged, plus eventdev_pipeline found by inspection.

Build tested with GCC 14 -fanalyzer; the warnings are gone for the files
touched.

Stephen Hemminger (13):
  graph: do not call printf in signal
  examples: remove printf from signal handler
  examples/vmdq: do not print from signal handler
  examples/symmetric_mp: do not print or exit in handler
  examples/vdpa: make signal handler safe
  examples/vhost: make signal handler safe
  examples/vhost_blk: do not tear down from signal handler
  examples/ntb: do not print and re-raise from signal handler
  examples/ipsecgw: do not print from signal handler
  examples/l2fwd-macsec: remove print in signal handler
  examples/ethtool: fix exit flag and unchecked cmdline
  examples/vmdq_dcb: allow exit on signal
  examples/eventdev_pipeline: make signal handler safe

 app/graph/main.c                             |  4 +--
 examples/distributor/main.c                  |  3 +--
 examples/dma/dmafwd.c                        |  2 --
 examples/ethtool/ethtool-app/ethapp.c        |  5 ++++
 examples/ethtool/ethtool-app/main.c          |  2 +-
 examples/eventdev_pipeline/main.c            | 18 ++++++--------
 examples/eventdev_pipeline/pipeline_common.h |  3 ++-
 examples/flow_filtering/main.c               |  5 +---
 examples/ipsec-secgw/ipsec-secgw.c           |  5 +---
 examples/l2fwd-event/main.c                  |  5 +---
 examples/l2fwd-macsec/main.c                 |  5 +---
 examples/l2fwd/main.c                        |  5 +---
 examples/l3fwd-graph/main.c                  |  5 +---
 examples/multi_process/symmetric_mp/main.c   | 26 ++++++++++++++------
 examples/ntb/ntb_fwd.c                       | 16 +++++++-----
 examples/vdpa/main.c                         | 16 ++++++------
 examples/vhost/main.c                        | 14 ++++++-----
 examples/vhost_blk/vhost_blk.c               | 26 +++++++++++---------
 examples/vmdq/main.c                         | 20 ++++++++++++---
 examples/vmdq_dcb/main.c                     | 20 ++++++++++++++-
 20 files changed, 118 insertions(+), 87 deletions(-)

-- 
2.53.0


             reply	other threads:[~2026-09-06 23:27 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-06 23:24 Stephen Hemminger [this message]
2026-09-06 23:24 ` [PATCH 01/13] graph: do not call printf in signal Stephen Hemminger
2026-09-06 23:24 ` [PATCH 02/13] examples: remove printf from signal handler Stephen Hemminger
2026-09-06 23:24 ` [PATCH 03/13] examples/vmdq: do not print " Stephen Hemminger
2026-09-06 23:24 ` [PATCH 04/13] examples/symmetric_mp: do not print or exit in handler Stephen Hemminger
2026-09-06 23:24 ` [PATCH 05/13] examples/vdpa: make signal handler safe Stephen Hemminger
2026-09-06 23:24 ` [PATCH 06/13] examples/vhost: " Stephen Hemminger
2026-09-06 23:24 ` [PATCH 07/13] examples/vhost_blk: do not tear down from signal handler Stephen Hemminger
2026-09-06 23:24 ` [PATCH 08/13] examples/ntb: do not print and re-raise " Stephen Hemminger
2026-09-06 23:24 ` [PATCH 09/13] examples/ipsecgw: do not print " Stephen Hemminger
2026-09-08 11:19   ` Radu Nicolau
2026-09-06 23:24 ` [PATCH 10/13] examples/l2fwd-macsec: remove print in " Stephen Hemminger
2026-09-06 23:24 ` [PATCH 11/13] examples/ethtool: fix exit flag and unchecked cmdline Stephen Hemminger
2026-09-06 23:24 ` [PATCH 12/13] examples/vmdq_dcb: allow exit on signal Stephen Hemminger
2026-09-06 23:24 ` [PATCH 13/13] examples/eventdev_pipeline: make signal handler safe Stephen Hemminger
2026-09-07  9:06 ` [PATCH 00/13] make signal handlers async-signal-safe Bruce Richardson
2026-09-07 17:03 ` [PATCH v2 " Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 01/13] graph: do not call printf in signal Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 02/13] examples: remove printf from signal handler Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 03/13] examples/vmdq: do not print " Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 04/13] examples/symmetric_mp: do not print or exit in handler Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 05/13] examples/vdpa: make signal handler safe Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 06/13] examples/vhost: " Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 07/13] examples/vhost_blk: do not tear down from signal handler Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 08/13] examples/ntb: do not print and re-raise " Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 09/13] examples/ipsecgw: do not print " Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 10/13] examples/l2fwd-macsec: remove print in " Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 11/13] examples/ethtool: fix exit flag and unchecked cmdline Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 12/13] examples/vmdq_dcb: allow exit on signal Stephen Hemminger
2026-09-07 17:03   ` [PATCH v2 13/13] examples/eventdev_pipeline: make signal handler safe Stephen Hemminger

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=20260906232716.496546-1-stephen@networkplumber.org \
    --to=stephen@networkplumber.org \
    --cc=dev@dpdk.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