vishalmishra434 / rpms / openssh

Forked from rpms/openssh a month ago
Clone
Jakub Jelen 733cea
From f98a09cacff7baad8748c9aa217afd155a4d493f Mon Sep 17 00:00:00 2001
Jakub Jelen 733cea
From: "mmcc@openbsd.org" <mmcc@openbsd.org>
Jakub Jelen 733cea
Date: Tue, 20 Oct 2015 03:36:35 +0000
Jakub Jelen 733cea
Subject: [PATCH] upstream commit
Jakub Jelen 733cea
Jakub Jelen 733cea
Replace a function-local allocation with stack memory.
Jakub Jelen 733cea
Jakub Jelen 733cea
ok djm@
Jakub Jelen 733cea
Jakub Jelen 733cea
Upstream-ID: c09fbbab637053a2ab9f33ca142b4e20a4c5a17e
Jakub Jelen 733cea
---
Jakub Jelen 733cea
 clientloop.c | 9 ++-------
Jakub Jelen 733cea
 1 file changed, 2 insertions(+), 7 deletions(-)
Jakub Jelen 733cea
Jakub Jelen 733cea
diff --git a/clientloop.c b/clientloop.c
Jakub Jelen 733cea
index 87ceb3d..1e05cba 100644
Jakub Jelen 733cea
--- a/clientloop.c
Jakub Jelen 733cea
+++ b/clientloop.c
Jakub Jelen 733cea
@@ -311,11 +311,10 @@ client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 733cea
 	static char proto[512], data[512];
Jakub Jelen 733cea
 	FILE *f;
Jakub Jelen 733cea
 	int got_data = 0, generated = 0, do_unlink = 0, i;
Jakub Jelen 733cea
-	char *xauthdir, *xauthfile;
Jakub Jelen 733cea
+	char xauthdir[PATH_MAX] = "", xauthfile[PATH_MAX] = "";
Jakub Jelen 733cea
 	struct stat st;
Jakub Jelen 733cea
 	u_int now, x11_timeout_real;
Jakub Jelen 733cea
 
Jakub Jelen 733cea
-	xauthdir = xauthfile = NULL;
Jakub Jelen 733cea
 	*_proto = proto;
Jakub Jelen 733cea
 	*_data = data;
Jakub Jelen 733cea
 	proto[0] = data[0] = '\0';
Jakub Jelen 733cea
@@ -343,8 +342,6 @@ client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 733cea
 			display = xdisplay;
Jakub Jelen 733cea
 		}
Jakub Jelen 733cea
 		if (trusted == 0) {
Jakub Jelen 733cea
-			xauthdir = xmalloc(PATH_MAX);
Jakub Jelen 733cea
-			xauthfile = xmalloc(PATH_MAX);
Jakub Jelen 733cea
 			mktemp_proto(xauthdir, PATH_MAX);
Jakub Jelen 733cea
 			/*
Jakub Jelen 733cea
 			 * The authentication cookie should briefly outlive
Jakub Jelen 733cea
@@ -407,8 +404,6 @@ client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 733cea
 		unlink(xauthfile);
Jakub Jelen 733cea
 		rmdir(xauthdir);
Jakub Jelen 733cea
 	}
Jakub Jelen 733cea
-	free(xauthdir);
Jakub Jelen 733cea
-	free(xauthfile);
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 	/*
Jakub Jelen 733cea
 	 * If we didn't get authentication data, just make up some
Jakub Jelen 733cea
-- 
Jakub Jelen 733cea
2.5.0
Jakub Jelen 733cea
Jakub Jelen 733cea
From ed4ce82dbfa8a3a3c8ea6fa0db113c71e234416c Mon Sep 17 00:00:00 2001
Jakub Jelen 733cea
From: "djm@openbsd.org" <djm@openbsd.org>
Jakub Jelen 733cea
Date: Wed, 13 Jan 2016 23:04:47 +0000
Jakub Jelen 733cea
Subject: [PATCH] upstream commit
Jakub Jelen 733cea
Jakub Jelen 733cea
eliminate fallback from untrusted X11 forwarding to trusted
Jakub Jelen 733cea
 forwarding when the X server disables the SECURITY extension; Reported by
Jakub Jelen 733cea
 Thomas Hoger; ok deraadt@
Jakub Jelen 733cea
Jakub Jelen 733cea
Upstream-ID: f76195bd2064615a63ef9674a0e4096b0713f938
Jakub Jelen 733cea
---
Jakub Jelen 733cea
 clientloop.c | 114 ++++++++++++++++++++++++++++++++++++-----------------------
Jakub Jelen 733cea
 clientloop.h |   4 +--
Jakub Jelen 733cea
 mux.c        |  22 ++++++------
Jakub Jelen 733cea
 ssh.c        |  23 +++++-------
Jakub Jelen 733cea
 4 files changed, 93 insertions(+), 70 deletions(-)
Jakub Jelen 733cea
Jakub Jelen 733cea
diff --git a/clientloop.c b/clientloop.c
Jakub Jelen 733cea
index f555451..c0386d5 100644
Jakub Jelen 733cea
--- a/clientloop.c
Jakub Jelen 733cea
+++ b/clientloop.c
Jakub Jelen 733cea
@@ -288,6 +288,9 @@ client_x11_display_valid(const char *display)
Jakub Jelen 733cea
 {
Jakub Jelen 733cea
 	size_t i, dlen;
Jakub Jelen 733cea
 
Jakub Jelen 733cea
+	if (display == NULL)
Jakub Jelen 733cea
+		return 0;
Jakub Jelen 733cea
+
Jakub Jelen 733cea
 	dlen = strlen(display);
Jakub Jelen 733cea
 	for (i = 0; i < dlen; i++) {
Jakub Jelen 733cea
 		if (!isalnum((u_char)display[i]) &&
Jakub Jelen 733cea
@@ -301,34 +304,33 @@ client_x11_display_valid(const char *display)
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 #define SSH_X11_PROTO		"MIT-MAGIC-COOKIE-1"
Jakub Jelen 733cea
 #define X11_TIMEOUT_SLACK	60
Jakub Jelen 733cea
-void
Jakub Jelen 733cea
+int
Jakub Jelen 733cea
 client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 733cea
     u_int trusted, u_int timeout, char **_proto, char **_data)
Jakub Jelen 733cea
 {
Jakub Jelen 733cea
-	char cmd[1024];
Jakub Jelen 733cea
-	char line[512];
Jakub Jelen 733cea
-	char xdisplay[512];
Jakub Jelen 733cea
+	char cmd[1024], line[512], xdisplay[512];
Jakub Jelen 733cea
+	char xauthfile[PATH_MAX], xauthdir[PATH_MAX];
Jakub Jelen 733cea
 	static char proto[512], data[512];
Jakub Jelen 733cea
 	FILE *f;
Jakub Jelen 733cea
-	int got_data = 0, generated = 0, do_unlink = 0, i;
Jakub Jelen 733cea
-	char xauthdir[PATH_MAX] = "", xauthfile[PATH_MAX] = "";
Jakub Jelen 733cea
+	int got_data = 0, generated = 0, do_unlink = 0, i, r;
Jakub Jelen 733cea
 	struct stat st;
Jakub Jelen 733cea
 	u_int now, x11_timeout_real;
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 	*_proto = proto;
Jakub Jelen 733cea
 	*_data = data;
Jakub Jelen 733cea
-	proto[0] = data[0] = '\0';
Jakub Jelen 733cea
+	proto[0] = data[0] = xauthfile[0] = xauthdir[0] = '\0';
Jakub Jelen 733cea
 
Jakub Jelen 733cea
-	if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
Jakub Jelen 733cea
-		debug("No xauth program.");
Jakub Jelen 733cea
-	} else if (!client_x11_display_valid(display)) {
Jakub Jelen 733cea
-		logit("DISPLAY '%s' invalid, falling back to fake xauth data",
Jakub Jelen 733cea
+	if (!client_x11_display_valid(display)) {
Jakub Jelen 7b1544
+		logit("DISPLAY \"%s\" invalid; disabling X11 forwarding",
Jakub Jelen 733cea
 		    display);
Jakub Jelen 733cea
-	} else {
Jakub Jelen 733cea
-		if (display == NULL) {
Jakub Jelen 733cea
-			debug("x11_get_proto: DISPLAY not set");
Jakub Jelen 733cea
-			return;
Jakub Jelen 733cea
-		}
Jakub Jelen 733cea
+		return -1;
Jakub Jelen 733cea
+	}
Jakub Jelen 733cea
+	if (xauth_path != NULL && stat(xauth_path, &st) == -1) {
Jakub Jelen 733cea
+		debug("No xauth program.");
Jakub Jelen 733cea
+		xauth_path = NULL;
Jakub Jelen 733cea
+	}
Jakub Jelen 733cea
+
Jakub Jelen 733cea
+	if (xauth_path != NULL) {
Jakub Jelen 733cea
 		/*
Jakub Jelen 733cea
 		 * Handle FamilyLocal case where $DISPLAY does
Jakub Jelen 733cea
 		 * not match an authorization entry.  For this we
Jakub Jelen 733cea
@@ -337,43 +339,60 @@ client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 733cea
 		 *      is not perfect.
Jakub Jelen 733cea
 		 */
Jakub Jelen 733cea
 		if (strncmp(display, "localhost:", 10) == 0) {
Jakub Jelen 733cea
-			snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
Jakub Jelen 733cea
-			    display + 10);
Jakub Jelen 733cea
+			if ((r = snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
Jakub Jelen 733cea
+			    display + 10)) < 0 ||
Jakub Jelen 733cea
+			    (size_t)r >= sizeof(xdisplay)) {
Jakub Jelen 733cea
+				error("%s: display name too long", __func__);
Jakub Jelen 733cea
+				return -1;
Jakub Jelen 733cea
+			}
Jakub Jelen 733cea
 			display = xdisplay;
Jakub Jelen 733cea
 		}
Jakub Jelen 733cea
 		if (trusted == 0) {
Jakub Jelen 733cea
-			mktemp_proto(xauthdir, PATH_MAX);
Jakub Jelen 733cea
 			/*
Jakub Jelen 733cea
+			 * Generate an untrusted X11 auth cookie.
Jakub Jelen 733cea
+			 *
Jakub Jelen 733cea
 			 * The authentication cookie should briefly outlive
Jakub Jelen 733cea
 			 * ssh's willingness to forward X11 connections to
Jakub Jelen 733cea
 			 * avoid nasty fail-open behaviour in the X server.
Jakub Jelen 733cea
 			 */
Jakub Jelen 733cea
+			mktemp_proto(xauthdir, sizeof(xauthdir));
Jakub Jelen 733cea
+			if (mkdtemp(xauthdir) == NULL) {
Jakub Jelen 733cea
+				error("%s: mkdtemp: %s",
Jakub Jelen 733cea
+				    __func__, strerror(errno));
Jakub Jelen 733cea
+				return -1;
Jakub Jelen 733cea
+			}
Jakub Jelen 733cea
+			do_unlink = 1;
Jakub Jelen 733cea
+			if ((r = snprintf(xauthfile, sizeof(xauthfile),
Jakub Jelen 733cea
+			    "%s/xauthfile", xauthdir)) < 0 ||
Jakub Jelen 733cea
+			    (size_t)r >= sizeof(xauthfile)) {
Jakub Jelen 733cea
+				error("%s: xauthfile path too long", __func__);
Jakub Jelen 733cea
+				unlink(xauthfile);
Jakub Jelen 733cea
+				rmdir(xauthdir);
Jakub Jelen 733cea
+				return -1;
Jakub Jelen 733cea
+			}
Jakub Jelen 733cea
+
Jakub Jelen 733cea
 			if (timeout >= UINT_MAX - X11_TIMEOUT_SLACK)
Jakub Jelen 733cea
 				x11_timeout_real = UINT_MAX;
Jakub Jelen 733cea
 			else
Jakub Jelen 733cea
 				x11_timeout_real = timeout + X11_TIMEOUT_SLACK;
Jakub Jelen 733cea
-			if (mkdtemp(xauthdir) != NULL) {
Jakub Jelen 733cea
-				do_unlink = 1;
Jakub Jelen 733cea
-				snprintf(xauthfile, PATH_MAX, "%s/xauthfile",
Jakub Jelen 733cea
-				    xauthdir);
Jakub Jelen 733cea
-				snprintf(cmd, sizeof(cmd),
Jakub Jelen 733cea
-				    "%s -f %s generate %s " SSH_X11_PROTO
Jakub Jelen 733cea
-				    " untrusted timeout %u 2>" _PATH_DEVNULL,
Jakub Jelen 733cea
-				    xauth_path, xauthfile, display,
Jakub Jelen 733cea
-				    x11_timeout_real);
Jakub Jelen 733cea
-				debug2("x11_get_proto: %s", cmd);
Jakub Jelen 733cea
-				if (x11_refuse_time == 0) {
Jakub Jelen 733cea
-					now = monotime() + 1;
Jakub Jelen 733cea
-					if (UINT_MAX - timeout < now)
Jakub Jelen 733cea
-						x11_refuse_time = UINT_MAX;
Jakub Jelen 733cea
-					else
Jakub Jelen 733cea
-						x11_refuse_time = now + timeout;
Jakub Jelen 733cea
-					channel_set_x11_refuse_time(
Jakub Jelen 733cea
-					    x11_refuse_time);
Jakub Jelen 733cea
-				}
Jakub Jelen 733cea
-				if (system(cmd) == 0)
Jakub Jelen 733cea
-					generated = 1;
Jakub Jelen 733cea
+			if ((r = snprintf(cmd, sizeof(cmd),
Jakub Jelen 733cea
+			    "%s -f %s generate %s " SSH_X11_PROTO
Jakub Jelen 733cea
+			    " untrusted timeout %u 2>" _PATH_DEVNULL,
Jakub Jelen 733cea
+			    xauth_path, xauthfile, display,
Jakub Jelen 733cea
+			    x11_timeout_real)) < 0 ||
Jakub Jelen 733cea
+			    (size_t)r >= sizeof(cmd))
Jakub Jelen 733cea
+				fatal("%s: cmd too long", __func__);
Jakub Jelen 733cea
+			debug2("%s: %s", __func__, cmd);
Jakub Jelen 733cea
+			if (x11_refuse_time == 0) {
Jakub Jelen 733cea
+				now = monotime() + 1;
Jakub Jelen 733cea
+				if (UINT_MAX - timeout < now)
Jakub Jelen 733cea
+					x11_refuse_time = UINT_MAX;
Jakub Jelen 733cea
+				else
Jakub Jelen 733cea
+					x11_refuse_time = now + timeout;
Jakub Jelen 733cea
+				channel_set_x11_refuse_time(x11_refuse_time);
Jakub Jelen 733cea
 			}
Jakub Jelen 733cea
+			if (system(cmd) == 0)
Jakub Jelen 733cea
+				generated = 1;
Jakub Jelen 733cea
 		}
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 		/*
Jakub Jelen 733cea
@@ -395,9 +414,7 @@ client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 733cea
 				got_data = 1;
Jakub Jelen 733cea
 			if (f)
Jakub Jelen 733cea
 				pclose(f);
Jakub Jelen 733cea
-		} else
Jakub Jelen 733cea
-			error("Warning: untrusted X11 forwarding setup failed: "
Jakub Jelen 733cea
-			    "xauth key data not generated");
Jakub Jelen 733cea
+		}
Jakub Jelen 733cea
 	}
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 	if (do_unlink) {
Jakub Jelen 733cea
@@ -405,6 +422,13 @@ client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 733cea
 		rmdir(xauthdir);
Jakub Jelen 733cea
 	}
Jakub Jelen 733cea
 
Jakub Jelen 733cea
+	/* Don't fall back to fake X11 data for untrusted forwarding */
Jakub Jelen 733cea
+	if (!trusted && !got_data) {
Jakub Jelen 733cea
+		error("Warning: untrusted X11 forwarding setup failed: "
Jakub Jelen 733cea
+		    "xauth key data not generated");
Jakub Jelen 733cea
+		return -1;
Jakub Jelen 733cea
+	}
Jakub Jelen 733cea
+
Jakub Jelen 733cea
 	/*
Jakub Jelen 733cea
 	 * If we didn't get authentication data, just make up some
Jakub Jelen 733cea
 	 * data.  The forwarding code will check the validity of the
Jakub Jelen 733cea
@@ -427,6 +451,8 @@ client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 733cea
 			rnd >>= 8;
Jakub Jelen 733cea
 		}
Jakub Jelen 733cea
 	}
Jakub Jelen 733cea
+
Jakub Jelen 733cea
+	return 0;
Jakub Jelen 733cea
 }
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 /*
Jakub Jelen 733cea
diff --git a/clientloop.h b/clientloop.h
Jakub Jelen 733cea
index 338d451..f4d4c69 100644
Jakub Jelen 733cea
--- a/clientloop.h
Jakub Jelen 733cea
+++ b/clientloop.h
Jakub Jelen 733cea
@@ -39,7 +39,7 @@
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 /* Client side main loop for the interactive session. */
Jakub Jelen 733cea
 int	 client_loop(int, int, int);
Jakub Jelen 733cea
-void	 client_x11_get_proto(const char *, const char *, u_int, u_int,
Jakub Jelen 733cea
+int	 client_x11_get_proto(const char *, const char *, u_int, u_int,
Jakub Jelen 733cea
 	    char **, char **);
Jakub Jelen 733cea
 void	 client_global_request_reply_fwd(int, u_int32_t, void *);
Jakub Jelen 733cea
 void	 client_session2_setup(int, int, int, const char *, struct termios *,
Jakub Jelen 733cea
diff --git a/mux.c b/mux.c
Jakub Jelen 733cea
index f9c3af6..6bf53eb 100644
Jakub Jelen 733cea
--- a/mux.c
Jakub Jelen 733cea
+++ b/mux.c
Jakub Jelen 733cea
@@ -1354,16 +1354,18 @@ mux_session_confirm(int id, int success, void *arg)
Jakub Jelen 733cea
 		char *proto, *data;
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 		/* Get reasonable local authentication information. */
Jakub Jelen 733cea
-		client_x11_get_proto(display, options.xauth_location,
Jakub Jelen 733cea
+		if (client_x11_get_proto(display, options.xauth_location,
Jakub Jelen 733cea
 		    options.forward_x11_trusted, options.forward_x11_timeout,
Jakub Jelen 733cea
-		    &proto, &data);
Jakub Jelen 733cea
-		/* Request forwarding with authentication spoofing. */
Jakub Jelen 733cea
-		debug("Requesting X11 forwarding with authentication "
Jakub Jelen 733cea
-		    "spoofing.");
Jakub Jelen 733cea
-		x11_request_forwarding_with_spoofing(id, display, proto,
Jakub Jelen 733cea
-		    data, 1);
Jakub Jelen 733cea
-		client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
Jakub Jelen 733cea
-		/* XXX exit_on_forward_failure */
Jakub Jelen 733cea
+		    &proto, &data) == 0) {
Jakub Jelen 733cea
+			/* Request forwarding with authentication spoofing. */
Jakub Jelen 733cea
+			debug("Requesting X11 forwarding with authentication "
Jakub Jelen 733cea
+			    "spoofing.");
Jakub Jelen 733cea
+			x11_request_forwarding_with_spoofing(id, display, proto,
Jakub Jelen 733cea
+			    data, 1);
Jakub Jelen 733cea
+			/* XXX exit_on_forward_failure */
Jakub Jelen 733cea
+			client_expect_confirm(id, "X11 forwarding",
Jakub Jelen 733cea
+			    CONFIRM_WARN);
Jakub Jelen 733cea
+		}
Jakub Jelen 733cea
 	}
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 	if (cctx->want_agent_fwd && options.forward_agent) {
Jakub Jelen 733cea
diff --git a/ssh.c b/ssh.c
Jakub Jelen 733cea
index 81704ab..096c5b5 100644
Jakub Jelen 733cea
--- a/ssh.c
Jakub Jelen 733cea
+++ b/ssh.c
Jakub Jelen 733cea
@@ -1626,6 +1626,7 @@ ssh_session(void)
Jakub Jelen 733cea
 	struct winsize ws;
Jakub Jelen 733cea
 	char *cp;
Jakub Jelen 733cea
 	const char *display;
Jakub Jelen 733cea
+	char *proto = NULL, *data = NULL;
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 	/* Enable compression if requested. */
Jakub Jelen 733cea
 	if (options.compression) {
Jakub Jelen 733cea
@@ -1696,13 +1697,9 @@ ssh_session(void)
Jakub Jelen 733cea
 	display = getenv("DISPLAY");
Jakub Jelen 733cea
 	if (display == NULL && options.forward_x11)
Jakub Jelen 733cea
 		debug("X11 forwarding requested but DISPLAY not set");
Jakub Jelen 733cea
-	if (options.forward_x11 && display != NULL) {
Jakub Jelen 733cea
-		char *proto, *data;
Jakub Jelen 733cea
-		/* Get reasonable local authentication information. */
Jakub Jelen 733cea
-		client_x11_get_proto(display, options.xauth_location,
Jakub Jelen 733cea
-		    options.forward_x11_trusted,
Jakub Jelen 733cea
-		    options.forward_x11_timeout,
Jakub Jelen 733cea
-		    &proto, &data);
Jakub Jelen 733cea
+	if (options.forward_x11 && client_x11_get_proto(display,
Jakub Jelen 733cea
+	    options.xauth_location, options.forward_x11_trusted,
Jakub Jelen 733cea
+	    options.forward_x11_timeout, &proto, &data) == 0) {
Jakub Jelen 733cea
 		/* Request forwarding with authentication spoofing. */
Jakub Jelen 733cea
 		debug("Requesting X11 forwarding with authentication "
Jakub Jelen 733cea
 		    "spoofing.");
Jakub Jelen 733cea
@@ -1792,6 +1789,7 @@ ssh_session2_setup(int id, int success, void *arg)
Jakub Jelen 733cea
 	extern char **environ;
Jakub Jelen 733cea
 	const char *display;
Jakub Jelen 733cea
 	int interactive = tty_flag;
Jakub Jelen 733cea
+	char *proto = NULL, *data = NULL;
Jakub Jelen 733cea
 
Jakub Jelen 733cea
 	if (!success)
Jakub Jelen 733cea
 		return; /* No need for error message, channels code sens one */
Jakub Jelen 733cea
@@ -1799,12 +1797,9 @@ ssh_session2_setup(int id, int success, void *arg)
Jakub Jelen 733cea
 	display = getenv("DISPLAY");
Jakub Jelen 733cea
 	if (display == NULL && options.forward_x11)
Jakub Jelen 733cea
 		debug("X11 forwarding requested but DISPLAY not set");
Jakub Jelen 733cea
-	if (options.forward_x11 && display != NULL) {
Jakub Jelen 733cea
-		char *proto, *data;
Jakub Jelen 733cea
-		/* Get reasonable local authentication information. */
Jakub Jelen 733cea
-		client_x11_get_proto(display, options.xauth_location,
Jakub Jelen 733cea
-		    options.forward_x11_trusted,
Jakub Jelen 733cea
-		    options.forward_x11_timeout, &proto, &data);
Jakub Jelen 733cea
+	if (options.forward_x11 && client_x11_get_proto(display,
Jakub Jelen 733cea
+	    options.xauth_location, options.forward_x11_trusted,
Jakub Jelen 733cea
+	    options.forward_x11_timeout, &proto, &data) == 0) {
Jakub Jelen 733cea
 		/* Request forwarding with authentication spoofing. */
Jakub Jelen 733cea
 		debug("Requesting X11 forwarding with authentication "
Jakub Jelen 733cea
 		    "spoofing.");
Jakub Jelen 733cea
-- 
Jakub Jelen 733cea
2.5.0
Jakub Jelen 7b1544
Jakub Jelen 7b1544
From 5658ef2501e785fbbdf5de2dc33b1ff7a4dca73a Mon Sep 17 00:00:00 2001
Jakub Jelen 7b1544
From: "millert@openbsd.org" <millert@openbsd.org>
Jakub Jelen 7b1544
Date: Mon, 1 Feb 2016 21:18:17 +0000
Jakub Jelen 7b1544
Subject: upstream commit
Jakub Jelen 7b1544
Jakub Jelen 7b1544
Avoid ugly "DISPLAY "(null)" invalid; disabling X11
Jakub Jelen 7b1544
 forwarding" message when DISPLAY is not set.  This could also result in a
Jakub Jelen 7b1544
 crash on systems with a printf that doesn't handle NULL.  OK djm@
Jakub Jelen 7b1544
Jakub Jelen 7b1544
Upstream-ID: 20ee0cfbda678a247264c20ed75362042b90b412
Jakub Jelen 7b1544
---
Jakub Jelen 7b1544
 clientloop.c | 7 ++++---
Jakub Jelen 7b1544
 1 file changed, 4 insertions(+), 3 deletions(-)
Jakub Jelen 7b1544
Jakub Jelen 7b1544
diff --git a/clientloop.c b/clientloop.c
Jakub Jelen 7b1544
index f8f9a3f..f0a08f2 100644
Jakub Jelen 7b1544
--- a/clientloop.c
Jakub Jelen 7b1544
+++ b/clientloop.c
Jakub Jelen 7b1544
@@ -318,8 +318,9 @@ client_x11_get_proto(const char *display, const char *xauth_path,
Jakub Jelen 7b1544
 	proto[0] = data[0] = xauthfile[0] = xauthdir[0] = '\0';
Jakub Jelen 7b1544
 
Jakub Jelen 7b1544
 	if (!client_x11_display_valid(display)) {
Jakub Jelen 7b1544
-		logit("DISPLAY \"%s\" invalid; disabling X11 forwarding",
Jakub Jelen 7b1544
-		    display);
Jakub Jelen 7b1544
+		if (display != NULL)
Jakub Jelen 7b1544
+			logit("DISPLAY \"%s\" invalid; disabling X11 forwarding",
Jakub Jelen 7b1544
+			    display);
Jakub Jelen 7b1544
 		return -1;
Jakub Jelen 7b1544
 	}
Jakub Jelen 7b1544
 	if (xauth_path != NULL && stat(xauth_path, &st) == -1) {
Jakub Jelen 7b1544
-- 
Jakub Jelen 7b1544
cgit v0.11.2
Jakub Jelen 7b1544
Jakub Jelen 7b1544