View Javadoc
1   /*
2    * Copyright 2020 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  package io.netty.example.dns.tcp;
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.nio.NioEventLoopGroup;
27  import io.netty.channel.socket.SocketChannel;
28  import io.netty.channel.socket.nio.NioSocketChannel;
29  import io.netty.channel.SimpleChannelInboundHandler;
30  
31  import io.netty.handler.codec.dns.DefaultDnsQuestion;
32  import io.netty.handler.codec.dns.DefaultDnsResponse;
33  import io.netty.handler.codec.dns.DnsQuestion;
34  import io.netty.handler.codec.dns.DnsQuery;
35  import io.netty.handler.codec.dns.DefaultDnsQuery;
36  import io.netty.handler.codec.dns.DnsOpCode;
37  import io.netty.handler.codec.dns.DnsRecord;
38  import io.netty.handler.codec.dns.DnsSection;
39  import io.netty.handler.codec.dns.DnsRecordType;
40  import io.netty.handler.codec.dns.DnsRawRecord;
41  import io.netty.handler.codec.dns.TcpDnsQueryEncoder;
42  import io.netty.handler.codec.dns.TcpDnsResponseDecoder;
43  import io.netty.util.NetUtil;
44  
45  import java.util.Random;
46  import java.util.concurrent.TimeUnit;
47  
48  public final class TcpDnsClient {
49      private static final String QUERY_DOMAIN = "www.example.com";
50      private static final int DNS_SERVER_PORT = 53;
51      private static final String DNS_SERVER_HOST = "8.8.8.8";
52  
53      private TcpDnsClient() {
54      }
55  
56      private static void handleQueryResp(DefaultDnsResponse msg) {
57          if (msg.count(DnsSection.QUESTION) > 0) {
58              DnsQuestion question = msg.recordAt(DnsSection.QUESTION, 0);
59              System.out.printf("name: %s%n", question.name());
60          }
61          for (int i = 0, count = msg.count(DnsSection.ANSWER); i < count; i++) {
62              DnsRecord record = msg.recordAt(DnsSection.ANSWER, i);
63              if (record.type() == DnsRecordType.A) {
64                  //just print the IP after query
65                  DnsRawRecord raw = (DnsRawRecord) record;
66                  System.out.println(NetUtil.bytesToIpAddress(ByteBufUtil.getBytes(raw.content())));
67              }
68          }
69      }
70  
71      public static void main(String[] args) throws Exception {
72          EventLoopGroup group = new NioEventLoopGroup();
73          try {
74              Bootstrap b = new Bootstrap();
75              b.group(group)
76                      .channel(NioSocketChannel.class)
77                      .handler(new ChannelInitializer<SocketChannel>() {
78                          @Override
79                          protected void initChannel(SocketChannel ch) {
80                              ChannelPipeline p = ch.pipeline();
81                              p.addLast(new TcpDnsQueryEncoder())
82                                      .addLast(new TcpDnsResponseDecoder())
83                                      .addLast(new SimpleChannelInboundHandler<DefaultDnsResponse>() {
84                                          @Override
85                                          protected void channelRead0(ChannelHandlerContext ctx, DefaultDnsResponse msg) {
86                                              try {
87                                                  handleQueryResp(msg);
88                                              } finally {
89                                                  ctx.close();
90                                              }
91                                          }
92                                      });
93                          }
94                      });
95  
96              final Channel ch = b.connect(DNS_SERVER_HOST, DNS_SERVER_PORT).sync().channel();
97  
98              int randomID = new Random().nextInt(60000 - 1000) + 1000;
99              DnsQuery query = new DefaultDnsQuery(randomID, DnsOpCode.QUERY)
100                     .setRecord(DnsSection.QUESTION, new DefaultDnsQuestion(QUERY_DOMAIN, DnsRecordType.A));
101             ch.writeAndFlush(query).sync();
102             boolean success = ch.closeFuture().await(10, TimeUnit.SECONDS);
103             if (!success) {
104                 System.err.println("dns query timeout!");
105                 ch.close().sync();
106             }
107         } finally {
108             group.shutdownGracefully();
109         }
110     }
111 }