-
Notifications
You must be signed in to change notification settings - Fork 83
/
file_scan.c
1226 lines (1020 loc) · 29.3 KB
/
file_scan.c
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* file_scan.c
*
* Implementation of file scan and checksum phase.
*
* Copyright (C) 2014 SUSE. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* Authors: Mark Fasheh <[email protected]>
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/param.h>
#include <limits.h>
#include <fcntl.h>
#include <assert.h>
#include <unistd.h>
#include <stdio.h>
#include <dirent.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <linux/limits.h>
#include <linux/fiemap.h>
#include <linux/fs.h>
#include <inttypes.h>
#include <linux/magic.h>
#include <sys/statfs.h>
#include <fnmatch.h>
#include <blkid/blkid.h>
#include <libmount/libmount.h>
#include <sys/sysmacros.h>
#include <uuid/uuid.h>
#include <bsd/sys/queue.h>
#include <glib.h>
#include "csum.h"
#include "filerec.h"
#include "hash-tree.h"
#include "btrfs-util.h"
#include "debug.h"
#include "file_scan.h"
#include "dbfile.h"
#include "util.h"
#include "opt.h"
#include "threads.h"
#include "fiemap.h"
#include "progress.h"
/* This is not in linux/magic.h */
#ifndef XFS_SB_MAGIC
#define XFS_SB_MAGIC 0x58465342 /* 'XFSB' */
#endif
struct exclude_file {
char *pattern;
SLIST_ENTRY(exclude_file) list;
};
SLIST_HEAD(exclude_list, exclude_file) exclude_head = SLIST_HEAD_INITIALIZER(exclude_head);
static int __scan_file(char *path, struct dbhandle *db, struct statx *st);
static struct threads_pool scan_pool;
#define READ_BUF_LEN (8*1024*1024) // 8MB
struct buffer {
char *buf;
size_t size; /* Size of buf */
/*
* Data has been processed up to this offset
* Whatever is afterward should be move at the begining of buf
* and not thrown away.
*/
size_t dl_offset;
/* Size of the unprocessed data left in the buf */
size_t dl_len;
/* Set to true if the buffer is zeroed */
bool faked;
};
/*
* A structure to keep our file hashes before committing them
* to the hash table
* extents_count and blocks_count are the size of the allocated arrays
* extents_index and blocks_index are the index of the next free entries
*/
struct hashes {
unsigned int extents_count;
unsigned int extents_index;
struct extent_csum *extents;
unsigned int blocks_count;
unsigned int blocks_index;
struct block_csum *blocks;
};
struct scan_ctxt {
int fd;
size_t filesize;
size_t off; /* file offset of the last processed bytes */
struct fiemap *fiemap;
struct running_checksum *file_csum;
struct running_checksum *extent_csum;
};
/*
* Represents the filesystem we are working on
* Its UUID may be found in the hashfile
* The dev_t may change at each run, so we discover its
* value at runtime and use it to quicken the check on non-btrfs fs
*/
struct locked_fs {
uuid_t uuid;
dev_t dev;
bool is_btrfs;
};
struct locked_fs locked_fs = {0,};
static bool allocate_hashes(struct hashes *hashes, struct scan_ctxt *ctxt)
{
hashes->extents_count = ctxt->fiemap->fm_mapped_extents;
hashes->extents = calloc(hashes->extents_count, sizeof(struct extent_csum));
hashes->blocks_count = ctxt->filesize / blocksize + 1;
hashes->blocks = calloc(hashes->blocks_count, sizeof(struct block_csum));
return hashes->extents && hashes->blocks;
}
static void free_hashes(struct hashes *hashes)
{
if (!hashes)
return;
if (hashes->extents)
free(hashes->extents);
if (hashes->blocks)
free(hashes->blocks);
}
static int prepare_buffer(struct buffer *buffer)
{
if (!buffer)
goto err;
memset(buffer, 0, sizeof(struct buffer));
buffer->buf = calloc(1, READ_BUF_LEN);
if (!(buffer->buf))
goto err;
buffer->size = READ_BUF_LEN;
register_cleanup(&scan_pool, (void*)&free, buffer->buf);
return 0;
err:
eprintf("prepare_buffer failed\n");
return 1;
}
static void free_scan_ctxt(struct scan_ctxt *ctxt)
{
if (!ctxt)
return;
if (ctxt->fd >= 0)
close(ctxt->fd);
if (ctxt->fiemap)
free(ctxt->fiemap);
if (ctxt->file_csum)
finish_running_checksum(ctxt->file_csum, NULL);
if (ctxt->extent_csum)
finish_running_checksum(ctxt->extent_csum, NULL);
}
static int is_excluded(const char *name)
{
struct exclude_file *exclude;
SLIST_FOREACH(exclude, &exclude_head, list) {
if (fnmatch(exclude->pattern, name, 0) == 0) {
vprintf("Excluding: %s (matches %s)\n", name,
exclude->pattern);
return 1;
}
}
return 0;
}
static inline void mnt_unref_table_cleanup(struct libmnt_table **tb)
{
if (tb && *tb)
mnt_unref_table(*tb);
}
static inline dev_t stx_to_dev(struct statx *stx)
{
return makedev(stx->stx_dev_major, stx->stx_dev_minor);
}
/* Get the UUID associated with the FS that stores path */
int get_uuid(char *path, uuid_t *uuid)
{
struct statx st;
int ret;
_cleanup_(mnt_unref_table_cleanup) struct libmnt_table *tb = NULL;
_cleanup_(closefd) int fd = open(path, O_RDONLY);
_cleanup_(freep) char *uuid_found = NULL;
struct libmnt_fs *dev = NULL;
if (fd == -1) {
eprintf("Cannot open %s: %s\n", path, strerror(errno));
return 1;
}
if (is_btrfs(path)) {
dprintf("get_uuid: %s lives on btrfs\n", path);
ret = btrfs_get_fsuuid(fd, uuid);
if (ret) {
eprintf("%s: btrfs_get_fsuuid failed\n",
path);
return 1;
}
} else {
dprintf("get_uuid: %s do not live on btrfs\n", path);
ret = statx(0, path, 0, STATX_BASIC_STATS, &st);
if (ret) {
eprintf("Failed to stat %s: %s\n",
path, strerror(errno));
return 1;
}
if (st.stx_dev_major == 0) {
dprintf("%s lives on an unsupported filesystem, skipping. "
"Please fill a bug if you think this is a mistake.\n",
path);
return 1;
}
tb = mnt_new_table_from_file("/proc/self/mountinfo");
if (!tb) {
perror("unable to read and parse /proc/self/mountinfo");
return 1;
}
dev = mnt_table_find_devno(tb, stx_to_dev(&st), MNT_ITER_FORWARD);
if (!dev) {
eprintf("%s: unable to find the mount infos\n",
path);
return 1;
}
uuid_found = blkid_get_tag_value(NULL, "UUID", mnt_fs_get_source(dev));
if (!uuid_found) {
eprintf("libblkid could not get uuid for "
"device %s. Run blkid as root to "
"populate the cache.\n",
mnt_fs_get_source(dev));
return 1;
}
uuid_parse(uuid_found, *uuid);
}
return 0;
}
static inline uint64_t timestamp_to_nano(struct statx_timestamp t)
{
return t.tv_sec * 1000000000 + t.tv_nsec;
}
/*
* Check if path lives on a filesystem that is supported, eg
* that is known to support deduplication.
*/
bool is_fs_supported(char *path)
{
struct statfs fs;
int ret;
ret = statfs(path, &fs);
if (ret) {
eprintf("Error %d: %s while check fs type on %s",
errno, strerror(errno), path);
return false;
}
return (fs.f_type == BTRFS_SUPER_MAGIC ||
fs.f_type == XFS_SB_MAGIC);
}
/* Check if path should be processed:
* - is path not excluded ?
* - is path a file or directory ?
* - is path not an empty file ?
* - does path lives on our locked filesystem ?
* for files, we only do that check if the parent is not checked
*
* Returns true is the file is legit, false if not (or on error)
*/
bool check_file(struct dbhandle *db, char *path, struct statx *st, bool parent_checked)
{
int ret;
struct dbfile_config cfg;
uuid_t uuid = {0,};
if (is_excluded(path))
return false;
if (!S_ISREG(st->stx_mode) && !S_ISDIR(st->stx_mode)) {
vprintf("Skipping non-regular/non-directory file %s\n", path);
return false;
}
if (S_ISREG(st->stx_mode) && st->stx_size == 0) {
vprintf("Skipping empty file %s\n", path);
return false;
}
/* There is no need to check if the file lives in our locked fs.
* It is a regular file and we already check its parent.
*/
if (S_ISREG(st->stx_mode) && parent_checked)
return true;
/* Locked-fs checks */
/* First, try to get uuid from the hashfile */
if (uuid_is_null(locked_fs.uuid)) {
dprintf("Looking our fs uuid from the hashfile\n");
ret = dbfile_get_config(db->db, &cfg);
if (ret)
return 1;
if (!uuid_is_null(cfg.fs_uuid))
uuid_copy(locked_fs.uuid, cfg.fs_uuid);
}
/* hashfile was empty. We lock on the file. */
if (uuid_is_null(locked_fs.uuid)) {
dprintf("Empty hashfile, locking on the current file\n");
ret = get_uuid(path, &locked_fs.uuid);
if (ret)
return false;
locked_fs.dev = stx_to_dev(st);
locked_fs.is_btrfs = is_btrfs(path);
if (!is_fs_supported(path))
eprintf("Warn: filesystem for %s is not known to "
"support deduplication.\n", path);
return true;
}
/* Hashfile was not empty */
/* We miss runtime data, check if our fille is in the valid fs
* and store them for future calls
*/
if (locked_fs.dev == 0) {
ret = get_uuid(path, &uuid);
if (ret)
return false;
if (uuid_compare(uuid, locked_fs.uuid) != 0) {
eprintf("%s lives on fs ", path);
debug_print_uuid(uuid);
eprintf(" will we are locked on fs ");
debug_print_uuid(locked_fs.uuid);
eprintf(".\n");
return false;
}
locked_fs.dev = stx_to_dev(st);
locked_fs.is_btrfs = is_btrfs(path);
return true;
}
if (!locked_fs.is_btrfs)
return locked_fs.dev == stx_to_dev(st);
/* On btrfs, we must always fetch the UUID */
ret = get_uuid(path, &uuid);
if (ret)
return false;
return uuid_compare(uuid, locked_fs.uuid) == 0;
}
void fs_get_locked_uuid(uuid_t *uuid)
{
if (uuid)
uuid_copy(*uuid, locked_fs.uuid);
}
static int get_dirent_type(struct dirent *entry, int fd, const char *path)
{
int ret;
struct statx st;
if (entry->d_type != DT_UNKNOWN)
return entry->d_type;
/*
* FS doesn't support file type in dirent, do this the old
* fashioned way. We translate mode to DT_* for the
* convenience of the caller.
*/
ret = statx(fd, entry->d_name, AT_SYMLINK_NOFOLLOW, STATX_BASIC_STATS, &st);
if (ret || !(st.stx_mask & STATX_BASIC_STATS)) {
eprintf("Error %d: %s while getting type of file %s/%s. "
"Skipping.\n",
errno, strerror(errno), path, entry->d_name);
return DT_UNKNOWN;
}
if (S_ISREG(st.stx_mode))
return DT_REG;
if (S_ISDIR(st.stx_mode))
return DT_DIR;
if (S_ISBLK(st.stx_mode))
return DT_BLK;
if (S_ISCHR(st.stx_mode))
return DT_CHR;
if (S_ISFIFO(st.stx_mode))
return DT_FIFO;
if (S_ISLNK(st.stx_mode))
return DT_LNK;
if (S_ISSOCK(st.stx_mode))
return DT_SOCK;
return DT_UNKNOWN;
}
/*
* Returns nonzero on fatal errors only
*/
static int walk_dir(char *path, struct dbhandle *db)
{
int ret = 0;
struct dirent *entry;
struct statx st;
_cleanup_(closedirectory) DIR *dirp = opendir(path);
/* Overallocate to peace the compiler. An abort will check the actual values. */
char child[PATH_MAX + 257] = { 0, };
if (dirp == NULL) {
eprintf("Error %d: %s while opening directory %s\n",
errno, strerror(errno), path);
return 0;
}
while(true) {
errno = 0;
entry = readdir(dirp);
if (!entry && errno == 0) /* End of directory */
break;
if (errno != 0) {
eprintf("Error %d: %s while reading directory %s\n",
errno, strerror(errno), path);
return 0;
}
if (strcmp(entry->d_name, ".") == 0
|| strcmp(entry->d_name, "..") == 0)
continue;
entry->d_type = get_dirent_type(entry, dirfd(dirp), path);
if (entry->d_type != DT_REG &&
!(options.recurse_dirs && entry->d_type == DT_DIR))
continue;
/* This should never happen */
abort_on(strlen(path) + strlen(entry->d_name) > PATH_MAX);
if (strcmp(path, "/") == 0)
sprintf(child, "/%s", entry->d_name);
else
sprintf(child, "%s/%s", path, entry->d_name);
ret = statx(0, child, 0, STATX_BASIC_STATS, &st);
if (ret || !(st.stx_mask | STATX_BASIC_STATS)) {
eprintf("Failed to stat %s: %s\n",
path, strerror(errno));
continue;
}
if (!check_file(db, child, &st, true))
continue;
if (entry->d_type == DT_REG)
ret = __scan_file(child, db, &st);
else
ret = walk_dir(child, db);
if (ret)
return ret;
}
return 0;
}
static inline bool is_file_renamed(char *path_in_db, char *path)
{
struct stat st;
if (strlen(path_in_db) == 0 || strcmp(path_in_db, path) == 0)
return false;
/*
* Old path and new paths differs. Could be hardlink,
* so we check if the old still exists.
*/
return true ? lstat(path_in_db, &st) : false;
}
/*
* Returns nonzero on fatal errors only
* This function schedules csum_whole_file()
* The caller must call check_file() before and must not call
* this if path is not a regular file.
*/
static int __scan_file(char *path, struct dbhandle *db, struct statx *st)
{
int ret;
struct file dbfile = {0,};
static unsigned int seq = 0, counter = 0;
GError *err = NULL;
struct file_to_scan *file;
int64_t fileid = 0;
bool file_renamed;
static uint64_t position = 0;
/*
* The first call initializes the static variable
* from the global dedupe_seq
* The subsequents calls will increase it every <batchsize> times
*/
if (seq == 0)
seq = dedupe_seq + 1;
abort_on(!S_ISREG(st->stx_mode));
if (locked_fs.is_btrfs) {
_cleanup_(closefd) int fd;
fd = open(path, O_RDONLY);
if (fd == -1) {
eprintf("Error %d: %s while opening file \"%s\". "
"Skipping.\n", errno, strerror(errno), path);
return 0;
}
/*
* Inodes between subvolumes on a btrfs file system
* can have the same i_ino. Get the subvolume id of
* our file so hard link detection works.
*/
ret = lookup_btrfs_subvol(fd, &(dbfile.subvol));
if (ret) {
eprintf("Error %d: %s while finding subvol for file "
"\"%s\". Skipping.\n", ret, strerror(ret),
path);
return 0;
}
}
/*
* Check the database to see if that file need rescan or not.
*/
ret = dbfile_describe_file(db, st->stx_ino, dbfile.subvol, &dbfile);
if (ret) {
vprintf("dbfile_describe_file failed\n");
return 0;
}
file_renamed = is_file_renamed(dbfile.filename, path);
/* Database is up-to-date, nothing more to do */
if (dbfile.mtime == timestamp_to_nano(st->stx_mtime)
&& dbfile.size == st->stx_size && !file_renamed)
return 0;
if (options.batch_size != 0) {
counter += 1;
if (counter >= options.batch_size) {
seq++;
counter = 0;
}
}
dbfile.ino = st->stx_ino;
dbfile.size = st->stx_size;
strncpy(dbfile.filename, path, PATH_MAX);
dbfile.mtime = timestamp_to_nano(st->stx_mtime);
dbfile.dedupe_seq = seq;
dbfile_lock();
dbfile_begin_trans(db->db);
if (file_renamed) {
ret = dbfile_rename_file(db, dbfile.id, path);
if (ret) {
vprintf("dbfile_rename_file failed\n");
return 0;
}
}
if (dbfile.mtime != 0 || dbfile.size != 0) {
/*
* The file was scanned in a previous run.
* We will rescan it, so let's remove old hashes
*/
dbfile_remove_hashes(db, dbfile.id);
}
/* Upsert the file record */
fileid = dbfile_store_file_info(db, &dbfile);
if (!fileid) {
dbfile_abort_trans(db->db);
dbfile_unlock();
return 0;
}
dbfile_commit_trans(db->db);
dbfile_unlock();
/* Schedule the file for scan */
file = malloc(sizeof(struct file_to_scan)); /* Freed by csum_whole_file() */
file->path = strdup(path);
file->fileid = fileid;
file->filesize = st->stx_size;
pscan_set_progress(1, st->stx_size);
position++;
file->file_position = position;
if(!g_thread_pool_push(scan_pool.pool, file, &err)) {
eprintf("g_thread_pool_push: %s\n", err->message);
g_error_free(err);
err = NULL;
free(file);
return 1;
}
return 0;
}
/* The entry point for files passed by the user */
int scan_file(char *in_path, struct dbhandle *db)
{
struct statx st;
char path[PATH_MAX];
int ret;
/*
* Sanitize the file name and get absolute path. This avoids:
*
* - needless filerec writes to the db when we have
* effectively the same filename but the components have extra '/'
*
* - Absolute path allows the user to re-run this hash from
* any directory.
*/
if (realpath(in_path, path) == NULL) {
eprintf("Error %d: %s while getting path to file %s. "
"Skipping.\n",
errno, strerror(errno), in_path);
return 0;
}
ret = statx(0, path, 0, STATX_BASIC_STATS, &st);
if (ret || !(st.stx_mask & STATX_BASIC_STATS)) {
eprintf("Error %d: %s while stating file %s. "
"Skipping.\n",
errno, strerror(errno), path);
return 0;
}
if (!check_file(db, path, &st, false))
return 0;
if (S_ISREG(st.stx_mode))
return __scan_file(path, db, &st);
else
return walk_dir(path, db);
}
/* Check if the block starting at buf is full of zeroes */
static inline int is_block_zeroed(void *buf)
{
return buf && ((int*)buf)[0] == 0 && !memcmp(buf, buf + 1, blocksize - 1);
}
static int add_block_hash(struct hashes *hashes,
uint64_t loff, unsigned char *digest)
{
struct block_csum *retp;
if (hashes->blocks_index + 1 > hashes->blocks_count) {
/* Somehow, we did not allocate enough memory */
hashes->blocks_count++;
retp = realloc(hashes->blocks, sizeof(struct block_csum) * hashes->blocks_count);
if (!retp)
return -ENOMEM;
hashes->blocks = retp;
}
hashes->blocks[hashes->blocks_index].loff = loff;
memcpy(hashes->blocks[hashes->blocks_index].digest, digest, DIGEST_LEN);
hashes->blocks_index++;
return 0;
}
/*
* Check if the area should be scanned.
*/
static bool is_area_ignored(struct fiemap *fiemap, size_t start, size_t len)
{
size_t end = start + len;
struct fiemap_extent *current_extent;
while (start < end) {
current_extent = get_extent(fiemap, start, NULL);
/* File changed since we fiemap */
if (!current_extent)
return false;
if (current_extent->fe_flags & FIEMAP_SKIP_FLAGS)
return true;
if (current_extent->fe_flags & FIEMAP_EXTENT_LAST)
break;
start = current_extent->fe_logical + current_extent->fe_length + 1;
}
return false;
}
/*
* Check if the block starting at off should be ignored.
*/
static inline bool is_block_ignored(struct fiemap *fiemap, size_t off)
{
return is_area_ignored(fiemap, off, blocksize);
}
static int process_block(char *buf, unsigned int bsize,
size_t file_off, struct hashes *hashes)
{
unsigned char digest[DIGEST_LEN];
checksum_block(buf, bsize, digest);
return add_block_hash(hashes, file_off, digest);
}
/*
* Processes entire blocks from buffer.
* Partial blocks are ignored: the buffer needs to be refilled.
* Returns the total of bytes processed.
*/
static ssize_t process_blocks(struct scan_ctxt *ctxt, struct buffer *buffer,
struct hashes *hashes)
{
int ret = 0;
unsigned int nb_blocks = buffer->dl_len / blocksize;
size_t curr_file_off = ctxt->off;
/* We do not actually need to process the blocks */
if (!options.do_block_hash || buffer->faked)
return buffer->dl_len;
for (unsigned int i = 0; i < nb_blocks; i++) {
if (!is_block_ignored(ctxt->fiemap, curr_file_off) &&
!(options.skip_zeroes &&
is_block_zeroed(buffer->buf + buffer->dl_offset))) {
ret = process_block(buffer->buf + i * blocksize,
blocksize, curr_file_off, hashes);
if (ret)
return ret;
}
curr_file_off += blocksize;
}
return nb_blocks * blocksize;
}
static int store_extent(struct scan_ctxt *ctxt, struct hashes *hashes, struct fiemap_extent *extent)
{
struct extent_csum *retp;
if (hashes->extents_index + 1 > hashes->extents_count) {
/* Somehow, we did not allocate enough memory */
hashes->extents_count++;
retp = realloc(hashes->extents, sizeof(struct extent_csum) * hashes->extents_count);
if (!retp)
return -ENOMEM;
hashes->extents = retp;
}
if (extent->fe_flags & FIEMAP_SKIP_FLAGS) {
hashes->extents[hashes->extents_index].len = 0;
} else {
hashes->extents[hashes->extents_index].loff = extent->fe_logical;
hashes->extents[hashes->extents_index].poff = extent->fe_physical;
hashes->extents[hashes->extents_index].len = extent->fe_length;
finish_running_checksum(ctxt->extent_csum, hashes->extents[hashes->extents_index].digest);
ctxt->extent_csum = NULL;
}
hashes->extents_index++;
return 0;
}
static int process_extents(struct scan_ctxt *ctxt, struct buffer *buffer,
struct hashes *hashes, size_t bytes)
{
/* Local variables to not overwrite the context etc */
size_t file_off = ctxt->off;
size_t buf_off = 0;
int ret;
struct fiemap_extent *extent;
size_t ext_end_off;
size_t to_add;
while (file_off < ctxt->off + bytes) {
extent = get_extent(ctxt->fiemap, file_off, NULL);
if (!extent) {
eprintf("process_extents: unable to get extent\n");
/* Cleanup the partial checksum and skip
* the rest of the buffer
*/
if (ctxt->extent_csum)
finish_running_checksum(ctxt->extent_csum, NULL);
ctxt->extent_csum = NULL;
return 1;
}
ext_end_off = extent->fe_logical + extent->fe_length;
if (ext_end_off > ctxt->off + bytes)
/* Extent ends after our buffer */
to_add = bytes - buf_off;
else
to_add = ext_end_off - file_off;
if (!(extent->fe_flags & FIEMAP_SKIP_FLAGS)) {
if (ctxt->extent_csum == NULL) {
ctxt->extent_csum = start_running_checksum();
}
add_to_running_checksum(ctxt->extent_csum, (unsigned char*)buffer->buf + buf_off, to_add);
}
assert(file_off + to_add <= ctxt->off + bytes);
buf_off += to_add;
file_off += to_add;
/*
* ext_end_off may be 4k-aligned:
* Unless FIEMAP_EXTENT_NOT_ALIGNED is returned,
* fe_logical, fe_physical, and fe_length will be aligned
* to the block size of the file system.
* So, if we are processing the last extent, then
* ext_end_off may be larger than the filesize. For those extents, add
* the part that will never exist.
*/
size_t dummy = 0;
if (extent->fe_flags & FIEMAP_EXTENT_LAST)
dummy = ext_end_off - ctxt->filesize;
if (file_off + dummy == ext_end_off) {
ret = store_extent(ctxt, hashes, extent);
if (ret)
return ret;
}
}
return 0;
}
/*
* Try to fill the buffer with more data from the file
* Unprocessed data could live in the buffer: in this case,
* we avoid re-reading that data and, instead, move it at the beginning
* of the buffer and (try to) fill whatever space is left.
* Returns 1 on success, 0 when EOF is reached, negative int on error.
*/
static int fill_buffer(struct scan_ctxt *ctxt, struct buffer *buffer)
{
ssize_t ret;
/*
* The entire buffer could be ignored. Let's fast forward
* and mark the buffer as faked
*/
if (is_area_ignored(ctxt->fiemap, ctxt->off, buffer->size)
&& ctxt->off + buffer->size <= ctxt->filesize) {
memset(buffer->buf, 0, buffer->size);
buffer->dl_len = buffer->size;
buffer->dl_offset = 0;
buffer->faked = true;
if (ctxt->filesize <= ctxt->off + buffer->size)
return 0; /* Simulate EOF */
return 1;
}
/* Move leftovers back at the begining of the buffer */
if (buffer->dl_len != 0)
memmove(buffer->buf, buffer->buf + buffer->dl_offset, buffer->dl_len);
buffer->dl_offset = 0;
buffer->faked = false;
ret = pread(ctxt->fd, buffer->buf + buffer->dl_len,
buffer->size - buffer->dl_len, ctxt->off + buffer->dl_len);
if (ret > 0)
buffer->dl_len += ret;
/* We must never overflow */
assert(buffer->dl_offset + buffer->dl_len <= buffer->size);
if (ret < 0)
return ret;
if (ret == 0 || ctxt->off + buffer->dl_len == ctxt->filesize) /* EOF */
return 0;
return buffer->dl_len;
}
static inline bool is_inlined(struct scan_ctxt *ctxt)
{
struct fiemap_extent *extent;
extent = get_extent(ctxt->fiemap, ctxt->filesize - 1, NULL);
return extent && extent->fe_flags & FIEMAP_EXTENT_DATA_INLINE;
}
static void csum_whole_file(struct file_to_scan *file)
{
int ret = 0;
_cleanup_(free_hashes) struct hashes hashes = {0,};
_cleanup_(free_scan_ctxt) struct scan_ctxt ctxt = {0,};
unsigned char file_digest[DIGEST_LEN];
/* Those variables will be initialized only once
* during the thread lifetime
*/
static struct dbhandle *db = NULL;
static __thread struct buffer buffer = {0,};
static __thread struct pscan_thread *tls_progress = NULL;
/* Dummy variables used to trigger the cleanup code */
_cleanup_(pscan_reset_thread) struct pscan_thread *tprogress = tls_progress;
_cleanup_(freep) char *path = file->path;
_cleanup_(freep) struct file_to_scan *clean_file = file;
/* Used to detected eof if file changed since
* we stat() it
*/
bool eof_reached = false;
/* Prevent close on fd 0 if, somehow, an error occurs before we open */
ctxt.fd = -1;
if (!(buffer.buf)) {
ret = prepare_buffer(&buffer);
if (ret) {
eprintf("unable to prepare our read buffer\n");
return;
}
} else {
/* Clean leftovers from another call */