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
| | #include <dirent.h>
#include <pthread.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <errno.h>
#include <stddef.h>
int scandir(const char *path, struct dirent ***res,
int (*sel)(const struct dirent *),
int (*cmp)(const struct dirent **, const struct dirent **))
{
DIR *d;
struct dirent *de, **names=0, **tmp;
size_t cnt=0, len=0;
int old_errno = errno, err, cs;
/* opendir() and closedir() are cancellation points. scandir() is also
* allowed to be a cancellation point but we choose not to make it one.
* To avoid calling sel() and cmp() with altered thread state,
* cancellation is not explicitly disabled for those calls. This means
* if either of the callbacks acts upon a cancellation request, there
* can be memory and file descriptor leaks. */
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
d = opendir(path);
pthread_setcancelstate(cs, 0);
if (!d) return -1;
while ((errno=0), (de = readdir(d))) {
if (sel) {
/* sel() must not observe that errno was set to 0. */
errno = old_errno;
if (!sel(de)) continue;
}
if (cnt >= len) {
len = 2*len+1;
if (len > SIZE_MAX/sizeof *names) break;
tmp = realloc(names, len * sizeof *names);
if (!tmp) break;
names = tmp;
}
names[cnt] = malloc(de->d_reclen);
if (!names[cnt]) break;
memcpy(names[cnt++], de, de->d_reclen);
}
/* closedir() might set errno via __aio_close(). It might also "fail"
* (return -1 and set errno). But even then, the file descriptor is
* closed and memory is freed, so there is no reason to report the
* "failure" of closedir() as a failure of scandir(). */
err = errno;
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
closedir(d);
pthread_setcancelstate(cs, 0);
if (err) {
if (names) while (cnt-->0) free(names[cnt]);
free(names);
errno = err;
return -1;
}
/* cmp() and caller must not observe that errno was set to 0. */
errno = old_errno;
if (cmp) qsort(names, cnt, sizeof *names, (int (*)(const void *, const void *))cmp);
*res = names;
return cnt;
}
|