1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.example.dns.dot;
17
18 import io.netty.bootstrap.Bootstrap;
19 import io.netty.buffer.ByteBufUtil;
20
21 import io.netty.channel.Channel;
22 import io.netty.channel.ChannelInitializer;
23 import io.netty.channel.ChannelHandlerContext;
24 import io.netty.channel.ChannelPipeline;
25 import io.netty.channel.EventLoopGroup;
26 import io.netty.channel.MultiThreadIoEventLoopGroup;
27 import io.netty.channel.nio.NioIoHandler;
28 import io.netty.channel.socket.SocketChannel;
29 import io.netty.channel.socket.nio.NioSocketChannel;
30 import io.netty.channel.SimpleChannelInboundHandler;
31
32 import io.netty.handler.codec.dns.DefaultDnsQuestion;
33 import io.netty.handler.codec.dns.DefaultDnsResponse;
34 import io.netty.handler.codec.dns.DnsQuestion;
35 import io.netty.handler.codec.dns.DnsQuery;
36 import io.netty.handler.codec.dns.DefaultDnsQuery;
37 import io.netty.handler.codec.dns.DnsOpCode;
38 import io.netty.handler.codec.dns.DnsRecord;
39 import io.netty.handler.codec.dns.DnsSection;
40 import io.netty.handler.codec.dns.DnsRecordType;
41 import io.netty.handler.codec.dns.DnsRawRecord;
42 import io.netty.handler.codec.dns.TcpDnsQueryEncoder;
43 import io.netty.handler.codec.dns.TcpDnsResponseDecoder;
44 import io.netty.handler.ssl.SslContext;
45 import io.netty.handler.ssl.SslContextBuilder;
46 import io.netty.util.NetUtil;
47
48 import java.util.Random;
49 import java.util.concurrent.TimeUnit;
50
51 public final class DoTClient {
52 private static final String QUERY_DOMAIN = "www.example.com";
53 private static final int DNS_SERVER_PORT = 853;
54 private static final String DNS_SERVER_HOST = "8.8.8.8";
55
56 private DoTClient() {
57 }
58
59 private static void handleQueryResp(DefaultDnsResponse msg) {
60 if (msg.count(DnsSection.QUESTION) > 0) {
61 DnsQuestion question = msg.recordAt(DnsSection.QUESTION, 0);
62 System.out.printf("name: %s%n", question.name());
63 }
64 for (int i = 0, count = msg.count(DnsSection.ANSWER); i < count; i++) {
65 DnsRecord record = msg.recordAt(DnsSection.ANSWER, i);
66 if (record.type() == DnsRecordType.A) {
67
68 DnsRawRecord raw = (DnsRawRecord) record;
69 System.out.println(NetUtil.bytesToIpAddress(ByteBufUtil.getBytes(raw.content())));
70 }
71 }
72 }
73
74 public static void main(String[] args) throws Exception {
75 EventLoopGroup group = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
76 try {
77 final SslContext sslContext = SslContextBuilder.forClient()
78 .protocols("TLSv1.3", "TLSv1.2")
79 .build();
80
81 Bootstrap b = new Bootstrap();
82 b.group(group)
83 .channel(NioSocketChannel.class)
84 .handler(new ChannelInitializer<SocketChannel>() {
85 @Override
86 protected void initChannel(SocketChannel ch) {
87 ChannelPipeline p = ch.pipeline();
88 p.addLast(sslContext.newHandler(ch.alloc(), DNS_SERVER_HOST, DNS_SERVER_PORT))
89 .addLast(new TcpDnsQueryEncoder())
90 .addLast(new TcpDnsResponseDecoder())
91 .addLast(new SimpleChannelInboundHandler<DefaultDnsResponse>() {
92 @Override
93 protected void channelRead0(ChannelHandlerContext ctx, DefaultDnsResponse msg) {
94 try {
95 handleQueryResp(msg);
96 } finally {
97 ctx.close();
98 }
99 }
100 });
101 }
102 });
103 final Channel ch = b.connect(DNS_SERVER_HOST, DNS_SERVER_PORT).sync().channel();
104
105 int randomID = new Random().nextInt(60000 - 1000) + 1000;
106 DnsQuery query = new DefaultDnsQuery(randomID, DnsOpCode.QUERY)
107 .setRecord(DnsSection.QUESTION, new DefaultDnsQuestion(QUERY_DOMAIN, DnsRecordType.A));
108 ch.writeAndFlush(query).sync();
109 boolean success = ch.closeFuture().await(10, TimeUnit.SECONDS);
110 if (!success) {
111 System.err.println("dns query timeout!");
112 ch.close().sync();
113 }
114 } finally {
115 group.shutdownGracefully();
116 }
117 }
118 }