aboutsummaryrefslogtreecommitdiff
path: root/bin/rdsquashfs/describe.c
blob: 452dc6cc175bfa2003e34f5792e0461a1733df54 (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
170
171
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
 * describe.c
 *
 * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
 */
#include "rdsquashfs.h"

static char *get_name(const sqfs_tree_node_t *n)
{
	char *name;
	int ret;

	ret = sqfs_tree_node_get_path(n, &name);
	if (ret != 0) {
		sqfs_perror(NULL, "Recovering file path of tree node", ret);
		return NULL;
	}

	if (canonicalize_name(name) != 0) {
		fprintf(stderr, "Error sanitizing file path '%s'\n", name);
		sqfs_free(name);
		return NULL;
	}

	return name;
}

static void print_stub(const char *type, const char *name,
		       const sqfs_tree_node_t *n)
{
	const char *start, *ptr;

	printf("%s ", type);

	if (strchr(name, ' ') == NULL && strchr(name, '"') == NULL) {
		fputs(name, stdout);
	} else {
		fputc('"', stdout);

		ptr = strchr(name, '"');

		if (ptr != NULL) {
			start = name;

			do {
				fwrite(start, 1, ptr - start, stdout);
				fputs("\\\"", stdout);
				start = ptr + 1;
				ptr = strchr(start, '"');
			} while (ptr != NULL);

			fputs(start, stdout);
		} else {
			fputs(name, stdout);
		}

		fputc('"', stdout);
	}

	printf(" 0%o %u %u", (unsigned int)n->inode->base.mode & (~S_IFMT),
	       n->uid, n->gid);
}

static int print_simple(const char *type, const sqfs_tree_node_t *n,
			const char *extra)
{
	char *name = get_name(n);
	if (name == NULL)
		return -1;
	print_stub(type, name, n);
	sqfs_free(name);
	if (extra != NULL)
		printf(" %s", extra);
	fputc('\n', stdout);
	return 0;
}

static int print_file(const sqfs_tree_node_t *n, const char *unpack_root)
{
	char *name, *srcpath;

	name = get_name(n);
	if (name == NULL)
		return -1;

#if defined(_WIN32) || defined(__WINDOWS__)
	srcpath = fix_win32_filename(name);
	if (srcpath == NULL) {
		fprintf(stderr, "Error sanitizing windows name '%s'\n",
			name);
		sqfs_free(name);
		return -1;
	}

	if (strcmp(name, srcpath) == 0) {
		free(srcpath);
		srcpath = NULL;
	}
#else
	srcpath = NULL;
#endif
	print_stub("file", name, n);

	if (unpack_root == NULL && srcpath != NULL) {
		printf(" %s", srcpath);
	} else if (unpack_root != NULL) {
		printf(" %s/%s", unpack_root,
		       srcpath == NULL ? name : srcpath);
	}

	fputc('\n', stdout);
	free(srcpath);
	sqfs_free(name);
	return 0;
}

int describe_tree(const sqfs_tree_node_t *root, const char *unpack_root)
{
	const sqfs_tree_node_t *n;

	if (!is_filename_sane((const char *)root->name)) {
		fprintf(stderr, "Encountered illegal file name '%s'\n",
			root->name);
		return -1;
	}

	switch (root->inode->base.mode & S_IFMT) {
	case S_IFSOCK:
		return print_simple("sock", root, NULL);
	case S_IFLNK:
		return print_simple("slink", root,
				    (const char *)root->inode->extra);
	case S_IFIFO:
		return print_simple("pipe", root, NULL);
	case S_IFREG:
		return print_file(root, unpack_root);
	case S_IFCHR:
	case S_IFBLK: {
		char buffer[32];
		sqfs_u32 devno;

		if (root->inode->base.type == SQFS_INODE_EXT_BDEV ||
		    root->inode->base.type == SQFS_INODE_EXT_CDEV) {
			devno = root->inode->data.dev_ext.devno;
		} else {
			devno = root->inode->data.dev.devno;
		}

		sprintf(buffer, "%c %u %u",
			S_ISCHR(root->inode->base.mode) ? 'c' : 'b',
			major(devno), minor(devno));
		return print_simple("nod", root, buffer);
	}
	case S_IFDIR:
		if (root->name[0] != '\0') {
			if (print_simple("dir", root, NULL))
				return -1;
		}

		for (n = root->children; n != NULL; n = n->next) {
			if (describe_tree(n, unpack_root))
				return -1;
		}
		break;
	default:
		break;
	}

	return 0;
}