Skip to content
Snippets Groups Projects
  1. May 02, 2024
  2. Apr 30, 2024
  3. Apr 29, 2024
    • Marc van der Wal's avatar
      IBDNS.Zone.FileLoader: overhaul error handling · 11a29325
      Marc van der Wal authored
      Make data structures describing errors happening at zone loading time
      more consistent. The idea is to always ensure that error tuples are
      three-tuples of {:error, where, what}.
      
      The parser code is also improved so that errors happening at
      post-processing time stop that post-processing immediately, instead of
      waiting until the file is done processing.
      11a29325
    • Marc van der Wal's avatar
      Refactor unit tests for $INCLUDE tests · cef10f4a
      Marc van der Wal authored
      Prepare test zones that contain $INCLUDE directives. The unit tests are
      only modified so that they read from the files instead of hard-coded
      strings.
      cef10f4a
    • Marc van der Wal's avatar
      IBDNS.Zone.FileParser: stricter checks for read/3 · aed8d4d2
      Marc van der Wal authored
      Clarify that the origin parameter in IBDNS.Zone.FileParser.read/3 must
      be an domain in absolute labels list form, be it in the documentation
      and in the spec.
      
      To enforce that restriction, also define a useful guard in IBDNS.Name
      and use it for IBDNS.Zone.FileParser.read/3 so that anything that is not
      an absolute labels list is rejected.
      aed8d4d2
    • Marc van der Wal's avatar
      Merge branch 'feature/grand-opening' into 'develop' · 3f651c41
      Marc van der Wal authored
      Relicense project as GPLv3
      
      See merge request dns-testing-tools/ibdns!38
      3f651c41
    • Marc van der Wal's avatar
      Better source code documentation · d7708453
      Marc van der Wal authored
      Add or improve docstrings in various modules, types and functions, to
      make the source easier to follow for newcomers.
      
      Some functions have specs added to them. This improved the coverage and
      exhaustivity of Dialyzer reports and helped fix one bug.
      
      There are some other minor drive-by refactorings in this code, but they
      shouldn’t change anything functionally.
      d7708453
  4. Apr 25, 2024
    • Marc van der Wal's avatar
      Add “reuse lint” in CI · d2fe2c60
      Marc van der Wal authored
      Ensure compliance to the REUSE specification by adding another action in
      the testing stage of the continuous integration setup.
      d2fe2c60
    • Marc van der Wal's avatar
      State license in README.md · c21c2826
      Marc van der Wal authored
      After stating the license in a form that’s nice for machines, let’s
      state it in a more human-friendly and prominent way by editing
      README.md.
      c21c2826
    • Marc van der Wal's avatar
      Apply REUSE specification · 1281401b
      Marc van der Wal authored
      Mark all files in version control with the appropriate licensing
      information, according to <https://reuse.software>.
      
      All files are licensed under GPL-3.0-or-later, with some exceptions.
      There are two CSV files downloaded from IANA whose copyright information
      is set appropriately (CC0-1.0). Some trivial files are released under
      the CC0-1.0 license too.
      1281401b
  5. Apr 23, 2024
  6. Apr 22, 2024
    • Marc van der Wal's avatar
      TCP listener: avoid buildup of DOWN messages · 7b87d90c
      Marc van der Wal authored
      TCP listeners run separate acceptor processes that they monitor. In the
      happy path where a client connects, the acceptor process sends a message
      to the parent, then exits.
      
      That happy path causes two messages to be sent to the parent process: a
      tcp_connect message and a DOWN message. But the DOWN message was never
      handled, causing the message queue of the TCP listener to build up and
      grow unbounded.
      
      The fix consists of demonitoring the process that just gave the TCP
      listener a socket. For good measure, we give the :flush option, which
      removes a possible DOWN message from the caller’s message queue. This
      should be enough to fix the message queue growth problem.
      
      Ideally, this entire module could use an overhaul. The whole thing is
      hacky because of the need to call :procket.open and :procket.close/1
      manually when starting or stopping a listener. There ought to be a
      smarter way.
      7b87d90c
  7. Apr 17, 2024
  8. Apr 16, 2024
  9. Feb 21, 2024
  10. Nov 08, 2023
  11. Oct 31, 2023
    • Marc van der Wal's avatar
      Merge tag 'v0.3.3' into develop · 018132c0
      Marc van der Wal authored
      Release 0.3.3
      
      This release addresses a design flaw regarding the handling of data
      stored in Catalog structures at keys differing only by case. This
      resulted in some resource records being only partially served.
      018132c0
    • Marc van der Wal's avatar
      Merge branch 'release/0.3.3' · 10754a50
      Marc van der Wal authored
      10754a50
    • Marc van der Wal's avatar
      Prepare release 0.3.3 · 3d312c1a
      Marc van der Wal authored
      3d312c1a
    • Marc van der Wal's avatar
      Merge branch 'bugfix/#34' into 'develop' · f3f1c47f
      Marc van der Wal authored
      Correct handling of zone files containing nodes with inconsistent case
      
      See merge request labs/ibdns!30
      f3f1c47f
    • Marc van der Wal's avatar
      CNAMEs: also SERVFAIL if owners differ by case · 06fdfcc6
      Marc van der Wal authored
      This commit fixes an oversight leading to the server not responding as
      intended when loading a zone file such as this one:
      
        $ORIGIN bad.example.
        $TTL 3600
      
        @               IN SOA […]
      
        alias           IN CNAME target1
        ALIAS           IN CNAME target2
      
      Querying alias.bad.example should yield two CNAME resource records. In
      its default configuration, the server should have responded with
      SERVFAIL, but didn’t.
      06fdfcc6
    • Marc van der Wal's avatar
      10a98023
    • Marc van der Wal's avatar
      Catalog: fix case retrieval bug when matching · 9954fce9
      Marc van der Wal authored
      This commit fixes a subtle, yet embarrassing bug that stemmed from
      IBDNS.Catalog formerly failing to specify in a satisfactory way what
      happens if someone inserts a datum at a key, then another datum at a key
      that differs from the first one by case only.
      
      Because of that, there was an issue when the server loads a zone file
      where nodes are not written with consistent case. Consider the following
      example:
      
        $TTL 3600
        $ORIGIN domain.example.
      
        @         IN  SOA  […]
      
        hello     IN  TXT  "lowercase"
        HELLO     IN  TXT  "uppercase"
      
        sub       IN  NS   ns1.somewhere-else.example.
        SUB       IN  NS   ns2.somewhere-else.example.
      
      With the default settings, only one of the two TXT records was served
      when the server receives a query for hello.domain.example, and only one
      of the two name servers of the referral was served for a query of
      anything at or below sub.domain.example.
      
      Now, all of the nodes with equivalent case are always retrieved (except
      if case-sensitive matching is enabled for a subtree).
      9954fce9
    • Marc van der Wal's avatar
      Catalog: introduce fetch_all{,_values}/{2,3} · f5fc85df
      Marc van der Wal authored
      Introduce a family of functions in Catalog: fetch_all/2 and /3 gets all
      keys and values where the keys are equal or only differ by case, and
      fetch_all_values/2 and /3 which only gets the values.
      f5fc85df
    • Marc van der Wal's avatar
      Catalog: refactor case map · b3a4450c
      Marc van der Wal authored
      Refactor the case mapping logic into a separate structure and a few
      separate companion functions. Doing so will make it possible to
      introduce another fetch/3-like function that returns all data with their
      original cases.
      b3a4450c
Loading