summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2013-10-23 03:03:08 +0000
committerDamien Miller <djm@cvs.openbsd.org>2013-10-23 03:03:08 +0000
commit6b3ecbf52760c47ffcacffa4f6b10b546d6bab67 (patch)
tree2c3b4eb11802f0c9ff2dc07684469c7046e9d750
parentbd94e124e937e74f9a16a42629a4f75ee7bea1c5 (diff)
Hostname may have %h sequences that should be expanded prior to Match
evaluation; spotted by Iain Morgan
-rw-r--r--usr.bin/ssh/readconf.c20
1 files changed, 14 insertions, 6 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c
index 02bcf1d0de1..d586a6b2cf1 100644
--- a/usr.bin/ssh/readconf.c
+++ b/usr.bin/ssh/readconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.c,v 1.210 2013/10/20 06:19:27 djm Exp $ */
+/* $OpenBSD: readconf.c,v 1.211 2013/10/23 03:03:07 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -451,8 +451,8 @@ static int
match_cfg_line(Options *options, char **condition, struct passwd *pw,
const char *host_arg, const char *filename, int linenum)
{
- char *arg, *attrib, *cmd, *cp = *condition;
- const char *ruser, *host;
+ char *arg, *attrib, *cmd, *cp = *condition, *host;
+ const char *ruser;
int r, port, result = 1;
size_t len;
char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
@@ -463,13 +463,18 @@ match_cfg_line(Options *options, char **condition, struct passwd *pw,
*/
port = options->port <= 0 ? default_ssh_port() : options->port;
ruser = options->user == NULL ? pw->pw_name : options->user;
- host = options->hostname == NULL ? host_arg : options->hostname;
+ if (options->hostname != NULL) {
+ host = percent_expand(options->hostname,
+ "h", host_arg, (char *)NULL);
+ } else
+ host = xstrdup(host_arg);
debug3("checking match for '%s' host %s", cp, host);
while ((attrib = strdelim(&cp)) && *attrib != '\0') {
if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
error("Missing Match criteria for %s", attrib);
- return -1;
+ result = -1;
+ goto out;
}
len = strlen(arg);
if (strcasecmp(attrib, "host") == 0) {
@@ -528,11 +533,14 @@ match_cfg_line(Options *options, char **condition, struct passwd *pw,
free(cmd);
} else {
error("Unsupported Match attribute %s", attrib);
- return -1;
+ result = -1;
+ goto out;
}
}
debug3("match %sfound", result ? "" : "not ");
*condition = cp;
+ out:
+ free(host);
return result;
}