[openssh-commits] [openssh] 04/04: upstream: all state related to the ssh connection should live in
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu Aug 7 09:47:24 AEST 2025
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 2ebc6384258b58ace0ad2adb2593744f62749235
Author: djm at openbsd.org <djm at openbsd.org>
AuthorDate: Wed Aug 6 23:44:09 2025 +0000
upstream: all state related to the ssh connection should live in
struct ssh or struct packet_state; one static int escaped this rule, so move
it to struct packet_state now.
ok millert tb
OpenBSD-Commit-ID: bd6737168bf61a836ffbdc99ee4803468db90a53
---
packet.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/packet.c b/packet.c
index 9dea2cfc5..7f67f4fcd 100644
--- a/packet.c
+++ b/packet.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: packet.c,v 1.318 2025/02/18 08:02:12 djm Exp $ */
+/* $OpenBSD: packet.c,v 1.319 2025/08/06 23:44:09 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -219,6 +219,12 @@ struct session_state {
/* One-off warning about weak ciphers */
int cipher_warning_done;
+ /*
+ * Disconnect in progress. Used to prevent reentry in
+ * ssh_packet_disconnect()
+ */
+ int disconnecting;
+
/* Hook for fuzzing inbound packets */
ssh_packet_hook_fn *hook_in;
void *hook_in_ctx;
@@ -2064,12 +2070,12 @@ ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...)
{
char buf[1024], remote_id[512];
va_list args;
- static int disconnecting = 0;
int r;
- if (disconnecting) /* Guard against recursive invocations. */
+ /* Guard against recursive invocations. */
+ if (ssh->state->disconnecting)
fatal("packet_disconnect called recursively.");
- disconnecting = 1;
+ ssh->state->disconnecting = 1;
/*
* Format the message. Note that the caller must make sure the
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list