From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8F1E8CA9ECB for ; Thu, 31 Oct 2019 17:19:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6E3C02086D for ; Thu, 31 Oct 2019 17:19:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728655AbfJaRTt (ORCPT ); Thu, 31 Oct 2019 13:19:49 -0400 Received: from orbyte.nwl.cc ([151.80.46.58]:47616 "EHLO orbyte.nwl.cc" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728561AbfJaRTt (ORCPT ); Thu, 31 Oct 2019 13:19:49 -0400 Received: from n0-1 by orbyte.nwl.cc with local (Exim 4.91) (envelope-from ) id 1iQE6t-0007Te-JF; Thu, 31 Oct 2019 18:19:47 +0100 Date: Thu, 31 Oct 2019 18:19:47 +0100 From: Phil Sutter To: Pablo Neira Ayuso Cc: netfilter-devel@vger.kernel.org Subject: Re: [iptables PATCH v3 0/7] Improve xtables-restore performance Message-ID: <20191031171947.GF8531@orbyte.nwl.cc> Mail-Followup-To: Phil Sutter , Pablo Neira Ayuso , netfilter-devel@vger.kernel.org References: <20191024163712.22405-1-phil@nwl.cc> <20191031150234.osfnsa2emuvhocrc@salvia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191031150234.osfnsa2emuvhocrc@salvia> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org On Thu, Oct 31, 2019 at 04:02:34PM +0100, Pablo Neira Ayuso wrote: > On Thu, Oct 24, 2019 at 06:37:05PM +0200, Phil Sutter wrote: > > This series speeds up xtables-restore calls with --noflush (typically > > used to batch a few commands for faster execution) by preliminary input > > inspection. > > > > Before, setting --noflush flag would inevitably lead to full cache > > population. With this series in place, if input can be fully buffered > > and no commands requiring full cache is contained, no initial cache > > population happens and each rule parsed will cause fetching of cache > > bits as required. > > > > The input buffer size is arbitrarily chosen to be 64KB. > > > > Patches one and two prepare code for patch three which moves the loop > > content parsing each line of input into a separate function. The > > reduction of code indenting is used by patch four which deals with > > needless line breaks. > > For patches from 1 to 4 in this batch: > > Acked-by: Pablo Neira Ayuso > > > Patch five deals with another requirement of input buffering, namely > > stripping newline characters from each line. This is not a problem by > > itself, but add_param_to_argv() replaces them by nul-chars and so > > strings stop being consistently terminated (some by a single, some by > > two nul-chars). > > > > Patch six then finally adds the buffering and caching decision code. > > > > Patch seven is pretty unrelated but tests a specific behaviour of > > *tables-restore I wasn't sure of at first. > > Do you have any number? Yes, I wrote a small benchmark based on some Kubernetes use-case. It measures loading of dumps like: | *nat | :KUBE-SVC-23 - [0:0] | :KUBE-SEP-23 - [0:0] | -A KUBE-HOOK ! -s 10.128.0.0/14 -d 172.30.108.136/32 -p tcp -m comment --comment \"openshift-controller-manager/controller-manager:https cluster IP\" -m tcp --dport 443 -j KUBE-MARK-MASQ | -A KUBE-HOOK -d 172.30.108.136/32 -p tcp -m comment --comment \"openshift-controller-manager/controller-manager:https cluster IP\" -m tcp --dport 443 -j KUBE-SVC-23 | -A KUBE-SVC-23 -j KUBE-SEP-23 | -A KUBE-SEP-23 -s 10.128.0.38/32 -j KUBE-MARK-MASQ | -A KUBE-SEP-23 -p tcp -m tcp -j DNAT --to-destination 10.128.0.38:8443 | COMMIT Into a ruleset with increasing size (created by repeating the snippet above): size (*100) | legacy | nft-pre | nft-post --------------------------------------------------------- 1 .0040366426 .0079313714 .0025598650 10 .0146918664 .0459193868 .0025134858 25 .0361553334 .1195503778 .0024202904 50 .0699177362 .2547542626 .0024351612 75 .1062593206 .4078182120 .0024362044 100 .1614045514 .5636617378 .0024195190 The graph says it all: http://nwl.cc/~n0-1/kube.png Cheers, Phil