菜鸟教程小白 发表于 2022-12-13 01:34:13

ios - 在 iOS 中查询 DNS 以查找 NAPTR


                                            <p><p>我在寻找一种方法来查询 DNS 以在 iOS 中找到 NAPTR 时遇到了很多麻烦。似乎有许多相对简单的方法可以解析为 IP,但我特别需要在 DNS 查找中找到所有 NAPTR 记录。如果可能的话,我宁愿这样做而不必引入任何外部库。如果有人能够做到这一点(或我可以推断出的类似事情),我将不胜感激。</p>

<p>所有代码都必须在 iOS 5.0+ 中运行</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我最终使用了 DNSServiceQueryRecord。</p>

<pre><code>            DNSServiceRef sdRef;
            DNSServiceQueryRecord(&amp;sdRef, 0, 0,
                                  &#34;google.com&#34;,
                                  kDNSServiceType_NAPTR,
                                  kDNSServiceClass_IN,
                                  callback,
                                  NULL);

            DNSServiceProcessResult(sdRef);
            DNSServiceRefDeallocate(sdRef);
</code></pre>

<p>在实际使用中,我发现有一个问题,如果没有结果,应用程序会无限期挂起,所以我最终不得不调整我的代码以在结果上添加超时。</p>

<pre><code>/*
Attempt to fetch the NAPTR from the stored server address.Since iOS will continue waiting
until told directly to stop (even if there is no result) we must set our own timeout on the
request (set to 5 seconds).
On success, the callback function is called.On timeout, the kSRVLookupComplete notification
is sent.
*/
- (void)attemptNAPTRFetch {
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
      DNSServiceRef sdRef;
      DNSServiceErrorType err;

      err = DNSServiceQueryRecord(&amp;sdRef, 0, 0,
                                       ],
                                       kDNSServiceType_NAPTR,
                                       kDNSServiceClass_IN,
                                       callback,
                                       NULL);

      // This stuff is necessary so we don&#39;t hang forever if there are no results
      int dns_sd_fd = DNSServiceRefSockFD(sdRef);
      int nfds = dns_sd_fd + 1;
      fd_set readfds;
      struct timeval tv;
      int result;

      int stopNow = 0;
      int timeOut = 5; // Timeout in seconds

      while (!stopNow) {
         FD_ZERO(&amp;readfds);
         FD_SET(dns_sd_fd, &amp;readfds);
         tv.tv_sec = timeOut;
         tv.tv_usec = 0;

         result = select(nfds, &amp;readfds, (fd_set*)NULL, (fd_set*)NULL, &amp;tv);
         if (result &gt; 0) {
               if(FD_ISSET(dns_sd_fd, &amp;readfds)) {
                   err = DNSServiceProcessResult(sdRef);
                   if (err != kDNSServiceErr_NoError){
                     NSLog(@&#34;There was an error&#34;);
                   }
                   stopNow = 1;
               }
         }
         else {
               printf(&#34;select() returned %d errno %d %s\n&#34;, result, errno, strerror(errno));
               if (errno != EINTR) {
                   stopNow = 1;
                   postNotification(kSRVLookupComplete, nil);
               }
         }
      }

      DNSServiceRefDeallocate(sdRef);
   });
}
</code></pre>

<p>那么,对于回调:</p>

<pre><code>static void callback(DNSServiceRef sdRef,
          DNSServiceFlags flags,
          uint32_t interfaceIndex,
          DNSServiceErrorType errorCode,
          const char *fullname,
          uint16_t rrtype,
          uint16_t rrclass,
          uint16_t rdlen,
          const void *rdata,
          uint32_t ttl,
          void *context)
{   
    uint16_t order, pref;
    char flag;
    NSMutableString *service = [ init];
    NSMutableString *replacement = [ init];

    const char *data = (const char*)rdata;

    order = data;
    pref = data;
    flag = data;
    int i = 7;
    while (data != 0){
      ]];
      i++;
    }
    i += 2;
    while(data != 0){
      if(data &gt;= 32 &amp;&amp; data &lt;= 127)
            ]];
      else
            ;
      i++;
    }
    NSLog(@&#34;\nOrder: %i\nPreference: %i\nFlag: %c\nService: %@\nReplacement: %@\n&#34;, order, pref, flag, service, replacement);
}
</code></pre>

<p>这似乎对我有用。您当然可以使用回调中的所有解析数据做任何其他必要的工作,或者将数据存储在某个地方以备后用。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 中查询 DNS 以查找 NAPTR,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15484813/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15484813/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 中查询 DNS 以查找 NAPTR