forked from Velocidex/go-yara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.c
145 lines (114 loc) · 3.69 KB
/
stack.c
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
Copyright (c) 2018. The YARA Authors. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <yara_integers.h>
#include <yara_stack.h>
#include <yara_mem.h>
#include <yara_error.h>
//
// yr_stack_create
//
// Creates a stack for items of the size specified by item_size. All items
// in the stack must have the same size. The stack will have an initial
// capacity as specified by initial_capacity and will grow as required when
// more objects are pushed.
//
int yr_stack_create(
int initial_capacity,
int item_size,
YR_STACK** stack)
{
*stack = (YR_STACK*) yr_malloc(sizeof(YR_STACK));
if (*stack == NULL)
return ERROR_INSUFFICIENT_MEMORY;
(*stack)->items = yr_malloc(initial_capacity * item_size);
if ((*stack)->items == NULL)
{
yr_free(*stack);
*stack = NULL;
return ERROR_INSUFFICIENT_MEMORY;
}
(*stack)->capacity = initial_capacity;
(*stack)->item_size = item_size;
(*stack)->top = 0;
return ERROR_SUCCESS;
}
//
// yr_stack_destroy
//
// Destroys a stack and deallocates all its resources.
//
void yr_stack_destroy(
YR_STACK* stack)
{
yr_free(stack->items);
yr_free(stack);
}
//
// yr_stack_push
//
// Pushes an item into the stack. If the stack has reached its capacity the
// funtion tries to double the capacity. This operation can fail with
// ERROR_INSUFFICIENT_MEMORY.
//
int yr_stack_push(
YR_STACK* stack,
void* item)
{
if (stack->top == stack->capacity)
{
void* items = yr_realloc(
stack->items, 2 * stack->capacity * stack->item_size);
if (items == NULL)
return ERROR_INSUFFICIENT_MEMORY;
stack->items = items;
stack->capacity *= 2;
}
memcpy(
(uint8_t*) stack->items + stack->top * stack->item_size,
item,
stack->item_size);
stack->top++;
return ERROR_SUCCESS;
}
//
// yr_stack_pop
//
// Pops an item from the stack. The caller must pass pointer to a buffer
// where the function will copy the item. The buffer must have enough space
// to hold the item. Returns 1 if an item could be poped and 0 if the stack
// was already empty.
//
int yr_stack_pop(
YR_STACK* stack,
void* item)
{
if (stack->top == 0) // Return 0 if stack is empty.
return 0;
stack->top--;
memcpy(
item,
(uint8_t*) stack->items + stack->top * stack->item_size,
stack->item_size);
return 1;
}