summaryrefslogtreecommitdiff
path: root/difftool/compare_files.c
blob: 605df8402f1569ce30b3e2093d0bcd367987416a (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
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
 * compare_files.c
 *
 * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
 */
#include "sqfsdiff.h"

static unsigned char old_buf[MAX_WINDOW_SIZE];
static unsigned char new_buf[MAX_WINDOW_SIZE];

int compare_files(sqfsdiff_t *sd, file_info_t *old, file_info_t *new,
		  const char *path)
{
	char new_name[strlen(sd->new_path) + strlen(path) + 2];
	char old_name[strlen(sd->old_path) + strlen(path) + 2];
	int old_fd = -1, new_fd = -1, status = 0;
	uint64_t offset, diff;
	ssize_t ret;

	if (old->size != new->size)
		goto out_different;

	if (sd->compare_flags & COMPARE_NO_CONTENTS)
		return 0;

	if (sd->old_is_dir) {
		sprintf(old_name, "%s/%s", sd->old_path, path);

		old_fd = open(old_name, O_RDONLY);
		if (old_fd < 0) {
			perror(old_name);
			goto fail;
		}
	}

	if (sd->new_is_dir) {
		sprintf(new_name, "%s/%s", sd->new_path, path);

		new_fd = open(new_name, O_RDONLY);
		if (new_fd < 0) {
			perror(new_name);
			goto fail;
		}
	}

	for (offset = 0; offset < old->size; offset += diff) {
		diff = old->size - offset;

		if (diff > MAX_WINDOW_SIZE)
			diff = MAX_WINDOW_SIZE;

		if (sd->old_is_dir) {
			if (read_data_at(old_name, offset, old_fd,
					 old_buf, diff))
				goto out;
		} else {
			ret = data_reader_read(sd->sqfs_old.data, old, offset,
					       old_buf, diff);
			if (ret < 0 || (size_t)ret < diff) {
				fprintf(stderr, "Failed to read %s from %s\n",
					path, sd->old_path);
				return -1;
			}
		}

		if (sd->new_is_dir) {
			if (read_data_at(new_name, offset, new_fd,
					 new_buf, diff))
				goto out;
		} else {
			ret = data_reader_read(sd->sqfs_new.data, new, offset,
					       new_buf, diff);
			if (ret < 0 || (size_t)ret < diff) {
				fprintf(stderr, "Failed to read %s from %s\n",
					path, sd->new_path);
				return -1;
			}
		}

		if (memcmp(old_buf, new_buf, diff) != 0)
			goto out_different;
	}
out:
	if (old_fd >= 0)
		close(old_fd);
	if (new_fd >= 0)
		close(new_fd);
	return status;
fail:
	status = -1;
	goto out;
out_different:
	if (sd->compare_flags & COMPARE_EXTRACT_FILES) {
		if (extract_files(sd, old, new, path))
			goto fail;
	}
	status = 1;
	goto out;
}