-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Fix IllegalStateException in DnsClient when DNS server responds with DNAME record #4908
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
Merged
vietj
merged 4 commits into
eclipse-vertx:master
from
mnylen:fix-dns-client-illegal-state-exception
Nov 6, 2023
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
50d7d82
Add support for DNAME records in DnsMessageEncoder
mnylen 79c6e80
Add support to FakeDNSServer to resolve with DNAME record
mnylen 188b572
Reproducer for IllegalStateException when DNS responds with DNAME record
mnylen 419f897
Catch exception from RecordDecoder and fail the DNS query
mnylen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/test/java/io/vertx/test/fakedns/DnameRecordEncoder.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package io.vertx.test.fakedns; | ||
|
||
import org.apache.directory.server.dns.io.encoder.ResourceRecordEncoder; | ||
import org.apache.directory.server.dns.messages.ResourceRecord; | ||
import org.apache.directory.server.dns.store.DnsAttribute; | ||
import org.apache.mina.core.buffer.IoBuffer; | ||
|
||
public class DnameRecordEncoder extends ResourceRecordEncoder { | ||
|
||
protected void putResourceRecordData(IoBuffer byteBuffer, ResourceRecord record ) | ||
{ | ||
String domainName = record.get( DnsAttribute.DOMAIN_NAME ); | ||
putDomainName( byteBuffer, domainName ); | ||
} | ||
} |
233 changes: 233 additions & 0 deletions
233
src/test/java/io/vertx/test/fakedns/DnsMessageEncoder.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
package io.vertx.test.fakedns; | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
*/ | ||
|
||
|
||
import java.io.IOException; | ||
import java.util.*; | ||
|
||
import org.apache.directory.server.dns.io.encoder.*; | ||
import org.apache.directory.server.dns.messages.DnsMessage; | ||
import org.apache.directory.server.dns.messages.MessageType; | ||
import org.apache.directory.server.dns.messages.OpCode; | ||
import org.apache.directory.server.dns.messages.QuestionRecord; | ||
import org.apache.directory.server.dns.messages.RecordType; | ||
import org.apache.directory.server.dns.messages.ResourceRecord; | ||
import org.apache.directory.server.dns.messages.ResponseCode; | ||
import org.apache.directory.server.i18n.I18n; | ||
import org.apache.mina.core.buffer.IoBuffer; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
|
||
/** | ||
* An encoder for DNS messages. The primary usage of the DnsMessageEncoder is | ||
* to call the <code>encode(ByteBuffer, DnsMessage)</code> method which will | ||
* write the message to the outgoing ByteBuffer according to the DnsMessage | ||
* encoding in RFC-1035. | ||
* | ||
* @author <a href="mailto:[email protected]">Apache Directory Project</a> | ||
* @version $Rev$, $Date$ | ||
*/ | ||
public class DnsMessageEncoder | ||
{ | ||
/** the log for this class */ | ||
private static final Logger log = LoggerFactory.getLogger( DnsMessageEncoder.class ); | ||
|
||
/** | ||
* A Hashed Adapter mapping record types to their encoders. | ||
*/ | ||
private static final Map<RecordType, RecordEncoder> DEFAULT_ENCODERS; | ||
|
||
static | ||
{ | ||
Map<RecordType, RecordEncoder> map = new HashMap<RecordType, RecordEncoder>(); | ||
|
||
map.put( RecordType.SOA, new StartOfAuthorityRecordEncoder() ); | ||
map.put( RecordType.A, new AddressRecordEncoder() ); | ||
map.put( RecordType.NS, new NameServerRecordEncoder() ); | ||
map.put( RecordType.CNAME, new CanonicalNameRecordEncoder() ); | ||
map.put( RecordType.PTR, new PointerRecordEncoder() ); | ||
map.put( RecordType.MX, new MailExchangeRecordEncoder() ); | ||
map.put( RecordType.SRV, new ServerSelectionRecordEncoder() ); | ||
map.put( RecordType.TXT, new TextRecordEncoder() ); | ||
map.put( RecordType.DNAME, new DnameRecordEncoder()); | ||
|
||
DEFAULT_ENCODERS = Collections.unmodifiableMap( map ); | ||
} | ||
|
||
|
||
/** | ||
* Encodes the {@link DnsMessage} into the {@link ByteBuffer}. | ||
* | ||
* @param byteBuffer | ||
* @param message | ||
*/ | ||
public void encode( IoBuffer byteBuffer, DnsMessage message ) | ||
{ | ||
byteBuffer.putShort( ( short ) message.getTransactionId() ); | ||
|
||
byte header = ( byte ) 0x00; | ||
header |= encodeMessageType( message.getMessageType() ); | ||
header |= encodeOpCode( message.getOpCode() ); | ||
header |= encodeAuthoritativeAnswer( message.isAuthoritativeAnswer() ); | ||
header |= encodeTruncated( message.isTruncated() ); | ||
header |= encodeRecursionDesired( message.isRecursionDesired() ); | ||
byteBuffer.put( header ); | ||
|
||
header = ( byte ) 0x00; | ||
header |= encodeRecursionAvailable( message.isRecursionAvailable() ); | ||
header |= encodeResponseCode( message.getResponseCode() ); | ||
byteBuffer.put( header ); | ||
|
||
byteBuffer | ||
.putShort( ( short ) ( message.getQuestionRecords() != null ? message.getQuestionRecords().size() : 0 ) ); | ||
byteBuffer.putShort( ( short ) ( message.getAnswerRecords() != null ? message.getAnswerRecords().size() : 0 ) ); | ||
byteBuffer.putShort( ( short ) ( message.getAuthorityRecords() != null ? message.getAuthorityRecords().size() | ||
: 0 ) ); | ||
byteBuffer.putShort( ( short ) ( message.getAdditionalRecords() != null ? message.getAdditionalRecords().size() | ||
: 0 ) ); | ||
|
||
putQuestionRecords( byteBuffer, message.getQuestionRecords() ); | ||
putResourceRecords( byteBuffer, message.getAnswerRecords() ); | ||
putResourceRecords( byteBuffer, message.getAuthorityRecords() ); | ||
putResourceRecords( byteBuffer, message.getAdditionalRecords() ); | ||
} | ||
|
||
|
||
private void putQuestionRecords( IoBuffer byteBuffer, List<QuestionRecord> questions ) | ||
{ | ||
if ( questions == null ) | ||
{ | ||
return; | ||
} | ||
|
||
QuestionRecordEncoder encoder = new QuestionRecordEncoder(); | ||
|
||
Iterator<QuestionRecord> it = questions.iterator(); | ||
|
||
while ( it.hasNext() ) | ||
{ | ||
QuestionRecord question = it.next(); | ||
encoder.put( byteBuffer, question ); | ||
} | ||
} | ||
|
||
|
||
private void putResourceRecords( IoBuffer byteBuffer, List<ResourceRecord> records ) | ||
{ | ||
if ( records == null ) | ||
{ | ||
return; | ||
} | ||
|
||
Iterator<ResourceRecord> it = records.iterator(); | ||
|
||
while ( it.hasNext() ) | ||
{ | ||
ResourceRecord record = it.next(); | ||
|
||
try | ||
{ | ||
put( byteBuffer, record ); | ||
} | ||
catch ( IOException ioe ) | ||
{ | ||
log.error( ioe.getLocalizedMessage(), ioe ); | ||
} | ||
} | ||
} | ||
|
||
|
||
private void put( IoBuffer byteBuffer, ResourceRecord record ) throws IOException | ||
{ | ||
RecordType type = record.getRecordType(); | ||
|
||
RecordEncoder encoder = DEFAULT_ENCODERS.get( type ); | ||
|
||
if ( encoder == null ) | ||
{ | ||
throw new IOException( I18n.err( I18n.ERR_597, type ) ); | ||
} | ||
|
||
encoder.put( byteBuffer, record ); | ||
} | ||
|
||
|
||
private byte encodeMessageType( MessageType messageType ) | ||
{ | ||
byte oneBit = ( byte ) ( messageType.convert() & 0x01 ); | ||
return ( byte ) ( oneBit << 7 ); | ||
} | ||
|
||
|
||
private byte encodeOpCode( OpCode opCode ) | ||
{ | ||
byte fourBits = ( byte ) ( opCode.convert() & 0x0F ); | ||
return ( byte ) ( fourBits << 3 ); | ||
} | ||
|
||
|
||
private byte encodeAuthoritativeAnswer( boolean authoritative ) | ||
{ | ||
if ( authoritative ) | ||
{ | ||
return ( byte ) ( ( byte ) 0x01 << 2 ); | ||
} | ||
return ( byte ) 0; | ||
} | ||
|
||
|
||
private byte encodeTruncated( boolean truncated ) | ||
{ | ||
if ( truncated ) | ||
{ | ||
return ( byte ) ( ( byte ) 0x01 << 1 ); | ||
} | ||
return 0; | ||
} | ||
|
||
|
||
private byte encodeRecursionDesired( boolean recursionDesired ) | ||
{ | ||
if ( recursionDesired ) | ||
{ | ||
return ( byte ) 0x01; | ||
} | ||
return 0; | ||
} | ||
|
||
|
||
private byte encodeRecursionAvailable( boolean recursionAvailable ) | ||
{ | ||
if ( recursionAvailable ) | ||
{ | ||
return ( byte ) ( ( byte ) 0x01 << 7 ); | ||
} | ||
return 0; | ||
} | ||
|
||
|
||
private byte encodeResponseCode( ResponseCode responseCode ) | ||
{ | ||
return ( byte ) ( responseCode.convert() & 0x0F ); | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.