-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsdt_alloc.c
69 lines (55 loc) · 1.47 KB
/
sdt_alloc.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
#include <errno.h>
#include <limits.h>
#include <unistd.h>
#include <err.h>
#include "sdt_alloc.h"
#ifdef PATH_MAX
static long pathmax = PATH_MAX;
#else
static long pathmax = 0;
#endif
static long posix_version = 0;
static long xsi_version = 0;
/* if PATH_MAX is indeterminate, no guarantee this is adequate */
#define PATH_MAX_GUESS 1024
void *sdt_alloc(size_t size)
{
void *p;
p = malloc(size);
if (p == NULL) {
err(EXIT_FAILURE, "malloc(%luz) failed", size);
}
return p;
}
char *sdt_path_alloc(size_t *sizep)
{
char *ptr;
size_t size;
if (posix_version == 0)
posix_version = sysconf(_SC_VERSION);
if (xsi_version == 0)
xsi_version = sysconf(_SC_XOPEN_VERSION);
if (pathmax == 0) { /* first time through */
errno = 0;
if ((pathmax = pathconf("/", _PC_PATH_MAX)) < 0) {
if (errno == 0)
pathmax = PATH_MAX_GUESS;
else
err(EXIT_FAILURE, "pathconf error for _PC_PATH_MAX");
} else {
pathmax++;
}
}
/*
* Before PASIX.1-2001, we aren't guaranteed that PATH_MAX includes
* the terminating null byte. Same goes for XPG3.
*/
if ((posix_version < 200112L) && (xsi_version < 4))
size = pathmax + 1;
else
size = pathmax;
ptr = (char *)sdt_alloc(size);
if (sizep != NULL)
*sizep = size;
return ptr;
}