From: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
To: netfilter-devel@vger.kernel.org
Cc: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>,
Liping Zhang <zlpnobody@gmail.com>,
Pablo Neira Ayuso <pablo@netfilter.org>
Subject: [PATCH v2] xtables: Add a smaller delay option when waiting for xtables lock
Date: Thu, 5 May 2016 21:18:19 -0600 [thread overview]
Message-ID: <1462504699-14988-1-git-send-email-subashab@codeaurora.org> (raw)
ip[6]tables currently waits for 1 second for the xtables lock to be
freed if the -w option is used. We have seen that the lock is held
much less than that resulting in unnecessary delay when trying to
acquire the lock. This problem is even severe in case of latency
sensitive applications.
Introduce an delay option with 10ms granularity (experimentally
determined) by specifying the delay in [seconds.milliseconds] as
an argument to -w. If milliseconds are not specified, the existing
behavior of 1 second sleep is preserved.
v1->v2: Change behavior to take millisecond sleep as an argument to
-w as suggested by Pablo. Also maintain current behavior for -w to
sleep for 1 second as mentioned by Liping.
Cc: Liping Zhang <zlpnobody@gmail.com>
Cc: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
---
iptables/ip6tables.c | 12 +++++++-----
iptables/iptables.c | 12 +++++++-----
iptables/xshared.c | 27 ++++++++++++++++++++-------
iptables/xshared.h | 2 +-
iptables/xtables.c | 6 +++---
5 files changed, 38 insertions(+), 21 deletions(-)
diff --git a/iptables/ip6tables.c b/iptables/ip6tables.c
index 2731209..d19c5d5 100644
--- a/iptables/ip6tables.c
+++ b/iptables/ip6tables.c
@@ -259,7 +259,9 @@ exit_printhelp(const struct xtables_rule_match *matches)
" network interface name ([+] for wildcard)\n"
" --table -t table table to manipulate (default: `filter')\n"
" --verbose -v verbose mode\n"
-" --wait -w [seconds] wait for the xtables lock\n"
+" --wait -w [seconds.milliseconds]\n"
+" wait for the xtables lock\n"
+" 10ms is the minimum millisecond resolution\n"
" --line-numbers print line numbers when listing\n"
" --exact -x expand numbers (display exact values)\n"
/*"[!] --fragment -f match second or further fragments only\n"*/
@@ -1324,7 +1326,7 @@ int do_command6(int argc, char *argv[], char **table,
struct in6_addr *smasks = NULL, *dmasks = NULL;
int verbose = 0;
- int wait = 0;
+ double wait = 0;
const char *chain = NULL;
const char *shostnetworkmask = NULL, *dhostnetworkmask = NULL;
const char *policy = NULL, *newname = NULL;
@@ -1606,12 +1608,12 @@ int do_command6(int argc, char *argv[], char **table,
}
wait = -1;
if (optarg) {
- if (sscanf(optarg, "%i", &wait) != 1)
+ if (sscanf(optarg, "%lf", &wait) != 1)
xtables_error(PARAMETER_PROBLEM,
"wait seconds not numeric");
} else if (optind < argc && argv[optind][0] != '-'
&& argv[optind][0] != '!')
- if (sscanf(argv[optind++], "%i", &wait) != 1)
+ if (sscanf(argv[optind++], "%lf", &wait) != 1)
xtables_error(PARAMETER_PROBLEM,
"wait seconds not numeric");
break;
@@ -1768,7 +1770,7 @@ int do_command6(int argc, char *argv[], char **table,
if (wait == 0)
fprintf(stderr, "Perhaps you want to use the -w option?\n");
else
- fprintf(stderr, "Stopped waiting after %ds.\n", wait);
+ fprintf(stderr, "Stopped waiting after %fs.\n", wait);
xtables_free_opts(1);
exit(RESOURCE_PROBLEM);
}
diff --git a/iptables/iptables.c b/iptables/iptables.c
index 91617c2..64bd1a1 100644
--- a/iptables/iptables.c
+++ b/iptables/iptables.c
@@ -253,7 +253,9 @@ exit_printhelp(const struct xtables_rule_match *matches)
" network interface name ([+] for wildcard)\n"
" --table -t table table to manipulate (default: `filter')\n"
" --verbose -v verbose mode\n"
-" --wait -w [seconds] wait for the xtables lock\n"
+" --wait -w [seconds.milliseconds]\n"
+" wait for the xtables lock\n"
+" 10ms is the minimum millisecond resolution\n"
" --line-numbers print line numbers when listing\n"
" --exact -x expand numbers (display exact values)\n"
"[!] --fragment -f match second or further fragments only\n"
@@ -1320,7 +1322,7 @@ int do_command4(int argc, char *argv[], char **table,
struct in_addr *daddrs = NULL, *dmasks = NULL;
int verbose = 0;
- int wait = 0;
+ double wait = 0;
const char *chain = NULL;
const char *shostnetworkmask = NULL, *dhostnetworkmask = NULL;
const char *policy = NULL, *newname = NULL;
@@ -1599,12 +1601,12 @@ int do_command4(int argc, char *argv[], char **table,
}
wait = -1;
if (optarg) {
- if (sscanf(optarg, "%i", &wait) != 1)
+ if (sscanf(optarg, "%lf", &wait) != 1)
xtables_error(PARAMETER_PROBLEM,
"wait seconds not numeric");
} else if (optind < argc && argv[optind][0] != '-'
&& argv[optind][0] != '!')
- if (sscanf(argv[optind++], "%i", &wait) != 1)
+ if (sscanf(argv[optind++], "%lf", &wait) != 1)
xtables_error(PARAMETER_PROBLEM,
"wait seconds not numeric");
break;
@@ -1764,7 +1766,7 @@ int do_command4(int argc, char *argv[], char **table,
if (wait == 0)
fprintf(stderr, "Perhaps you want to use the -w option?\n");
else
- fprintf(stderr, "Stopped waiting after %ds.\n", wait);
+ fprintf(stderr, "Stopped waiting after %fs.\n", wait);
xtables_free_opts(1);
exit(RESOURCE_PROBLEM);
}
diff --git a/iptables/xshared.c b/iptables/xshared.c
index 81c2581..2aeb8b8 100644
--- a/iptables/xshared.c
+++ b/iptables/xshared.c
@@ -15,6 +15,8 @@
#include "xshared.h"
#define XT_LOCK_NAME "/run/xtables.lock"
+#define BASE_MICROSECOND_WAIT 10000
+#define WAIT_PRECISION 100
/*
* Print out any special helps. A user might like to be able to add a --help
@@ -244,9 +246,11 @@ void xs_init_match(struct xtables_match *match)
match->init(match->m);
}
-bool xtables_lock(int wait)
+bool xtables_lock(double wait)
{
- int fd, waited = 0, i = 0;
+ int fd, waited = 0, i = 0, us_wait = 0, us_waited = 0;
+
+ us_wait = (((int)(wait*WAIT_PRECISION))%WAIT_PRECISION)*BASE_MICROSECOND_WAIT;
fd = open(XT_LOCK_NAME, O_CREAT, 0600);
if (fd < 0)
@@ -255,12 +259,21 @@ bool xtables_lock(int wait)
while (1) {
if (flock(fd, LOCK_EX | LOCK_NB) == 0)
return true;
- else if (wait >= 0 && waited >= wait)
+ else if (wait >= 0 && waited >= (int)wait && us_waited >= us_wait)
return false;
- if (++i % 2 == 0)
+ if ((++i % 2 == 0 && !us_wait) || (++i % 10 == 0))
fprintf(stderr, "Another app is currently holding the xtables lock; "
- "waiting (%ds) for it to exit...\n", waited);
- waited++;
- sleep(1);
+ "waiting (%ds %dms) for it to exit...\n", waited, us_waited/1000);
+ if (us_wait) {
+ us_waited += BASE_MICROSECOND_WAIT;
+ usleep(BASE_MICROSECOND_WAIT);
+ if (us_waited == 1000000) {
+ waited++;
+ us_waited = 0;
+ }
+ } else {
+ waited++;
+ sleep(1);
+ }
}
}
diff --git a/iptables/xshared.h b/iptables/xshared.h
index 40dd915..de4ae99 100644
--- a/iptables/xshared.h
+++ b/iptables/xshared.h
@@ -85,7 +85,7 @@ extern struct xtables_match *load_proto(struct iptables_command_state *);
extern int subcmd_main(int, char **, const struct subcommand *);
extern void xs_init_target(struct xtables_target *);
extern void xs_init_match(struct xtables_match *);
-extern bool xtables_lock(int wait);
+extern bool xtables_lock(double wait);
extern const struct xtables_afinfo *afinfo;
diff --git a/iptables/xtables.c b/iptables/xtables.c
index ecd577c..d980060 100644
--- a/iptables/xtables.c
+++ b/iptables/xtables.c
@@ -686,7 +686,7 @@ void do_parse(struct nft_handle *h, int argc, char *argv[],
struct xtables_match *m;
struct xtables_rule_match *matchp;
struct xtables_target *t;
- int wait = 0;
+ double wait = 0;
memset(cs, 0, sizeof(*cs));
cs->jumpto = "";
@@ -1009,12 +1009,12 @@ void do_parse(struct nft_handle *h, int argc, char *argv[],
"iptables-restore");
}
if (optarg) {
- if (sscanf(optarg, "%i", &wait) != 1)
+ if (sscanf(optarg, "%lf", &wait) != 1)
xtables_error(PARAMETER_PROBLEM,
"wait seconds not numeric");
} else if (optind < argc && argv[optind][0] != '-'
&& argv[optind][0] != '!')
- if (sscanf(argv[optind++], "%i", &wait) != 1)
+ if (sscanf(argv[optind++], "%lf", &wait) != 1)
xtables_error(PARAMETER_PROBLEM,
"wait seconds not numeric");
break;
--
1.8.2.1
next reply other threads:[~2016-05-06 3:19 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-06 3:18 Subash Abhinov Kasiviswanathan [this message]
2016-05-09 21:40 ` [PATCH v2] xtables: Add a smaller delay option when waiting for xtables lock Pablo Neira Ayuso
2016-05-17 3:30 ` subashab
2016-05-17 10:41 ` Pablo Neira Ayuso
2016-05-17 18:25 ` subashab
2016-05-19 22:06 ` subashab
2016-05-20 10:14 ` Pablo Neira Ayuso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1462504699-14988-1-git-send-email-subashab@codeaurora.org \
--to=subashab@codeaurora.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.org \
--cc=zlpnobody@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).