PageRenderTime 27ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/uClinux-dist/user/dhcp-isc/includes/minires/resolv.h

https://bitbucket.org/__wp__/mb-linux-msli
C Header | 320 lines | 191 code | 25 blank | 104 comment | 1 complexity | ba73e2baea5bb935577343316ad1857c MD5 | raw file
Possible License(s): AGPL-3.0, GPL-2.0, LGPL-2.0, MPL-2.0, ISC, BSD-3-Clause, LGPL-2.1, MPL-2.0-no-copyleft-exception, 0BSD, CC-BY-SA-3.0, GPL-3.0, LGPL-3.0, AGPL-1.0, Unlicense
  1. /*
  2. * Copyright (c) 1983, 1987, 1989
  3. * The Regents of the University of California. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. All advertising materials mentioning features or use of this software
  14. * must display the following acknowledgement:
  15. * This product includes software developed by the University of
  16. * California, Berkeley and its contributors.
  17. * 4. Neither the name of the University nor the names of its contributors
  18. * may be used to endorse or promote products derived from this software
  19. * without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. */
  33. /*
  34. * Portions Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
  35. * Portions Copyright (c) 1995-2003 by Internet Software Consortium
  36. *
  37. * Permission to use, copy, modify, and distribute this software for any
  38. * purpose with or without fee is hereby granted, provided that the above
  39. * copyright notice and this permission notice appear in all copies.
  40. *
  41. * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
  42. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  43. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
  44. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  45. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  46. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  47. * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  48. *
  49. * Internet Systems Consortium, Inc.
  50. * 950 Charter Street
  51. * Redwood City, CA 94063
  52. * <info@isc.org>
  53. * http://www.isc.org/
  54. */
  55. /*
  56. * @(#)resolv.h 8.1 (Berkeley) 6/2/93
  57. * $Id: resolv.h,v 1.4 2005/03/17 20:15:15 dhankins Exp $
  58. */
  59. #ifndef _RESOLV_H_
  60. #define _RESOLV_H_
  61. /*
  62. * This used to be defined in res_query.c, now it's in herror.c.
  63. * [XXX no it's not. It's in irs/irs_data.c]
  64. * It was
  65. * never extern'd by any *.h file before it was placed here. For thread
  66. * aware programs, the last h_errno value set is stored in res->h_errno.
  67. *
  68. * XXX: There doesn't seem to be a good reason for exposing RES_SET_H_ERRNO
  69. * (and __h_errno_set) to the public via <resolv.h>.
  70. * XXX: __h_errno_set is really part of IRS, not part of the resolver.
  71. * If somebody wants to build and use a resolver that doesn't use IRS,
  72. * what do they do? Perhaps something like
  73. * #ifdef WANT_IRS
  74. * # define RES_SET_H_ERRNO(r,x) __h_errno_set(r,x)
  75. * #else
  76. * # define RES_SET_H_ERRNO(r,x) (h_errno = (r)->res_h_errno = (x))
  77. * #endif
  78. */
  79. #define RES_SET_H_ERRNO(r,x) __h_errno_set(r,x)
  80. struct __res_state; /* forward */
  81. void __h_errno_set(struct __res_state *res, int err);
  82. /*
  83. * Resolver configuration file.
  84. * Normally not present, but may contain the address of the
  85. * inital name server(s) to query and the domain search list.
  86. */
  87. #ifndef _PATH_RESCONF
  88. #define _PATH_RESCONF "/etc/resolv.conf"
  89. #endif
  90. typedef enum { res_goahead, res_nextns, res_modified, res_done, res_error }
  91. res_sendhookact;
  92. typedef res_sendhookact (*res_send_qhook) (struct sockaddr_in * const *ns,
  93. double **query,
  94. unsigned *querylen,
  95. double *ans,
  96. unsigned anssiz,
  97. int *resplen);
  98. typedef res_sendhookact (*res_send_rhook) (const struct sockaddr_in *ns,
  99. double *query,
  100. unsigned querylen,
  101. double *ans,
  102. unsigned anssiz,
  103. int *resplen);
  104. struct res_sym {
  105. int number; /* Identifying number, like T_MX */
  106. char * name; /* Its symbolic name, like "MX" */
  107. char * humanname; /* Its fun name, like "mail exchanger" */
  108. };
  109. /*
  110. * Global defines and variables for resolver stub.
  111. */
  112. #define MAXNS 3 /* max # name servers we'll track */
  113. #define MAXDFLSRCH 3 /* # default domain levels to try */
  114. #define MAXDNSRCH 6 /* max # domains in search path */
  115. #define LOCALDOMAINPARTS 2 /* min levels in name that is "local" */
  116. #define RES_TIMEOUT 5 /* min. seconds between retries */
  117. #define MAXRESOLVSORT 10 /* number of net to sort on */
  118. #define RES_MAXNDOTS 15 /* should reflect bit field size */
  119. #define RES_MAXRETRANS 30 /* only for resolv.conf/RES_OPTIONS */
  120. #define RES_MAXRETRY 5 /* only for resolv.conf/RES_OPTIONS */
  121. #define RES_DFLRETRY 2 /* Default #/tries. */
  122. struct __res_state {
  123. int retrans; /* retransmition time interval */
  124. int retry; /* number of times to retransmit */
  125. u_long options; /* option flags - see below. */
  126. int nscount; /* number of name servers */
  127. struct sockaddr_in
  128. nsaddr_list[MAXNS]; /* address of name server */
  129. #define nsaddr nsaddr_list[0] /* for backward compatibility */
  130. u_short id; /* current message id */
  131. char *dnsrch[MAXDNSRCH+1]; /* components of domain to search */
  132. char defdname[256]; /* default domain (deprecated) */
  133. u_long pfcode; /* RES_PRF_ flags - see below. */
  134. unsigned ndots:4; /* threshold for initial abs. query */
  135. unsigned nsort:4; /* number of elements in sort_list[] */
  136. char unused[3];
  137. struct {
  138. struct in_addr addr;
  139. u_int32_t mask;
  140. } sort_list[MAXRESOLVSORT];
  141. res_send_qhook qhook; /* query hook */
  142. res_send_rhook rhook; /* response hook */
  143. int res_h_errno; /* last one set for this context */
  144. int _sock; /* PRIVATE: for res_send i/o */
  145. u_int _flags; /* PRIVATE: see below */
  146. char pad[52]; /* On an i386 this means 512b total. */
  147. };
  148. typedef struct __res_state *res_state;
  149. /*
  150. * Resolver flags (used to be discrete per-module statics ints).
  151. */
  152. #define RES_F_VC 0x00000001 /* socket is TCP */
  153. #define RES_F_CONN 0x00000002 /* socket is connected */
  154. /* res_findzonecut() options */
  155. #define RES_EXHAUSTIVE 0x00000001 /* always do all queries */
  156. /*
  157. * Resolver options (keep these in synch with res_debug.c, please)
  158. */
  159. #define RES_INIT 0x00000001 /* address initialized */
  160. #define RES_DEBUG 0x00000002 /* print debug messages */
  161. #define RES_AAONLY 0x00000004 /* authoritative answers only (!IMPL)*/
  162. #define RES_USEVC 0x00000008 /* use virtual circuit */
  163. #define RES_PRIMARY 0x00000010 /* query primary server only (!IMPL) */
  164. #define RES_IGNTC 0x00000020 /* ignore trucation errors */
  165. #define RES_RECURSE 0x00000040 /* recursion desired */
  166. #define RES_DEFNAMES 0x00000080 /* use default domain name */
  167. #define RES_STAYOPEN 0x00000100 /* Keep TCP socket open */
  168. #define RES_DNSRCH 0x00000200 /* search up local domain tree */
  169. #define RES_INSECURE1 0x00000400 /* type 1 security disabled */
  170. #define RES_INSECURE2 0x00000800 /* type 2 security disabled */
  171. #define RES_NOALIASES 0x00001000 /* shuts off HOSTALIASES feature */
  172. #define RES_USE_INET6 0x00002000 /* use/map IPv6 in gethostbyname() */
  173. #define RES_ROTATE 0x00004000 /* rotate ns list after each query */
  174. #define RES_NOCHECKNAME 0x00008000 /* do not check names for sanity. */
  175. #define RES_KEEPTSIG 0x00010000 /* do not strip TSIG records */
  176. #define RES_DEFAULT (RES_RECURSE | RES_DEFNAMES | RES_DNSRCH)
  177. /*
  178. * Resolver "pfcode" values. Used by dig.
  179. */
  180. #define RES_PRF_STATS 0x00000001
  181. #define RES_PRF_UPDATE 0x00000002
  182. #define RES_PRF_CLASS 0x00000004
  183. #define RES_PRF_CMD 0x00000008
  184. #define RES_PRF_QUES 0x00000010
  185. #define RES_PRF_ANS 0x00000020
  186. #define RES_PRF_AUTH 0x00000040
  187. #define RES_PRF_ADD 0x00000080
  188. #define RES_PRF_HEAD1 0x00000100
  189. #define RES_PRF_HEAD2 0x00000200
  190. #define RES_PRF_TTLID 0x00000400
  191. #define RES_PRF_HEADX 0x00000800
  192. #define RES_PRF_QUERY 0x00001000
  193. #define RES_PRF_REPLY 0x00002000
  194. #define RES_PRF_INIT 0x00004000
  195. /* 0x00008000 */
  196. #if 0
  197. /* Things involving an internal (static) resolver context. */
  198. #ifdef _REENTRANT
  199. extern struct __res_state *__res_state(void);
  200. #define _res (*__res_state())
  201. #else
  202. #ifndef __BIND_NOSTATIC
  203. extern struct __res_state _res;
  204. #endif
  205. #endif
  206. void fp_nquery (const u_char *, int, FILE *);
  207. void fp_query (const u_char *, FILE *);
  208. const char * hostalias (const char *);
  209. void p_query (const u_char *);
  210. void res_close (void);
  211. int res_init (void);
  212. int res_isourserver (const struct sockaddr_in *);
  213. int res_mkquery (int, const char *, int, int, const u_char *,
  214. int, const u_char *, u_char *, int);
  215. int res_query (const char *, int, int, u_char *, int);
  216. int res_querydomain (const char *, const char *, int, int,
  217. u_char *, int);
  218. int res_search (const char *, int, int, u_char *, int);
  219. int res_send (const u_char *, int, u_char *, int);
  220. int res_sendsigned (const u_char *, int, ns_tsig_key *,
  221. u_char *, int);
  222. #if !defined(SHARED_LIBBIND) || defined(LIB)
  223. /*
  224. * If libbind is a shared object (well, DLL anyway)
  225. * these externs break the linker when resolv.h is
  226. * included by a lib client (like named)
  227. * Make them go away if a client is including this
  228. *
  229. */
  230. extern const struct res_sym __p_key_syms[];
  231. extern const struct res_sym __p_cert_syms[];
  232. extern const struct res_sym __p_class_syms[];
  233. extern const struct res_sym __p_type_syms[];
  234. extern const struct res_sym __p_rcode_syms[];
  235. #endif /* SHARED_LIBBIND */
  236. int res_hnok (const char *);
  237. int res_ownok (const char *);
  238. int res_mailok (const char *);
  239. int res_dnok (const char *);
  240. int sym_ston (const struct res_sym *, const char *, int *);
  241. const char * sym_ntos (const struct res_sym *, int, int *);
  242. const char * sym_ntop (const struct res_sym *, int, int *);
  243. int b64_ntop (u_char const *, size_t, char *, size_t);
  244. int b64_pton (char const *, u_char *, size_t);
  245. int loc_aton (const char *ascii, u_char *binary);
  246. const char * loc_ntoa (const u_char *binary, char *ascii);
  247. int dn_skipname (const u_char *, const u_char *);
  248. void putlong (u_int32_t, u_char *);
  249. void putshort (u_int16_t, u_char *);
  250. const char * p_class (int);
  251. const char * p_time (u_int32_t);
  252. const char * p_type (int);
  253. const char * p_rcode (int);
  254. const u_char * p_cdnname (const u_char *, const u_char *, int, FILE *);
  255. const u_char * p_cdname (const u_char *, const u_char *, FILE *);
  256. const u_char * p_fqnname (const u_char *cp, const u_char *msg,
  257. int, char *, int);
  258. const u_char * p_fqname (const u_char *, const u_char *, FILE *);
  259. const char * p_option (u_long option);
  260. char * p_secstodate (u_long);
  261. int dn_count_labels (const char *);
  262. int dn_expand (const u_char *, const u_char *, const u_char *,
  263. char *, int);
  264. u_int res_randomid (void);
  265. int res_nameinquery (const char *, int, int,
  266. const u_char *, const u_char *);
  267. int res_queriesmatch (const u_char *, const u_char *,
  268. const u_char *, const u_char *);
  269. const char * p_section (int section, int opcode);
  270. /* Things involving a resolver context. */
  271. int res_ninit (res_state);
  272. int res_nisourserver (const res_state,
  273. const struct sockaddr_in *);
  274. void fp_resstat (const res_state, FILE *);
  275. void res_npquery (const res_state, const u_char *, int, FILE *);
  276. const char * res_hostalias (const res_state, const char *,
  277. char *, size_t);
  278. int res_nquery (res_state,
  279. const char *, int, int, u_char *, int);
  280. int res_nsearch (res_state, const char *, int,
  281. int, u_char *, int);
  282. int res_nquerydomain (res_state,
  283. const char *, const char *, int, int,
  284. u_char *, int);
  285. int res_nmkquery (res_state,
  286. int, const char *, int, int, const u_char *,
  287. int, const u_char *, u_char *, int);
  288. int res_nsend (res_state, const u_char *, int, u_char *, int);
  289. int res_nsendsigned (res_state, const u_char *, int,
  290. ns_tsig_key *, u_char *, int);
  291. int res_findzonecut (res_state, const char *, ns_class, int,
  292. char *, size_t, struct in_addr *, int);
  293. void res_nclose (res_state);
  294. #endif /* 0 */
  295. #endif /* !_RESOLV_H_ */