xqPQ/k246v/9Jfg0Z2wI3nwPMaeP+ZZhBTQsDpTHb1p/t+V6RZeSpmXslz1jaCXQwLezJ wkXOiKm6m+REG/15xPjcWTVpZnSDSs7gfdw9XIF3aKDQyytLq3NL5DHMZ9RAnfXgWwnOFu cQn2DVB8hYrXjUEAXHX5U6yF33hzyxPoiZobDVjqMDdNlMlhnNXNfVdH7mv9pw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1760535155; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=ZLJcWVzjfiXnZKJhMGJkGOKObqlTIs7WSWkseP6/p5w=; b=OFkcra9XoUcksKu+LWk1EdX73XvN4807BdGR6OCRORr3kdN+/Gb0UNXBRK7+p4S26SH0M6 /RJ2VdFdfsn0oubA6aVdR2HwG92Z8mwnKzwjv7P0xt92e3K1RYI7kTHkFzYRPTHPNYrlXD tRTU9AY2Z6Pq2VjNAS7FnNmugkssUoGz6ewMfAu2ndVOaowuS3lc6l8BthhGhd3UD9cVcZ HIdMYtFk+b2hPGzoMDQKE10X3SDYHca7yDn8nkhU1YFgF710xeqiyqrCEBJHhygntzBK2y S4D8opDAJ1o8c7T8hNUFXeQChNlCN1uxnGx5GO+yidjV03jkHum093Of7mrGug== ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1760535155; a=rsa-sha256; cv=none; b=mw/VsNm6z//JmSQW1tIxU1IcWutzGm10hnSOKgCO6iY03HFTqXDTfaEp2zkl6WyLJJzdfB Ae+hJ+guewI8vWL6dFfksIIx9q6Cldcb4OcRuumEDIOkM51wMgbYUXAWIX8Xq00Zx2zhFO +mkp21HM8TeCJFfd6QSf/NzaiaeNswG7Da7U1gKiEWWLEcXFgpNfeRJf2ZCjzef04ypUY2 eriWBUKLkPBgqciBdtaFOcnOy/3aT16ik/xkb+KTMc2b39vt+07uY4Hbyb5+EEumUphtWF OPKOmSbFTAk1zkiEtlsFn+gjFyAcWtCW9jirO9LuvuHYP/LWJfKFITOOerRrHg== ARC-Authentication-Results: i=1; mx1.freebsd.org; none Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4cmsTG6nW3zgkq; Wed, 15 Oct 2025 13:32:34 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.18.1/8.18.1) with ESMTP id 59FDWYcK068543; Wed, 15 Oct 2025 13:32:34 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.18.1/8.18.1/Submit) id 59FDWYWH068540; Wed, 15 Oct 2025 13:32:34 GMT (envelope-from git) Date: Wed, 15 Oct 2025 13:32:34 GMT Message-Id: <202510151332.59FDWYWH068540@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Jose Luis Duran Subject: git: 9c82c17c2a3a - main - openssh: blocklist: Remove non async-signal safe probe List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-src-all@freebsd.org Sender: owner-dev-commits-src-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: jlduran X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 9c82c17c2a3ac61a69cb5337cb6f92ae88bc0b08 Auto-Submitted: auto-generated The branch main has been updated by jlduran: URL: https://cgit.FreeBSD.org/src/commit/?id=9c82c17c2a3ac61a69cb5337cb6f92ae88bc0b08 commit 9c82c17c2a3ac61a69cb5337cb6f92ae88bc0b08 Author: Jose Luis Duran AuthorDate: 2025-10-15 13:29:30 +0000 Commit: Jose Luis Duran CommitDate: 2025-10-15 13:31:44 +0000 openssh: blocklist: Remove non async-signal safe probe BLOCKLIST_NOTIFY() is called within a signal handler for the alarm after the grace period has expired that may only take async-signal safe actions. Reviewed by: emaste Fixes: e02003bce726 ("openssh: blocklist: Use NetBSD probes") MFC after: 1 day Differential Revision: https://reviews.freebsd.org/D53109 --- crypto/openssh/sshd-session.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/crypto/openssh/sshd-session.c b/crypto/openssh/sshd-session.c index e8299c254567..ca35790149ac 100644 --- a/crypto/openssh/sshd-session.c +++ b/crypto/openssh/sshd-session.c @@ -217,8 +217,6 @@ mm_is_monitor(void) static void grace_alarm_handler(int sig) { - BLOCKLIST_NOTIFY(the_active_state, BLOCKLIST_AUTH_FAIL, - "Grace period expired"); /* * Try to kill any processes that we have spawned, E.g. authorized * keys command helpers or privsep children.