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