aboutsummaryrefslogtreecommitdiff
path: root/lib/util/src/unix_dir_iterator.c
blob: e712a457577ba2b6dc14bcf524d5f59824417908 (plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/* SPDX-License-Identifier: LGPL-3.0-or-later */
/*
 * unix_dir_iterator.c
 *
 * Copyright (C) 2023 David Oberhollenzer <goliath@infraroot.at>
 */
#include "config.h"
#include "util/dir_iterator.h"
#include "util/util.h"
#include "sqfs/error.h"

#include <sys/stat.h>
#include <stdlib.h>
#include <dirent.h>
#include <string.h>
#include <errno.h>

typedef struct {
	dir_iterator_t base;

	struct dirent *ent;
	struct stat sb;
	int state;
	DIR *dir;
} unix_dir_iterator_t;

static void dir_destroy(sqfs_object_t *obj)
{
	unix_dir_iterator_t *it = (unix_dir_iterator_t *)obj;

	closedir(it->dir);
	free(it);
}

static int dir_read_link(dir_iterator_t *base, char **out)
{
	unix_dir_iterator_t *it = (unix_dir_iterator_t *)base;
	size_t size;
	char *str;

	*out = NULL;

	if (it->state != 0 || it->ent == NULL) {
		fputs("[BUG] no entry loaded, cannot readlink\n", stderr);
		return SQFS_ERROR_INTERNAL;
	}

	if (S_ISLNK(it->sb.st_mode)) {
		fprintf(stderr, "[BUG] %s is not a symlink, cannot readlink\n",
			it->ent->d_name);
		it->state = SQFS_ERROR_INTERNAL;
		return SQFS_ERROR_INTERNAL;
	}

	if ((sizeof(it->sb.st_size) > sizeof(size_t)) &&
	    it->sb.st_size > SIZE_MAX) {
		goto fail_ov;
	}

	if (SZ_ADD_OV((size_t)it->sb.st_size, 1, &size))
		goto fail_ov;

	str = calloc(1, size);
	if (str == NULL) {
		perror(it->ent->d_name);
		it->state = SQFS_ERROR_ALLOC;
		return it->state;
	}

	if (readlinkat(dirfd(it->dir), it->ent->d_name,
		       str, (size_t)it->sb.st_size) < 0) {
		fprintf(stderr, "%s: readlink: %s\n", it->ent->d_name,
			strerror(errno));
		free(str);
		it->state = SQFS_ERROR_INTERNAL;
		return it->state;
	}

	str[it->sb.st_size] = '\0';

	*out = str;
	return it->state;
fail_ov:
	fprintf(stderr, "%s: link target too long\n", it->ent->d_name);
	return SQFS_ERROR_OVERFLOW;
}

static int dir_next(dir_iterator_t *base, dir_entry_t **out)
{
	unix_dir_iterator_t *it = (unix_dir_iterator_t *)base;
	dir_entry_t *decoded;
	size_t len;

	if (it->state != 0)
		return it->state;

	errno = 0;
	it->ent = readdir(it->dir);

	if (it->ent == NULL) {
		if (errno != 0) {
			perror("readdir");
			it->state = SQFS_ERROR_INTERNAL;
		} else {
			it->state = 1;
		}

		return it->state;
	}

	if (fstatat(dirfd(it->dir), it->ent->d_name, &it->sb, AT_SYMLINK_NOFOLLOW)) {
		perror(it->ent->d_name);
		it->state = SQFS_ERROR_INTERNAL;
		return it->state;
	}

	len = strlen(it->ent->d_name);

	decoded = alloc_flex(sizeof(*decoded), 1, len + 1);
	if (decoded == NULL) {
		perror(it->ent->d_name);
		it->state = SQFS_ERROR_ALLOC;
		return it->state;
	}

	memcpy(decoded->name, it->ent->d_name, len);
	decoded->mtime = it->sb.st_mtime;
	decoded->dev = it->sb.st_dev;
	decoded->rdev = it->sb.st_rdev;
	decoded->uid = it->sb.st_uid;
	decoded->gid = it->sb.st_gid;
	decoded->mode = it->sb.st_mode;

	*out = decoded;
	return it->state;
}

dir_iterator_t *dir_iterator_create(const char *path)
{
	unix_dir_iterator_t *it = calloc(1, sizeof(*it));

	if (it == NULL) {
		perror(path);
		return NULL;
	}

	it->state = 0;
	it->dir = opendir(path);

	if (it->dir == NULL) {
		perror(path);
		free(it);
		return NULL;
	}

	if (fstat(dirfd(it->dir), &it->sb)) {
		perror(path);
		closedir(it->dir);
		free(it);
		return NULL;
	}

	sqfs_object_init(it, dir_destroy, NULL);
	((dir_iterator_t *)it)->dev = it->sb.st_dev;
	((dir_iterator_t *)it)->next = dir_next;
	((dir_iterator_t *)it)->read_link = dir_read_link;

	return (dir_iterator_t *)it;
}