/usr/include/ptclib/pdns.h is in libpt-dev 2.10.11~dfsg-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | /*
* pdns.h
*
* PWLib library for DNS lookup services
*
* Portable Windows Library
*
* Copyright (c) 2003 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): ______________________________________.
*
* $Revision: 28568 $
* $Author: rjongbloed $
* $Date: 2012-11-22 00:16:50 -0600 (Thu, 22 Nov 2012) $
*/
#ifndef PTLIB_PDNS_H
#define PTLIB_PDNS_H
#if P_DNS
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <ptlib/sockets.h>
#include <ptclib/random.h>
#include <ptclib/url.h>
#if defined(_WIN32)
#include <windns.h>
#include <ntverp.h>
// Accommodate spelling error in windns.h
enum { DnsSectionAdditional = DnsSectionAddtional };
#if VER_PRODUCTBUILD < 6000
typedef struct
{
WORD wOrder;
WORD wPreference;
PSTR pFlags;
PSTR pService;
PSTR pRegularExpression;
PSTR pReplacement;
}
DNS_NAPTR_DATA;
#endif
#else /* _WIN32 */
#define P_HAS_RESOLVER 1 // set if using Unix-style DNS routines
#include <arpa/nameser.h>
#include <resolv.h>
#if defined(P_MACOSX) && (P_MACOSX >= 700)
#include <arpa/nameser_compat.h>
#endif
#endif // _WIN32
#ifdef P_HAS_RESOLVER
//////////////////////////////////////////////////////////////////////////
//
// these classes provide an emulation of the Microsoft DNS API
// on non-Window systems
//
#ifndef T_SRV
#define T_SRV 33
#endif
#ifndef T_NAPTR
#define T_NAPTR 35
#endif
#define DNS_STATUS int
#define DNS_TYPE_SRV T_SRV
#define DNS_TYPE_MX T_MX
#define DNS_TYPE_A T_A
#define DNS_TYPE_AAAA T_AAAA
#define DNS_TYPE_NAPTR T_NAPTR
#define DnsFreeRecordList 1
#define DNS_QUERY_STANDARD 0
#define DNS_QUERY_BYPASS_CACHE 0
typedef struct _DnsAData {
DWORD IpAddress;
} DNS_A_DATA;
typedef struct _DnsAAAAData {
DWORD Ip6Address[4];
} DNS_AAAA_DATA;
typedef struct {
char pNameExchange[MAXDNAME];
WORD wPreference;
} DNS_MX_DATA;
typedef struct {
char pNameHost[MAXDNAME];
} DNS_PTR_DATA;
typedef struct _DnsSRVData {
char pNameTarget[MAXDNAME];
WORD wPriority;
WORD wWeight;
WORD wPort;
} DNS_SRV_DATA;
typedef struct _DnsNULLData {
DWORD dwByteCount;
char data[1];
} DNS_NULL_DATA;
typedef struct _DnsRecordFlags
{
unsigned Section : 2;
unsigned Delete : 1;
unsigned CharSet : 2;
unsigned Unused : 3;
unsigned Reserved : 24;
} DNS_RECORD_FLAGS;
typedef enum _DnsSection
{
DnsSectionQuestion,
DnsSectionAnswer,
DnsSectionAuthority,
DnsSectionAdditional,
} DNS_SECTION;
class DnsRecord {
public:
DnsRecord * pNext;
char pName[MAXDNAME];
WORD wType;
WORD wDataLength;
union {
DWORD DW; ///< flags as DWORD
DNS_RECORD_FLAGS S; ///< flags as structure
} Flags;
union {
DNS_A_DATA A;
DNS_AAAA_DATA AAAA;
DNS_MX_DATA MX;
DNS_PTR_DATA NS;
DNS_SRV_DATA SRV;
DNS_NULL_DATA Null;
} Data;
};
typedef DnsRecord DNS_RECORD;
typedef DnsRecord * PDNS_RECORD;
extern void DnsRecordListFree(PDNS_RECORD rec, int FreeType);
extern PDNS_RECORD DnsRecordSetCopy(PDNS_RECORD src);
extern DNS_STATUS DnsQuery_A(const char * service,
WORD requestType,
DWORD options,
void *,
PDNS_RECORD * results,
void *);
#endif // P_HAS_RESOLVER
namespace PDNS {
///////////////////////////////////////////////////////////////////////////
DNS_STATUS Cached_DnsQuery(
const char * name,
WORD type,
DWORD options,
void * extra,
PDNS_RECORD * queryResults,
void * reserved
);
//////////////////////////////////////////////////////////////////////////
//
// this template automates the creation of a list of records for
// a specific type of DNS lookup
//
template <unsigned type, class RecordListType, class RecordType>
PBoolean Lookup(const PString & name, RecordListType & recordList)
{
if (name.IsEmpty())
return false;
recordList.RemoveAll();
PDNS_RECORD results = NULL;
DNS_STATUS status = Cached_DnsQuery((const char *)name,
type,
DNS_QUERY_STANDARD,
NULL,
&results,
NULL);
if (status != 0)
return false;
// find records matching the correct type
PDNS_RECORD dnsRecord = results;
while (dnsRecord != NULL) {
RecordType * record = recordList.HandleDNSRecord(dnsRecord, results);
if (record != NULL)
recordList.Append(record);
dnsRecord = dnsRecord->pNext;
}
if (results != NULL)
DnsRecordListFree(results, DnsFreeRecordList);
return recordList.GetSize() != 0;
}
/////////////////////////////////////////////////////////////
class SRVRecord : public PObject
{
PCLASSINFO(SRVRecord, PObject);
public:
SRVRecord()
{ used = false; }
Comparison Compare(const PObject & obj) const;
void PrintOn(ostream & strm) const;
PString hostName;
PIPSocket::Address hostAddress;
PBoolean used;
WORD port;
WORD priority;
WORD weight;
};
PDECLARE_SORTED_LIST(SRVRecordList, PDNS::SRVRecord)
public:
void PrintOn(ostream & strm) const;
SRVRecord * GetFirst();
SRVRecord * GetNext();
PDNS::SRVRecord * HandleDNSRecord(PDNS_RECORD dnsRecord, PDNS_RECORD results);
protected:
PINDEX priPos;
PWORDArray priList;
};
/**
* return a list of DNS SRV record with the specified service type
*/
inline PBoolean GetRecords(const PString & service, SRVRecordList & serviceList)
{ return Lookup<DNS_TYPE_SRV, SRVRecordList, SRVRecord>(service, serviceList); }
/**
* provided for backwards compatibility
*/
inline PBoolean GetSRVRecords(
const PString & service,
SRVRecordList & serviceList
)
{ return GetRecords(service, serviceList); }
/**
* return a list of DNS SRV record with the specified service, type and domain
*/
PBoolean GetSRVRecords(
const PString & service,
const PString & type,
const PString & domain,
SRVRecordList & serviceList
);
/**
* Perform a DNS lookup of the specified service
* @return true if the service could be resolved, else false
*/
PBoolean LookupSRV(
const PString & srvQuery,
WORD defaultPort,
PIPSocketAddressAndPortVector & addrList
);
PBoolean LookupSRV(
const PString & domain, ///< domain to lookup
const PString & service, ///< service to use
WORD defaultPort, ///< default por to use
PIPSocketAddressAndPortVector & addrList ///< returned list of sockets and ports
);
PBoolean LookupSRV(
const PURL & url, ///< URL to lookup
const PString & service, ///< service to use
PStringList & returnStr ///< resolved addresses, if return value is true
);
////////////////////////////////////////////////////////////////
class MXRecord : public PObject
{
PCLASSINFO(MXRecord, PObject);
public:
MXRecord()
{ used = false; }
Comparison Compare(const PObject & obj) const;
void PrintOn(ostream & strm) const;
PString hostName;
PIPSocket::Address hostAddress;
PBoolean used;
WORD preference;
};
PDECLARE_SORTED_LIST(MXRecordList, PDNS::MXRecord)
public:
void PrintOn(ostream & strm) const;
MXRecord * GetFirst();
MXRecord * GetNext();
PDNS::MXRecord * HandleDNSRecord(PDNS_RECORD dnsRecord, PDNS_RECORD results);
protected:
PINDEX lastIndex;
};
/**
* return a list of MX records for the specified domain
*/
inline PBoolean GetRecords(
const PString & domain,
MXRecordList & serviceList
)
{ return Lookup<DNS_TYPE_MX, MXRecordList, MXRecord>(domain, serviceList); }
/**
* provided for backwards compatibility
*/
inline PBoolean GetMXRecords(
const PString & domain,
MXRecordList & serviceList
)
{
return GetRecords(domain, serviceList);
}
}; // namespace PDNS
#endif // P_DNS
#endif // PTLIB_PDNS_H
// End Of File ///////////////////////////////////////////////////////////////
|