FFmpeg
Loading...
Searching...
No Matches
bprint.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2012 Nicolas George
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <limits.h>
22#include <stdarg.h>
23#include <stdio.h>
24#include <string.h>
25#include <time.h>
26#include "avstring.h"
27#include "bprint.h"
28#include "error.h"
29#include "macros.h"
30#include "mem.h"
31
32#define av_bprint_room(buf) ((buf)->size - FFMIN((buf)->len, (buf)->size))
33#define av_bprint_is_allocated(buf) ((buf)->str != (buf)->reserved_internal_buffer)
34
35static int av_bprint_alloc(AVBPrint *buf, unsigned room)
36{
37 char *old_str, *new_str;
38 unsigned min_size, new_size;
39
40 if (buf->size == buf->size_max)
41 return AVERROR(EIO);
42 if (!av_bprint_is_complete(buf))
43 return AVERROR_INVALIDDATA; /* it is already truncated anyway */
44 min_size = buf->len + 1 + FFMIN(UINT_MAX - buf->len - 1, room);
45 new_size = buf->size > buf->size_max / 2 ? buf->size_max : buf->size * 2;
46 if (new_size < min_size)
47 new_size = FFMIN(buf->size_max, min_size);
48 old_str = av_bprint_is_allocated(buf) ? buf->str : NULL;
49 new_str = av_realloc(old_str, new_size);
50 if (!new_str)
51 return AVERROR(ENOMEM);
52 if (!old_str)
53 memcpy(new_str, buf->str, buf->len + 1);
54 buf->str = new_str;
55 buf->size = new_size;
56 return 0;
57}
58
59static void av_bprint_grow(AVBPrint *buf, unsigned extra_len)
60{
61 /* arbitrary margin to avoid small overflows */
62 extra_len = FFMIN(extra_len, UINT_MAX - 5 - buf->len);
63 buf->len += extra_len;
64 if (buf->size)
65 buf->str[FFMIN(buf->len, buf->size - 1)] = 0;
66}
67
68void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
69{
70 unsigned size_auto = (char *)buf + sizeof(*buf) -
71 buf->reserved_internal_buffer;
72
74 size_max = size_auto;
75 buf->str = buf->reserved_internal_buffer;
76 buf->len = 0;
77 buf->size = FFMIN(size_auto, size_max);
78 buf->size_max = size_max;
79 *buf->str = 0;
80 if (size_init > buf->size)
81 av_bprint_alloc(buf, size_init - 1);
82}
83
84void av_bprint_init_for_buffer(AVBPrint *buf, char *buffer, unsigned size)
85{
86 if (size == 0) {
88 return;
89 }
90
91 buf->str = buffer;
92 buf->len = 0;
93 buf->size = size;
94 buf->size_max = size;
95 *buf->str = 0;
96}
97
98void av_vbprintf(AVBPrint *buf, const char *fmt, va_list vl_arg)
99{
100 unsigned room;
101 char *dst;
102 int extra_len;
103 va_list vl;
104
105 while (1) {
106 room = av_bprint_room(buf);
107 dst = room ? buf->str + buf->len : NULL;
108 va_copy(vl, vl_arg);
109 extra_len = vsnprintf(dst, room, fmt, vl);
110 va_end(vl);
111 if (extra_len <= 0)
112 return;
113 if (extra_len < room)
114 break;
115 if (av_bprint_alloc(buf, extra_len))
116 break;
117 }
118 av_bprint_grow(buf, extra_len);
119}
120
121void av_bprintf(AVBPrint *buf, const char *fmt, ...)
122{
123 va_list vl;
124 va_start(vl, fmt);
125 av_vbprintf(buf, fmt, vl);
126 va_end(vl);
127}
128
129void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
130{
131 unsigned room, real_n;
132
133 while (1) {
134 room = av_bprint_room(buf);
135 if (n < room)
136 break;
137 if (av_bprint_alloc(buf, n))
138 break;
139 }
140 if (room) {
141 real_n = FFMIN(n, room - 1);
142 memset(buf->str + buf->len, c, real_n);
143 }
144 av_bprint_grow(buf, n);
145}
146
147void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size)
148{
149 unsigned room, real_n;
150
151 while (1) {
152 room = av_bprint_room(buf);
153 if (size < room)
154 break;
155 if (av_bprint_alloc(buf, size))
156 break;
157 }
158 if (room) {
159 real_n = FFMIN(size, room - 1);
160 memcpy(buf->str + buf->len, data, real_n);
161 }
162 av_bprint_grow(buf, size);
163}
164
165void av_bprint_strftime(AVBPrint *buf, const char *fmt, const struct tm *tm)
166{
167 unsigned room;
168 size_t l;
169 size_t fmt_len = strlen(fmt);
170
171 if (!*fmt)
172 return;
173 while (1) {
174 room = av_bprint_room(buf);
175 if (room && (l = strftime(buf->str + buf->len, room, fmt, tm)))
176 break;
177
178 /* Due to the limitations of strftime() it is not possible to know if
179 * the output buffer is too small or the output is empty.
180 * However, a 256x output space requirement compared to the format
181 * string length is so unlikely we can safely assume empty output. This
182 * allows supporting possibly empty format strings like "%p". */
183 if (room >> 8 > fmt_len)
184 break;
185
186 /* strftime does not tell us how much room it would need: let us
187 retry with twice as much until the buffer is large enough */
188 room = !room ? fmt_len + 1 :
189 room <= INT_MAX / 2 ? room * 2 : INT_MAX;
190 if (av_bprint_alloc(buf, room)) {
191 /* impossible to grow, try to manage something useful anyway */
192 room = av_bprint_room(buf);
193 if (room < 1024) {
194 /* if strftime fails because the buffer has (almost) reached
195 its maximum size, let us try in a local buffer; 1k should
196 be enough to format any real date+time string */
197 char buf2[1024];
198 if ((l = strftime(buf2, sizeof(buf2), fmt, tm))) {
199 av_bprintf(buf, "%s", buf2);
200 return;
201 }
202 }
203 if (room) {
204 /* if anything else failed and the buffer is not already
205 truncated, let us add a stock string and force truncation */
206 static const char txt[] = "[truncated strftime output]";
207 memset(buf->str + buf->len, '!', room);
208 memcpy(buf->str + buf->len, txt, FFMIN(sizeof(txt) - 1, room));
209 av_bprint_grow(buf, room); /* force truncation */
210 }
211 return;
212 }
213 }
214 av_bprint_grow(buf, l);
215}
216
217void av_bprint_get_buffer(AVBPrint *buf, unsigned size,
218 unsigned char **mem, unsigned *actual_size)
219{
220 if (size > av_bprint_room(buf))
221 av_bprint_alloc(buf, size);
222 *actual_size = av_bprint_room(buf);
223 *mem = *actual_size ? (unsigned char *) (buf->str + buf->len) : NULL;
224}
225
226void av_bprint_clear(AVBPrint *buf)
227{
228 if (buf->len) {
229 *buf->str = 0;
230 buf->len = 0;
231 }
232}
233
234int av_bprint_finalize(AVBPrint *buf, char **ret_str)
235{
236 unsigned real_size = FFMIN(buf->len + 1, buf->size);
237 char *str;
238 int ret = 0;
239
240 if (ret_str) {
241 if (av_bprint_is_allocated(buf)) {
242 str = av_realloc(buf->str, real_size);
243 if (!str)
244 str = buf->str;
245 buf->str = NULL;
246 } else {
247 str = av_memdup(buf->str, real_size);
248 if (!str)
249 ret = AVERROR(ENOMEM);
250 }
251 *ret_str = str;
252 } else {
253 if (av_bprint_is_allocated(buf))
254 av_freep(&buf->str);
255 }
256 buf->size = real_size;
257 return ret;
258}
259
260#define WHITESPACES " \n\t\r"
261
262void av_bprint_escape(AVBPrint *dstbuf, const char *src, const char *special_chars,
263 enum AVEscapeMode mode, int flags)
264{
265 const char *src0 = src;
266
268 mode = AV_ESCAPE_MODE_BACKSLASH; /* TODO: implement a heuristic */
269
270 switch (mode) {
272 /* enclose the string between '' */
273 av_bprint_chars(dstbuf, '\'', 1);
274 for (; *src; src++) {
275 if (*src == '\'')
276 av_bprintf(dstbuf, "'\\''");
277 else
278 av_bprint_chars(dstbuf, *src, 1);
279 }
280 av_bprint_chars(dstbuf, '\'', 1);
281 break;
282
284 /* escape XML non-markup character data as per 2.4 by default: */
285 /* [^<&]* - ([^<&]* ']]>' [^<&]*) */
286
287 /* additionally, given one of the AV_ESCAPE_FLAG_XML_* flags, */
288 /* escape those specific characters as required. */
289 for (; *src; src++) {
290 switch (*src) {
291 case '&' : av_bprintf(dstbuf, "%s", "&amp;"); break;
292 case '<' : av_bprintf(dstbuf, "%s", "&lt;"); break;
293 case '>' : av_bprintf(dstbuf, "%s", "&gt;"); break;
294 case '\'':
296 goto XML_DEFAULT_HANDLING;
297
298 av_bprintf(dstbuf, "%s", "&apos;");
299 break;
300 case '"' :
302 goto XML_DEFAULT_HANDLING;
303
304 av_bprintf(dstbuf, "%s", "&quot;");
305 break;
306XML_DEFAULT_HANDLING:
307 default: av_bprint_chars(dstbuf, *src, 1);
308 }
309 }
310 break;
311
312 /* case AV_ESCAPE_MODE_BACKSLASH or unknown mode */
313 default:
314 /* \-escape characters */
315 for (; *src; src++) {
316 int is_first_last = src == src0 || !*(src+1);
317 int is_ws = !!strchr(WHITESPACES, *src);
318 int is_strictly_special = special_chars && strchr(special_chars, *src);
319 int is_special =
320 is_strictly_special || strchr("'\\", *src) ||
321 (is_ws && (flags & AV_ESCAPE_FLAG_WHITESPACE));
322
323 if (is_strictly_special ||
325 (is_special || (is_ws && is_first_last))))
326 av_bprint_chars(dstbuf, '\\', 1);
327 av_bprint_chars(dstbuf, *src, 1);
328 }
329 break;
330 }
331}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition bprint.c:121
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition bprint.c:68
#define av_bprint_is_allocated(buf)
Definition bprint.c:33
#define av_bprint_room(buf)
Definition bprint.c:32
static int av_bprint_alloc(AVBPrint *buf, unsigned room)
Definition bprint.c:35
static void av_bprint_grow(AVBPrint *buf, unsigned extra_len)
Definition bprint.c:59
AVBPrint public header.
#define AV_BPRINT_SIZE_AUTOMATIC
#define AV_BPRINT_SIZE_COUNT_ONLY
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define NULL
Definition coverity.c:32
error code definitions
#define WHITESPACES
Definition graphparser.c:35
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition bprint.h:218
void av_bprint_escape(AVBPrint *dstbuf, const char *src, const char *special_chars, enum AVEscapeMode mode, int flags)
Escape the content in src and append it to dstbuf.
Definition bprint.c:262
void av_bprint_get_buffer(AVBPrint *buf, unsigned size, unsigned char **mem, unsigned *actual_size)
Allocate bytes in the buffer for external use.
Definition bprint.c:217
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition bprint.c:234
void av_bprint_strftime(AVBPrint *buf, const char *fmt, const struct tm *tm)
Append a formatted date and time to a print buffer.
Definition bprint.c:165
unsigned size_init
Definition bprint.h:141
void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size)
Append data to a print buffer.
Definition bprint.c:147
void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
Append char c n times to a print buffer.
Definition bprint.c:129
void av_bprint_clear(AVBPrint *buf)
Reset the string to "" but keep internal allocated data.
Definition bprint.c:226
unsigned unsigned size_max
Definition bprint.h:141
void av_vbprintf(AVBPrint *buf, const char *fmt, va_list vl_arg)
Append a formatted string to a print buffer.
Definition bprint.c:98
void av_bprint_init_for_buffer(AVBPrint *buf, char *buffer, unsigned size)
Init a print buffer using a pre-existing buffer.
Definition bprint.c:84
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
void * av_memdup(const void *p, size_t size)
Duplicate a buffer with av_malloc().
Definition mem.c:302
#define AV_ESCAPE_FLAG_STRICT
Escape only specified special characters.
Definition avstring.h:336
#define AV_ESCAPE_FLAG_XML_DOUBLE_QUOTES
Within AV_ESCAPE_MODE_XML, additionally escape double quotes for double quoted attributes.
Definition avstring.h:348
#define AV_ESCAPE_FLAG_WHITESPACE
Consider spaces special and escape them even in the middle of the string.
Definition avstring.h:329
#define AV_ESCAPE_FLAG_XML_SINGLE_QUOTES
Within AV_ESCAPE_MODE_XML, additionally escape single quotes for single quoted attributes.
Definition avstring.h:342
AVEscapeMode
Definition avstring.h:314
@ AV_ESCAPE_MODE_AUTO
Use auto-selected escaping mode.
Definition avstring.h:315
@ AV_ESCAPE_MODE_XML
Use XML non-markup character data escaping.
Definition avstring.h:318
@ AV_ESCAPE_MODE_QUOTE
Use single-quote escaping.
Definition avstring.h:317
@ AV_ESCAPE_MODE_BACKSLASH
Use backslash escaping.
Definition avstring.h:316
Utility Preprocessor macros.
#define FFMIN(a, b)
Definition macros.h:49
Memory handling functions.
const char data[16]
Definition mxf.c:149
#define av_realloc(p, s)
Definition ops_static.c:54
Definition swscale.c:71
#define av_freep(p)
#define src0
Definition h264pred.c:140
#define src
Definition vp8dsp.c:248
static const char * ret_str(int v)
Definition seek.c:34
static char buffer[20]
Definition seek.c:32
int size
static double c[64]