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 uint64_t hwaddr
;
50 static void __write(uint8_t *buf
, ssize_t len
)
53 __coverity_negative_sink__(len
);
57 __coverity_writeall__(buf
);
60 static void __read(uint8_t *buf
, ssize_t len
)
62 __coverity_negative_sink__(len
);
65 int last
= buf
[len
-1];
68 bool address_space_rw(AddressSpace
*as
, hwaddr addr
, uint8_t *buf
,
69 int len
, bool is_write
)
73 // TODO: investigate impact of treating reads as producing
74 // tainted data, with __coverity_tainted_data_argument__(buf).
75 if (is_write
) __write(buf
, len
); else __read(buf
, len
);
82 typedef struct {} name2keysym_t
;
83 static int get_keysym(const name2keysym_t
*table
,
88 __coverity_tainted_string_sanitize_content__(name
);
96 * GLib memory allocation functions.
98 * Note that we ignore the fact that g_malloc of 0 bytes returns NULL,
99 * and g_realloc of 0 bytes frees the pointer.
101 * Modeling this would result in Coverity flagging a lot of memory
102 * allocations as potentially returning NULL, and asking us to check
103 * whether the result of the allocation is NULL or not. However, the
104 * resulting pointer should never be dereferenced anyway, and in fact
105 * it is not in the vast majority of cases.
107 * If a dereference did happen, this would suppress a defect report
108 * for an actual null pointer dereference. But it's too unlikely to
109 * be worth wading through the false positives, and with some luck
110 * we'll get a buffer overflow reported anyway.
114 * Allocation primitives, cannot return NULL
115 * See also Coverity's library/generic/libc/all/all.c
118 void *g_malloc_n(size_t nmemb
, size_t size
)
123 __coverity_negative_sink__(nmemb
);
124 __coverity_negative_sink__(size
);
126 ptr
= __coverity_alloc__(size
);
127 __coverity_mark_as_uninitialized_buffer__(ptr
);
128 __coverity_mark_as_afm_allocated__(ptr
, "g_free");
132 void *g_malloc0_n(size_t nmemb
, size_t size
)
137 __coverity_negative_sink__(nmemb
);
138 __coverity_negative_sink__(size
);
140 ptr
= __coverity_alloc__(size
);
141 __coverity_writeall0__(ptr
);
142 __coverity_mark_as_afm_allocated__(ptr
, "g_free");
146 void *g_realloc_n(void *ptr
, size_t nmemb
, size_t size
)
150 __coverity_negative_sink__(nmemb
);
151 __coverity_negative_sink__(size
);
153 __coverity_escape__(ptr
);
154 ptr
= __coverity_alloc__(size
);
156 * Memory beyond the old size isn't actually initialized. Can't
157 * model that. See Coverity's realloc() model
159 __coverity_writeall__(ptr
);
160 __coverity_mark_as_afm_allocated__(ptr
, "g_free");
164 void g_free(void *ptr
)
166 __coverity_free__(ptr
);
167 __coverity_mark_as_afm_freed__(ptr
, "g_free");
171 * Derive the g_try_FOO_n() from the g_FOO_n() by adding indeterminate
172 * out of memory conditions
175 void *g_try_malloc_n(size_t nmemb
, size_t size
)
182 return g_malloc_n(nmemb
, size
);
185 void *g_try_malloc0_n(size_t nmemb
, size_t size
)
192 return g_malloc0_n(nmemb
, size
);
195 void *g_try_realloc_n(void *ptr
, size_t nmemb
, size_t size
)
202 return g_realloc_n(ptr
, nmemb
, size
);
205 /* Trivially derive the g_FOO() from the g_FOO_n() */
207 void *g_malloc(size_t size
)
209 return g_malloc_n(1, size
);
212 void *g_malloc0(size_t size
)
214 return g_malloc0_n(1, size
);
217 void *g_realloc(void *ptr
, size_t size
)
219 return g_realloc_n(ptr
, 1, size
);
222 void *g_try_malloc(size_t size
)
224 return g_try_malloc_n(1, size
);
227 void *g_try_malloc0(size_t size
)
229 return g_try_malloc0_n(1, size
);
232 void *g_try_realloc(void *ptr
, size_t size
)
234 return g_try_realloc_n(ptr
, 1, size
);
238 * GLib string allocation functions
241 char *g_strdup(const char *s
)
250 __coverity_string_null_sink__(s
);
251 __coverity_string_size_sink__(s
);
252 dup
= __coverity_alloc_nosize__();
253 __coverity_mark_as_afm_allocated__(dup
, "g_free");
254 for (i
= 0; (dup
[i
] = s
[i
]); i
++) ;
258 char *g_strndup(const char *s
, size_t n
)
263 __coverity_negative_sink__(n
);
269 dup
= g_malloc(n
+ 1);
270 for (i
= 0; i
< n
&& (dup
[i
] = s
[i
]); i
++) ;
275 char *g_strdup_printf(const char *format
, ...)
280 __coverity_string_null_sink__(format
);
281 __coverity_string_size_sink__(format
);
285 s
= __coverity_alloc_nosize__();
286 __coverity_writeall__(s
);
287 __coverity_mark_as_afm_allocated__(s
, "g_free");
291 char *g_strdup_vprintf(const char *format
, va_list ap
)
296 __coverity_string_null_sink__(format
);
297 __coverity_string_size_sink__(format
);
302 s
= __coverity_alloc_nosize__();
303 __coverity_writeall__(s
);
304 __coverity_mark_as_afm_allocated__(s
, "g_free");
309 char *g_strconcat(const char *s
, ...)
314 * Can't model: last argument must be null, the others
315 * null-terminated strings
318 s
= __coverity_alloc_nosize__();
319 __coverity_writeall__(s
);
320 __coverity_mark_as_afm_allocated__(s
, "g_free");
324 /* Other glib functions */
326 typedef struct _GIOChannel GIOChannel
;
327 GIOChannel
*g_io_channel_unix_new(int fd
)
329 GIOChannel
*c
= g_malloc0(sizeof(GIOChannel
));
330 __coverity_escape__(fd
);
334 void g_assertion_message_expr(const char *domain
,
340 __coverity_panic__();