rcolebaugh / rpms / openssh

Forked from rpms/openssh 2 years ago
Clone
9070b3
diff -up openssh-7.4p1/channels.c.x11max openssh-7.4p1/channels.c
9070b3
--- openssh-7.4p1/channels.c.x11max	2016-12-23 15:46:32.071506625 +0100
9070b3
+++ openssh-7.4p1/channels.c	2016-12-23 15:46:32.139506636 +0100
9070b3
@@ -152,8 +152,8 @@ static int all_opens_permitted = 0;
9070b3
 #define FWD_PERMIT_ANY_HOST	"*"
9070b3
 
9070b3
 /* -- X11 forwarding */
9070b3
-/* Maximum number of fake X11 displays to try. */
9070b3
-#define MAX_DISPLAYS  1000
9070b3
+/* Minimum port number for X11 forwarding */
9070b3
+#define X11_PORT_MIN 6000
9070b3
 
9070b3
 /* Per-channel callback for pre/post select() actions */
9070b3
 typedef void chan_fn(struct ssh *, Channel *c,
9070b3
@@ -4228,7 +4228,7 @@ channel_send_window_changes(void)
9070b3
  */
9070b3
 int
9070b3
 x11_create_display_inet(struct ssh *ssh, int x11_display_offset,
9070b3
-    int x11_use_localhost, int single_connection,
9070b3
+    int x11_use_localhost, int x11_max_displays, int single_connection,
9070b3
     u_int *display_numberp, int **chanids)
9070b3
 {
9070b3
 	Channel *nc = NULL;
9070b3
@@ -4240,10 +4241,15 @@ x11_create_display_inet(int x11_display_
9070b3
 	if (chanids == NULL)
9070b3
 		return -1;
9070b3
 
9070b3
+	/* Try to bind ports starting at 6000+X11DisplayOffset */
9070b3
+	x11_max_displays = x11_max_displays + x11_display_offset;
9070b3
+
9070b3
 	for (display_number = x11_display_offset;
9070b3
-	    display_number < MAX_DISPLAYS;
9070b3
+	    display_number < x11_max_displays;
9070b3
 	    display_number++) {
9070b3
-		port = 6000 + display_number;
9070b3
+		port = X11_PORT_MIN + display_number;
9070b3
+		if (port < X11_PORT_MIN) /* overflow */
9070b3
+			break;
9070b3
 		memset(&hints, 0, sizeof(hints));
9070b3
 		hints.ai_family = ssh->chanctxt->IPv4or6;
9070b3
 		hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
9070b3
@@ -4295,7 +4301,7 @@ x11_create_display_inet(int x11_display_
9070b3
 		if (num_socks > 0)
9070b3
 			break;
9070b3
 	}
9070b3
-	if (display_number >= MAX_DISPLAYS) {
9070b3
+	if (display_number >= x11_max_displays || port < X11_PORT_MIN ) {
9070b3
 		error("Failed to allocate internet-domain X11 display socket.");
9070b3
 		return -1;
9070b3
 	}
9070b3
@@ -4441,7 +4447,7 @@ x11_connect_display(void)
9070b3
 	memset(&hints, 0, sizeof(hints));
9070b3
 	hints.ai_family = ssh->chanctxt->IPv4or6;
9070b3
 	hints.ai_socktype = SOCK_STREAM;
9070b3
-	snprintf(strport, sizeof strport, "%u", 6000 + display_number);
9070b3
+	snprintf(strport, sizeof strport, "%u", X11_PORT_MIN + display_number);
9070b3
 	if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
9070b3
 		error("%.100s: unknown host. (%s)", buf,
9070b3
 		ssh_gai_strerror(gaierr));
9070b3
@@ -4457,7 +4463,7 @@ x11_connect_display(void)
9070b3
 		/* Connect it to the display. */
9070b3
 		if (connect(sock, ai->ai_addr, ai->ai_addrlen) == -1) {
9070b3
 			debug2("connect %.100s port %u: %.100s", buf,
9070b3
-			    6000 + display_number, strerror(errno));
9070b3
+			    X11_PORT_MIN + display_number, strerror(errno));
9070b3
 			close(sock);
9070b3
 			continue;
9070b3
 		}
9070b3
@@ -4466,8 +4472,8 @@ x11_connect_display(void)
9070b3
 	}
9070b3
 	freeaddrinfo(aitop);
9070b3
 	if (!ai) {
9070b3
-		error("connect %.100s port %u: %.100s", buf,
9070b3
-		    6000 + display_number, strerror(errno));
9070b3
+		error("connect %.100s port %u: %.100s", buf,
9070b3
+		    X11_PORT_MIN + display_number, strerror(errno));
9070b3
 		return -1;
9070b3
 	}
9070b3
 	set_nodelay(sock);
9070b3
diff -up openssh-7.4p1/channels.h.x11max openssh-7.4p1/channels.h
9070b3
--- openssh-7.4p1/channels.h.x11max	2016-12-19 05:59:41.000000000 +0100
9070b3
+++ openssh-7.4p1/channels.h	2016-12-23 15:46:32.139506636 +0100
9070b3
@@ -293,7 +293,7 @@ int	 permitopen_port(const char *);
9070b3
 
9070b3
 void	 channel_set_x11_refuse_time(struct ssh *, u_int);
9070b3
 int	 x11_connect_display(struct ssh *);
9070b3
-int	 x11_create_display_inet(struct ssh *, int, int, int, u_int *, int **);
9070b3
+int	 x11_create_display_inet(struct ssh *, int, int, int, int, u_int *, int **);
9070b3
 void	 x11_request_forwarding_with_spoofing(struct ssh *, int,
9070b3
 	    const char *, const char *, const char *, int);
9070b3
 
9070b3
diff -up openssh-7.4p1/servconf.c.x11max openssh-7.4p1/servconf.c
9070b3
--- openssh-7.4p1/servconf.c.x11max	2016-12-23 15:46:32.133506635 +0100
9070b3
+++ openssh-7.4p1/servconf.c	2016-12-23 15:47:27.320519121 +0100
9070b3
@@ -95,6 +95,7 @@ initialize_server_options(ServerOptions
9070b3
 	options->print_lastlog = -1;
9070b3
 	options->x11_forwarding = -1;
9070b3
 	options->x11_display_offset = -1;
9070b3
+	options->x11_max_displays = -1;
9070b3
 	options->x11_use_localhost = -1;
9070b3
 	options->permit_tty = -1;
9070b3
 	options->permit_user_rc = -1;
9070b3
@@ -243,6 +244,8 @@ fill_default_server_options(ServerOption
9070b3
 		options->x11_forwarding = 0;
9070b3
 	if (options->x11_display_offset == -1)
9070b3
 		options->x11_display_offset = 10;
9070b3
+	if (options->x11_max_displays == -1)
9070b3
+		options->x11_max_displays = DEFAULT_MAX_DISPLAYS;
9070b3
 	if (options->x11_use_localhost == -1)
9070b3
 		options->x11_use_localhost = 1;
9070b3
 	if (options->xauth_location == NULL)
9070b3
@@ -419,7 +422,7 @@ typedef enum {
9070b3
 	sPasswordAuthentication, sKbdInteractiveAuthentication,
9070b3
 	sListenAddress, sAddressFamily,
9070b3
 	sPrintMotd, sPrintLastLog, sIgnoreRhosts,
9070b3
-	sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
9070b3
+	sX11Forwarding, sX11DisplayOffset, sX11MaxDisplays, sX11UseLocalhost,
9070b3
 	sPermitTTY, sStrictModes, sEmptyPasswd, sTCPKeepAlive,
9070b3
 	sPermitUserEnvironment, sAllowTcpForwarding, sCompression,
9070b3
 	sRekeyLimit, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
9070b3
@@ -540,6 +543,7 @@ static struct {
9070b3
 	{ "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
9070b3
 	{ "x11forwarding", sX11Forwarding, SSHCFG_ALL },
9070b3
 	{ "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
9070b3
+	{ "x11maxdisplays", sX11MaxDisplays, SSHCFG_ALL },
9070b3
 	{ "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
9070b3
 	{ "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
9070b3
 	{ "strictmodes", sStrictModes, SSHCFG_GLOBAL },
9070b3
@@ -1316,6 +1320,10 @@ process_server_config_line(ServerOptions
9070b3
 			*intptr = value;
9070b3
 		break;
9070b3
 
9070b3
+	case sX11MaxDisplays:
9070b3
+		intptr = &options->x11_max_displays;
9070b3
+		goto parse_int;
9070b3
+
9070b3
 	case sX11UseLocalhost:
9070b3
 		intptr = &options->x11_use_localhost;
9070b3
 		goto parse_flag;
9070b3
@@ -2063,6 +2071,7 @@ copy_set_server_options(ServerOptions *d
9070b3
 	M_CP_INTOPT(fwd_opts.streamlocal_bind_unlink);
9070b3
 	M_CP_INTOPT(x11_display_offset);
9070b3
 	M_CP_INTOPT(x11_forwarding);
9070b3
+	M_CP_INTOPT(x11_max_displays);
9070b3
 	M_CP_INTOPT(x11_use_localhost);
9070b3
 	M_CP_INTOPT(permit_tty);
9070b3
 	M_CP_INTOPT(permit_user_rc);
9070b3
@@ -2315,6 +2324,7 @@ dump_config(ServerOptions *o)
9070b3
 #endif
9070b3
 	dump_cfg_int(sLoginGraceTime, o->login_grace_time);
9070b3
 	dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
9070b3
+	dump_cfg_int(sX11MaxDisplays, o->x11_max_displays);
9070b3
 	dump_cfg_int(sMaxAuthTries, o->max_authtries);
9070b3
 	dump_cfg_int(sMaxSessions, o->max_sessions);
9070b3
 	dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
9070b3
diff -up openssh-7.4p1/servconf.h.x11max openssh-7.4p1/servconf.h
9070b3
--- openssh-7.4p1/servconf.h.x11max	2016-12-23 15:46:32.133506635 +0100
9070b3
+++ openssh-7.4p1/servconf.h	2016-12-23 15:46:32.140506636 +0100
9070b3
@@ -55,6 +55,7 @@
9070b3
 
9070b3
 #define DEFAULT_AUTH_FAIL_MAX	6	/* Default for MaxAuthTries */
9070b3
 #define DEFAULT_SESSIONS_MAX	10	/* Default for MaxSessions */
9070b3
+#define DEFAULT_MAX_DISPLAYS	1000 /* Maximum number of fake X11 displays to try. */
9070b3
 
9070b3
 /* Magic name for internal sftp-server */
9070b3
 #define INTERNAL_SFTP_NAME	"internal-sftp"
9070b3
@@ -85,6 +86,7 @@ typedef struct {
9070b3
 	int     x11_forwarding;	/* If true, permit inet (spoofing) X11 fwd. */
9070b3
 	int     x11_display_offset;	/* What DISPLAY number to start
9070b3
 					 * searching at */
9070b3
+	int 	x11_max_displays; /* Number of displays to search */
9070b3
 	int     x11_use_localhost;	/* If true, use localhost for fake X11 server. */
9070b3
 	char   *xauth_location;	/* Location of xauth program */
9070b3
 	int	permit_tty;	/* If false, deny pty allocation */
9070b3
diff -up openssh-7.4p1/session.c.x11max openssh-7.4p1/session.c
9070b3
--- openssh-7.4p1/session.c.x11max	2016-12-23 15:46:32.136506636 +0100
9070b3
+++ openssh-7.4p1/session.c	2016-12-23 15:46:32.141506636 +0100
9070b3
@@ -2518,8 +2518,9 @@ session_setup_x11fwd(Session *s)
9070b3
 		return 0;
9070b3
 	}
9070b3
	if (x11_create_display_inet(ssh, options.x11_display_offset,
9070b3
-	    options.x11_use_localhost, s->single_connection,
9070b3
-	    &s->display_number, &s->x11_chanids) == -1) {
9070b3
+	    options.x11_use_localhost, options.x11_max_displays,
9070b3
+	    s->single_connection, &s->display_number,
9070b3
+	    &s->x11_chanids) == -1) {
9070b3
 		debug("x11_create_display_inet failed.");
9070b3
 		return 0;
9070b3
 	}
9070b3
diff -up openssh-7.4p1/sshd_config.5.x11max openssh-7.4p1/sshd_config.5
9070b3
--- openssh-7.4p1/sshd_config.5.x11max	2016-12-23 15:46:32.134506635 +0100
9070b3
+++ openssh-7.4p1/sshd_config.5	2016-12-23 15:46:32.141506636 +0100
9070b3
@@ -1133,6 +1133,7 @@ Available keywords are
9070b3
 .Cm StreamLocalBindUnlink ,
9070b3
 .Cm TrustedUserCAKeys ,
9070b3
 .Cm X11DisplayOffset ,
9070b3
+.Cm X11MaxDisplays ,
9070b3
 .Cm X11Forwarding
9070b3
 and
9070b3
 .Cm X11UseLocalhost .
9070b3
@@ -1566,6 +1567,12 @@ Specifies the first display number avail
9070b3
 X11 forwarding.
9070b3
 This prevents sshd from interfering with real X11 servers.
9070b3
 The default is 10.
9070b3
+.It Cm X11MaxDisplays
9070b3
+Specifies the maximum number of displays available for
9070b3
+.Xr sshd 8 Ns 's
9070b3
+X11 forwarding.
9070b3
+This prevents sshd from exhausting local ports.
9070b3
+The default is 1000.
9070b3
 .It Cm X11Forwarding
9070b3
 Specifies whether X11 forwarding is permitted.
9070b3
 The argument must be