Blame SOURCES/0003-Make-the-max-number-of-bind-retries-tunable.patch

993209
From be7c2d639127dd8af0139caf94f8c29f431d3753 Mon Sep 17 00:00:00 2001
993209
From: =?UTF-8?q?Ond=C5=99ej=20Lyson=C4=9Bk?= <olysonek@redhat.com>
993209
Date: Mon, 18 Jun 2018 10:13:48 +0200
993209
Subject: [PATCH 3/3] Make the max number of bind retries tunable
993209
993209
Resolves: rhbz#1318198
993209
---
993209
 parseconf.c   | 1 +
993209
 privops.c     | 8 ++++++--
993209
 tunables.c    | 2 ++
993209
 tunables.h    | 1 +
993209
 vsftpd.conf.5 | 5 +++++
993209
 5 files changed, 15 insertions(+), 2 deletions(-)
993209
993209
diff --git a/parseconf.c b/parseconf.c
993209
index aeb401a..3cfe7da 100644
993209
--- a/parseconf.c
993209
+++ b/parseconf.c
993209
@@ -143,6 +143,7 @@ parseconf_uint_array[] =
993209
   { "delay_successful_login", &tunable_delay_successful_login },
993209
   { "max_login_fails", &tunable_max_login_fails },
993209
   { "chown_upload_mode", &tunable_chown_upload_mode },
993209
+  { "bind_retries", &tunable_bind_retries },
993209
   { 0, 0 }
993209
 };
993209
 
993209
diff --git a/privops.c b/privops.c
993209
index 010d28d..83b25c7 100644
993209
--- a/privops.c
993209
+++ b/privops.c
993209
@@ -120,8 +120,8 @@ unsigned short
993209
 vsf_privop_pasv_listen(struct vsf_session* p_sess)
993209
 {
993209
   static struct vsf_sysutil_sockaddr* s_p_sockaddr;
993209
-  int bind_retries = 10;
993209
-  unsigned short the_port;
993209
+  int bind_retries = tunable_bind_retries + 1;
993209
+  unsigned short the_port = 0;
993209
   /* IPPORT_RESERVED */
993209
   unsigned short min_port = 1024;
993209
   unsigned short max_port = 65535;
993209
@@ -131,6 +131,10 @@ vsf_privop_pasv_listen(struct vsf_session* p_sess)
993209
     die("listed fd already active");
993209
   }
993209
 
993209
+  if (bind_retries < 2)
993209
+  {
993209
+    bind_retries = 2;
993209
+  }
993209
   if (tunable_pasv_min_port > min_port && tunable_pasv_min_port <= max_port)
993209
   {
993209
     min_port = (unsigned short) tunable_pasv_min_port;
993209
diff --git a/tunables.c b/tunables.c
993209
index 63de8e6..a7ce9c8 100644
993209
--- a/tunables.c
993209
+++ b/tunables.c
993209
@@ -115,6 +115,7 @@ unsigned int tunable_delay_failed_login;
993209
 unsigned int tunable_delay_successful_login;
993209
 unsigned int tunable_max_login_fails;
993209
 unsigned int tunable_chown_upload_mode;
993209
+unsigned int tunable_bind_retries;
993209
 
993209
 const char* tunable_secure_chroot_dir;
993209
 const char* tunable_ftp_username;
993209
@@ -268,6 +269,7 @@ tunables_load_defaults()
993209
   tunable_max_login_fails = 3;
993209
   /* -rw------- */
993209
   tunable_chown_upload_mode = 0600;
993209
+  tunable_bind_retries = 9;
993209
 
993209
   install_str_setting("/usr/share/empty", &tunable_secure_chroot_dir);
993209
   install_str_setting("ftp", &tunable_ftp_username);
993209
diff --git a/tunables.h b/tunables.h
993209
index 8a4b8b2..029d645 100644
993209
--- a/tunables.h
993209
+++ b/tunables.h
993209
@@ -120,6 +120,7 @@ extern unsigned int tunable_delay_failed_login;
993209
 extern unsigned int tunable_delay_successful_login;
993209
 extern unsigned int tunable_max_login_fails;
993209
 extern unsigned int tunable_chown_upload_mode;
993209
+extern unsigned int tunable_bind_retries;
993209
 
993209
 /* String defines */
993209
 extern const char* tunable_secure_chroot_dir;
993209
diff --git a/vsftpd.conf.5 b/vsftpd.conf.5
993209
index f246906..ce3fba3 100644
993209
--- a/vsftpd.conf.5
993209
+++ b/vsftpd.conf.5
993209
@@ -760,6 +760,11 @@ value will be treated as a base 10 integer!
993209
 
993209
 Default: 077
993209
 .TP
993209
+.B bind_retries
993209
+Maximum number of attempts to find a free listening port in passive mode.
993209
+
993209
+Default: 9
993209
+.TP
993209
 .B chown_upload_mode
993209
 The file mode to force for chown()ed anonymous uploads. (Added in v2.0.6).
993209
 
993209
-- 
993209
2.14.4
993209