Fix size dubbling. Handle block device fragment.
authorRalph Ronnquist <rrq@rrq.au>
Wed, 28 Jun 2023 06:06:26 +0000 (16:06 +1000)
committerRalph Ronnquist <rrq@rrq.au>
Wed, 28 Jun 2023 06:06:26 +0000 (16:06 +1000)
fusefile.c

index f886287b3f806bd70da4cc7fa9830a55b5fe0f21..5f7850ba106e2dd9d60278d9bfc2ceb5208f3070 100644 (file)
@@ -33,6 +33,8 @@
 #include <unistd.h>
 #include <time.h>
 #include <errno.h>
+#include <sys/ioctl.h>
+#include <linux/fs.h>
 
 struct Region {
     off_t beg;
@@ -313,6 +315,15 @@ static int setup_source(struct Source *p,char *frag) {
        fprintf( stderr, "** %s opened read-only\n", p->filename );
     }
     p->from = 0;
+    if ( S_ISBLK( filestat.st_mode ) ) {
+       // Block devices report size differently:
+       if ( ioctl( p->fd, BLKGETSIZE64, &filestat.st_size ) < 0 ) {
+           perror( p->filename );
+       }
+#if DEBUG
+       fprintf( stderr, "block device size = %ld\n", filestat.st_size );
+#endif
+    }
     p->to = filestat.st_size;
     // Process any range variation
     if ( range && *(++range) ) {
@@ -375,8 +386,6 @@ static int setup_sources(char **argv,int i,int n) {
        if ( setup_source( p, argv[i] ) ) {
            return 1;
        }
-       p->start = sources.size; // the fusefile position of fragment
-       sources.size += p->to - p->from;
 #if DEBUG
        print_source( p );
 #endif