1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
3 Copyright (C) 2006-2008 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #define N_(msgid) gettext(msgid)
35 static struct memlist_s
*memlist
;
37 static size_t allocations
, deallocations
;
40 static struct memlist_s
*memlist_remove(struct memlist_s
*list
, struct memlist_s
*r
)
42 struct memlist_s
*m
, *last
= NULL
, *p
;
44 for (m
= list
; m
; m
= m
->next
) {
45 if (m
->ptr
== r
->ptr
) {
46 memset(m
->ptr
, 0, m
->size
);
75 static struct memlist_s
*memlist_prepend(struct memlist_s
*list
, struct memlist_s
*p
)
91 for (m
= memlist
; m
; m
= m
->next
) {
94 fprintf(stderr
, "%s: %p %i\n", __FUNCTION__
, ptr
, m
->size
);
96 memlist
= memlist_remove(memlist
, m
);
101 warnx(N_("%s: %p not found"), __FUNCTION__
, ptr
);
105 void *xmalloc(size_t size
)
113 if ((m
= (struct memlist_s
*)malloc(sizeof(struct memlist_s
))) == NULL
)
116 if ((p
= malloc(size
)) == NULL
) {
123 memlist
= memlist_prepend(memlist
, m
);
125 fprintf(stderr
, "%s: %p %i\n", __FUNCTION__
, p
, size
);
130 void *xcalloc(size_t nmemb
, size_t size
)
138 if ((m
= (struct memlist_s
*)malloc(sizeof(struct memlist_s
))) == NULL
)
141 if ((p
= calloc(nmemb
, size
)) == NULL
) {
147 m
->size
= nmemb
* size
;
148 memlist
= memlist_prepend(memlist
, m
);
150 fprintf(stderr
, "%s: %p %i\n", __FUNCTION__
, p
, nmemb
* size
);
155 void *xrealloc(void *ptr
, size_t size
)
161 return xmalloc(size
);
166 for (m
= memlist
; m
; m
= m
->next
) {
168 if ((p
= malloc(size
)) == NULL
)
171 memcpy(p
, m
->ptr
, size
< m
->size
? size
: m
->size
);
172 memset(m
->ptr
, 0, m
->size
);
177 fprintf(stderr
, "%s: %p %i\n", __FUNCTION__
, p
, size
);
183 warnx(N_("%s: %p not found"), __FUNCTION__
, ptr
);
188 char *xstrdup(const char *str
)
197 len
= strlen(str
) + 1;
199 if ((t
= (char *)xmalloc(len
* sizeof(char))) == NULL
)
202 for (p
= str
, tp
= t
; *p
; p
++)
207 fprintf(stderr
, "%s: %p\n", __FUNCTION__
, t
);
216 for (m
= memlist
; m
; m
= memlist
)
226 for (m
= memlist
; m
; m
= m
->next
) {
227 fprintf(stderr
, "%s: %p %i\n", __FUNCTION__
, m
->ptr
, m
->size
);
231 fprintf(stderr
, "Total unfreed: %i bytes, allocations: %i, deallocations: %i\n", total
,
232 allocations
, deallocations
);