blob: baf4139bfc65b3a7282bfbcb852ee89935430eb7 [file] [log] [blame]
Benny Prijonoba4abc92007-06-01 07:26:21 +00001/* $Id$ */
2/*
3 * Copyright (C)2003-2007 Benny Prijono <benny@prijono.org>
4 *
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.
9 *
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.
14 *
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
18 */
19#include <pj/assert.h>
20#include <pj/string.h>
21
22#if PJ_SAFE_POOL
23# define SIG_SIZE sizeof(pj_uint32_t)
24
25static void apply_signature(void *p, pj_size_t size);
26static void check_pool_signature(void *p, pj_size_t size);
27
28# define APPLY_SIG(p,sz) apply_signature(p,sz), \
29 p=(void*)(((char*)p)+SIG_SIZE)
30# define REMOVE_SIG(p,sz) check_pool_signature(p,sz), \
31 p=(void*)(((char*)p)-SIG_SIZE)
32
33# define SIG_BEGIN 0x600DC0DE
34# define SIG_END 0x0BADC0DE
35
36static void apply_signature(void *p, pj_size_t size)
37{
38 pj_uint32_t sig;
39
40 sig = SIG_BEGIN;
41 pj_memcpy(p, &sig, SIG_SIZE);
42
43 sig = SIG_END;
44 pj_memcpy(((char*)p)+SIG_SIZE+size, &sig, SIG_SIZE);
45}
46
47static void check_pool_signature(void *p, pj_size_t size)
48{
49 pj_uint32_t sig;
50 pj_uint8_t *mem = (pj_uint8_t*)p;
51
52 /* Check that signature at the start of the block is still intact */
53 sig = SIG_BEGIN;
54 pj_assert(!pj_memcmp(mem-SIG_SIZE, &sig, SIG_SIZE));
55
56 /* Check that signature at the end of the block is still intact.
57 * Note that "mem" has been incremented by SIG_SIZE
58 */
59 sig = SIG_END;
60 pj_assert(!pj_memcmp(mem+size, &sig, SIG_SIZE));
61}
62
63#else
64# define SIG_SIZE 0
65# define APPLY_SIG(p,sz)
66# define REMOVE_SIG(p,sz)
67#endif