Re: [DNSOP] Clarification question: compression pointers always to names earlier in the packet?

Mukund Sivaraman <muks@mukund.org> Thu, 25 October 2018 03:09 UTC

Return-Path: <muks@mukund.org>
X-Original-To: dnsop@ietfa.amsl.com
Delivered-To: dnsop@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 4A2E0130DDF for <dnsop@ietfa.amsl.com>; Wed, 24 Oct 2018 20:09:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.901
X-Spam-Level:
X-Spam-Status: No, score=-1.901 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id E5FtcLbpdkn8 for <dnsop@ietfa.amsl.com>; Wed, 24 Oct 2018 20:09:33 -0700 (PDT)
Received: from mail.banu.com (mail.banu.com [46.4.129.225]) by ietfa.amsl.com (Postfix) with ESMTP id 25203130934 for <dnsop@ietf.org>; Wed, 24 Oct 2018 20:09:32 -0700 (PDT)
Received: from jurassic (unknown [27.5.194.168]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.banu.com (Postfix) with ESMTPSA id 1CE0032C0912; Thu, 25 Oct 2018 03:09:29 +0000 (UTC)
Date: Thu, 25 Oct 2018 08:39:26 +0530
From: Mukund Sivaraman <muks@mukund.org>
To: Ted Lemon <mellon@fugue.com>
Cc: Shane Kerr <shane@time-travellers.org>, dnsop WG <dnsop@ietf.org>
Message-ID: <20181025030926.GA15675@jurassic>
References: <BC2CDF40-4FF0-4111-88B7-04969491D2E0@dukhovni.org> <EC514300-F235-41DB-A413-2F9F8F8B04C8@sinodun.com> <f3c89916-6622-c153-f662-9ac42b61d81c@time-travellers.org> <CAPt1N1nq2-9NxoGSg3M+XHehAeT47A5T1w54vvmG=83j-hRoUw@mail.gmail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Disposition: inline
In-Reply-To: <CAPt1N1nq2-9NxoGSg3M+XHehAeT47A5T1w54vvmG=83j-hRoUw@mail.gmail.com>
User-Agent: Mutt/1.9.2 (2017-12-15)
Archived-At: <https://mailarchive.ietf.org/arch/msg/dnsop/setoq3BrtenzvTddtD1HduMIKmo>
Subject: Re: [DNSOP] Clarification question: compression pointers always to names earlier in the packet?
X-BeenThere: dnsop@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: IETF DNSOP WG mailing list <dnsop.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/dnsop>, <mailto:dnsop-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/dnsop/>
List-Post: <mailto:dnsop@ietf.org>
List-Help: <mailto:dnsop-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/dnsop>, <mailto:dnsop-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 25 Oct 2018 03:09:36 -0000

On Wed, Oct 24, 2018 at 04:26:37PM -0400, Ted Lemon wrote:
> The good news is that in a typical DNS message, N is pretty small.
>  Although I suppose in an internet-facing name server, pretty small is
> still pretty big...

In BIND, name compression is still one of the big consumers of CPU. It
was tweaked for 9.12 to reduce the aggression of finding longest match,
but the custom compression specification in DNS is awkward. Matching
against every previously emitted label sequence when done aggressively,
dealing with case issues, limiting compression offset to first 16kB of
the message, etc. are all quirks.

A generic compression algorithm such as deflate over the whole message
may have done better as libraries have fast hand-written matching
subroutines in assembly. Such arch specific code of fast custom matching
is not reasonable to expect of a DNS implementation.

Disabling compression is almost desirable to avoid finding matches
(hence the message-compression named option), but RFC 1123 (which
predates EDNS) forbids it.

		Mukund