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
|
/*
Copyright (C) 2012 Red Hat
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/>.
Authors:
Simo Sorce <ssorce@redhat.com>
*/
#ifndef __SSSD_UTIL_ERRORS_H__
#define __SSSD_UTIL_ERRORS_H__
#ifndef HAVE_ERRNO_T
#define HAVE_ERRNO_T
typedef int errno_t;
#endif
/*
* We define a specific number space so that we do not overlap with other
* generic errors returned by various libraries. This will make it easy
* to have functions that double check that what was returned was an SSSD
* specific error where it matters. For example we may want to ensure some
* particularly sensitive paths only return SSSD-specific errors as that
* will ensure all error conditions have been explicitly dealt with,
* and are not the result of assigning the wrong return result.
*
* Basic system errno errors can still be used, but when an error condition
* does not properly map to a system error we should use an SSSD specific one
*/
#define ERR_BASE 0x555D0000
#define ERR_MASK 0x0000FFFF
/* never use ERR_INVALID, it is used for catching and returning
* information on invalid error numbers */
/* never use ERR_LAST, this represents the maximum error value available
* and is used to validate error codes */
enum sssd_errors {
ERR_INVALID = ERR_BASE + 0,
ERR_INTERNAL,
ERR_SSSD_RUNNING,
ERR_SSSD_NOT_RUNNING,
ERR_OFFLINE,
ERR_TERMINATED,
ERR_INVALID_DATA_TYPE,
ERR_MISSING_DP_TARGET,
ERR_ACCOUNT_UNKNOWN,
ERR_KRB5_PRINCIPAL_NOT_FOUND,
ERR_INVALID_CRED_TYPE,
ERR_NO_CREDS,
ERR_CREDS_EXPIRED,
ERR_CREDS_EXPIRED_CCACHE,
ERR_CREDS_INVALID,
ERR_NO_CACHED_CREDS,
ERR_NO_MATCHING_CREDS,
ERR_CACHED_CREDS_EXPIRED,
ERR_AUTH_DENIED,
ERR_AUTH_FAILED,
ERR_CHPASS_DENIED,
ERR_CHPASS_FAILED,
ERR_NETWORK_IO,
ERR_ACCOUNT_EXPIRED,
ERR_PASSWORD_EXPIRED,
ERR_PASSWORD_EXPIRED_REJECT,
ERR_PASSWORD_EXPIRED_WARN,
ERR_PASSWORD_EXPIRED_RENEW,
ERR_ACCESS_DENIED,
ERR_SRV_NOT_FOUND,
ERR_SRV_LOOKUP_ERROR,
ERR_SRV_DUPLICATES,
ERR_DYNDNS_FAILED,
ERR_DYNDNS_TIMEOUT,
ERR_DYNDNS_OFFLINE,
ERR_INPUT_PARSE,
ERR_NOT_FOUND,
ERR_DOMAIN_NOT_FOUND,
ERR_NO_DOMAIN_ENABLED,
ERR_INVALID_FILTER,
ERR_NO_POSIX,
ERR_DUP_EXTRA_ATTR,
ERR_INVALID_EXTRA_ATTR,
ERR_SBUS_GET_SENDER_ERROR,
ERR_SBUS_NO_SENDER,
ERR_SBUS_INVALID_PATH,
ERR_NO_SIDS,
ERR_SBUS_NOSUP,
ERR_NO_SYSBUS,
ERR_REFERRAL,
ERR_SELINUX_CONTEXT,
ERR_SELINUX_NOT_MANAGED,
ERR_SELINUX_USER_NOT_FOUND,
ERR_REGEX_NOMATCH,
ERR_TIMESPEC_NOT_SUPPORTED,
ERR_INVALID_CONFIG,
ERR_MALFORMED_ENTRY,
ERR_UNEXPECTED_ENTRY_TYPE,
ERR_SIMPLE_GROUPS_MISSING,
ERR_HOMEDIR_IS_NULL,
ERR_TRUST_NOT_SUPPORTED,
ERR_IPA_GETKEYTAB_FAILED,
ERR_TRUST_FOREST_UNKNOWN,
ERR_P11_CHILD,
ERR_P11_CHILD_TIMEOUT,
ERR_P11_PIN_LOCKED,
ERR_PASSKEY_CHILD,
ERR_PASSKEY_CHILD_TIMEOUT,
ERR_ADDR_FAMILY_NOT_SUPPORTED,
ERR_SBUS_SENDER_BUS,
ERR_SUBDOM_INACTIVE,
ERR_ACCOUNT_LOCKED,
ERR_RENEWAL_CHILD,
ERR_SBUS_REQUEST_HANDLED,
ERR_SYSDB_VERSION_TOO_OLD,
ERR_SYSDB_VERSION_TOO_NEW,
ERR_NO_TS,
ERR_TS_CACHE_MISS,
ERR_DEREF_THRESHOLD,
ERR_NON_SSSD_USER,
ERR_WRONG_NAME_FORMAT,
ERR_SEC_INVALID_CONTAINERS_NEST_LEVEL,
ERR_SEC_INVALID_TOO_MANY_SECRETS,
ERR_SEC_PAYLOAD_SIZE_IS_TOO_LARGE,
ERR_NO_AUTH_METHOD_AVAILABLE,
ERR_SC_AUTH_NOT_SUPPORTED,
ERR_KCM_MALFORMED_IN_PKT,
ERR_KCM_OP_NOT_IMPLEMENTED,
ERR_KCM_CC_END,
ERR_KCM_WRONG_CCNAME_FORMAT,
ERR_JSON_ENCODING,
ERR_JSON_DECODING,
ERR_INVALID_CERT,
ERR_SSL_FAILURE,
ERR_UNABLE_TO_VERIFY_PEER,
ERR_UNABLE_TO_RESOLVE_HOST,
ERR_GET_ACCT_DOM_NOT_SUPPORTED,
ERR_GET_ACCT_SUBID_RANGES_NOT_SUPPORTED,
ERR_GET_ACCT_DOM_CACHED,
ERR_ID_OUTSIDE_RANGE,
ERR_GID_DUPLICATED,
ERR_MULTIPLE_ENTRIES,
ERR_UNSUPPORTED_RANGE_TYPE,
ERR_PROXY_CHILD_SIGNAL,
ERR_CHECK_PAC_FAILED,
/* DBUS Errors */
ERR_SBUS_KILL_CONNECTION,
ERR_SBUS_EMPTY_STRING,
ERR_SBUS_CONNECTION_LIMIT,
ERR_SBUS_INVALID_STRING,
ERR_SBUS_INVALID_TYPE,
ERR_SBUS_UNKNOWN_SERVICE,
ERR_SBUS_UNKNOWN_INTERFACE,
ERR_SBUS_UNKNOWN_PROPERTY,
ERR_SBUS_UNKNOWN_OWNER,
ERR_SBUS_NO_REPLY,
/* ini parsing errors */
ERR_INI_OPEN_FAILED,
ERR_INI_INVALID_PERMISSION,
ERR_INI_PARSE_FAILED,
ERR_INI_ADD_SNIPPETS_FAILED,
ERR_TLS_HANDSHAKE_INTERRUPTED,
ERR_CA_DB_NOT_FOUND,
ERR_LAST /* ALWAYS LAST */
};
#define SSSD_ERR_BASE(err) ((err) & ~ERR_MASK)
#define SSSD_ERR_IDX(err) ((err) & ERR_MASK)
#define IS_SSSD_ERROR(err) \
(((err) > 0) && (SSSD_ERR_BASE(err) == ERR_BASE) && ((err) <= ERR_LAST))
#define ERR_OK 0
/* Backwards compat */
#ifndef EOK
#define EOK ERR_OK
#endif
/**
* @brief return a string describing the error number like strerror()
*
* @param error An errno_t number, can be an SSSD error or a system error
*
* @return A statically allocated string.
*/
const char *sss_strerror(errno_t error);
/* return ldb error converted to an errno */
errno_t sss_ldb_error_to_errno(int ldberr);
#endif /* __SSSD_UTIL_ERRORS_H__ */
|