2 #define _FILE_OFFSET_BITS 64
18 #include <sys/ioctl.h>
25 #include <dvdread/dvd_reader.h>
26 #include <dvdread/dvd_udf.h>
27 #include <dvdread/ifo_read.h>
28 #include <dvdread/ifo_types.h>
31 #define SECTORS(n) (((n) + (SECTORSZ - 1))/SECTORSZ)
33 #define CTYPE_HACK(fn, ch) fn((unsigned char)(ch))
34 #define ISDIGIT(ch) CTYPE_HACK(isdigit, ch)
35 #define ISSPACE(ch) CTYPE_HACK(isspace, ch)
37 #define N(v) (sizeof(v)/sizeof((v)[0]))
39 enum { RAW, IFO, VOB, BUP };
40 typedef uint_least32_t ident;
42 static inline ident mkident(unsigned kind, unsigned title, unsigned part)
43 { return (((ident)kind << 0) | ((ident)title << 8) | ((ident)part << 16)); }
44 static inline unsigned id_kind(ident id) { return ((id >> 0)&0x0ff); }
45 static inline unsigned id_title(ident id) { return ((id >> 8)&0x0ff); }
46 static inline unsigned id_part(ident id) { return ((id >> 16)&0x0ff); }
48 static const char *prog = "<unset>";
49 static int status = 0;
51 static void usage(FILE *fp)
54 "usage: %s [-c] [-D DEV] [-R MAP] "
55 "[-b OUTMAP] [-o OUTFILE] [-r [START]-[END]]\n",
59 static void vmoan(const char *fmt, va_list ap)
60 { fprintf(stderr, "%s: ", prog); vfprintf(stderr, fmt, ap); }
61 __attribute__((noreturn, format(printf, 1, 2)))
62 static void bail(const char *fmt, ...)
66 va_start(ap, fmt); vmoan(fmt, ap); va_end(ap);
70 __attribute__((noreturn, format(printf, 2, 3)))
71 static void bail_syserr(int err, const char *fmt, ...)
75 va_start(ap, fmt); vmoan(fmt, ap); va_end(ap);
76 if (err) fprintf(stderr, ": %s", strerror(errno));
81 #define MAXFNSZ (1 + 8 + 1 + 12 + 1)
83 static void store_filename(char *buf, ident id)
85 switch (id_kind(id)) {
87 sprintf(buf, "#<raw device>");
90 if (!id_title(id)) sprintf(buf, "/VIDEO_TS/VIDEO_TS.IFO");
91 else sprintf(buf, "/VIDEO_TS/VTS_%02u_0.IFO", id_title(id));
94 if (!id_title(id)) sprintf(buf, "/VIDEO_TS/VIDEO_TS.BUP");
95 else sprintf(buf, "/VIDEO_TS/VTS_%02u_0.BUP", id_title(id));
98 if (!id_title(id)) sprintf(buf, "/VIDEO_TS/VIDEO_TS.VOB");
100 sprintf(buf, "/VIDEO_TS/VTS_%02u_%u.VOB", id_title(id), id_part(id));
107 #define DEFVEC(vtype, etype) \
108 typedef struct { etype *v; size_t n, sz; } vtype
109 #define VEC_INIT { 0, 0, 0 }
110 #define VEC_FREE(vv) do { \
111 free((vv)->v); (vv)->v 0; (vv)->n = (vv)->sz = 0; \
113 #define VEC_PUSH(p, vv) do { \
115 if ((vv)->n >= (vv)->sz) { \
116 (vv)->sz = (vv)->sz ? 2*(vv)->sz : 32; \
117 _want = (vv)->sz*sizeof(*(vv)->v); \
118 (vv)->v = realloc((vv)->v, _want); \
119 if (!(vv)->v) bail("out of memory allocating %zu bytes", _want); \
121 (p) = &(vv)->v[(vv)->n++]; \
124 #define MAXFILES (1 + 2*99 + 1)
129 DEFVEC(file_v, struct file);
130 static file_v filetab = VEC_INIT;
132 enum { EV_WRITE, EV_BEGIN, EV_END, EV_STOP };
134 unsigned char ev, file;
137 DEFVEC(event_v, struct event);
138 static event_v eventq = VEC_INIT;
140 typedef uint_least32_t bits;
141 static bits live[(MAXFILES + 31)/32];
143 static inline int livep(unsigned i)
144 { return (live[i/32]&((bits)1 << (i%32))); }
145 static inline void set_live(unsigned i)
146 { live[i/32] |= (bits)1 << (i%32); }
147 static inline void clear_live(unsigned i)
148 { live[i/32] &= ~((bits)1 << (i%32)); }
149 static inline int least_live(void)
151 unsigned i, n = (filetab.n + 32)/32;
154 for (i = 0; i < n; i++) { b = live[i]; if (b) goto found; }
158 if (!(b&0x0000ffff)) { b >>= 16; i += 16; }
159 if (!(b&0x000000ff)) { b >>= 8; i += 8; }
160 if (!(b&0x0000000f)) { b >>= 4; i += 4; }
161 if (!(b&0x00000003)) { b >>= 2; i += 2; }
162 if (!(b&0x00000001)) { b >>= 1; i += 1; }
167 static void put_event(unsigned evtype, unsigned file, uint32_t pos)
171 VEC_PUSH(ev, &eventq);
172 ev->ev = evtype; ev->file = file; ev->pos = pos;
175 static void put_file(ident id, uint32_t start, uint32_t end)
180 VEC_PUSH(f, &filetab); i = f - filetab.v;
181 f->id = id; f->start = start; f->end = end;
182 put_event(EV_BEGIN, i, start);
183 put_event(EV_END, i, end);
186 static void put_menu(dvd_reader_t *dvd, unsigned title)
188 ident id = mkident(VOB, title, 0);
192 store_filename(fn, id);
193 start = UDFFindFile(dvd, fn, &len); if (!start) return;
195 printf(";; %8"PRIu32" .. %-8"PRIu32": %s\n",
196 start, start + SECTORS(len), fn);
198 put_file(id, start, start + SECTORS(len));
201 static void put_title(dvd_reader_t *dvd, unsigned title)
204 uint32_t start[9], len[9];
207 for (i = 0; i < 9; i++) {
208 store_filename(fn, mkident(VOB, title, i + 1));
209 start[i] = UDFFindFile(dvd, fn, &len[i]); if (!start[i]) break;
211 npart = i; if (!npart) return;
214 for (i = 0; i < npart; i++) {
215 store_filename(fn, mkident(VOB, title, i + 1));
216 printf(";; %8"PRIu32" .. %-8"PRIu32": %s\n",
217 start[i], start[i] + SECTORS(len[i]), fn);
222 for (i = 0; i < npart - 1; i++) {
224 bail("title %u part %u length = %"PRIu32" not a multiple of %d",
225 title, i, len[i], SECTORSZ);
226 if (start[i] + len[i]/SECTORSZ != start[i + 1])
227 bail("title %u part %u end = %"PRIu32" /= part %u start = %"PRIu32"",
228 title, i, start[i] + len[i]/SECTORSZ, i + 1, start[i + 1]);
231 put_file(mkident(VOB, title, 1),
232 start[0], start[npart - 1] + SECTORS(len[npart - 1]));
235 static int compare_event(const void *a, const void *b)
237 const struct event *eva = a, *evb = b;
239 if (eva->pos < evb->pos) return (-1);
240 else if (eva->pos > evb->pos) return (+1);
242 if (eva->ev < evb->ev) return (-1);
243 else if (eva->ev > evb->ev) return (+1);
245 if (eva->file < evb->file) return (-1);
246 else if (eva->file > evb->file) return (+1);
251 static int progresslen = 0;
253 static void clear_progress_internal(void)
254 { while (progresslen) { fputs("\b \b", stdout); progresslen--; } }
255 static void clear_progress(void)
256 { clear_progress_internal(); fflush(stdout); }
257 static void vappend_progress(const char *fmt, va_list ap)
258 { progresslen += vprintf(fmt, ap); }
259 __attribute__((format(printf, 1, 2)))
260 static void append_progress(const char *fmt, ...)
265 vappend_progress(fmt, ap);
268 __attribute__((format(printf, 1, 2)))
269 static void print_progress(const char *fmt, ...)
274 clear_progress_internal();
275 vappend_progress(fmt, ap);
286 #define SRCF_ALLPROGRESS 1u
287 uint32_t last_pos, limit, nsectors, ndone;
288 struct timeval last_time;
290 const char *mapfile; FILE *mapfp;
292 #define SOURCE_INIT { 0, -1, 0, 0, 0, 0, 0, 0, 0, { 0, 0 }, 0.0, 0.0, 0, 0 }
294 static void report_progress(struct source *src, uint32_t pos)
299 double percent, t, f, g, rate;
303 #define BETA (1 - ALPHA)
305 gettimeofday(&now, 0);
306 t = (now.tv_sec - src->last_time.tv_sec) +
307 (now.tv_usec - src->last_time.tv_usec)/1000000.0;
310 g = src->wcount ? pow(BETA, t) : 0.0; f = (1 - g)/(1 - BETA);
311 src->wsum = f*(pos - src->last_pos)/t + g*src->wsum;
312 src->wcount = f + g*src->wcount;
313 src->ndone += pos - src->last_pos;
314 src->last_time = now; src->last_pos = pos;
317 if (!src->wsum || !src->wcount)
318 { rate = 0; strcpy(etastr, "???"); }
320 rate = src->wsum/src->wcount;
321 eta = (int)((src->nsectors - src->ndone)/rate);
322 sprintf(etastr, "%d:%02d:%02d", eta/3600, (eta/60)%60, eta%60);
325 rate *= SECTORSZ; unit = "";
326 if (rate > 128) { rate /= 1024; unit = "k"; }
327 if (rate > 128) { rate /= 1024; unit = "M"; }
328 if (rate > 128) { rate /= 1024; unit = "G"; }
330 if (src->f&SRCF_ALLPROGRESS) percent = pos*100.0/src->limit;
331 else percent = src->ndone*100.0/src->nsectors;
332 print_progress("copied %.1f%% (%"PRIu32" of %"PRIu32"; %.1f %sB/s, ETA %s)",
333 percent, pos, src->limit,
335 if (src->file && id_kind(src->file->id) == VOB) {
336 append_progress(" -- %s %d %3.1f%%",
337 id_part(src->file->id) ? "title" : "menu",
338 id_title(src->file->id),
339 (pos - src->file->start)*100.0/
340 (src->file->end - src->file->start));
347 static void report_bad_blocks_progress(struct source *src,
348 uint32_t lo, uint32_t hi, int err)
350 report_progress(src, hi);
352 if (lo == hi) append_progress(": retrying bad sector");
354 append_progress(": %"PRIu32" bad %s",
355 hi - lo, hi == lo + 1 ? "sector" : "sectors");
356 if (err != EIO) append_progress(" (%s)", strerror(err));
360 static ssize_t read_sectors(struct source *src, uint32_t pos,
361 void *buf, uint32_t want)
367 n = DVDReadBlocks(src->vob, pos - src->file->start, want, buf);
368 else if (src->file) {
369 if (lseek(src->dvdfd, (off_t)pos*SECTORSZ, SEEK_SET) < 0)
370 bail_syserr(errno, "failed to seek to sector %"PRIu32"", pos);
371 n = read(src->dvdfd, buf, want*SECTORSZ);
372 if (n >= 0) n /= SECTORSZ;
374 memset(buf, 0, want*SECTORSZ);
378 if (n < 0 && errno == EINTR) goto again;
382 static void carefully_write(int fd, const void *buf, size_t sz)
384 const unsigned char *p = buf;
389 n = write(fd, p, sz);
391 if (errno == EINTR) continue;
392 bail_syserr(errno, "failed to write to output file");
394 if (!n) bail("unexpected short write to output file");
399 static void emit(struct source *src, int outfd, uint32_t start, uint32_t end)
401 #define BUFSECTORS 512
404 unsigned char buf[BUFSECTORS*SECTORSZ];
406 uint32_t bad_lo, bad_hi, good, step;
409 static int first_time = 1;
416 least = least_live();
419 printf(";; %8"PRIu32" .. %"PRIu32"\n", start, end);
421 for (i = 0; i < filetab.n; i++) {
422 if (!livep(i)) continue;
423 if (act == -1) act = i;
424 f = &filetab.v[i]; store_filename(fn, f->id);
425 printf(";;\t\t%8"PRIu32" .. %-8"PRIu32" %s\n",
426 start - f->start, end - f->start, fn);
428 if (act == -1) printf(";;\t\t#<no live source>\n");
429 assert(act == least);
433 { src->file = 0; src->vob = 0; }
435 src->file = &filetab.v[least];
436 switch (id_kind(src->file->id)) {
441 if (first_time) { clear_progress(); first_time = 0; }
442 src->vob = DVDOpenFile(src->dvd, id_title(src->file->id),
443 id_part(src->file->id)
444 ? DVD_READ_TITLE_VOBS
445 : DVD_READ_MENU_VOBS);
447 bail("failed to open %s %u",
448 id_part(src->file->id) ? "title" : "menu",
449 id_title(src->file->id));
458 want = end - pos; if (want > BUFSECTORS) want = BUFSECTORS;
459 n = read_sectors(src, pos, buf, want);
462 report_bad_blocks_progress(src, pos, pos, errno);
463 for (i = 0; i < 4; i++) {
464 n = read_sectors(src, pos, buf, 1);
467 fprintf(stderr, "%s: sector %"PRIu32" read ok after retry\n",
469 bad_lo = bad_hi = pos;
474 bad_lo = pos; step = 1; bad_hi = pos + 1;
476 report_bad_blocks_progress(src, bad_lo, bad_hi, errno);
479 fprintf(stderr, "%s: giving up on this extent\n", prog);
480 n = 0; goto recovered;
483 if (step > end - bad_lo) step = end - bad_lo;
484 pos = bad_lo + step - 1;
485 n = read_sectors(src, pos, buf, 1);
491 while (good > bad_hi) {
492 report_bad_blocks_progress(src, bad_lo, bad_hi, errno);
493 pos = bad_hi + (good - bad_hi)/2;
494 n = read_sectors(src, pos, buf, 1);
495 if (n > 0) good = pos;
496 else bad_hi = pos + 1;
499 if (bad_hi > bad_lo) {
501 fprintf(stderr, "%s: skipping %"PRIu32" bad sectors "
502 "(%"PRIu32" .. %"PRIu32")\n",
503 prog, bad_hi - bad_lo, bad_lo, bad_hi);
506 src->mapfp = fopen(src->mapfile, "w");
508 bail_syserr(errno, "failed to open bad-sector map file `%s'",
510 fprintf(src->mapfp, "## bad sector map\n\n");
512 fprintf(src->mapfp, "%"PRIu32" %"PRIu32"\n", bad_lo, bad_hi);
514 if (ferror(src->mapfp))
515 bail_syserr(errno, "error writing bad-sector map file");
518 lseek(outfd, (off_t)(bad_hi - bad_lo)*SECTORSZ, SEEK_CUR) < 0)
519 bail_syserr(errno, "failed to seek past bad sectors");
525 if (n > 0) { carefully_write(outfd, buf, n*SECTORSZ); pos += n; }
526 report_progress(src, pos); fflush(stdout);
529 if (src->vob) { DVDCloseFile(src->vob); src->vob = 0; }
535 static void logfn(void *p, dvd_logger_level_t lev,
536 const char *fmt, va_list ap)
539 case DVD_LOGGER_LEVEL_ERROR:
540 fprintf("%s (libdvdread error): ", prog);
542 case DVD_LOGGER_LEVEL_WARN:
543 fprintf("%s (libdvdread warning): ", prog);
548 vfprintf(stderr, fmt, ap);
551 static const dvd_logger_cb logger = { logfn };
558 #define BUF_INIT { 0, 0, 0 }
559 #define BUF_REWIND(b) do { (b)->n = 0; } while (0)
560 #define BUF_FREE(b) do { \
562 free(_b->p); _b->p = 0; _b->n = _b->sz = 0; \
564 #define BUF_PUTC(b, ch) do { \
565 struct buf *_b = (b); \
566 if (_b->n >= _b->sz) { \
567 _b->sz = _b->sz ? 2*_b->sz : 32; \
568 _b->p = realloc(_b->p, _b->sz); \
569 if (!_b->p) bail("out of memory allocating %zu bytes", _b->sz); \
571 _b->p[_b->n] = (ch); \
574 static int read_line(FILE *fp, struct buf *b)
581 else if (ch != '\n') do {
582 BUF_PUTC(b, ch); b->n++;
584 } while (ch != EOF && ch != '\n');
589 int main(int argc, char *argv[])
596 struct source src = SOURCE_INIT;
597 unsigned long start, end;
598 const struct event *ev;
599 const char *device = "/dev/dvd", *outfile = 0;
600 int opt, err, outfd = -1, blksz;
604 struct buf buf = BUF_INIT;
606 const struct file *file;
611 #define f_continue 2u
615 p = strrchr(argv[0], '/'); prog = p ? p + 1 : argv[0];
617 opt = getopt(argc, argv, "hD:FR:b:co:r:"); if (opt < 0) break;
619 case 'h': usage(stderr); exit(0);
620 case 'D': device = optarg; break;
621 case 'F': f |= f_fixup; break;
623 fp = fopen(optarg, "r");
625 bail_syserr(errno, "failed to open ranges file `%s'", optarg);
628 BUF_REWIND(&buf); if (read_line(fp, &buf)) break;
630 while (ISSPACE(*p)) p++;
631 if (!*p || *p == '#') continue;
632 if (!ISDIGIT(*p)) goto bad_range_file;
633 start = strtoul(p, &p, 0);
634 if (errno || !ISSPACE(*p)) goto bad_range_file;
635 do p++; while (ISSPACE(*p));
636 if (!ISDIGIT(*p)) goto bad_range_file;
637 end = strtoul(p, &p, 0);
638 if (errno || (*p && !ISSPACE(*p))) goto bad_range_file;
639 while (ISSPACE(*p)) p++;
640 if (*p) goto bad_range_file;
641 if (start > end) goto bad_range_file;
643 put_event(EV_WRITE, 0, start);
644 put_event(EV_STOP, 0, end);
648 bail_syserr(errno, "failed to read ranges file `%s'", optarg);
651 bail("bad range `%s' at `%s' line %zu", buf.p, optarg, i);
653 if (src.mapfile) bail("can't have multiple map files");
654 src.mapfile = optarg;
656 case 'c': f |= f_continue; break;
657 case 'o': outfile = optarg; break;
659 err = errno; errno = 0;
664 if (!ISDIGIT(*p)) goto bad_range;
665 start = strtoul(p, &p, 0);
666 if (errno || *p != '-') goto bad_range;
670 put_event(EV_WRITE, 0, start);
672 if (!ISDIGIT(*p)) goto bad_range;
673 end = strtoul(p, &p, 0);
674 if (errno || *p) goto bad_range;
675 if (start > end) goto bad_range;
677 put_event(EV_WRITE, 0, start);
678 put_event(EV_STOP, 0, end);
684 bail("bad range `%s'", optarg);
686 default: f |= f_bogus; break;
689 if (optind < argc) f |= f_bogus;
690 if (f&f_bogus) { usage(stderr); exit(2); }
692 src.dvdfd = open(device, O_RDONLY);
693 if (src.dvdfd < 0) bail_syserr(errno, "failed to open device `%s'", device);
694 if (ioctl(src.dvdfd, BLKSSZGET, &blksz))
695 bail_syserr(errno, "failed to get block size for `%s'", device);
696 if (ioctl(src.dvdfd, BLKGETSIZE64, &volsz))
697 bail_syserr(errno, "failed to get volume size for `%s'", device);
699 if (blksz != SECTORSZ)
700 bail("device `%s' block size %d /= %d", device, blksz, SECTORSZ);
702 bail("device `%s' volume size %"PRIu64" not a multiple of %d",
703 device, volsz, SECTORSZ);
706 outfd = open(outfile, O_WRONLY | O_CREAT, 0666);
708 bail_syserr(errno, "failed to create output file `%s'", outfile);
712 if (!outfile) bail("can't continue without output file");
713 off = lseek(outfd, 0, SEEK_END);
715 bail_syserr(errno, "failed to seek to end of output file `%s'",
717 put_event(EV_WRITE, 0, off/SECTORSZ);
718 } else if (!eventq.n && !(f&f_fixup))
719 put_event(EV_WRITE, 0, 0);
722 src.dvd = DVDOpen2(0, &logger, device);
724 src.dvd = DVDOpen(device);
726 if (!src.dvd) bail("failed to open DVD on `%s'", device);
728 /* It's fast enough just to check everything. */
729 put_menu(src.dvd, 0);
730 for (i = 1; i < 100; i++) {
731 put_menu(src.dvd, i);
732 put_title(src.dvd, i);
734 put_file(mkident(RAW, 0, 0), 0, volsz/SECTORSZ);
735 assert(filetab.n <= MAXFILES);
737 for (i = 0, src.limit = 0; i < filetab.n; i++)
738 if (filetab.v[i].end > src.limit) src.limit = filetab.v[i].end;
740 if (end > src.limit) end = src.limit;
743 printf("\n;; files:\n");
744 for (i = 0; i < filetab.n; i++) {
745 file = &filetab.v[i];
746 store_filename(fn, file->id);
747 printf(";;\t%8"PRIu32" %s\n", file->start, fn);
751 qsort(eventq.v, eventq.n, sizeof(struct event), compare_event);
753 f &= ~f_write; start = 0; n = 0;
754 for (i = 0; i < eventq.n; i++) {
759 bail("overlapping ranges: range from %lu still open at %"PRIu32"",
761 n++; f |= f_write; start = ev->pos;
769 f &= ~f_write; start = 0;
770 for (i = 0; i < eventq.n; i++) {
773 case EV_WRITE: start = ev->pos; f |= f_write; break;
774 case EV_STOP: src.nsectors += ev->pos - start; f &= ~f_write; break;
776 if (ev->pos >= src.limit) break;
777 if (f&f_fixup) start = ev->pos;
781 put_event(EV_WRITE, 0, start);
785 src.nsectors += src.limit - start;
786 put_event(EV_STOP, 0, src.limit);
788 if (n == 1 && (f&f_write))
789 src.f |= SRCF_ALLPROGRESS;
793 printf("\n;; event sweep:\n");
795 for (pos = 0, i = 0; i < eventq.n; i++) {
798 if (f&f_write) emit(&src, outfd, pos, ev->pos);
809 store_filename(fn, filetab.v[ev->file].id);
811 printf(";; %8"PRIu32": begin `%s'\n", pos, fn);
815 gettimeofday(&src.last_time, 0); src.last_pos = pos;
817 lseek(outfd, (off_t)ev->pos*SECTORSZ, SEEK_SET) < 0)
819 "failed to seek to resume position "
820 "(sector %"PRIu32") in output file `%s'",
824 printf(";; %8"PRIu32": begin write\n", pos);
832 printf(";; %8"PRIu32": end write\n", pos);
836 clear_live(ev->file);
838 store_filename(fn, filetab.v[ev->file].id);
840 printf(";; %8"PRIu32": end `%s'\n", pos, fn);
847 if (progresslen) putchar('\n');
849 if (outfd >= 0 && ftruncate(outfd, (off_t)src.limit*SECTORSZ) < 0)
850 bail_syserr(errno, "failed to set output file `%s' length", outfile);
852 if (src.dvd) DVDClose(src.dvd);
853 if (src.dvdfd >= 0) close(src.dvdfd);
854 if (outfd >= 0) close(outfd);
856 if (ferror(src.mapfp) || fclose(src.mapfp))
857 bail_syserr(errno, "error writing bad-sector map file");