]>
git.ipfire.org Git - thirdparty/dnspython.git/log
Bob Halley [Wed, 12 Aug 2020 13:59:59 +0000 (06:59 -0700)]
If we rollback a write, release the write txn and wake someone up.
Don't allow pruning to prune any version >= the version of an active reader.
(This isn't a bug fix as the reader was safe before, but this ensures that
the reader can open a successor version if needed.)
Bob Halley [Wed, 12 Aug 2020 01:07:14 +0000 (18:07 -0700)]
remove broken stats badge
Bob Halley [Wed, 12 Aug 2020 01:07:02 +0000 (18:07 -0700)]
doco update
Bob Halley [Wed, 12 Aug 2020 01:06:34 +0000 (18:06 -0700)]
hide versions
Bob Halley [Tue, 11 Aug 2020 14:42:07 +0000 (07:42 -0700)]
lint
Bob Halley [Tue, 11 Aug 2020 14:38:26 +0000 (07:38 -0700)]
open versions by id or serial; cleanups
Bob Halley [Tue, 11 Aug 2020 14:37:58 +0000 (07:37 -0700)]
remove ImmutableNode from node as it is not used.
Bob Halley [Tue, 11 Aug 2020 01:15:45 +0000 (18:15 -0700)]
Merge pull request #569 from rthalley/transaction
Transaction Support
Bob Halley [Thu, 30 Jul 2020 16:21:03 +0000 (09:21 -0700)]
Transaction support.
Bob Halley [Tue, 11 Aug 2020 01:12:44 +0000 (18:12 -0700)]
detect escapes > 255
Bob Halley [Tue, 11 Aug 2020 01:12:29 +0000 (18:12 -0700)]
detect various bad ttls
Bob Halley [Tue, 11 Aug 2020 01:13:24 +0000 (18:13 -0700)]
Merge pull request #571 from bwelling/tsig-text
Adds support for reading TSIG text format.
Brian Wellington [Mon, 10 Aug 2020 21:27:44 +0000 (14:27 -0700)]
Adds support for reading TSIG text format.
Implements from_text for the TSIG record type, and clean up some other
things.
Fixes the text format to emit fields in the right order; fudge and
time_signed were reversed. This also matches BIND's output format now.
Add get_uint48() to the tokenizer, so that from_text() can use it. Add
get_uint48() to the wire parser, and use it in from_wire, for
consistency.
Change dns.tsig.sign() to use rdata.replace() rather than constructing a
new TSIG record manually; this couldn't be done before, because
replace() uses text format for validation.
Brian Wellington [Mon, 10 Aug 2020 19:37:28 +0000 (12:37 -0700)]
Update SVCB tests.
This adds a few more test cases, and reorders tests / test cases for
consistency.
Bob Halley [Mon, 10 Aug 2020 18:54:17 +0000 (11:54 -0700)]
Merge pull request #570 from bwelling/tsig-new-algorithms
Add support for new TSIG algorithms
Brian Wellington [Mon, 10 Aug 2020 18:43:20 +0000 (11:43 -0700)]
Add support for new TSIG algorithms.
This adds support for the hmac-sha256-128, hmac-sha384-192, and hmac-sha512-256 truncated algorithms.
This also reorders some of the declarations in the TSIG code.
Brian Wellington [Mon, 10 Aug 2020 18:41:22 +0000 (11:41 -0700)]
Fix dns.message.use_tsig().
Passing only a dns.tsig.Key to dns.message.use_tsig() didn't work, as
the placeholder tsig rrset on the message object was created with None
as its name, not the name associated with the key.
Also do a bit of refactoring to make the code more clear.
Bob Halley [Sun, 9 Aug 2020 01:32:55 +0000 (18:32 -0700)]
Simplify $GENERATE range code, add some error checks, and increase test coverage.
Bob Halley [Sun, 9 Aug 2020 01:13:42 +0000 (18:13 -0700)]
mention GSS-TSIG and TKEY in what's new
Bob Halley [Sun, 9 Aug 2020 01:11:07 +0000 (18:11 -0700)]
lint
Bob Halley [Sun, 9 Aug 2020 01:03:52 +0000 (18:03 -0700)]
Merge pull request #530 from nrhall/nrhall-gss-tsig-changes
Add support for gss-tsig and TKEY records to support GSSAPI authentication
Bob Halley [Sat, 8 Aug 2020 14:25:53 +0000 (07:25 -0700)]
The from_text_list() methods for Rdataset and RRset should allow the
full set of parameters that rdata's from_text() allows (i.e. origin,
relativize, and relativize_to).
These parameters were added though the order is slightly different
from dns.rdata.to_text() as in the the rdata version idna_codec is
after origin, relativize, and relativize_to. We already had an
idna_codec for the Rdataset and RRset functions, so we added after it
to keep backwards compatibility.
Bob Halley [Sat, 8 Aug 2020 14:21:37 +0000 (07:21 -0700)]
LOC _exponent_of does not need to do division.
Bob Halley [Sat, 8 Aug 2020 14:19:23 +0000 (07:19 -0700)]
Make SVCB and HTTPS immutable.
Bob Halley [Sat, 8 Aug 2020 14:18:10 +0000 (07:18 -0700)]
Add immutable module.
Bob Halley [Sat, 8 Aug 2020 02:20:30 +0000 (19:20 -0700)]
Merge pull request #568 from rthalley/svcb
SVCB and HTTPS support
Bob Halley [Fri, 7 Aug 2020 03:02:24 +0000 (20:02 -0700)]
SVCB and HTTPS support
Nick Hall [Fri, 7 Aug 2020 22:00:36 +0000 (23:00 +0100)]
Support callable() TSIG keyrings for use-cases like GSSTSig.
Nick Hall [Tue, 4 Aug 2020 16:47:48 +0000 (17:47 +0100)]
Add a lightweight wrapper around the HMAC types and refactor the "is gss-api or not" wrapper functions to just call the class methods
Nick Hall [Tue, 14 Jul 2020 16:59:01 +0000 (17:59 +0100)]
add additional test case with a request/response TSIG
Nick Hall [Fri, 10 Jul 2020 21:48:37 +0000 (22:48 +0100)]
Add a number of additional tests to improve TSIG test coverage relating
to gss-tsig change and some associated refactoring.
Nick Hall [Sun, 5 Jul 2020 23:40:36 +0000 (00:40 +0100)]
Add gss-tsig support to dnspython
Nick Hall [Sun, 3 Feb 2019 14:02:49 +0000 (14:02 +0000)]
Add support for TKEY RR type
Brian Wellington [Fri, 7 Aug 2020 01:10:47 +0000 (18:10 -0700)]
Remove duplicates in the ISDN sample data.
Bob Halley [Tue, 4 Aug 2020 13:48:09 +0000 (06:48 -0700)]
fix loc version not zero test
Bob Halley [Tue, 4 Aug 2020 13:44:06 +0000 (06:44 -0700)]
lint
Bob Halley [Tue, 4 Aug 2020 13:43:44 +0000 (06:43 -0700)]
LOC with version not 0 is a FORMERR
Bob Halley [Tue, 4 Aug 2020 13:16:12 +0000 (06:16 -0700)]
Merge pull request #562 from nrhall/nrhall-message-patch
Expose set_rcode
Bob Halley [Tue, 4 Aug 2020 13:11:23 +0000 (06:11 -0700)]
Merge pull request #564 from rthalley/constants2
Constants generation at end of file approach
Bob Halley [Tue, 4 Aug 2020 13:05:19 +0000 (06:05 -0700)]
test constants with independent code
Bob Halley [Tue, 4 Aug 2020 13:05:00 +0000 (06:05 -0700)]
add enumeration checking helpers
Bob Halley [Mon, 3 Aug 2020 14:00:38 +0000 (07:00 -0700)]
fix case of enum names
Bob Halley [Mon, 3 Aug 2020 13:44:42 +0000 (06:44 -0700)]
multiple # in a comment is ok
Bob Halley [Mon, 3 Aug 2020 13:41:31 +0000 (06:41 -0700)]
remove globals() enum updating
Bob Halley [Mon, 3 Aug 2020 13:35:22 +0000 (06:35 -0700)]
add constants
Bob Halley [Fri, 31 Jul 2020 23:03:09 +0000 (16:03 -0700)]
pylint linting
Nick Hall [Wed, 29 Jul 2020 22:48:42 +0000 (23:48 +0100)]
expose set_rcode in Message
Bob Halley [Fri, 31 Jul 2020 14:36:48 +0000 (07:36 -0700)]
the abstract wire parse method for Rdata is now from_wire_parser()
Bob Halley [Thu, 30 Jul 2020 16:25:27 +0000 (09:25 -0700)]
allow pytest 6
Bob Halley [Wed, 29 Jul 2020 01:40:36 +0000 (18:40 -0700)]
When validating a signature, derelativize before doing any label computations.
Raise an error if the number of labels in the signature is longer than the
number of labels in the owner name. (This is just to give a better error
as the validation would fail anyway.)
Bob Halley [Tue, 28 Jul 2020 16:47:49 +0000 (09:47 -0700)]
more coverage
Bob Halley [Tue, 28 Jul 2020 16:47:39 +0000 (09:47 -0700)]
Raise NoPreviousName if a text message tries to refer to a previous name but there is none.
Bob Halley [Tue, 28 Jul 2020 14:40:06 +0000 (07:40 -0700)]
more message coverage
Bob Halley [Tue, 28 Jul 2020 14:39:50 +0000 (07:39 -0700)]
Return the message in question_only mode. [#556]
Bob Halley [Tue, 28 Jul 2020 14:01:00 +0000 (07:01 -0700)]
Merge pull request #553 from rthalley/wrap
Wrap exceptions from rdata from_text() and from_wire().
Bob Halley [Tue, 28 Jul 2020 00:19:11 +0000 (17:19 -0700)]
Apply the resolver search list, domain, and ndots settings in the same way
that the BIND stub resolver library does.
Bob Halley [Mon, 27 Jul 2020 21:24:18 +0000 (14:24 -0700)]
Add missing lifetime parameter to dns.asyncresolver.resolve() [#555]
Bob Halley [Mon, 27 Jul 2020 00:48:14 +0000 (17:48 -0700)]
Wrap exceptions from rdata from_text() and from_wire().
Bob Halley [Sun, 26 Jul 2020 21:12:01 +0000 (14:12 -0700)]
increase TXT coverage
Bob Halley [Sun, 26 Jul 2020 20:59:08 +0000 (13:59 -0700)]
increase rcode coverage
Bob Halley [Sun, 26 Jul 2020 20:50:34 +0000 (13:50 -0700)]
remove test that can never be true
Bob Halley [Sun, 26 Jul 2020 20:22:33 +0000 (13:22 -0700)]
more resolver override testing
Bob Halley [Sun, 26 Jul 2020 18:09:13 +0000 (11:09 -0700)]
exercise entropy stirring
Bob Halley [Sun, 26 Jul 2020 18:03:19 +0000 (11:03 -0700)]
exclude unpractical-to-test AttributeError
Bob Halley [Sun, 26 Jul 2020 17:57:47 +0000 (10:57 -0700)]
increase EDNS coverage
Bob Halley [Sun, 26 Jul 2020 17:43:17 +0000 (10:43 -0700)]
still more dnssec coverage
Bob Halley [Sun, 26 Jul 2020 17:05:32 +0000 (10:05 -0700)]
more dnssec coverage
Bob Halley [Sun, 26 Jul 2020 15:30:58 +0000 (08:30 -0700)]
improve dnssec coverage
Bob Halley [Sat, 25 Jul 2020 20:06:21 +0000 (13:06 -0700)]
more easy coverage gains
Bob Halley [Sat, 25 Jul 2020 19:46:35 +0000 (12:46 -0700)]
Remove checks already done by dns.dnssec.algorithm_from_text().
Bob Halley [Sat, 25 Jul 2020 14:18:52 +0000 (07:18 -0700)]
more message coverage
Bob Halley [Sat, 25 Jul 2020 13:29:08 +0000 (06:29 -0700)]
even on errors where we tolerate no question, check question if present
Bob Halley [Sat, 25 Jul 2020 13:19:07 +0000 (06:19 -0700)]
more minor resolver coverage
Bob Halley [Sat, 25 Jul 2020 12:54:54 +0000 (05:54 -0700)]
more reversename coverage
Bob Halley [Sat, 25 Jul 2020 02:17:28 +0000 (19:17 -0700)]
Bring rdataset to full coverage.
Bob Halley [Sat, 25 Jul 2020 01:54:56 +0000 (18:54 -0700)]
util coverage
Bob Halley [Sat, 25 Jul 2020 01:10:13 +0000 (18:10 -0700)]
test cleanups and more coverage
Bob Halley [Sat, 25 Jul 2020 01:10:01 +0000 (18:10 -0700)]
to_text() always returns a str, so no need to check if it is not a str
Bob Halley [Fri, 24 Jul 2020 15:09:16 +0000 (08:09 -0700)]
bring rdata.py to full coverage
Bob Halley [Fri, 24 Jul 2020 15:08:29 +0000 (08:08 -0700)]
ignore coverage on abstract methods
Bob Halley [Fri, 24 Jul 2020 02:33:37 +0000 (19:33 -0700)]
Have only one one top-level section for What's New.
Bob Halley [Fri, 24 Jul 2020 02:26:47 +0000 (19:26 -0700)]
test style improvements
Bob Halley [Fri, 24 Jul 2020 02:21:16 +0000 (19:21 -0700)]
Allow an escaped newline in a quoted string.
Bob Halley [Fri, 24 Jul 2020 02:20:33 +0000 (19:20 -0700)]
more tokenizer coverage improvements
Bob Halley [Thu, 23 Jul 2020 16:34:14 +0000 (09:34 -0700)]
more tokenizer test cleanups
Bob Halley [Thu, 23 Jul 2020 15:48:02 +0000 (08:48 -0700)]
more tokenizer coverage
Bob Halley [Thu, 23 Jul 2020 14:17:21 +0000 (07:17 -0700)]
Add no cover for abstract method.
Bob Halley [Thu, 23 Jul 2020 14:12:20 +0000 (07:12 -0700)]
Add serial branch coverage; remove duplicated test.
Bob Halley [Thu, 23 Jul 2020 14:00:05 +0000 (07:00 -0700)]
cover compression table too big branch
Bob Halley [Thu, 23 Jul 2020 13:33:27 +0000 (06:33 -0700)]
Improve name coverage slightly by testing the uts_46 branch in 2008 decode.
I'm not sure how useful in practice this is, as we don't offer a codec
configuration default for it, but I'm not sure you'd never do it, and the
existing code was in the wrong order.
Bob Halley [Thu, 23 Jul 2020 02:03:50 +0000 (19:03 -0700)]
add coverage for a v6 branch case
Bob Halley [Wed, 22 Jul 2020 15:53:30 +0000 (08:53 -0700)]
Adjust no cover pragmas to better reflect what the Azure pipeline hits/misses.
Bob Halley [Wed, 22 Jul 2020 15:52:37 +0000 (08:52 -0700)]
more resolver coverage improvements
Bob Halley [Wed, 22 Jul 2020 15:27:27 +0000 (08:27 -0700)]
Make resolver use_edns() conform to its docstring; slightly improve use_edns() logic.
Bob Halley [Wed, 22 Jul 2020 14:27:17 +0000 (07:27 -0700)]
Fix Answer constructor invocations that missed an API change.
Bob Halley [Wed, 22 Jul 2020 14:25:07 +0000 (07:25 -0700)]
Increase branch coverage of the resolver.
Speed up test resolver by around 6 seconds by mocking the clock.
Improve the cleaning test to verify that it really was cleaning that
removed the entry, and not get detecting the expiration.
Bob Halley [Wed, 22 Jul 2020 01:20:02 +0000 (18:20 -0700)]
Merge pull request #550 from rthalley/resolve_chaining
Unify Chaining Code
Bob Halley [Tue, 21 Jul 2020 23:01:32 +0000 (16:01 -0700)]
Use min() for min_ttl computations.
Bob Halley [Tue, 21 Jul 2020 18:23:54 +0000 (11:23 -0700)]
fix exception docstrings
Bob Halley [Tue, 21 Jul 2020 17:40:51 +0000 (10:40 -0700)]
set min ttl to max_ttl instead of special case -1