2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-24 11:08:45 +00:00
bind/util/models.c

102 lines
2.7 KiB
C
Raw Normal View History

2015-04-18 21:26:35 +10:00
/*
* Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
2015-04-17 13:59:28 +10:00
/*
* Provide a simple memory management model for lib/isc/mem.c
* which hides all the internal storage and memory filling.
2015-09-15 16:47:50 +10:00
*
* See https://scan.coverity.com/models
2015-04-17 13:59:28 +10:00
*/
#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__();
2015-04-18 21:26:35 +10:00
__coverity_negative_sink__(size);
if (condition)
return (0);
return (__coverity_alloc__(size));
2015-04-17 13:59:28 +10:00
}
void isc__mem_put(void *mem, void *ptr, unsigned int size FLARG) {
if (!mem) __coverity_panic__();
2015-04-18 21:26:35 +10:00
__coverity_free__(ptr);
2015-04-17 13:59:28 +10:00
}
void isc__mem_putanddetach(void *mem, void *ptr, unsigned int size FLARG) {
if (!mem) __coverity_panic__();
2015-04-18 21:26:35 +10:00
__coverity_free__(ptr);
2015-04-17 13:59:28 +10:00
}
void *isc__mem_allocate(void *mem, unsigned int size FLARG) {
if (!mem) __coverity_panic__();
2015-04-18 21:26:35 +10:00
__coverity_negative_sink__(size);
if (condition)
return (0);
return (__coverity_alloc__(size));
2015-04-17 13:59:28 +10:00
}
void *memcpy(void *s1, const void *s2, size_t n);
void * isc__mem_reallocate(void *mem, void *ptr, size_t size FLARG) {
2015-04-18 21:26:35 +10:00
char *p = (char *)0;
size_t l;
2015-04-17 13:59:28 +10:00
2015-04-18 21:26:35 +10:00
if (!mem) __coverity_panic__();
if (size > 0) {
p = isc__mem_allocate(mem, size FLARG_PASS);
if (p && ptr) {
2015-04-17 13:59:28 +10:00
l = (l > size) ? size : l;
2015-04-18 21:26:35 +10:00
memcpy(p, ptr, l);
__coverity_free__(ptr);
}
} else if (ptr)
__coverity_free__(ptr);
return (p);
2015-04-17 13:59:28 +10:00
}
void isc__mem_free(void *mem, void *ptr FLARG) {
if (!mem) __coverity_panic__();
2015-04-18 21:26:35 +10:00
__coverity_free__(ptr);
2015-04-17 13:59:28 +10:00
}
unsigned int strlen(const char*);
void *isc__mem_strdup(void *mem, char *s FLARG) {
2015-04-18 21:26:35 +10:00
void *d;
2015-04-17 13:59:28 +10:00
if (!mem) __coverity_panic__();
2015-04-18 21:26:35 +10:00
if (condition)
return (0);
d = __coverity_alloc__(strlen(s) + 1);
__coverity_writeall__(d);
return (d);
2015-04-17 13:59:28 +10:00
}
void *isc__mempool_get(void *mem FLARG) {
2015-04-18 21:26:35 +10:00
unsigned int size;
2015-04-17 13:59:28 +10:00
if (!mem) __coverity_panic__();
2015-04-18 21:26:35 +10:00
if (condition)
return (0);
return (__coverity_alloc__(size));
2015-04-17 13:59:28 +10:00
}
void isc__mempool_put(void *mem, void *ptr FLARG) {
if (!mem) __coverity_panic__();
2015-04-18 21:26:35 +10:00
__coverity_free__(ptr);
2015-04-17 13:59:28 +10:00
}