From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarek Poplawski Subject: Re: [BUG] net_cls: Panic occured when net_cls subsystem use Date: Sun, 31 May 2009 21:55:57 +0200 Message-ID: <20090531195557.GA2777@ami.dom.local> References: <20090521092256.d33717b9.usui@mxm.nes.nec.co.jp> <20090529141830.8ba30a24.usui@mxm.nes.nec.co.jp> <1243604796.3966.21.camel@dogo.mojatatu.com> <1243605269.3966.28.camel@dogo.mojatatu.com> <20090529225929.GD2753@ami.dom.local> <1243684218.3966.83.camel@dogo.mojatatu.com> <20090531081213.GC2756@ami.dom.local> <1243776293.3966.241.camel@dogo.mojatatu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Minoru Usui , netdev@vger.kernel.org, containers@lists.linux-foundation.org To: jamal Return-path: Received: from mail-bw0-f222.google.com ([209.85.218.222]:40868 "EHLO mail-bw0-f222.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750861AbZEaT4a (ORCPT ); Sun, 31 May 2009 15:56:30 -0400 Received: by bwz22 with SMTP id 22so7106547bwz.37 for ; Sun, 31 May 2009 12:56:31 -0700 (PDT) Content-Disposition: inline In-Reply-To: <1243776293.3966.241.camel@dogo.mojatatu.com> Sender: netdev-owner@vger.kernel.org List-ID: On Sun, May 31, 2009 at 09:24:53AM -0400, jamal wrote: > On Sun, 2009-05-31 at 10:12 +0200, Jarek Poplawski wrote: > > > If somebody runs tc add filter with a new priority but existing handle > > a newly created (and not linked now) tc would be handled with goto > > errout and would leak, I guess. > > This would imply the classifier is buggy. I will stare at the different > classifier - and if any exhibits such traits it needs to be fixed > > > The change (in the two spots) is: > > > + if (n->nlmsg_type == RTM_NEWTFILTER && > > > + (n->nlmsg_flags&(NLM_F_CREATE|NLM_F_EXCL))) { > > > > > > > Sorry, but I don't think this change is enough; tc filter replace > > with only this (n->nlmsg_type == RTM_NEWTFILTER && > > (n->nlmsg_flags&(NLM_F_CREATE))) can get here with an "old" tp > > and will relink it or destroy depending on the ->change() return. > > > > Excellent point - there could be buggy user space apps that will do > that. Minoru change the check to: > > + if (n->nlmsg_type == RTM_NEWTFILTER && > + (n->nlmsg_flags&NLM_F_CREATE && > + n->nlmsg_flags&NLM_F_EXCL)) { But then, there could be "tc filter replace" with only this (n->nlmsg_type == RTM_NEWTFILTER && (n->nlmsg_flags&(NLM_F_CREATE))) which can't get here with a newly created tp, I guess. Cheers, Jarek P.