3 * Copyright (C) 2014 Red Hat, Inc.
6 * Markus Armbruster <armbru@redhat.com>
7 * Paolo Bonzini <pbonzini@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or, at your
10 * option, any later version. See the COPYING file in the top-level directory.
15 * This is the source code for our Coverity user model file. The
16 * purpose of user models is to increase scanning accuracy by explaining
17 * code Coverity can't see (out of tree libraries) or doesn't
18 * sufficiently understand. Better accuracy means both fewer false
19 * positives and more true defects. Memory leaks in particular.
21 * - A model file can't import any header files. Some built-in primitives are
22 * available but not wchar_t, NULL etc.
23 * - Modeling doesn't need full structs and typedefs. Rudimentary structs
24 * and similar types are sufficient.
25 * - An uninitialized local variable signifies that the variable could be
28 * The model file must be uploaded by an admin in the analysis settings of
29 * http://scan.coverity.com/projects/378
32 #define NULL ((void *)0)
34 typedef unsigned char uint8_t;
36 typedef unsigned int uint32_t;
39 typedef unsigned long long uint64_t;
40 typedef long long int64_t;
43 typedef struct va_list_str
*va_list;
47 typedef struct AddressSpace AddressSpace
;
48 typedef struct MemoryRegionCache MemoryRegionCache
;
49 typedef uint64_t hwaddr
;
50 typedef uint32_t MemTxResult
;
51 typedef struct MemTxAttrs
{} MemTxAttrs
;
53 static void __bufwrite(uint8_t *buf
, ssize_t len
)
56 __coverity_negative_sink__(len
);
60 __coverity_writeall__(buf
);
63 static void __bufread(uint8_t *buf
, ssize_t len
)
65 __coverity_negative_sink__(len
);
68 int last
= buf
[len
-1];
71 MemTxResult
address_space_read_cached(MemoryRegionCache
*cache
, hwaddr addr
,
76 // TODO: investigate impact of treating reads as producing
77 // tainted data, with __coverity_tainted_data_argument__(buf).
82 MemTxResult
address_space_write_cached(MemoryRegionCache
*cache
, hwaddr addr
,
84 const void *buf
, int len
)
91 MemTxResult
address_space_rw_cached(MemoryRegionCache
*cache
, hwaddr addr
,
93 void *buf
, int len
, bool is_write
)
96 return address_space_write_cached(cache
, addr
, attrs
, buf
, len
);
98 return address_space_read_cached(cache
, addr
, attrs
, buf
, len
);
102 MemTxResult
address_space_read(AddressSpace
*as
, hwaddr addr
,
107 // TODO: investigate impact of treating reads as producing
108 // tainted data, with __coverity_tainted_data_argument__(buf).
109 __bufwrite(buf
, len
);
113 MemTxResult
address_space_write(AddressSpace
*as
, hwaddr addr
,
115 const void *buf
, int len
)
122 MemTxResult
address_space_rw(AddressSpace
*as
, hwaddr addr
,
124 void *buf
, int len
, bool is_write
)
127 return address_space_write(as
, addr
, attrs
, buf
, len
);
129 return address_space_read(as
, addr
, attrs
, buf
, len
);
135 typedef struct {} name2keysym_t
;
136 static int get_keysym(const name2keysym_t
*table
,
141 __coverity_tainted_string_sanitize_content__(name
);
148 /* Replay data is considered trusted. */
149 uint8_t replay_get_byte(void)
157 * GLib memory allocation functions.
159 * Note that we ignore the fact that g_malloc of 0 bytes returns NULL,
160 * and g_realloc of 0 bytes frees the pointer.
162 * Modeling this would result in Coverity flagging a lot of memory
163 * allocations as potentially returning NULL, and asking us to check
164 * whether the result of the allocation is NULL or not. However, the
165 * resulting pointer should never be dereferenced anyway, and in fact
166 * it is not in the vast majority of cases.
168 * If a dereference did happen, this would suppress a defect report
169 * for an actual null pointer dereference. But it's too unlikely to
170 * be worth wading through the false positives, and with some luck
171 * we'll get a buffer overflow reported anyway.
175 * Allocation primitives, cannot return NULL
176 * See also Coverity's library/generic/libc/all/all.c
179 void *g_malloc_n(size_t nmemb
, size_t size
)
183 __coverity_negative_sink__(nmemb
);
184 __coverity_negative_sink__(size
);
185 ptr
= __coverity_alloc__(nmemb
* size
);
187 __coverity_panic__();
189 __coverity_mark_as_uninitialized_buffer__(ptr
);
190 __coverity_mark_as_afm_allocated__(ptr
, AFM_free
);
194 void *g_malloc0_n(size_t nmemb
, size_t size
)
198 __coverity_negative_sink__(nmemb
);
199 __coverity_negative_sink__(size
);
200 ptr
= __coverity_alloc__(nmemb
* size
);
202 __coverity_panic__();
204 __coverity_writeall0__(ptr
);
205 __coverity_mark_as_afm_allocated__(ptr
, AFM_free
);
209 void *g_realloc_n(void *ptr
, size_t nmemb
, size_t size
)
211 __coverity_negative_sink__(nmemb
);
212 __coverity_negative_sink__(size
);
213 __coverity_escape__(ptr
);
214 ptr
= __coverity_alloc__(nmemb
* size
);
216 __coverity_panic__();
219 * Memory beyond the old size isn't actually initialized. Can't
220 * model that. See Coverity's realloc() model
222 __coverity_writeall__(ptr
);
223 __coverity_mark_as_afm_allocated__(ptr
, AFM_free
);
227 void g_free(void *ptr
)
229 __coverity_free__(ptr
);
230 __coverity_mark_as_afm_freed__(ptr
, AFM_free
);
234 * Derive the g_try_FOO_n() from the g_FOO_n() by adding indeterminate
235 * out of memory conditions
238 void *g_try_malloc_n(size_t nmemb
, size_t size
)
245 return g_malloc_n(nmemb
, size
);
248 void *g_try_malloc0_n(size_t nmemb
, size_t size
)
255 return g_malloc0_n(nmemb
, size
);
258 void *g_try_realloc_n(void *ptr
, size_t nmemb
, size_t size
)
265 return g_realloc_n(ptr
, nmemb
, size
);
268 /* Derive the g_FOO() from the g_FOO_n() */
270 void *g_malloc(size_t size
)
274 __coverity_negative_sink__(size
);
275 ptr
= __coverity_alloc__(size
);
277 __coverity_panic__();
279 __coverity_mark_as_uninitialized_buffer__(ptr
);
280 __coverity_mark_as_afm_allocated__(ptr
, AFM_free
);
284 void *g_malloc0(size_t size
)
288 __coverity_negative_sink__(size
);
289 ptr
= __coverity_alloc__(size
);
291 __coverity_panic__();
293 __coverity_writeall0__(ptr
);
294 __coverity_mark_as_afm_allocated__(ptr
, AFM_free
);
298 void *g_realloc(void *ptr
, size_t size
)
300 __coverity_negative_sink__(size
);
301 __coverity_escape__(ptr
);
302 ptr
= __coverity_alloc__(size
);
304 __coverity_panic__();
307 * Memory beyond the old size isn't actually initialized. Can't
308 * model that. See Coverity's realloc() model
310 __coverity_writeall__(ptr
);
311 __coverity_mark_as_afm_allocated__(ptr
, AFM_free
);
315 void *g_try_malloc(size_t size
)
322 return g_malloc(size
);
325 void *g_try_malloc0(size_t size
)
332 return g_malloc0(size
);
335 void *g_try_realloc(void *ptr
, size_t size
)
342 return g_realloc(ptr
, size
);
345 /* Other glib functions */
347 typedef struct pollfd GPollFD
;
351 int g_poll (GPollFD
*fds
, unsigned nfds
, int timeout
)
353 return poll(fds
, nfds
, timeout
);
356 typedef struct _GIOChannel GIOChannel
;
357 GIOChannel
*g_io_channel_unix_new(int fd
)
359 /* cannot use incomplete type, the actual struct is roughly this size. */
360 GIOChannel
*c
= g_malloc0(20 * sizeof(void *));
361 __coverity_escape__(fd
);
365 void g_assertion_message_expr(const char *domain
,
371 __coverity_panic__();