]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/bind9/lib/lwres/herror.c
MFV 262445:
[FreeBSD/stable/9.git] / contrib / bind9 / lib / lwres / herror.c
1 /*
2  * Portions Copyright (C) 2004, 2005, 2007, 2011, 2012, 2014  Internet Systems Consortium, Inc. ("ISC")
3  * Portions Copyright (C) 2000, 2001, 2003  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /*
19  * Copyright (c) 1987, 1993
20  *    The Regents of the University of California.  All rights reserved.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the above copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. Neither the name of the University nor the names of its contributors
31  *    may be used to endorse or promote products derived from this software
32  *    without specific prior written permission.
33  *
34  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
35  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
38  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
42  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
43  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44  * SUCH DAMAGE.
45  */
46
47 /*! \file herror.c
48    lwres_herror() prints the string s on stderr followed by the string
49    generated by lwres_hstrerror() for the error code stored in the global
50    variable lwres_h_errno.
51
52    lwres_hstrerror() returns an appropriate string for the error code
53    gievn by err. The values of the error codes and messages are as
54    follows:
55
56 \li   #NETDB_SUCCESS: Resolver Error 0 (no error)
57
58 \li   #HOST_NOT_FOUND: Unknown host
59
60 \li #TRY_AGAIN: Host name lookup failure
61
62 \li   #NO_RECOVERY: Unknown server error
63
64 \li   #NO_DATA: No address associated with name
65
66  */
67
68 #if defined(LIBC_SCCS) && !defined(lint)
69 static const char sccsid[] = "@(#)herror.c      8.1 (Berkeley) 6/4/93";
70 static const char rcsid[] =
71         "$Id$";
72 #endif /* LIBC_SCCS and not lint */
73
74 #include <config.h>
75
76 #include <stdio.h>
77
78 #include <lwres/netdb.h>
79 #include <lwres/platform.h>
80
81 LIBLWRES_EXTERNAL_DATA int      lwres_h_errno;
82
83 /*!
84  * these have never been declared in any header file so make them static
85  */
86
87 static const char *h_errlist[] = {
88         "Resolver Error 0 (no error)",          /*%< 0 no error */
89         "Unknown host",                         /*%< 1 HOST_NOT_FOUND */
90         "Host name lookup failure",             /*%< 2 TRY_AGAIN */
91         "Unknown server error",                 /*%< 3 NO_RECOVERY */
92         "No address associated with name",      /*%< 4 NO_ADDRESS */
93 };
94
95 static int      h_nerr = sizeof(h_errlist) / sizeof(h_errlist[0]);
96
97
98 /*!
99  * herror --
100  *      print the error indicated by the h_errno value.
101  */
102 void
103 lwres_herror(const char *s) {
104         fprintf(stderr, "%s: %s\n", s, lwres_hstrerror(lwres_h_errno));
105 }
106
107 /*!
108  * hstrerror --
109  *      return the string associated with a given "host" errno value.
110  */
111 const char *
112 lwres_hstrerror(int err) {
113         if (err < 0)
114                 return ("Resolver internal error");
115         else if (err < h_nerr)
116                 return (h_errlist[err]);
117         return ("Unknown resolver error");
118 }