1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/* Copyright (C) 2007-2012 Open Information Security Foundation
*
* You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* version 2 along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/**
* \file
*
* \author Anoop Saldanha <anoopsaldanha@gmail.com>
*/
#include "suricata-common.h"
#include "suricata.h"
#include "util-debug.h"
#include "util-buffer.h"
/* 10 mb */
#define MAX_LIMIT 10485760
MemBuffer *MemBufferCreateNew(uint32_t size)
{
sc_errno = SC_OK;
if (size > MAX_LIMIT) {
SCLogWarning("Mem buffer asked to create "
"buffer with size greater than API limit - %d",
MAX_LIMIT);
sc_errno = SC_EINVAL;
return NULL;
}
uint32_t total_size = size + sizeof(MemBuffer);
MemBuffer *buffer = SCMalloc(total_size);
if (unlikely(buffer == NULL)) {
sc_errno = SC_ENOMEM;
return NULL;
}
memset(buffer, 0, total_size);
buffer->size = size;
buffer->buffer = (uint8_t *)buffer + sizeof(MemBuffer);
return buffer;
}
/** \brief expand membuffer by size of 'expand_by'
*
* If expansion failed, buffer will still be valid.
*
* \retval result 0 ok, -1 expansion failed
*/
int MemBufferExpand(MemBuffer **buffer, uint32_t expand_by) {
if (((*buffer)->size + expand_by) > MAX_LIMIT) {
SCLogWarning("Mem buffer asked to create "
"buffer with size greater than API limit - %d",
MAX_LIMIT);
return -1;
}
uint32_t total_size = (*buffer)->size + sizeof(MemBuffer) + expand_by;
MemBuffer *tbuffer = SCRealloc(*buffer, total_size);
if (unlikely(tbuffer == NULL)) {
return -1;
}
*buffer = tbuffer;
(*buffer)->size += expand_by;
(*buffer)->buffer = (uint8_t *)tbuffer + sizeof(MemBuffer);
SCLogDebug("expanded buffer by %u, size is now %u", expand_by, (*buffer)->size);
return 0;
}
void MemBufferFree(MemBuffer *buffer)
{
SCFree(buffer);
return;
}
|