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
|
/*
* libcompat - system compatibility library
*
* Copyright © 1995 Ian Jackson <ian@chiark.greenend.org.uk>
* Copyright © 2008-2012 Guillem Jover <guillem@debian.org>
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdarg.h>
#include <stdio.h>
int
vsnprintf(char *buf, size_t maxsize, const char *fmt, va_list args)
{
static FILE *file = NULL;
static pid_t file_pid;
size_t want, nr;
int total;
if (maxsize != 0 && buf == NULL)
return -1;
/* Avoid race conditions from children after a fork(2). */
if (file_pid > 0 && file_pid != getpid()) {
fclose(file);
file = NULL;
}
if (!file) {
file = tmpfile();
if (!file)
return -1;
file_pid = getpid();
} else {
if (fseek(file, 0, 0))
return -1;
if (ftruncate(fileno(file), 0))
return -1;
}
total = vfprintf(file, fmt, args);
if (total < 0)
return -1;
if (maxsize == 0)
return total;
if (total >= (int)maxsize)
want = maxsize - 1;
else
want = total;
if (fflush(file))
return -1;
if (fseek(file, 0, SEEK_SET))
return -1;
nr = fread(buf, 1, want, file);
if (nr != want)
return -1;
buf[want] = '\0';
return total;
}
|