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=-5.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, 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 99470C432BE for ; Tue, 27 Jul 2021 21:52:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 77BF760F9B for ; Tue, 27 Jul 2021 21:52:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232757AbhG0Vwt (ORCPT ); Tue, 27 Jul 2021 17:52:49 -0400 Received: from mail.netfilter.org ([217.70.188.207]:36800 "EHLO mail.netfilter.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232460AbhG0Vws (ORCPT ); Tue, 27 Jul 2021 17:52:48 -0400 Received: from netfilter.org (bl11-146-165.dsl.telepac.pt [85.244.146.165]) by mail.netfilter.org (Postfix) with ESMTPSA id 213D4642B2; Tue, 27 Jul 2021 23:52:16 +0200 (CEST) Date: Tue, 27 Jul 2021 23:52:40 +0200 From: Pablo Neira Ayuso To: Alex Forster Cc: Kyle Bowman , kernel-team , Jozsef Kadlecsik , Florian Westphal , "David S. Miller" , Jakub Kicinski , netfilter-devel@vger.kernel.org, coreteam@netfilter.org, linux-kernel@vger.kernel.org, Network Development Subject: Re: [PATCH] netfilter: xt_NFLOG: allow 128 character log prefixes Message-ID: <20210727215240.GA25043@salvia> References: <20210727190001.914-1-kbowman@cloudflare.com> <20210727195459.GA15181@salvia> <20210727211029.GA17432@salvia> <20210727212730.GA20772@salvia> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jul 27, 2021 at 04:44:42PM -0500, Alex Forster wrote: > > I'm not refering to nftables, I'm refering to iptables-nft. > > Possibly I'm misunderstanding. Here's a realistic-ish example of a > rule we might install: > > iptables -A INPUT -d 11.22.33.44/32 -m bpf --bytecode "43,0 0 0 > 0,48 0 0 0,...sic..." -m statistic --mode random --probability 0.0001 > -j NFLOG --nflog-prefix "drop 10000 c37904a83b344404 > e4ec6050966d4d2f9952745de09d1308" > > Is there a way to install such a rule with an nflog prefix that is >63 chars? Yes, you can update iptables-nft to use nft_log instead of xt_LOG, that requires no kernel upgrades and it will work with older kernels.