summaryrefslogtreecommitdiff
path: root/coverity/coverity_assert_model.c
blob: 1a50917e84a57ae5b0571cdb3eb7c21558f78257 (plain)
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*
 * Modelling file for Coverity Scan
 *
 * This is a modeling file for Coverity Scan. Modeling helps to avoid false
 * positives.
 *
 * - A model file can't import any header files.
 * - Therefore only some built-in primitives like int, char and void are
 *   available but not NULL etc.
 * - Modeling doesn't need full structs and typedefs. Rudimentary structs
 *   and similar types are sufficient.
 * - An uninitialized local pointer is not an error. It signifies that the
 *   variable could be either NULL or have some data.
 *
 * Coverity Scan doesn't pick up modifications automatically. The model file
 * must be uploaded by an admin.
 *
 * See also https://scan.coverity.com/models
 */

typedef long long intmax_t;
typedef unsigned long long uintmax_t;
typedef unsigned long long size_t;

void _assert_true(const uintmax_t result,
                  const char* const expression,
                  const char * const file, const int line)
{
    if (!result) {
        __coverity_panic__();
    }
}

void _assert_int_equal(
    const intmax_t a, const intmax_t b,
    const char * const file, const int line)
{
    if (a != b) {
        __coverity_panic__();
    }
}

void _assert_uint_equal(const uintmax_t a,
                        const uintmax_t b,
                        const char *const file,
                        const int line)
{
    if (a != b) {
        __coverity_panic__();
    }
}

void _assert_int_not_equal(
    const intmax_t a, const intmax_t b,
    const char * const file, const int line)
{
    if (a == b) {
        __coverity_panic__();
    }
}

void _assert_uint_not_equal(const uintmax_t a,
                            const uintmax_t b,
                            const char *const file,
                            const int line)
{
    if (a == b) {
        __coverity_panic__();
    }
}

void _assert_return_code(const intmax_t result,
                         size_t rlen,
                         const uintmax_t error,
                         const char * const expression,
                         const char * const file,
                         const int line)
{
    if (result != 0) {
        __coverity_panic__();
    }
}

void _assert_string_equal(const char * const a, const char * const b,
                          const char * const file, const int line)
{
    char ch;
    int cmp;

    __coverity_weak_guard_sink__(a, b);
    __coverity_weak_guard_sink__(b, a);

    ch = *((char *)a);
    ch = *((char *)b);

    if (cmp != 0) {
        __coverity_panic__();
    }
}

void _assert_string_not_equal(const char * const a, const char * const b,
                              const char *file, const int line)
{
    char ch;
    int cmp;

    __coverity_weak_guard_sink__(a, b);
    __coverity_weak_guard_sink__(b, a);

    ch = *((char *)a);
    ch = *((char *)b);

    if (cmp == 0) {
        __coverity_panic__();
    }
}

void _assert_memory_equal(const void * const a, const void * const b,
                          const size_t size, const char* const file,
                          const int line)
{
    unsigned char ch;
    int cmp;

    __coverity_weak_guard_sink__(a, b);
    __coverity_weak_guard_sink__(b, a);

    ch = *((unsigned char *)a);
    ch = *((unsigned char *)b);

    if (cmp != 0) {
        __coverity_panic__();
    }
}

void _assert_memory_not_equal(const void * const a, const void * const b,
                              const size_t size, const char* const file,
                              const int line)
{
    unsigned char ch;
    int cmp;

    __coverity_weak_guard_sink__(a, b);
    __coverity_weak_guard_sink__(b, a);

    ch = *((unsigned char *)a);
    ch = *((unsigned char *)b);

    if (cmp == 0) {
        __coverity_panic__();
    }
}

void _assert_int_in_range(const intmax_t value,
                          const intmax_t minimum,
                          const intmax_t maximum,
                          const char *const file,
                          const int line)
{
    if (value < minimum || value > maximum) {
        __coverity_panic__();
    }
}

void _assert_uint_in_range(const uintmax_t value,
                           const uintmax_t minimum,
                           const uintmax_t maximum,
                           const char *const file,
                           const int line)
{
    if (value < minimum || value > maximum) {
        __coverity_panic__();
    }
}

void _assert_not_in_range(
    const uintmax_t value, const uintmax_t minimum,
    const uintmax_t maximum, const char* const file, const int line)
{
    if (value > minimum && value < maximum) {
        __coverity_panic__();
    }
}

void _assert_int_in_set(const intmax_t value,
                        const intmax_t values[],
                        const size_t number_of_values,
                        const char *const file,
                        const int line)
{
    size_t i;

    for (i = 0; i < number_of_values; i++) {
        if (value == values[i]) {
            return;
        }
    }
    __coverity_panic__();
}

void _assert_uint_in_set(const uintmax_t value,
                         const uintmax_t values[],
                         const size_t number_of_values,
                         const char *const file,
                         const int line)
{
    size_t i;

    for (i = 0; i < number_of_values; i++) {
        if (value == values[i]) {
            return;
        }
    }
    __coverity_panic__();
}

void _assert_int_not_in_set(const intmax_t value,
                            const intmax_t values[],
                            const size_t number_of_values,
                            const char *const file,
                            const int line)
{
    size_t i;

    for (i = 0; i < number_of_values; i++) {
        if (value == values[i]) {
            __coverity_panic__();
        }
    }
}

void _assert_uint_not_in_set(const uintmax_t value,
                             const uintmax_t values[],
                             const size_t number_of_values,
                             const char *const file,
                             const int line)
{
    size_t i;

    for (i = 0; i < number_of_values; i++) {
        if (value == values[i]) {
            __coverity_panic__();
        }
    }
}