Fix: dynamic buffer mishandles setting capacity to 0
[lttng-tools.git] / src / common / dynamic-buffer.c
CommitLineData
5966417e
JG
1/*
2 * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
11 * for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
18#include <common/dynamic-buffer.h>
5966417e
JG
19#include <common/utils.h>
20#include <assert.h>
21
df94ef0f
JG
22/*
23 * Round to (upper) power of two, val is returned if it already is a power of
24 * two.
25 */
5966417e
JG
26static
27size_t round_to_power_of_2(size_t val)
28{
29 int order;
30 size_t rounded;
31
32 order = utils_get_count_order_u64(val);
33 assert(order >= 0);
34 rounded = (1ULL << order);
35 assert(rounded >= val);
36
37 return rounded;
38}
39
c90647fe 40LTTNG_HIDDEN
5966417e
JG
41void lttng_dynamic_buffer_init(struct lttng_dynamic_buffer *buffer)
42{
43 assert(buffer);
44 memset(buffer, 0, sizeof(*buffer));
45}
46
c90647fe 47LTTNG_HIDDEN
5966417e
JG
48int lttng_dynamic_buffer_append(struct lttng_dynamic_buffer *buffer,
49 const void *buf, size_t len)
50{
51 int ret = 0;
52
53 if (!buffer || (!buf && len)) {
54 ret = -1;
55 goto end;
56 }
57
58 if (len == 0) {
59 /* Not an error, no-op. */
60 goto end;
61 }
62
63557623
JG
63 assert(buffer->_capacity >= buffer->size);
64 if (buffer->_capacity < (len + buffer->size)) {
5966417e 65 ret = lttng_dynamic_buffer_set_capacity(buffer,
63557623
JG
66 buffer->_capacity +
67 (len - (buffer->_capacity - buffer->size)));
5966417e
JG
68 if (ret) {
69 goto end;
70 }
71 }
72
73 memcpy(buffer->data + buffer->size, buf, len);
74 buffer->size += len;
75end:
76 return ret;
77}
78
c90647fe 79LTTNG_HIDDEN
5966417e
JG
80int lttng_dynamic_buffer_append_buffer(struct lttng_dynamic_buffer *dst_buffer,
81 struct lttng_dynamic_buffer *src_buffer)
82{
83 int ret;
84
85 if (!dst_buffer || !src_buffer) {
86 ret = -1;
87 goto end;
88 }
89
90 ret = lttng_dynamic_buffer_append(dst_buffer, src_buffer->data,
91 src_buffer->size);
92end:
93 return ret;
94}
95
c90647fe 96LTTNG_HIDDEN
5966417e
JG
97int lttng_dynamic_buffer_set_size(struct lttng_dynamic_buffer *buffer,
98 size_t new_size)
99{
100 int ret = 0;
101
102 if (!buffer) {
103 goto end;
104 }
105
106 if (new_size == buffer->size) {
107 goto end;
108 }
109
63557623 110 if (new_size > buffer->_capacity) {
1c6def05 111 size_t original_size = buffer->size;
63557623 112 size_t original_capacity = buffer->_capacity;
1c6def05 113
5966417e
JG
114 ret = lttng_dynamic_buffer_set_capacity(buffer, new_size);
115 if (ret) {
116 goto end;
117 }
1c6def05
JG
118
119 /*
120 * Zero-initialize the space that was left in the buffer at the
121 * before we increased its capacity (original capacity - original size).
122 * The newly acquired capacity (new capacity - original capacity)
123 * is zeroed by lttng_dynamic_buffer_set_capacity().
124 */
125 memset(buffer->data + original_size, 0,
126 original_capacity - original_size);
5966417e
JG
127 } else if (new_size > buffer->size) {
128 memset(buffer->data + buffer->size, 0, new_size - buffer->size);
129 } else {
130 /*
131 * Shrinking size. There is no need to zero-out the newly
132 * released memory as it will either be:
133 * - overwritten by lttng_dynamic_buffer_append,
134 * - expanded later, which will zero-out the memory
135 *
136 * Users of external APIs are encouraged to set the buffer's
137 * size _before_ making such calls.
138 */
139 }
140 buffer->size = new_size;
141end:
142 return ret;
143}
144
c90647fe 145LTTNG_HIDDEN
5966417e 146int lttng_dynamic_buffer_set_capacity(struct lttng_dynamic_buffer *buffer,
fc804d0f 147 size_t demanded_capacity)
5966417e
JG
148{
149 int ret = 0;
fc804d0f 150 void *new_buf;
e9347dad
JG
151 size_t new_capacity = demanded_capacity ?
152 round_to_power_of_2(demanded_capacity) : 0;
5966417e 153
fc804d0f
JG
154 if (!buffer || demanded_capacity < buffer->size) {
155 /*
156 * Shrinking a buffer's size by changing its capacity is
157 * unsupported.
158 */
5966417e
JG
159 ret = -1;
160 goto end;
161 }
162
63557623 163 if (new_capacity == buffer->_capacity) {
5966417e
JG
164 goto end;
165 }
166
fc804d0f
JG
167 /* Memory is initialized by the size increases. */
168 new_buf = realloc(buffer->data, new_capacity);
169 if (!new_buf) {
170 ret = -1;
171 goto end;
5966417e 172 }
fc804d0f 173 buffer->data = new_buf;
63557623 174 buffer->_capacity = new_capacity;
5966417e
JG
175end:
176 return ret;
177}
178
179/* Release any memory used by the dynamic buffer. */
c90647fe 180LTTNG_HIDDEN
5966417e
JG
181void lttng_dynamic_buffer_reset(struct lttng_dynamic_buffer *buffer)
182{
183 if (!buffer) {
184 return;
185 }
186 buffer->size = 0;
63557623 187 buffer->_capacity = 0;
5966417e
JG
188 free(buffer->data);
189}
201bd415
JG
190
191LTTNG_HIDDEN
192size_t lttng_dynamic_buffer_get_capacity_left(
193 struct lttng_dynamic_buffer *buffer)
194{
195 if (!buffer) {
196 return 0;
197 }
198 return buffer->_capacity - buffer->size;
199}
This page took 0.037015 seconds and 5 git commands to generate.