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
|
/*!
* \file zcompile-error.h
*
* \author Lubos Slovak <lubos.slovak@nic.cz>
* \author Marek Vavrusa <marek.vavrusa@nic.cz>
* \author Jan Kadlec <jan.kadlec@nic.cz>
*
* \brief Error codes and function for getting error message.
*
* \addtogroup zoneparser
* @{
*/
/* Copyright (C) 2011 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _KNOTD_ZCOMPILE_ERROR_H_
#define _KNOTD_ZCOMPILE_ERROR_H_
#include "common/errors.h"
/*!
* \brief Error codes used in the server.
*
* Some viable errors are directly mapped
* to libc errno codes.
*/
enum knot_zcompile_error {
/* Directly mapped error codes. */
KNOTDZCOMPILE_EOK = 0,
KNOTDZCOMPILE_ENOMEM = -ENOMEM, /*!< \brief Out of memory. */
KNOTDZCOMPILE_EINVAL = -EINVAL, /*!< \brief Invalid parameter passed. */
/*!
* \brief Parameter not supported.
*/
KNOTDZCOMPILE_ENOTSUP = -ENOTSUP,
KNOTDZCOMPILE_EBUSY = -EBUSY, /*!< \brief Requested resource is busy. */
/*!
* \brief OS lacked necessary resources.
*/
KNOTDZCOMPILE_EAGAIN = -EAGAIN,
KNOTDZCOMPILE_EACCES = -EACCES, /*!< \brief Permission is denied. */
/*!
* \brief Connection is refused.
*/
KNOTDZCOMPILE_ECONNREFUSED = -ECONNREFUSED,
KNOTDZCOMPILE_EISCONN = -EISCONN, /*!< \brief Already connected. */
/*!
* \brief Address already in use.
*/
KNOTDZCOMPILE_EADDRINUSE = -EADDRINUSE,
KNOTDZCOMPILE_ENOENT = -ENOENT, /*!< \brief Resource not found. */
KNOTDZCOMPILE_ERANGE = -ERANGE, /*!< \brief Value is out of range. */
/* Custom error codes. */
KNOTDZCOMPILE_ERROR = -16384, /*!< \brief Generic error. */
KNOTDZCOMPILE_ESYNT, /*!< \brief Syntax error. */
KNOTDZCOMPILE_EBADNODE, /*!< \brief Node error. */
KNOTDZCOMPILE_EBRDATA, /*!< \brief RDATA error. */
KNOTDZCOMPILE_EBADSOA, /*!< \brief SOA owner error. */
KNOTDZCOMPILE_ESOA, /*!< \brief Multiple SOA records. */
KNOTDZCOMPILE_EZONEINVAL, /*!< \brief Invalid zone file. */
KNOTDZCOMPILE_EPARSEFAIL, /*!< \brief Parser fail. */
KNOTDZCOMPILE_ENOIPV6, /*! \brief No IPv6 support. */
KNOTDZCOMPILE_ERROR_COUNT = 22
};
typedef enum knot_zcompile_error knot_zcompile_error_t;
/*! \brief Table linking error messages to error codes. */
extern const error_table_t knot_zcompile_error_msgs[KNOTDZCOMPILE_ERROR_COUNT];
#endif /* _KNOTD_ZCOMPILE_ERROR_H_ */
/*! @} */
|