DAOS API (v2.0)
Loading...
Searching...
No Matches
daos_errno.h
1
10#ifndef __DAOS_ERRNO_H__
11#define __DAOS_ERRNO_H__
12
13#if defined(__cplusplus)
14extern "C" {
15#endif
16
21/*
22 * This preprocessor machinery defines the errno values but also
23 * enables the internal definition of d_errstr. A new macro should
24 * be defined for each non-contiguous range
25 */
26
27#define D_FOREACH_GURT_ERR(ACTION) \
28 \
29 ACTION(DER_NO_PERM, (DER_ERR_GURT_BASE + 1), \
30 Operation not permitted) \
31 \
32 ACTION(DER_NO_HDL, (DER_ERR_GURT_BASE + 2), \
33 Invalid handle) \
34 \
35 ACTION(DER_INVAL, (DER_ERR_GURT_BASE + 3), \
36 Invalid parameters) \
37 \
38 ACTION(DER_EXIST, (DER_ERR_GURT_BASE + 4), \
39 Entity already exists) \
40 \
41 ACTION(DER_NONEXIST, (DER_ERR_GURT_BASE + 5), \
42 The specified entity does not exist) \
43 \
44 ACTION(DER_UNREACH, (DER_ERR_GURT_BASE + 6), \
45 Unreachable node) \
46 \
47 ACTION(DER_NOSPACE, (DER_ERR_GURT_BASE + 7), \
48 No space on storage target) \
49 \
50 ACTION(DER_ALREADY, (DER_ERR_GURT_BASE + 8), \
51 Operation already performed) \
52 \
53 ACTION(DER_NOMEM, (DER_ERR_GURT_BASE + 9), \
54 Out of memory) \
55 \
56 ACTION(DER_NOSYS, (DER_ERR_GURT_BASE + 10), \
57 Function not implemented) \
58 \
59 ACTION(DER_TIMEDOUT, (DER_ERR_GURT_BASE + 11), \
60 Time out) \
61 \
62 ACTION(DER_BUSY, (DER_ERR_GURT_BASE + 12), \
63 Device or resource busy) \
64 \
65 ACTION(DER_AGAIN, (DER_ERR_GURT_BASE + 13), \
66 Try again) \
67 \
68 ACTION(DER_PROTO, (DER_ERR_GURT_BASE + 14), \
69 Incompatible protocol) \
70 \
71 ACTION(DER_UNINIT, (DER_ERR_GURT_BASE + 15), \
72 Device or resource not initialized) \
73 \
74 ACTION(DER_TRUNC, (DER_ERR_GURT_BASE + 16), \
75 Buffer too short) \
76 \
77 ACTION(DER_OVERFLOW, (DER_ERR_GURT_BASE + 17), \
78 Data too long for defined data type or buffer size) \
79 \
80 ACTION(DER_CANCELED, (DER_ERR_GURT_BASE + 18), \
81 Operation canceled) \
82 \
83 ACTION(DER_OOG, (DER_ERR_GURT_BASE + 19), \
84 Out of group or member list) \
85 \
86 ACTION(DER_HG, (DER_ERR_GURT_BASE + 20), \
87 Transport layer mercury error) \
88 \
89 ACTION(DER_UNREG, (DER_ERR_GURT_BASE + 21), \
90 RPC or protocol version not registered) \
91 \
92 ACTION(DER_ADDRSTR_GEN, (DER_ERR_GURT_BASE + 22), \
93 Failed to generate an address string) \
94 \
95 ACTION(DER_PMIX, (DER_ERR_GURT_BASE + 23), \
96 PMIx layer error) \
97 \
98 ACTION(DER_IVCB_FORWARD, (DER_ERR_GURT_BASE + 24), \
99 Incast variable unavailable locally. Must forward) \
100 \
101 ACTION(DER_MISC, (DER_ERR_GURT_BASE + 25), \
102 Miscellaneous error) \
103 \
104 ACTION(DER_BADPATH, (DER_ERR_GURT_BASE + 26), \
105 Bad path name) \
106 \
107 ACTION(DER_NOTDIR, (DER_ERR_GURT_BASE + 27), \
108 Not a directory) \
109 \
110 ACTION(DER_CORPC_INCOMPLETE, (DER_ERR_GURT_BASE + 28), \
111 Collective RPC failed) \
112 \
113 ACTION(DER_NO_RAS_RANK, (DER_ERR_GURT_BASE + 29), \
114 No rank is subscribed to RAS) \
115 \
116 ACTION(DER_NOTATTACH, (DER_ERR_GURT_BASE + 30), \
117 Service group not attached) \
118 \
119 ACTION(DER_MISMATCH, (DER_ERR_GURT_BASE + 31), \
120 Version mismatch) \
121 \
122 ACTION(DER_EXCLUDED, (DER_ERR_GURT_BASE + 32), \
123 Rank has been excluded) \
124 \
125 ACTION(DER_NOREPLY, (DER_ERR_GURT_BASE + 33), \
126 User provided RPC handler did not send reply back) \
127 \
128 ACTION(DER_DOS, (DER_ERR_GURT_BASE + 34), \
129 Denial of service) \
130 \
131 ACTION(DER_BAD_TARGET, (DER_ERR_GURT_BASE + 35), \
132 Incorrect target for the RPC) \
133 \
134 ACTION(DER_GRPVER, (DER_ERR_GURT_BASE + 36), \
135 Group versioning mismatch) \
136 \
137 ACTION(DER_HLC_SYNC, (DER_ERR_GURT_BASE + 37), \
138 HLC synchronization error) \
139 \
140 ACTION(DER_NO_SHMEM, (DER_ERR_GURT_BASE + 38), \
141 Not enough shared memory free) \
142 \
143 ACTION(DER_ADD_METRIC_FAILED, (DER_ERR_GURT_BASE + 39), \
144 Failed to add the specified metric) \
145 \
146 ACTION(DER_DURATION_MISMATCH, (DER_ERR_GURT_BASE + 40), \
147 Duration end not paired with duration start) \
148 \
149 ACTION(DER_OP_NOT_PERMITTED, (DER_ERR_GURT_BASE + 41), \
150 Operation not permitted for metric type provided) \
151 \
152 ACTION(DER_EXCEEDS_PATH_LEN, (DER_ERR_GURT_BASE + 42), \
153 Path name exceeds permitted length) \
154 \
155 ACTION(DER_METRIC_NOT_FOUND, (DER_ERR_GURT_BASE + 43), \
156 Read failed because metric not found) \
157 \
158 ACTION(DER_SHMEM_PERMS, (DER_ERR_GURT_BASE + 44), \
159 Unable to access shared memory segment due to \
160 incompatible user or group permissions)
163#define D_FOREACH_DAOS_ERR(ACTION) \
164 \
165 ACTION(DER_IO, (DER_ERR_DAOS_BASE + 1), \
166 I/O error) \
167 \
168 ACTION(DER_FREE_MEM, (DER_ERR_DAOS_BASE + 2), \
169 Memory free error) \
170 \
171 ACTION(DER_ENOENT, (DER_ERR_DAOS_BASE + 3), \
172 Entity not found) \
173 \
174 ACTION(DER_NOTYPE, (DER_ERR_DAOS_BASE + 4), \
175 Unknown object type) \
176 \
177 ACTION(DER_NOSCHEMA, (DER_ERR_DAOS_BASE + 5), \
178 Unknown object schema) \
179 \
180 ACTION(DER_NOLOCAL, (DER_ERR_DAOS_BASE + 6), \
181 Object is not local) \
182 \
183 ACTION(DER_STALE, (DER_ERR_DAOS_BASE + 7), \
184 Stale pool map version) \
185 \
186 ACTION(DER_NOTLEADER, (DER_ERR_DAOS_BASE + 8), \
187 Not service leader) \
188 \
189 ACTION(DER_TGT_CREATE, (DER_ERR_DAOS_BASE + 9), \
190 Target create error) \
191 \
192 ACTION(DER_EP_RO, (DER_ERR_DAOS_BASE + 10), \
193 Epoch is read only) \
194 \
195 ACTION(DER_EP_OLD, (DER_ERR_DAOS_BASE + 11), \
196 Epoch is too old. All data have been recycled) \
197 \
198 ACTION(DER_KEY2BIG, (DER_ERR_DAOS_BASE + 12), \
199 Key is too large) \
200 \
201 ACTION(DER_REC2BIG, (DER_ERR_DAOS_BASE + 13), \
202 Record is too large) \
203 \
204 ACTION(DER_IO_INVAL, (DER_ERR_DAOS_BASE + 14), \
205 I/O buffers do not match object extents) \
206 \
207 ACTION(DER_EQ_BUSY, (DER_ERR_DAOS_BASE + 15), \
208 Event queue is busy) \
209 \
210 ACTION(DER_DOMAIN, (DER_ERR_DAOS_BASE + 16), \
211 Domain of cluster component do not match) \
212 \
213 ACTION(DER_SHUTDOWN, (DER_ERR_DAOS_BASE + 17), \
214 Service should shut down) \
215 \
216 ACTION(DER_INPROGRESS, (DER_ERR_DAOS_BASE + 18), \
217 Operation now in progress) \
218 \
219 ACTION(DER_NOTAPPLICABLE, (DER_ERR_DAOS_BASE + 19), \
220 Not applicable) \
221 \
222 ACTION(DER_NOTREPLICA, (DER_ERR_DAOS_BASE + 20), \
223 Not a service replica) \
224 \
225 ACTION(DER_CSUM, (DER_ERR_DAOS_BASE + 21), \
226 Checksum error) \
227 \
228 ACTION(DER_DF_INVAL, (DER_ERR_DAOS_BASE + 22), \
229 Unsupported durable format) \
230 \
231 ACTION(DER_DF_INCOMPT, (DER_ERR_DAOS_BASE + 23), \
232 Incompatible durable format version) \
233 \
234 ACTION(DER_REC_SIZE, (DER_ERR_DAOS_BASE + 24), \
235 Record size error) \
236 \
237 ACTION(DER_TX_RESTART, (DER_ERR_DAOS_BASE + 25), \
238 Transaction should restart) \
239 \
240 ACTION(DER_DATA_LOSS, (DER_ERR_DAOS_BASE + 26), \
241 Data lost or not recoverable) \
242 \
243 ACTION(DER_OP_CANCELED, (DER_ERR_DAOS_BASE + 27), \
244 Operation canceled) \
245 \
246 ACTION(DER_TX_BUSY, (DER_ERR_DAOS_BASE + 28), \
247 TX is not committed) \
248 \
249 ACTION(DER_AGENT_INCOMPAT, (DER_ERR_DAOS_BASE + 29), \
250 Agent is incompatible with libdaos) \
251 \
252 ACTION(DER_SHARDS_OVERLAP, (DER_ERR_DAOS_BASE + 30), \
253 Shards overlap) \
254 \
255 ACTION(DER_RF, (DER_ERR_DAOS_BASE + 31), \
256 Failures exceed RF) \
257 \
258 ACTION(DER_FETCH_AGAIN, (DER_ERR_DAOS_BASE + 32), \
259 Fetch again) \
260 \
261 ACTION(DER_TX_UNCERTAIN, (DER_ERR_DAOS_BASE + 33), \
262 TX status is uncertaion) \
263 \
264 ACTION(DER_AGENT_COMM, (DER_ERR_DAOS_BASE + 34), \
265 Agent communication error) \
266 \
267 ACTION(DER_ID_MISMATCH, (DER_ERR_DAOS_BASE + 35), \
268 ID mismatch) \
269 \
270 ACTION(DER_TGT_RETRY, (DER_ERR_DAOS_BASE + 36), \
271 Retry with other target) \
272 ACTION(DER_NOTSUPPORTED, (DER_ERR_DAOS_BASE + 37), \
273 Operation not supported) \
274 ACTION(DER_CONTROL_INCOMPAT, (DER_ERR_DAOS_BASE + 38), \
275 One or more control plane components are incompatible) \
276 \
277 ACTION(DER_NO_SERVICE, (DER_ERR_DAOS_BASE + 39), \
278 No service available)
279
281#define D_FOREACH_ERR_RANGE(ACTION) \
282 ACTION(GURT, 1000) \
283 ACTION(DAOS, 2000)
284
285#define D_DEFINE_ERRNO(name, value, desc) name = value,
286#define D_DEFINE_ERRSTR(name, value, desc) #name,
287#define D_DEFINE_ERRDESC(name, value, desc) #desc,
288
289#define D_DEFINE_RANGE_ERRNO(name, base) \
290 enum { \
291 DER_ERR_##name##_BASE = (base), \
292 D_FOREACH_##name##_ERR(D_DEFINE_ERRNO) \
293 DER_ERR_##name##_LIMIT, \
294 };
295
296#define D_DEFINE_RANGE_ERRSTR(name) \
297 static const char * const g_##name##_error_strings[] = {\
298 D_FOREACH_##name##_ERR(D_DEFINE_ERRSTR) \
299 }; \
300 static const char * const g_##name##_strerror[] = { \
301 D_FOREACH_##name##_ERR(D_DEFINE_ERRDESC) \
302 };
303
304D_FOREACH_ERR_RANGE(D_DEFINE_RANGE_ERRNO)
305
306
307#define D_REGISTER_RANGE(name) \
308 d_errno_register_range(DER_ERR_##name##_BASE, \
309 DER_ERR_##name##_LIMIT, \
310 g_##name##_error_strings,\
311 g_##name##_strerror)
312
314#define D_DEREGISTER_RANGE(name) \
315 d_errno_deregister_range(DER_ERR_##name##_BASE)
316
317#define DER_SUCCESS 0
318#define DER_UNKNOWN (DER_ERR_GURT_BASE + 500000)
319
326const char *d_errstr(int rc);
327
341int d_errno_register_range(int start, int end,
342 const char * const *error_strings,
343 const char * const *strerror);
344
350
358const char *d_errdesc(int errnum);
359
363#define DO_PRAGMA(str) _Pragma(#str)
364#define DEPRECATE_ERROR(olde, newe) \
365({ \
366 DO_PRAGMA(message(#olde " is deprecated, use " #newe)); \
367 newe; \
368})
369#define DER_EVICTED DEPRECATE_ERROR(DER_EVICTED, DER_EXCLUDED)
370
371#ifndef DF_RC
372#define DF_RC "%s(%d): '%s'"
373#define DP_RC(rc) d_errstr(rc), rc, d_errdesc(rc)
374#endif /* DF_RC */
375
376#if defined(__cplusplus)
377}
378#endif
379
380#endif /* __DAOS_ERRNO_H__ */
const char * d_errstr(int rc)
const char * d_errdesc(int errnum)
void d_errno_deregister_range(int start)
int d_errno_register_range(int start, int end, const char *const *error_strings, const char *const *strerror)
#define D_FOREACH_ERR_RANGE(ACTION)
Definition daos_errno.h:281