bind9/util/models.c
Ondřej Surý 829b461c54 Merge branch '46-enforce-clang-format-rules' into 'master'
Start enforcing the clang-format rules on changed files

Closes #46

See merge request isc-projects/bind9!3063

(cherry picked from commit a04cdde45d)

d2b5853b Start enforcing the clang-format rules on changed files
618947c6 Switch AlwaysBreakAfterReturnType from TopLevelDefinitions to All
654927c8 Add separate .clang-format files for headers
5777c44a Reformat using the new rules
60d29f69 Don't enforce copyrights on .clang-format
2020-02-14 08:45:59 +00:00

144 lines
2.6 KiB
C

/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
/*
* Provide a simple memory management model for lib/isc/mem.c
* which hides all the internal storage and memory filling.
*
* See https://scan.coverity.com/models
*/
#define FLARG , const char *file, unsigned int line
#define FLARG_PASS , file, line
int condition;
void *
isc__mem_get(void *mem, unsigned int size FLARG) {
if (!mem) {
__coverity_panic__();
}
__coverity_negative_sink__(size);
if (condition) {
return (0);
}
return (__coverity_alloc__(size));
}
void
isc__mem_put(void *mem, void *ptr, unsigned int size FLARG) {
if (!mem) {
__coverity_panic__();
}
__coverity_free__(ptr);
}
void
isc__mem_putanddetach(void *mem, void *ptr, unsigned int size FLARG) {
if (!mem) {
__coverity_panic__();
}
__coverity_free__(ptr);
}
void *
isc__mem_allocate(void *mem, unsigned int size FLARG) {
if (!mem) {
__coverity_panic__();
}
__coverity_negative_sink__(size);
if (condition) {
return (0);
}
return (__coverity_alloc__(size));
}
void *
memcpy(void *s1, const void *s2, size_t n);
void *
isc__mem_reallocate(void *mem, void *ptr, size_t size FLARG) {
char *p = (char *)0;
size_t l;
if (!mem) {
__coverity_panic__();
}
if (size > 0) {
p = isc__mem_allocate(mem, size FLARG_PASS);
if (p && ptr) {
l = (l > size) ? size : l;
memcpy(p, ptr, l);
__coverity_free__(ptr);
}
} else if (ptr) {
__coverity_free__(ptr);
}
return (p);
}
void
isc__mem_free(void *mem, void *ptr FLARG) {
if (!mem) {
__coverity_panic__();
}
__coverity_free__(ptr);
}
unsigned int
strlen(const char *);
void *
isc__mem_strdup(void *mem, char *s FLARG) {
void *d;
if (!mem) {
__coverity_panic__();
}
if (condition) {
return (0);
}
d = __coverity_alloc__(strlen(s) + 1);
__coverity_writeall__(d);
return (d);
}
void *
isc__mempool_get(void *mem FLARG) {
unsigned int size;
if (!mem) {
__coverity_panic__();
}
if (condition) {
return (0);
}
return (__coverity_alloc__(size));
}
void
isc__mempool_put(void *mem, void *ptr FLARG) {
if (!mem) {
__coverity_panic__();
}
__coverity_free__(ptr);
}
/*
* Cmocka models.
*/
#define LargestIntegralType unsigned long int
void
_assert_true(const LargestIntegralType result, const char *const expression,
const char *const file, const int line) {
if (!result) {
__coverity_panic__();
}
}