aboutsummaryrefslogtreecommitdiff
path: root/difftool/compare_files.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-20 03:49:02 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-20 18:34:17 +0200
commit9486151f186e3664c8dd429fba94f9e539377d87 (patch)
treee2cb8caed78c3de99bf0c58a3c7b1ddd140efd40 /difftool/compare_files.c
parent08c22510ba901d73f2841434e7e6a2a688b31fa8 (diff)
sqfsdiff: remove squashfs-to-dir & dir-to-dir comparisons
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'difftool/compare_files.c')
-rw-r--r--difftool/compare_files.c60
1 files changed, 12 insertions, 48 deletions
diff --git a/difftool/compare_files.c b/difftool/compare_files.c
index df767c1..6138569 100644
--- a/difftool/compare_files.c
+++ b/difftool/compare_files.c
@@ -9,30 +9,14 @@
static unsigned char old_buf[MAX_WINDOW_SIZE];
static unsigned char new_buf[MAX_WINDOW_SIZE];
-static int open_file(int dirfd, const char *prefix, const char *path)
-{
- int fd = openat(dirfd, path, O_RDONLY);
-
- if (fd < 0) {
- fprintf(stderr, "open %s/%s: %s\n",
- prefix, path, strerror(errno));
- }
-
- return fd;
-}
-
-static int read_blob(const char *prefix, const char *path, bool is_dir,
- int fd, data_reader_t *rd, file_info_t *fi, void *buffer,
+static int read_blob(const char *prefix, const char *path,
+ data_reader_t *rd, file_info_t *fi, void *buffer,
off_t offset, size_t size)
{
ssize_t ret;
- if (is_dir) {
- ret = read_data_at(path, offset, fd, buffer, size);
- } else {
- ret = data_reader_read(rd, fi, offset, buffer, size);
- ret = (ret < 0 || (size_t)ret < size) ? -1 : 0;
- }
+ ret = data_reader_read(rd, fi, offset, buffer, size);
+ ret = (ret < 0 || (size_t)ret < size) ? -1 : 0;
if (ret) {
fprintf(stderr, "Failed to read %s from %s\n",
@@ -46,8 +30,8 @@ static int read_blob(const char *prefix, const char *path, bool is_dir,
int compare_files(sqfsdiff_t *sd, file_info_t *old, file_info_t *new,
const char *path)
{
- int old_fd = -1, new_fd = -1, status = 0, ret;
uint64_t offset, diff;
+ int status = 0, ret;
if (old->size != new->size)
goto out_different;
@@ -55,51 +39,31 @@ int compare_files(sqfsdiff_t *sd, file_info_t *old, file_info_t *new,
if (sd->compare_flags & COMPARE_NO_CONTENTS)
return 0;
- if (sd->old_is_dir) {
- old_fd = open_file(sd->old_fd, sd->old_path, path);
- if (old_fd < 0)
- goto fail;
- }
-
- if (sd->new_is_dir) {
- new_fd = open_file(sd->new_fd, sd->new_path, path);
- if (new_fd < 0)
- goto fail;
- }
-
for (offset = 0; offset < old->size; offset += diff) {
diff = old->size - offset;
if (diff > MAX_WINDOW_SIZE)
diff = MAX_WINDOW_SIZE;
- ret = read_blob(sd->old_path, path, sd->old_is_dir, old_fd,
+ ret = read_blob(sd->old_path, path,
sd->sqfs_old.data, old, old_buf, offset, diff);
if (ret)
- goto fail;
+ return -1;
- ret = read_blob(sd->new_path, path, sd->new_is_dir, new_fd,
+ ret = read_blob(sd->new_path, path,
sd->sqfs_new.data, new, new_buf, offset, diff);
if (ret)
- goto fail;
+ 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;
+ return -1;
}
- status = 1;
- goto out;
+ return 1;
}