* [PATCH iptables 1/2] xshared: do not lock again and again if "-w" option is not specified @ 2017-02-05 13:57 Liping Zhang 2017-02-05 13:57 ` [PATCH iptables 2/2] xshared: using the blocking file lock request when we wait indefinitely Liping Zhang 2017-02-28 11:18 ` [PATCH iptables 1/2] xshared: do not lock again and again if "-w" option is not specified Pablo Neira Ayuso 0 siblings, 2 replies; 3+ messages in thread From: Liping Zhang @ 2017-02-05 13:57 UTC (permalink / raw) To: pablo; +Cc: netfilter-devel, subashab, Liping Zhang From: Liping Zhang <zlpnobody@gmail.com> After running the following commands, some confusing messages was printed out: # while : ; do iptables -A INPUT & iptables -D INPUT & done [...] Another app is currently holding the xtables lock; still -9s 0us time ahead to have a chance to grab the lock... Another app is currently holding the xtables lock; still -29s 0us time ahead to have a chance to grab the lock... If "-w" option is not specified, the "wait" will be zero, so we should check whether the timer_left is less than wait_interval before we call select to sleep. Also remove unused "BASE_MICROSECONDS" and "struct timeval waited_time" introduced by commit e8f857a5a151 ("xtables: Add an interval option for xtables lock wait"). Fixes: e8f857a5a151 ("xtables: Add an interval option for xtables lock wait") Signed-off-by: Liping Zhang <zlpnobody@gmail.com> --- iptables/xshared.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/iptables/xshared.c b/iptables/xshared.c index cccb8ae..055acf2 100644 --- a/iptables/xshared.c +++ b/iptables/xshared.c @@ -17,7 +17,6 @@ #include "xshared.h" #define XT_LOCK_NAME "/run/xtables.lock" -#define BASE_MICROSECONDS 100000 /* * Print out any special helps. A user might like to be able to add a --help @@ -249,13 +248,11 @@ void xs_init_match(struct xtables_match *match) bool xtables_lock(int wait, struct timeval *wait_interval) { - struct timeval time_left, wait_time, waited_time; + struct timeval time_left, wait_time; int fd, i = 0; time_left.tv_sec = wait; time_left.tv_usec = 0; - waited_time.tv_sec = 0; - waited_time.tv_usec = 0; fd = open(XT_LOCK_NAME, O_CREAT, 0600); if (fd < 0) @@ -264,6 +261,9 @@ bool xtables_lock(int wait, struct timeval *wait_interval) while (1) { if (flock(fd, LOCK_EX | LOCK_NB) == 0) return true; + else if (wait >= 0 && timercmp(&time_left, wait_interval, <)) + return false; + if (++i % 10 == 0) { if (wait != -1) fprintf(stderr, "Another app is currently holding the xtables lock; " @@ -279,10 +279,7 @@ bool xtables_lock(int wait, struct timeval *wait_interval) if (wait == -1) continue; - timeradd(&waited_time, wait_interval, &waited_time); timersub(&time_left, wait_interval, &time_left); - if (!timerisset(&time_left)) - return false; } } -- 2.5.5 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH iptables 2/2] xshared: using the blocking file lock request when we wait indefinitely 2017-02-05 13:57 [PATCH iptables 1/2] xshared: do not lock again and again if "-w" option is not specified Liping Zhang @ 2017-02-05 13:57 ` Liping Zhang 2017-02-28 11:18 ` [PATCH iptables 1/2] xshared: do not lock again and again if "-w" option is not specified Pablo Neira Ayuso 1 sibling, 0 replies; 3+ messages in thread From: Liping Zhang @ 2017-02-05 13:57 UTC (permalink / raw) To: pablo; +Cc: netfilter-devel, subashab, Liping Zhang From: Liping Zhang <zlpnobody@gmail.com> When using "-w" to avoid concurrent instances, we try to do flock() every one second until it success. But one second maybe too long in some situations, and it's hard to select a suitable interval time. So when using "iptables -w", use the F_SETLKW to obtain the file lock, it will block until it success. And when using "iptables -w second", use the F_SETLK, so we will not wait too long if the concurrency is very serious. Now do some performance tests. First, flush all the iptables rules in filter table, and run "iptables -w -S" endlessly: # iptables -F # iptables -X # while : ; do iptables -w -S >&- & done Second, after adding and deleting the iptables rules 100 times, measure the time cost: # time for i in $(seq 100); do iptables -w -A INPUT iptables -w -D INPUT done Before this patch: real 1m15.962s user 0m0.224s sys 0m1.475s Apply this patch: real 0m2.081s user 0m0.163s sys 0m1.169s Signed-off-by: Liping Zhang <zlpnobody@gmail.com> --- iptables/xshared.c | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/iptables/xshared.c b/iptables/xshared.c index 055acf2..e36c475 100644 --- a/iptables/xshared.c +++ b/iptables/xshared.c @@ -1,4 +1,5 @@ #include <getopt.h> +#include <errno.h> #include <libgen.h> #include <netdb.h> #include <stdbool.h> @@ -249,36 +250,44 @@ void xs_init_match(struct xtables_match *match) bool xtables_lock(int wait, struct timeval *wait_interval) { struct timeval time_left, wait_time; + struct flock lock = { + .l_type = F_WRLCK, + .l_start = 0, + .l_whence = SEEK_SET, + .l_len = 0, + }; int fd, i = 0; time_left.tv_sec = wait; time_left.tv_usec = 0; - fd = open(XT_LOCK_NAME, O_CREAT, 0600); + fd = open(XT_LOCK_NAME, O_RDWR | O_CREAT, 0600); if (fd < 0) return true; + if (wait == -1) { + if (fcntl(fd, F_SETLKW, &lock) == 0) + return true; + + fprintf(stderr, "Can't lock %s: %s\n", XT_LOCK_NAME, + strerror(errno)); + return false; + } + while (1) { - if (flock(fd, LOCK_EX | LOCK_NB) == 0) + if (fcntl(fd, F_SETLK, &lock) == 0) return true; - else if (wait >= 0 && timercmp(&time_left, wait_interval, <)) + else if (timercmp(&time_left, wait_interval, <)) return false; if (++i % 10 == 0) { - if (wait != -1) - fprintf(stderr, "Another app is currently holding the xtables lock; " - "still %lds %ldus time ahead to have a chance to grab the lock...\n", - time_left.tv_sec, time_left.tv_usec); - else - fprintf(stderr, "Another app is currently holding the xtables lock; " - "waiting for it to exit...\n"); + fprintf(stderr, "Another app is currently holding the xtables lock; " + "still %lds %ldus time ahead to have a chance to grab the lock...\n", + time_left.tv_sec, time_left.tv_usec); } wait_time = *wait_interval; select(0, NULL, NULL, NULL, &wait_time); - if (wait == -1) - continue; - timersub(&time_left, wait_interval, &time_left); } } -- 2.5.5 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH iptables 1/2] xshared: do not lock again and again if "-w" option is not specified 2017-02-05 13:57 [PATCH iptables 1/2] xshared: do not lock again and again if "-w" option is not specified Liping Zhang 2017-02-05 13:57 ` [PATCH iptables 2/2] xshared: using the blocking file lock request when we wait indefinitely Liping Zhang @ 2017-02-28 11:18 ` Pablo Neira Ayuso 1 sibling, 0 replies; 3+ messages in thread From: Pablo Neira Ayuso @ 2017-02-28 11:18 UTC (permalink / raw) To: Liping Zhang; +Cc: netfilter-devel, subashab, Liping Zhang On Sun, Feb 05, 2017 at 09:57:34PM +0800, Liping Zhang wrote: > From: Liping Zhang <zlpnobody@gmail.com> > > After running the following commands, some confusing messages was printed > out: > # while : ; do > iptables -A INPUT & > iptables -D INPUT & > done > [...] > Another app is currently holding the xtables lock; still -9s 0us time > ahead to have a chance to grab the lock... > Another app is currently holding the xtables lock; still -29s 0us time > ahead to have a chance to grab the lock... > > If "-w" option is not specified, the "wait" will be zero, so we should > check whether the timer_left is less than wait_interval before we call > select to sleep. > > Also remove unused "BASE_MICROSECONDS" and "struct timeval waited_time" > introduced by commit e8f857a5a151 ("xtables: Add an interval option for > xtables lock wait"). Applied, thanks. ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-02-28 11:19 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-02-05 13:57 [PATCH iptables 1/2] xshared: do not lock again and again if "-w" option is not specified Liping Zhang 2017-02-05 13:57 ` [PATCH iptables 2/2] xshared: using the blocking file lock request when we wait indefinitely Liping Zhang 2017-02-28 11:18 ` [PATCH iptables 1/2] xshared: do not lock again and again if "-w" option is not specified Pablo Neira Ayuso
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).