blob: 8dbbc7f359de3de82bdbf1c83177508b10c3523c [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 Copyright (c) 2001, 2002, 2003 Eliot Dresselhaus
17
18 Permission is hereby granted, free of charge, to any person obtaining
19 a copy of this software and associated documentation files (the
20 "Software"), to deal in the Software without restriction, including
21 without limitation the rights to use, copy, modify, merge, publish,
22 distribute, sublicense, and/or sell copies of the Software, and to
23 permit persons to whom the Software is furnished to do so, subject to
24 the following conditions:
25
26 The above copyright notice and this permission notice shall be
27 included in all copies or substantial portions of the Software.
28
29 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
33 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
35 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36*/
37
38#ifndef included_error_bootstrap_h
39#define included_error_bootstrap_h
40
41/* Bootstrap include so that #include <vppinfra/mem.h> can include e.g.
42 <vppinfra/mheap.h> which depends on <vppinfra/vec.h>. */
43
Dave Barachc3799992016-08-15 11:12:27 -040044#include <vppinfra/clib.h> /* for uword */
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
Dave Barachc3799992016-08-15 11:12:27 -040046enum
47{
48 CLIB_ERROR_FATAL = 1 << 0,
49 CLIB_ERROR_ABORT = 1 << 1,
50 CLIB_ERROR_WARNING = 1 << 2,
Ed Warnickecb9cada2015-12-08 15:45:58 -070051 CLIB_ERROR_ERRNO_VALID = 1 << 16,
52 CLIB_ERROR_NO_RATE_LIMIT = 1 << 17,
53};
54
55/* Current function name. Need (char *) cast to silence gcc4 pointer signedness warning. */
56#define clib_error_function ((char *) __FUNCTION__)
57
58#ifndef CLIB_ASSERT_ENABLE
59#define CLIB_ASSERT_ENABLE (CLIB_DEBUG > 0)
60#endif
61
62/* Low level error reporting function.
63 Code specifies whether to call exit, abort or nothing at
64 all (for non-fatal warnings). */
65extern void _clib_error (int code,
Dave Barachc3799992016-08-15 11:12:27 -040066 char *function_name,
67 uword line_number, char *format, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
69#define ASSERT(truth) \
70do { \
71 if (CLIB_ASSERT_ENABLE && ! (truth)) \
72 { \
73 _clib_error (CLIB_ERROR_ABORT, 0, 0, \
74 "%s:%d (%s) assertion `%s' fails", \
75 __FILE__, \
76 (uword) __LINE__, \
77 clib_error_function, \
78 # truth); \
79 } \
80} while (0)
81
Dave Barach47d41ad2020-02-17 09:13:26 -050082/*
83 * This version always generates code, and has a Coverity-specific
84 * version to stop Coverity complaining about
85 * ALWAYS_ASSERT(p != 0); p->member...
86 */
87
88#ifndef __COVERITY__
89#define ALWAYS_ASSERT(truth) \
90do { \
91 if (PREDICT_FALSE(!(truth))) \
92 { \
93 _clib_error (CLIB_ERROR_ABORT, 0, 0, \
94 "%s:%d (%s) assertion `%s' fails", \
95 __FILE__, \
96 (uword) __LINE__, \
97 clib_error_function, \
98 # truth); \
99 } \
100} while (0)
101#else /* __COVERITY__ */
102#define ALWAYS_ASSERT(truth) \
103do { \
104 if (PREDICT_FALSE(!(truth))) \
105 { \
106 abort(); \
107 } \
108} while (0)
109#endif /* __COVERITY */
110
Damjan Marioncf478942016-11-07 14:57:50 +0100111#if defined(__clang__)
112#define STATIC_ASSERT(truth,...)
113#else
Damjan Marion3b906b02016-11-01 15:16:30 +0100114#define STATIC_ASSERT(truth,...) _Static_assert(truth, __VA_ARGS__)
Damjan Marioncf478942016-11-07 14:57:50 +0100115#endif
Damjan Marion3b906b02016-11-01 15:16:30 +0100116
Damjan Mariond171d482016-12-05 14:16:38 +0100117#define STATIC_ASSERT_SIZEOF(d, s) \
118 STATIC_ASSERT (sizeof (d) == s, "Size of " #d " must be " # s " bytes")
119
Damjan Marionda9513a2019-09-06 14:24:36 +0200120#define STATIC_ASSERT_SIZEOF_ELT(d, e, s) \
121 STATIC_ASSERT (sizeof (((d *)0)->e) == s, "Size of " #d "." #e " must be " # s " bytes")
122
Damjan Marionba614d62018-05-30 12:49:32 +0200123#define STATIC_ASSERT_OFFSET_OF(s, e, o) \
124 STATIC_ASSERT (STRUCT_OFFSET_OF(s,e) == o, "Offset of " #s "." #e " must be " # o)
125
Damjan Marion910d3692019-01-21 11:48:34 +0100126#define STATIC_ASSERT_FITS_IN(s, e, o) \
127 STATIC_ASSERT (STRUCT_OFFSET_OF(s,e) <= (o - sizeof(((s *)0)->e)), \
128 #s "." #e " does not fit into " # o " bytes")
129
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130/* Assert without allocating memory. */
131#define ASSERT_AND_PANIC(truth) \
132do { \
133 if (CLIB_ASSERT_ENABLE && ! (truth)) \
134 os_panic (); \
135} while (0)
136
137#endif /* included_error_bootstrap_h */
Dave Barachc3799992016-08-15 11:12:27 -0400138
139/*
140 * fd.io coding-style-patch-verification: ON
141 *
142 * Local Variables:
143 * eval: (c-set-style "gnu")
144 * End:
145 */