openssh: update to 9.9p1
This commit is contained in:
parent
526e55d668
commit
28d4c58f7c
@ -6,12 +6,14 @@
|
|||||||
###########################################################
|
###########################################################
|
||||||
# Check the following 4 variables before running the script
|
# Check the following 4 variables before running the script
|
||||||
topdir=openssh
|
topdir=openssh
|
||||||
version=9.8p1
|
version=9.9p1
|
||||||
pkgver=1
|
pkgver=1
|
||||||
source[0]=https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/$topdir-$version.tar.gz
|
source[0]=https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/$topdir-$version.tar.gz
|
||||||
# If there are no patches, simply comment this
|
# If there are no patches, simply comment this
|
||||||
patch[0]=0001-regress-login-timeout.sh-increase-timeouts.patch
|
patch[0]=0007-Fix-authopt-test-on-platforms-without-IPv6-support.patch
|
||||||
patch[1]=0007-Fix-authopt-test-on-platforms-without-IPv6-support.patch
|
patch[1]=openssh-9.9-fixes.patch
|
||||||
|
patch[2]=0001-regress-login-timeout.sh-increase-timeouts.patch
|
||||||
|
patch[3]=0001-Revert-simplify-sshkey_prekey_alloc-always-use-mmap.patch
|
||||||
|
|
||||||
# Source function library
|
# Source function library
|
||||||
. ${BUILDPKG_SCRIPTS}/buildpkg.functions
|
. ${BUILDPKG_SCRIPTS}/buildpkg.functions
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
CHANGELOG
|
CHANGELOG
|
||||||
--------
|
--------
|
||||||
|
* Sun Sep 22 2024 Tom G. Christensen <swpkg@jupiterrise.com> - 9.9p1-1
|
||||||
|
- Update to 9.9p1
|
||||||
|
|
||||||
* Mon Jul 01 2024 Tom G. Christensen <swpkg@jupiterrise.com> - 9.8p1-1
|
* Mon Jul 01 2024 Tom G. Christensen <swpkg@jupiterrise.com> - 9.8p1-1
|
||||||
- Update to 9.8p1
|
- Update to 9.8p1
|
||||||
|
|
||||||
|
@ -0,0 +1,68 @@
|
|||||||
|
From 7c71009d8d5954895a52aebfffd45803282775c2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: "Tom G. Christensen" <tgc@jupiterrise.com>
|
||||||
|
Date: Sun, 22 Sep 2024 18:20:21 +0200
|
||||||
|
Subject: [PATCH] Revert "simplify sshkey_prekey_alloc(); always use mmap"
|
||||||
|
|
||||||
|
MAP_ANON is not available on Solaris < 8.
|
||||||
|
---
|
||||||
|
sshkey.c | 27 +++++++++++++++++----------
|
||||||
|
1 file changed, 17 insertions(+), 10 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/sshkey.c b/sshkey.c
|
||||||
|
index 1db83788d..f679113df 100644
|
||||||
|
--- a/sshkey.c
|
||||||
|
+++ b/sshkey.c
|
||||||
|
@@ -754,25 +754,28 @@ sshkey_sk_cleanup(struct sshkey *k)
|
||||||
|
k->sk_key_handle = k->sk_reserved = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
-#if defined(MAP_CONCEAL)
|
||||||
|
-# define PREKEY_MMAP_FLAG MAP_CONCEAL
|
||||||
|
-#elif defined(MAP_NOCORE)
|
||||||
|
-# define PREKEY_MMAP_FLAG MAP_NOCORE
|
||||||
|
-#else
|
||||||
|
-# define PREKEY_MMAP_FLAG 0
|
||||||
|
-#endif
|
||||||
|
-
|
||||||
|
static int
|
||||||
|
sshkey_prekey_alloc(u_char **prekeyp, size_t len)
|
||||||
|
{
|
||||||
|
u_char *prekey;
|
||||||
|
|
||||||
|
*prekeyp = NULL;
|
||||||
|
+#if defined(MAP_CONCEAL)
|
||||||
|
if ((prekey = mmap(NULL, len, PROT_READ|PROT_WRITE,
|
||||||
|
- MAP_ANON|MAP_PRIVATE|PREKEY_MMAP_FLAG, -1, 0)) == MAP_FAILED)
|
||||||
|
+ MAP_ANON|MAP_PRIVATE|MAP_CONCEAL, -1, 0)) == MAP_FAILED)
|
||||||
|
+ return SSH_ERR_SYSTEM_ERROR;
|
||||||
|
+#elif defined(MAP_NOCORE)
|
||||||
|
+ if ((prekey = mmap(NULL, len, PROT_READ|PROT_WRITE,
|
||||||
|
+ MAP_ANON|MAP_PRIVATE|MAP_NOCORE, -1, 0)) == MAP_FAILED)
|
||||||
|
+ return SSH_ERR_SYSTEM_ERROR;
|
||||||
|
+#elif defined(MADV_DONTDUMP)
|
||||||
|
+ if ((prekey = mmap(NULL, len, PROT_READ|PROT_WRITE,
|
||||||
|
+ MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED)
|
||||||
|
return SSH_ERR_SYSTEM_ERROR;
|
||||||
|
-#if defined(MADV_DONTDUMP) && !defined(MAP_CONCEAL) && !defined(MAP_NOCORE)
|
||||||
|
(void)madvise(prekey, len, MADV_DONTDUMP);
|
||||||
|
+#else
|
||||||
|
+ if ((prekey = calloc(1, len)) == NULL)
|
||||||
|
+ return SSH_ERR_ALLOC_FAIL;
|
||||||
|
#endif
|
||||||
|
*prekeyp = prekey;
|
||||||
|
return 0;
|
||||||
|
@@ -783,7 +786,11 @@ sshkey_prekey_free(void *prekey, size_t len)
|
||||||
|
{
|
||||||
|
if (prekey == NULL)
|
||||||
|
return;
|
||||||
|
+#if defined(MAP_CONCEAL) || defined(MAP_NOCORE) || defined(MADV_DONTDUMP)
|
||||||
|
munmap(prekey, len);
|
||||||
|
+#else
|
||||||
|
+ freezero(prekey, len);
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
--
|
||||||
|
2.36.6
|
||||||
|
|
515
openssh/src/openssh-9.9-fixes.patch
Normal file
515
openssh/src/openssh-9.9-fixes.patch
Normal file
@ -0,0 +1,515 @@
|
|||||||
|
From 8513f4d30ae85d17b3b08da6bc3be76f8c73123c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Darren Tucker <dtucker@dtucker.net>
|
||||||
|
Date: Mon, 23 Sep 2024 20:52:31 +1000
|
||||||
|
Subject: [PATCH 1/7] Add 9.9 branch to CI status console.
|
||||||
|
|
||||||
|
---
|
||||||
|
.github/ci-status.md | 4 ++++
|
||||||
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/.github/ci-status.md b/.github/ci-status.md
|
||||||
|
index 4fa73894c..68275715d 100644
|
||||||
|
--- a/.github/ci-status.md
|
||||||
|
+++ b/.github/ci-status.md
|
||||||
|
@@ -6,6 +6,10 @@ master :
|
||||||
|
[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:openssh)
|
||||||
|
[](https://scan.coverity.com/projects/openssh-portable)
|
||||||
|
|
||||||
|
+9.9 :
|
||||||
|
+[](https://github.com/openssh/openssh-portable/actions/workflows/c-cpp.yml?query=branch:V_9_9)
|
||||||
|
+[](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/selfhosted.yml?query=branch:V_9_9)
|
||||||
|
+
|
||||||
|
9.8 :
|
||||||
|
[](https://github.com/openssh/openssh-portable/actions/workflows/c-cpp.yml?query=branch:V_9_8)
|
||||||
|
[](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/selfhosted.yml?query=branch:V_9_8)
|
||||||
|
--
|
||||||
|
2.36.6
|
||||||
|
|
||||||
|
|
||||||
|
From 7cf4dc414de689c467e58e49fb83f6609c3ed36b Mon Sep 17 00:00:00 2001
|
||||||
|
From: Darren Tucker <dtucker@dtucker.net>
|
||||||
|
Date: Mon, 23 Sep 2024 20:54:26 +1000
|
||||||
|
Subject: [PATCH 2/7] Remove non-9.9 branch statuses.
|
||||||
|
|
||||||
|
---
|
||||||
|
.github/ci-status.md | 8 --------
|
||||||
|
1 file changed, 8 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/.github/ci-status.md b/.github/ci-status.md
|
||||||
|
index 68275715d..17fa97bdc 100644
|
||||||
|
--- a/.github/ci-status.md
|
||||||
|
+++ b/.github/ci-status.md
|
||||||
|
@@ -9,11 +9,3 @@ master :
|
||||||
|
9.9 :
|
||||||
|
[](https://github.com/openssh/openssh-portable/actions/workflows/c-cpp.yml?query=branch:V_9_9)
|
||||||
|
[](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/selfhosted.yml?query=branch:V_9_9)
|
||||||
|
-
|
||||||
|
-9.8 :
|
||||||
|
-[](https://github.com/openssh/openssh-portable/actions/workflows/c-cpp.yml?query=branch:V_9_8)
|
||||||
|
-[](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/selfhosted.yml?query=branch:V_9_8)
|
||||||
|
-
|
||||||
|
-9.7 :
|
||||||
|
-[](https://github.com/openssh/openssh-portable/actions/workflows/c-cpp.yml?query=branch:V_9_7)
|
||||||
|
-[](https://github.com/openssh/openssh-portable-selfhosted/actions/workflows/selfhosted.yml?query=branch:V_9_7)
|
||||||
|
--
|
||||||
|
2.36.6
|
||||||
|
|
||||||
|
|
||||||
|
From c7fda601186ff28128cfe3eab9c9c0622de096e1 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christoph Ostarek <christoph@zededa.com>
|
||||||
|
Date: Wed, 3 Jul 2024 12:46:59 +0200
|
||||||
|
Subject: [PATCH 3/7] fix utmpx ifdef
|
||||||
|
|
||||||
|
02e16ad95fb1f56ab004b01a10aab89f7103c55d did a copy-paste for
|
||||||
|
utmpx, but forgot to change the ifdef appropriately
|
||||||
|
---
|
||||||
|
loginrec.c | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/loginrec.c b/loginrec.c
|
||||||
|
index 7460bb2c0..45f13dee8 100644
|
||||||
|
--- a/loginrec.c
|
||||||
|
+++ b/loginrec.c
|
||||||
|
@@ -723,7 +723,7 @@ set_utmpx_time(struct logininfo *li, struct utmpx *utx)
|
||||||
|
void
|
||||||
|
construct_utmpx(struct logininfo *li, struct utmpx *utx)
|
||||||
|
{
|
||||||
|
-# ifdef HAVE_ADDR_V6_IN_UTMP
|
||||||
|
+# ifdef HAVE_ADDR_V6_IN_UTMPX
|
||||||
|
struct sockaddr_in6 *sa6;
|
||||||
|
# endif
|
||||||
|
memset(utx, '\0', sizeof(*utx));
|
||||||
|
@@ -769,7 +769,7 @@ construct_utmpx(struct logininfo *li, struct utmpx *utx)
|
||||||
|
if (li->hostaddr.sa.sa_family == AF_INET)
|
||||||
|
utx->ut_addr = li->hostaddr.sa_in.sin_addr.s_addr;
|
||||||
|
# endif
|
||||||
|
-# ifdef HAVE_ADDR_V6_IN_UTMP
|
||||||
|
+# ifdef HAVE_ADDR_V6_IN_UTMPX
|
||||||
|
/* this is just a 128-bit IPv6 address */
|
||||||
|
if (li->hostaddr.sa.sa_family == AF_INET6) {
|
||||||
|
sa6 = ((struct sockaddr_in6 *)&li->hostaddr.sa);
|
||||||
|
--
|
||||||
|
2.36.6
|
||||||
|
|
||||||
|
|
||||||
|
From 2c12ae8cf9b0b7549ae097c4123abeda0ee63e5b Mon Sep 17 00:00:00 2001
|
||||||
|
From: Damien Miller <djm@mindrot.org>
|
||||||
|
Date: Wed, 25 Sep 2024 11:13:05 +1000
|
||||||
|
Subject: [PATCH 4/7] build construct_utmp() when USE_BTMP is set
|
||||||
|
|
||||||
|
Fixes compile error on Void Linux/Musl
|
||||||
|
---
|
||||||
|
loginrec.c | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/loginrec.c b/loginrec.c
|
||||||
|
index 45f13dee8..7b1818b86 100644
|
||||||
|
--- a/loginrec.c
|
||||||
|
+++ b/loginrec.c
|
||||||
|
@@ -614,7 +614,7 @@ line_abbrevname(char *dst, const char *src, int dstsize)
|
||||||
|
** into account.
|
||||||
|
**/
|
||||||
|
|
||||||
|
-#if defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
|
||||||
|
+#if defined(USE_BTMP) || defined(USE_UTMP) || defined (USE_WTMP) || defined (USE_LOGIN)
|
||||||
|
|
||||||
|
/* build the utmp structure */
|
||||||
|
void
|
||||||
|
@@ -698,7 +698,7 @@ construct_utmp(struct logininfo *li,
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
-#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
|
||||||
|
+#endif /* USE_BTMP || USE_UTMP || USE_WTMP || USE_LOGIN */
|
||||||
|
|
||||||
|
/**
|
||||||
|
** utmpx utility functions
|
||||||
|
--
|
||||||
|
2.36.6
|
||||||
|
|
||||||
|
|
||||||
|
From ff2cd1dd5711ff88efdf26662d6189d980439a1f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Damien Miller <djm@mindrot.org>
|
||||||
|
Date: Wed, 25 Sep 2024 11:15:45 +1000
|
||||||
|
Subject: [PATCH 5/7] gss-serv.c needs sys/param.h
|
||||||
|
|
||||||
|
From Void Linux
|
||||||
|
---
|
||||||
|
gss-serv.c | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/gss-serv.c b/gss-serv.c
|
||||||
|
index 00e3d118b..025a118f8 100644
|
||||||
|
--- a/gss-serv.c
|
||||||
|
+++ b/gss-serv.c
|
||||||
|
@@ -29,6 +29,7 @@
|
||||||
|
#ifdef GSSAPI
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
+#include <sys/param.h>
|
||||||
|
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <string.h>
|
||||||
|
--
|
||||||
|
2.36.6
|
||||||
|
|
||||||
|
|
||||||
|
From 66878e12a207fa9746dee3e2bdcca29b704cf035 Mon Sep 17 00:00:00 2001
|
||||||
|
From: "djm@openbsd.org" <djm@openbsd.org>
|
||||||
|
Date: Wed, 25 Sep 2024 01:24:04 +0000
|
||||||
|
Subject: [PATCH 6/7] upstream: fix regression introduced when I switched the
|
||||||
|
"Match"
|
||||||
|
|
||||||
|
criteria tokeniser to a more shell-like one. Apparently the old tokeniser
|
||||||
|
(accidentally?) allowed "Match criteria=argument" as well as the "Match
|
||||||
|
criteria argument" syntax that we tested for.
|
||||||
|
|
||||||
|
People were using this syntax so this adds back support for
|
||||||
|
"Match criteria=argument"
|
||||||
|
|
||||||
|
bz3739 ok dtucker
|
||||||
|
|
||||||
|
OpenBSD-Commit-ID: d1eebedb8c902002b75b75debfe1eeea1801f58a
|
||||||
|
---
|
||||||
|
misc.c | 23 +++++++++++++++++++++-
|
||||||
|
misc.h | 3 ++-
|
||||||
|
readconf.c | 28 ++++++++++++++++++++++-----
|
||||||
|
servconf.c | 57 ++++++++++++++++++++++++++++++++++++++++--------------
|
||||||
|
4 files changed, 89 insertions(+), 22 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/misc.c b/misc.c
|
||||||
|
index afdf5142e..1b4b55c50 100644
|
||||||
|
--- a/misc.c
|
||||||
|
+++ b/misc.c
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-/* $OpenBSD: misc.c,v 1.196 2024/06/06 17:15:25 djm Exp $ */
|
||||||
|
+/* $OpenBSD: misc.c,v 1.197 2024/09/25 01:24:04 djm Exp $ */
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||||
|
* Copyright (c) 2005-2020 Damien Miller. All rights reserved.
|
||||||
|
@@ -107,6 +107,27 @@ rtrim(char *s)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+/*
|
||||||
|
+ * returns pointer to character after 'prefix' in 's' or otherwise NULL
|
||||||
|
+ * if the prefix is not present.
|
||||||
|
+ */
|
||||||
|
+const char *
|
||||||
|
+strprefix(const char *s, const char *prefix, int ignorecase)
|
||||||
|
+{
|
||||||
|
+ size_t prefixlen;
|
||||||
|
+
|
||||||
|
+ if ((prefixlen = strlen(prefix)) == 0)
|
||||||
|
+ return s;
|
||||||
|
+ if (ignorecase) {
|
||||||
|
+ if (strncasecmp(s, prefix, prefixlen) != 0)
|
||||||
|
+ return NULL;
|
||||||
|
+ } else {
|
||||||
|
+ if (strncmp(s, prefix, prefixlen) != 0)
|
||||||
|
+ return NULL;
|
||||||
|
+ }
|
||||||
|
+ return s + prefixlen;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
/* set/unset filedescriptor to non-blocking */
|
||||||
|
int
|
||||||
|
set_nonblock(int fd)
|
||||||
|
diff --git a/misc.h b/misc.h
|
||||||
|
index 113403896..efecdf1ad 100644
|
||||||
|
--- a/misc.h
|
||||||
|
+++ b/misc.h
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-/* $OpenBSD: misc.h,v 1.109 2024/06/06 17:15:25 djm Exp $ */
|
||||||
|
+/* $OpenBSD: misc.h,v 1.110 2024/09/25 01:24:04 djm Exp $ */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
|
@@ -56,6 +56,7 @@ struct ForwardOptions {
|
||||||
|
char *chop(char *);
|
||||||
|
void rtrim(char *);
|
||||||
|
void skip_space(char **);
|
||||||
|
+const char *strprefix(const char *, const char *, int);
|
||||||
|
char *strdelim(char **);
|
||||||
|
char *strdelimw(char **);
|
||||||
|
int set_nonblock(int);
|
||||||
|
diff --git a/readconf.c b/readconf.c
|
||||||
|
index 3d9cc6dbb..de42fb6ff 100644
|
||||||
|
--- a/readconf.c
|
||||||
|
+++ b/readconf.c
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-/* $OpenBSD: readconf.c,v 1.390 2024/09/15 00:57:36 djm Exp $ */
|
||||||
|
+/* $OpenBSD: readconf.c,v 1.391 2024/09/25 01:24:04 djm Exp $ */
|
||||||
|
/*
|
||||||
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@@ -710,7 +710,7 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
struct passwd *pw, const char *host_arg, const char *original_host,
|
||||||
|
int final_pass, int *want_final_pass, const char *filename, int linenum)
|
||||||
|
{
|
||||||
|
- char *arg, *oattrib, *attrib, *cmd, *host, *criteria;
|
||||||
|
+ char *arg, *oattrib, *attrib = NULL, *cmd, *host, *criteria;
|
||||||
|
const char *ruser;
|
||||||
|
int r, this_result, result = 1, attributes = 0, negate;
|
||||||
|
|
||||||
|
@@ -731,7 +731,8 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
|
||||||
|
debug2("checking match for '%s' host %s originally %s",
|
||||||
|
full_line, host, original_host);
|
||||||
|
- while ((oattrib = attrib = argv_next(acp, avp)) != NULL) {
|
||||||
|
+ while ((oattrib = argv_next(acp, avp)) != NULL) {
|
||||||
|
+ attrib = xstrdup(oattrib);
|
||||||
|
/* Terminate on comment */
|
||||||
|
if (*attrib == '#') {
|
||||||
|
argv_consume(acp);
|
||||||
|
@@ -777,9 +778,23 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
this_result ? "" : "not ", oattrib);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ /* Keep this list in sync with below */
|
||||||
|
+ if (strprefix(attrib, "host=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "originalhost=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "user=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "localuser=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "localnetwork=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "tagged=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "exec=", 1) != NULL) {
|
||||||
|
+ arg = strchr(attrib, '=');
|
||||||
|
+ *(arg++) = '\0';
|
||||||
|
+ } else {
|
||||||
|
+ arg = argv_next(acp, avp);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
/* All other criteria require an argument */
|
||||||
|
- if ((arg = argv_next(acp, avp)) == NULL ||
|
||||||
|
- *arg == '\0' || *arg == '#') {
|
||||||
|
+ if (arg == NULL || *arg == '\0' || *arg == '#') {
|
||||||
|
error("Missing Match criteria for %s", attrib);
|
||||||
|
result = -1;
|
||||||
|
goto out;
|
||||||
|
@@ -856,6 +871,8 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
criteria == NULL ? "" : criteria,
|
||||||
|
criteria == NULL ? "" : "\"");
|
||||||
|
free(criteria);
|
||||||
|
+ free(attrib);
|
||||||
|
+ attrib = NULL;
|
||||||
|
}
|
||||||
|
if (attributes == 0) {
|
||||||
|
error("One or more attributes required for Match");
|
||||||
|
@@ -865,6 +882,7 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
out:
|
||||||
|
if (result != -1)
|
||||||
|
debug2("match %sfound", result ? "" : "not ");
|
||||||
|
+ free(attrib);
|
||||||
|
free(host);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
diff --git a/servconf.c b/servconf.c
|
||||||
|
index 89b8413e8..dd774f468 100644
|
||||||
|
--- a/servconf.c
|
||||||
|
+++ b/servconf.c
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-/* $OpenBSD: servconf.c,v 1.418 2024/09/15 03:09:44 djm Exp $ */
|
||||||
|
+/* $OpenBSD: servconf.c,v 1.419 2024/09/25 01:24:04 djm Exp $ */
|
||||||
|
/*
|
||||||
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
* All rights reserved
|
||||||
|
@@ -1033,7 +1033,7 @@ match_cfg_line(const char *full_line, int *acp, char ***avp,
|
||||||
|
int line, struct connection_info *ci)
|
||||||
|
{
|
||||||
|
int result = 1, attributes = 0, port;
|
||||||
|
- char *arg, *attrib;
|
||||||
|
+ char *arg, *attrib = NULL, *oattrib;
|
||||||
|
|
||||||
|
if (ci == NULL)
|
||||||
|
debug3("checking syntax for 'Match %s'", full_line);
|
||||||
|
@@ -1047,7 +1047,8 @@ match_cfg_line(const char *full_line, int *acp, char ***avp,
|
||||||
|
ci->laddress ? ci->laddress : "(null)", ci->lport);
|
||||||
|
}
|
||||||
|
|
||||||
|
- while ((attrib = argv_next(acp, avp)) != NULL) {
|
||||||
|
+ while ((oattrib = argv_next(acp, avp)) != NULL) {
|
||||||
|
+ attrib = xstrdup(oattrib);
|
||||||
|
/* Terminate on comment */
|
||||||
|
if (*attrib == '#') {
|
||||||
|
argv_consume(acp); /* mark all arguments consumed */
|
||||||
|
@@ -1062,11 +1063,13 @@ match_cfg_line(const char *full_line, int *acp, char ***avp,
|
||||||
|
*arg != '\0' && *arg != '#')) {
|
||||||
|
error("'all' cannot be combined with other "
|
||||||
|
"Match attributes");
|
||||||
|
- return -1;
|
||||||
|
+ result = -1;
|
||||||
|
+ goto out;
|
||||||
|
}
|
||||||
|
if (arg != NULL && *arg == '#')
|
||||||
|
argv_consume(acp); /* consume remaining args */
|
||||||
|
- return 1;
|
||||||
|
+ result = 1;
|
||||||
|
+ goto out;
|
||||||
|
}
|
||||||
|
/* Criterion "invalid-user" also has no argument */
|
||||||
|
if (strcasecmp(attrib, "invalid-user") == 0) {
|
||||||
|
@@ -1078,11 +1081,26 @@ match_cfg_line(const char *full_line, int *acp, char ***avp,
|
||||||
|
debug("matched invalid-user at line %d", line);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ /* Keep this list in sync with below */
|
||||||
|
+ if (strprefix(attrib, "user=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "group=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "host=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "address=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "localaddress=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "localport=", 1) != NULL ||
|
||||||
|
+ strprefix(attrib, "rdomain=", 1) != NULL) {
|
||||||
|
+ arg = strchr(attrib, '=');
|
||||||
|
+ *(arg++) = '\0';
|
||||||
|
+ } else {
|
||||||
|
+ arg = argv_next(acp, avp);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
/* All other criteria require an argument */
|
||||||
|
- if ((arg = argv_next(acp, avp)) == NULL ||
|
||||||
|
- *arg == '\0' || *arg == '#') {
|
||||||
|
+ if (arg == NULL || *arg == '\0' || *arg == '#') {
|
||||||
|
error("Missing Match criteria for %s", attrib);
|
||||||
|
- return -1;
|
||||||
|
+ result = -1;
|
||||||
|
+ goto out;
|
||||||
|
}
|
||||||
|
if (strcasecmp(attrib, "user") == 0) {
|
||||||
|
if (ci == NULL || (ci->test && ci->user == NULL)) {
|
||||||
|
@@ -1105,7 +1123,8 @@ match_cfg_line(const char *full_line, int *acp, char ***avp,
|
||||||
|
match_test_missing_fatal("Group", "user");
|
||||||
|
switch (match_cfg_line_group(arg, line, ci->user)) {
|
||||||
|
case -1:
|
||||||
|
- return -1;
|
||||||
|
+ result = -1;
|
||||||
|
+ goto out;
|
||||||
|
case 0:
|
||||||
|
result = 0;
|
||||||
|
}
|
||||||
|
@@ -1141,7 +1160,8 @@ match_cfg_line(const char *full_line, int *acp, char ***avp,
|
||||||
|
result = 0;
|
||||||
|
break;
|
||||||
|
case -2:
|
||||||
|
- return -1;
|
||||||
|
+ result = -1;
|
||||||
|
+ goto out;
|
||||||
|
}
|
||||||
|
} else if (strcasecmp(attrib, "localaddress") == 0){
|
||||||
|
if (ci == NULL || (ci->test && ci->laddress == NULL)) {
|
||||||
|
@@ -1166,13 +1186,15 @@ match_cfg_line(const char *full_line, int *acp, char ***avp,
|
||||||
|
result = 0;
|
||||||
|
break;
|
||||||
|
case -2:
|
||||||
|
- return -1;
|
||||||
|
+ result = -1;
|
||||||
|
+ goto out;
|
||||||
|
}
|
||||||
|
} else if (strcasecmp(attrib, "localport") == 0) {
|
||||||
|
if ((port = a2port(arg)) == -1) {
|
||||||
|
error("Invalid LocalPort '%s' on Match line",
|
||||||
|
arg);
|
||||||
|
- return -1;
|
||||||
|
+ result = -1;
|
||||||
|
+ goto out;
|
||||||
|
}
|
||||||
|
if (ci == NULL || (ci->test && ci->lport == -1)) {
|
||||||
|
result = 0;
|
||||||
|
@@ -1200,16 +1222,21 @@ match_cfg_line(const char *full_line, int *acp, char ***avp,
|
||||||
|
debug("user %.100s matched 'RDomain %.100s' at "
|
||||||
|
"line %d", ci->rdomain, arg, line);
|
||||||
|
} else {
|
||||||
|
- error("Unsupported Match attribute %s", attrib);
|
||||||
|
- return -1;
|
||||||
|
+ error("Unsupported Match attribute %s", oattrib);
|
||||||
|
+ result = -1;
|
||||||
|
+ goto out;
|
||||||
|
}
|
||||||
|
+ free(attrib);
|
||||||
|
+ attrib = NULL;
|
||||||
|
}
|
||||||
|
if (attributes == 0) {
|
||||||
|
error("One or more attributes required for Match");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
- if (ci != NULL)
|
||||||
|
+ out:
|
||||||
|
+ if (ci != NULL && result != -1)
|
||||||
|
debug3("match %sfound", result ? "" : "not ");
|
||||||
|
+ free(attrib);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
2.36.6
|
||||||
|
|
||||||
|
|
||||||
|
From 19bcb2d90c6caf14abf386b644fb24eb7afab889 Mon Sep 17 00:00:00 2001
|
||||||
|
From: "djm@openbsd.org" <djm@openbsd.org>
|
||||||
|
Date: Thu, 26 Sep 2024 23:55:08 +0000
|
||||||
|
Subject: [PATCH 7/7] upstream: fix previous change to ssh_config Match, which
|
||||||
|
broken on
|
||||||
|
|
||||||
|
negated Matches; spotted by phessler@ ok deraadt@
|
||||||
|
|
||||||
|
OpenBSD-Commit-ID: b1c6acec66cd5bd1252feff1d02ad7129ced37c7
|
||||||
|
---
|
||||||
|
readconf.c | 14 +++++++-------
|
||||||
|
1 file changed, 7 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/readconf.c b/readconf.c
|
||||||
|
index de42fb6ff..9f5592698 100644
|
||||||
|
--- a/readconf.c
|
||||||
|
+++ b/readconf.c
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-/* $OpenBSD: readconf.c,v 1.391 2024/09/25 01:24:04 djm Exp $ */
|
||||||
|
+/* $OpenBSD: readconf.c,v 1.392 2024/09/26 23:55:08 djm Exp $ */
|
||||||
|
/*
|
||||||
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@@ -710,7 +710,7 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
struct passwd *pw, const char *host_arg, const char *original_host,
|
||||||
|
int final_pass, int *want_final_pass, const char *filename, int linenum)
|
||||||
|
{
|
||||||
|
- char *arg, *oattrib, *attrib = NULL, *cmd, *host, *criteria;
|
||||||
|
+ char *arg, *oattrib = NULL, *attrib = NULL, *cmd, *host, *criteria;
|
||||||
|
const char *ruser;
|
||||||
|
int r, this_result, result = 1, attributes = 0, negate;
|
||||||
|
|
||||||
|
@@ -731,8 +731,8 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
|
||||||
|
debug2("checking match for '%s' host %s originally %s",
|
||||||
|
full_line, host, original_host);
|
||||||
|
- while ((oattrib = argv_next(acp, avp)) != NULL) {
|
||||||
|
- attrib = xstrdup(oattrib);
|
||||||
|
+ while ((attrib = argv_next(acp, avp)) != NULL) {
|
||||||
|
+ attrib = oattrib = xstrdup(attrib);
|
||||||
|
/* Terminate on comment */
|
||||||
|
if (*attrib == '#') {
|
||||||
|
argv_consume(acp);
|
||||||
|
@@ -871,8 +871,8 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
criteria == NULL ? "" : criteria,
|
||||||
|
criteria == NULL ? "" : "\"");
|
||||||
|
free(criteria);
|
||||||
|
- free(attrib);
|
||||||
|
- attrib = NULL;
|
||||||
|
+ free(oattrib);
|
||||||
|
+ oattrib = attrib = NULL;
|
||||||
|
}
|
||||||
|
if (attributes == 0) {
|
||||||
|
error("One or more attributes required for Match");
|
||||||
|
@@ -882,7 +882,7 @@ match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp,
|
||||||
|
out:
|
||||||
|
if (result != -1)
|
||||||
|
debug2("match %sfound", result ? "" : "not ");
|
||||||
|
- free(attrib);
|
||||||
|
+ free(oattrib);
|
||||||
|
free(host);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.36.6
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user