Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quoting of empty TXT records #254

Closed
patrick1024 opened this issue May 19, 2022 · 4 comments · Fixed by #256
Closed

Quoting of empty TXT records #254

patrick1024 opened this issue May 19, 2022 · 4 comments · Fixed by #256
Labels
Milestone

Comments

@patrick1024
Copy link

Hi,

I'm not sure if this is a bug, but it is at least a different behaviour of creating empty TXT records while using the TXTRecord constructor or the static method fromString of Record:

        Record r0 = Record.fromString(recordName, Type.TXT, DClass.IN, 0, "", zoneName);
        TXTRecord r1 = new TXTRecord(recordName, DClass.IN, 0, "");
        System.out.println("r0: " + r0);
        System.out.println("r1: " + r1);

The output of this code snippet is:

r0: name.name.		0	IN	TXT
r1: name.name.		0	IN	TXT	""

BIND and PowerDNS servers are not able to load records with representation r0.

Patrick

@ibauersachs ibauersachs added this to the v3.5.2 milestone May 19, 2022
@ibauersachs
Copy link
Member

Yes, that's a bug. Thanks for the report!

nresare added a commit to nresare/dnsjava that referenced this issue Jun 16, 2022
Instantiating an empty TXT record using Record.fromString() would
previously render as a TXT without the empty string.

Closes dnsjava#254
@nresare
Copy link
Member

nresare commented Jun 16, 2022

Having a look at this, the difference between the two is that r0 is a TXTRecord with the field strings holding an empty list whereas strings list in r1 holds a single item (a zero size byte array).

I created a PR to ensure TXTBase.rrToString() always returns at least an empty quoted string, #256

nresare added a commit to nresare/dnsjava that referenced this issue Jul 24, 2022
Instantiating an empty TXT record using Record.fromString() would
previously render as a TXT without the empty string.

Closes dnsjava#254
nresare added a commit that referenced this issue Jul 24, 2022
Instantiating an empty TXT record using Record.fromString() would
previously render as a TXT without the empty string.

Closes #254
@nresare
Copy link
Member

nresare commented Jul 25, 2022

A fix to this issue was merged into the release/3.5.x branch yesterday. Can you confirm that the change resolves your issue @patrick1024 ?

@patrick1024
Copy link
Author

Yes, the change resolves my issue. Thanks @nresare

@nresare nresare closed this as completed Jul 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants