Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755161AbbBLIfh (ORCPT ); Thu, 12 Feb 2015 03:35:37 -0500 Received: from Chamillionaire.breakpoint.cc ([80.244.247.6]:45123 "EHLO Chamillionaire.breakpoint.cc" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754661AbbBLIfg (ORCPT ); Thu, 12 Feb 2015 03:35:36 -0500 Date: Thu, 12 Feb 2015 09:35:33 +0100 From: Florian Westphal To: Cong Wang Cc: Chris Vine , Linux Kernel Mailing List , netfilter-devel@vger.kernel.org, Linux Kernel Network Developers Subject: Re: xt_recent broken in kernel 3.19.0 + PATCH Message-ID: <20150212083533.GC22887@breakpoint.cc> References: <20150211092834.65f8ae80@bother.homenet> <20150211183121.6688aec8@bother.homenet> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1124 Lines: 27 Cong Wang wrote: > (Cc'ing netdev and netfilter-devel lists) Thanks for forwarding. > > Chris Vine wrote: > >> iptables -D SSH_CHAIN -m conntrack --ctstate NEW \ > >> -m recent --update --seconds $SSH_LOGIN_PERIOD --hitcount > >> $SSH_TRIES -j DROP > > --- linux-3.19.0/net/netfilter/xt_recent.c~ 2015-02-10 09:18:44.657376355 +0000 > > +++ linux-3.19.0/net/netfilter/xt_recent.c 2015-02-11 17:58:33.311608835 +0000 > > @@ -378,7 +378,7 @@ > > mutex_lock(&recent_mutex); > > t = recent_table_lookup(recent_net, info->name); > > if (t != NULL) { > > - if (info->hit_count > t->nstamps_max_mask) { > > + if (info->hit_count > t->nstamps_max_mask + 1) { Looks good. Chris, could you formally submit this patch to netfilter-devel@vger.kernel.org? Thanks! -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/