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