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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
|
/* -*- c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* This code is based on dvdudf by:
* Christian Wolff <scarabaeus@convergence.de>.
*
* Modifications by:
* Billy Biggs <vektor@dumbterm.net>.
* Bjrn Englund <d4bjorn@dtek.chalmers.se>.
*
* dvdudf: parse and read the UDF volume information of a DVD Video
* Copyright (C) 1999 Christian Wolff for convergence integrated media
* GmbH The author can be reached at scarabaeus@convergence.de, the
* project's page is at http://linuxtv.org/dvd/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA. Or, point your browser to
* http://www.gnu.org/copyleft/gpl.html
*/
//#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#if defined(HAVE_INTTYPES_H)
#include <inttypes.h>
#elif defined(HAVE_STDINT_H)
#include <stdint.h>
#endif
//#include "dvd_reader.h"
#include "dvd_udf.h"
//#include "dvdread_internal.h"
#ifndef EMEDIUMTYPE
#define EMEDIUMTYPE ENOENT
#endif
#ifndef HAVE_UINTPTR_T
#warning "Assuming that (unsigned long) can hold (void *)"
//typedef unsigned long uintptr_t;
#endif
#define DVD_ALIGN(ptr) (void *)((((uintptr_t)(ptr)) + (DVD_VIDEO_LB_LEN-1)) \
/ DVD_VIDEO_LB_LEN * DVD_VIDEO_LB_LEN)
typedef struct {
void *start;
void *aligned;
} dvdalign_ptrs_t;
typedef struct {
dvdalign_ptrs_t *ptrs;
uint32_t ptrs_in_use;
uint32_t ptrs_max;
} dvdalign_t;
#if 0
extern void *GetAlignHandle(dvd_reader_t *device);
extern void SetAlignHandle(dvd_reader_t *device, void *align);
#endif
/**
* Allocates aligned memory (for use with reads from raw/O_DIRECT devices).
* This memory must be freed with dvdalign_free()
* The size of the memory that is allocate is num_lbs*2048 bytes.
* The memory will be suitably aligned for use with
* block reads from raw/O_DIRECT device.
* @param num_lbs Number of logical blocks (2048 bytes) to allocate.
* @return Returns pointer to allocated memory, or NULL on failure
* This isn't supposed to be fast/efficient, if that is needed
* this function should be rewritten to use posix_memalign or similar.
* It's just needed for aligning memory for small block reads from
* raw/O_DIRECT devices.
* We assume that 2048 is enough alignment for all systems at the moment.
* Not thread safe. Only use this from one thread.
* Depends on sizeof(unsigned long) being at least as large as sizeof(void *)
*/
#if 0
static void *dvdalign_lbmalloc(dvd_reader_t *device, uint32_t num_lbs)
{
void *m;
int n;
dvdalign_t *a;
m = malloc((num_lbs+1)*DVD_VIDEO_LB_LEN);
if(m == NULL) {
return m;
}
a = (dvdalign_t *)GetAlignHandle(device);
if(a == NULL) {
a = malloc(sizeof(dvdalign_t));
if(a == NULL) {
return a;
}
a->ptrs = NULL;
a->ptrs_in_use = 0;
a->ptrs_max = 0;
SetAlignHandle(device, (void *)a);
}
if(a->ptrs_in_use >= a->ptrs_max) {
a->ptrs = realloc(a->ptrs, (a->ptrs_max+10)*sizeof(dvdalign_ptrs_t));
if(a->ptrs == NULL) {
free(m);
return NULL;
}
a->ptrs_max+=10;
for(n = a->ptrs_in_use; n < a->ptrs_max; n++) {
a->ptrs[n].start = NULL;
a->ptrs[n].aligned = NULL;
}
n = a->ptrs_in_use;
} else {
for(n = 0; n < a->ptrs_max; n++) {
if(a->ptrs[n].start == NULL) {
break;
}
}
}
a->ptrs[n].start = m;
a->ptrs[n].aligned = DVD_ALIGN(m);
a->ptrs_in_use++;
/* If this function starts to be used too much print a warning.
Either there is a memory leak somewhere or we need to rewrite this to
a more efficient version.
*/
if(a->ptrs_in_use > 50) {
if(dvdread_verbose(device) >= 0) {
fprintf(stderr, "libdvdread: dvdalign_lbmalloc(), more allocs than supposed: %u\n", a->ptrs_in_use);
}
}
return a->ptrs[n].aligned;
}
/**
* Frees memory allocated with dvdalign_lbmemory()
* @param ptr Pointer to memory space to free
* Not thread safe.
*/
static void dvdalign_lbfree(dvd_reader_t *device, void *ptr)
{
int n;
dvdalign_t *a;
a = (dvdalign_t *)GetAlignHandle(device);
if(a && a->ptrs) {
for(n = 0; n < a->ptrs_max; n++) {
if(a->ptrs[n].aligned == ptr) {
free(a->ptrs[n].start);
a->ptrs[n].start = NULL;
a->ptrs[n].aligned = NULL;
a->ptrs_in_use--;
if(a->ptrs_in_use == 0) {
free(a->ptrs);
a->ptrs = NULL;
a->ptrs_max = 0;
free(a);
a = NULL;
SetAlignHandle(device, (void *)a);
}
return;
}
}
}
if(dvdread_verbose(device) >= 0) {
fprintf(stderr, "libdvdread: dvdalign_lbfree(), error trying to free mem: %08lx (%u)\n", (unsigned long)ptr, a ? a->ptrs_in_use : 0);
}
}
/* Private but located in/shared with dvd_reader.c */
extern int UDFReadBlocksRaw( dvd_reader_t *device, uint32_t lb_number,
size_t block_count, uint8_t *data,
int encrypted );
/** @internal
* Its required to either fail or deliver all the blocks asked for.
*
* @param data Pointer to a buffer where data is returned. This must be large
* enough to hold lb_number*2048 bytes.
* It must be aligned to system specific (2048) logical blocks size when
* reading from raw/O_DIRECT device.
*/
static int DVDReadLBUDF( dvd_reader_t *device, uint32_t lb_number,
size_t block_count, uint8_t *data,
int encrypted )
{
int ret;
size_t count = block_count;
while(count > 0) {
ret = UDFReadBlocksRaw(device, lb_number, count, data, encrypted);
if(ret <= 0) {
/* One of the reads failed or nothing more to read, too bad.
* We won't even bother returning the reads that went ok. */
return ret;
}
count -= (size_t)ret;
lb_number += (uint32_t)ret;
}
return block_count;
}
#endif
#ifndef NULL
#define NULL ((void *)0)
#endif
struct Partition {
int valid;
char VolumeDesc[128];
uint16_t Flags;
uint16_t Number;
char Contents[32];
uint32_t AccessType;
uint32_t Start;
uint32_t Length;
};
struct AD {
uint32_t Location;
uint32_t Length;
uint8_t Flags;
uint16_t Partition;
};
struct extent_ad {
uint32_t location;
uint32_t length;
};
struct avdp_t {
struct extent_ad mvds;
struct extent_ad rvds;
};
struct pvd_t {
uint8_t VolumeIdentifier[32];
uint8_t VolumeSetIdentifier[128];
};
struct lbudf {
uint32_t lb;
uint8_t *data;
};
struct icbmap {
uint32_t lbn;
struct AD file;
uint8_t filetype;
};
struct udf_cache {
int avdp_valid;
struct avdp_t avdp;
int pvd_valid;
struct pvd_t pvd;
int partition_valid;
struct Partition partition;
int rooticb_valid;
struct AD rooticb;
int lb_num;
struct lbudf *lbs;
int map_num;
struct icbmap *maps;
};
typedef enum {
PartitionCache, RootICBCache, LBUDFCache, MapCache, AVDPCache, PVDCache
} UDFCacheType;
#if 0
extern void *GetUDFCacheHandle(dvd_reader_t *device);
extern void SetUDFCacheHandle(dvd_reader_t *device, void *cache);
#endif
void FreeUDFCache(udf_t *udf, void *cache)
{
int n;
struct udf_cache *c = (struct udf_cache *)cache;
if(c == NULL) {
return;
}
for(n = 0; n < c->lb_num; n++) {
if(c->lbs[n].data) {
/* free data */
//dvdalign_lbfree(device, c->lbs[n].data);
free(c->lbs[n].data);
}
}
c->lb_num = 0;
if(c->lbs) {
free(c->lbs);
}
if(c->maps) {
free(c->maps);
}
free(c);
}
static int GetUDFCache(udf_t *udf, UDFCacheType type,
uint32_t nr, void *data)
{
int n;
struct udf_cache *c;
/*
if(DVDUDFCacheLevel(device, -1) <= 0) {
return 0;
}
*/
//c = (struct udf_cache *)GetUDFCacheHandle(device);
c = (struct udf_cache *) udf->cache;
if(c == NULL) {
return 0;
}
switch(type) {
case AVDPCache:
if(c->avdp_valid) {
*(struct avdp_t *)data = c->avdp;
return 1;
}
break;
case PVDCache:
if(c->pvd_valid) {
*(struct pvd_t *)data = c->pvd;
return 1;
}
break;
case PartitionCache:
if(c->partition_valid) {
*(struct Partition *)data = c->partition;
return 1;
}
break;
case RootICBCache:
if(c->rooticb_valid) {
*(struct AD *)data = c->rooticb;
return 1;
}
break;
case LBUDFCache:
for(n = 0; n < c->lb_num; n++) {
if(c->lbs[n].lb == nr) {
*(uint8_t **)data = c->lbs[n].data;
return 1;
}
}
break;
case MapCache:
for(n = 0; n < c->map_num; n++) {
if(c->maps[n].lbn == nr) {
*(struct icbmap *)data = c->maps[n];
return 1;
}
}
break;
default:
break;
}
return 0;
}
static int SetUDFCache(udf_t *udf, UDFCacheType type,
uint32_t nr, void *data)
{
int n;
struct udf_cache *c;
/*
if(DVDUDFCacheLevel(dev, -1) <= 0) {
return 0;
}
*/
//c = (struct udf_cache *)GetUDFCacheHandle(dev);
c = (struct udf_cache *) udf->cache;
if(c == NULL) {
c = (struct udf_cache*) calloc(1, sizeof(struct udf_cache));
// fprintf(stderr, "calloc: %d\n", sizeof(struct udf_cache));
if(c == NULL) {
return 0;
}
//SetUDFCacheHandle(udf, c);
udf->cache = (void*) c;
}
switch(type) {
case AVDPCache:
c->avdp = *(struct avdp_t *)data;
c->avdp_valid = 1;
break;
case PVDCache:
c->pvd = *(struct pvd_t *)data;
c->pvd_valid = 1;
break;
case PartitionCache:
c->partition = *(struct Partition *)data;
c->partition_valid = 1;
break;
case RootICBCache:
c->rooticb = *(struct AD *)data;
c->rooticb_valid = 1;
break;
case LBUDFCache:
for(n = 0; n < c->lb_num; n++) {
if(c->lbs[n].lb == nr) {
/* replace with new data */
c->lbs[n].data = *(uint8_t **)data;
c->lbs[n].lb = nr;
return 1;
}
}
c->lb_num++;
c->lbs = (lbudf*) realloc(c->lbs, c->lb_num * sizeof(struct lbudf));
/*
fprintf(stderr, "realloc lb: %d * %d = %d\n",
c->lb_num, sizeof(struct lbudf),
c->lb_num * sizeof(struct lbudf));
*/
if(c->lbs == NULL) {
c->lb_num = 0;
return 0;
}
c->lbs[n].data = *(uint8_t **)data;
c->lbs[n].lb = nr;
break;
case MapCache:
for(n = 0; n < c->map_num; n++) {
if(c->maps[n].lbn == nr) {
/* replace with new data */
c->maps[n] = *(struct icbmap *)data;
c->maps[n].lbn = nr;
return 1;
}
}
c->map_num++;
c->maps = (icbmap*) realloc(c->maps, c->map_num * sizeof(struct icbmap));
/*
fprintf(stderr, "realloc maps: %d * %d = %d\n",
c->map_num, sizeof(struct icbmap),
c->map_num * sizeof(struct icbmap));
*/
if(c->maps == NULL) {
c->map_num = 0;
return 0;
}
c->maps[n] = *(struct icbmap *)data;
c->maps[n].lbn = nr;
break;
default:
return 0;
}
return 1;
}
/* For direct data access, LSB first */
#define GETN1(p) ((uint8_t)data[p])
#define GETN2(p) ((uint16_t)data[p] | ((uint16_t)data[(p) + 1] << 8))
#define GETN3(p) ((uint32_t)data[p] | ((uint32_t)data[(p) + 1] << 8) \
| ((uint32_t)data[(p) + 2] << 16))
#define GETN4(p) ((uint32_t)data[p] \
| ((uint32_t)data[(p) + 1] << 8) \
| ((uint32_t)data[(p) + 2] << 16) \
| ((uint32_t)data[(p) + 3] << 24))
/* This is wrong with regard to endianess */
#define GETN(p, n, target) memcpy(target, &data[p], n)
static int Unicodedecode( uint8_t *data, int len, char *target )
{
int p = 1, i = 0;
if( ( data[ 0 ] == 8 ) || ( data[ 0 ] == 16 ) ) do {
if( data[ 0 ] == 16 ) p++; /* Ignore MSB of unicode16 */
if( p < len ) {
target[ i++ ] = data[ p++ ];
}
} while( p < len );
target[ i ] = '\0';
return 0;
}
static int UDFDescriptor( uint8_t *data, uint16_t *TagID )
{
*TagID = GETN2(0);
// TODO: check CRC 'n stuff
return 0;
}
static int UDFExtentAD( uint8_t *data, uint32_t *Length, uint32_t *Location )
{
*Length = GETN4(0);
*Location = GETN4(4);
return 0;
}
static int UDFShortAD( uint8_t *data, struct AD *ad,
struct Partition *partition )
{
ad->Length = GETN4(0);
ad->Flags = ad->Length >> 30;
ad->Length &= 0x3FFFFFFF;
ad->Location = GETN4(4);
ad->Partition = partition->Number; // use number of current partition
return 0;
}
static int UDFLongAD( uint8_t *data, struct AD *ad )
{
ad->Length = GETN4(0);
ad->Flags = ad->Length >> 30;
ad->Length &= 0x3FFFFFFF;
ad->Location = GETN4(4);
ad->Partition = GETN2(8);
//GETN(10, 6, Use);
return 0;
}
static int UDFExtAD( uint8_t *data, struct AD *ad )
{
ad->Length = GETN4(0);
ad->Flags = ad->Length >> 30;
ad->Length &= 0x3FFFFFFF;
ad->Location = GETN4(12);
ad->Partition = GETN2(16);
//GETN(10, 6, Use);
return 0;
}
static int UDFICB( uint8_t *data, uint8_t *FileType, uint16_t *Flags )
{
*FileType = GETN1(11);
*Flags = GETN2(18);
return 0;
}
static int UDFPartition( uint8_t *data, uint16_t *Flags, uint16_t *Number,
char *Contents, uint32_t *Start, uint32_t *Length )
{
*Flags = GETN2(20);
*Number = GETN2(22);
GETN(24, 32, Contents);
*Start = GETN4(188);
*Length = GETN4(192);
return 0;
}
/**
* Reads the volume descriptor and checks the parameters. Returns 0 on OK, 1
* on error.
*/
static int UDFLogVolume( uint8_t *data, char *VolumeDescriptor )
{
uint32_t lbsize, MT_L, N_PM;
Unicodedecode(&data[84], 128, VolumeDescriptor);
lbsize = GETN4(212); // should be 2048
MT_L = GETN4(264); // should be 6
N_PM = GETN4(268); // should be 1
if (lbsize != DVD_VIDEO_LB_LEN) return 1;
return 0;
}
static int UDFFileEntry( uint8_t *data, uint8_t *FileType,
struct Partition *partition, struct AD *ad )
{
uint16_t flags;
uint32_t L_EA, L_AD;
uint32_t p;
UDFICB( &data[ 16 ], FileType, &flags );
/* Init ad for an empty file (i.e. there isn't a AD, L_AD == 0 ) */
ad->Length = GETN4( 60 ); // Really 8 bytes a 56
ad->Flags = 0;
ad->Location = 0; // what should we put here?
ad->Partition = partition->Number; // use number of current partition
L_EA = GETN4( 168 );
L_AD = GETN4( 172 );
p = 176 + L_EA;
while( p < 176 + L_EA + L_AD ) {
switch( flags & 0x0007 ) {
case 0: UDFShortAD( &data[ p ], ad, partition ); p += 8; break;
case 1: UDFLongAD( &data[ p ], ad ); p += 16; break;
case 2: UDFExtAD( &data[ p ], ad ); p += 20; break;
case 3:
switch( L_AD ) {
case 8: UDFShortAD( &data[ p ], ad, partition ); break;
case 16: UDFLongAD( &data[ p ], ad ); break;
case 20: UDFExtAD( &data[ p ], ad ); break;
}
p += L_AD;
break;
default:
p += L_AD; break;
}
}
return 0;
}
static int UDFFileIdentifier( uint8_t *data, uint8_t *FileCharacteristics,
char *FileName, struct AD *FileICB )
{
uint8_t L_FI;
uint16_t L_IU;
*FileCharacteristics = GETN1(18);
L_FI = GETN1(19);
UDFLongAD(&data[20], FileICB);
L_IU = GETN2(36);
if (L_FI) Unicodedecode(&data[38 + L_IU], L_FI, FileName);
else FileName[0] = '\0';
return 4 * ((38 + L_FI + L_IU + 3) / 4);
}
/**
* Maps ICB to FileAD
* ICB: Location of ICB of directory to scan
* FileType: Type of the file
* File: Location of file the ICB is pointing to
* return 1 on success, 0 on error;
*/
static int UDFMapICB( udf_t *udf, struct AD ICB, uint8_t *FileType,
struct Partition *partition, struct AD *File )
{
uint8_t *LogBlock;
uint32_t lbnum;
uint16_t TagID;
struct icbmap tmpmap;
lbnum = partition->Start + ICB.Location;
tmpmap.lbn = lbnum;
if(GetUDFCache(udf, MapCache, lbnum, &tmpmap)) {
*FileType = tmpmap.filetype;
*File = tmpmap.file;
return 1;
}
//LogBlock = dvdalign_lbmalloc(device, 1);
LogBlock = (uint8_t*) malloc(2048);
if(!LogBlock) {
return 0;
}
do {
//if( DVDReadLBUDF( device, lbnum++, 1, LogBlock, 0 ) <= 0 ) {
if( read ( udf->dev, LogBlock, lbnum++, 1, 0 ) ) {
TagID = 0;
} else {
UDFDescriptor( LogBlock, &TagID );
}
if( TagID == 261 ) {
UDFFileEntry( LogBlock, FileType, partition, File );
tmpmap.file = *File;
tmpmap.filetype = *FileType;
SetUDFCache(udf, MapCache, tmpmap.lbn, &tmpmap);
//dvdalign_lbfree(device, LogBlock);
free(LogBlock);
return 1;
};
} while( ( lbnum <= partition->Start + ICB.Location + ( ICB.Length - 1 )
/ DVD_VIDEO_LB_LEN ) && ( TagID != 261 ) );
//dvdalign_lbfree(device, LogBlock);
free(LogBlock);
return 0;
}
/**
* Dir: Location of directory to scan
* FileName: Name of file to look for
* FileICB: Location of ICB of the found file
* return 1 on success, 0 on error;
*/
static int UDFScanDir( udf_t *udf, struct AD Dir, char *FileName,
struct Partition *partition, struct AD *FileICB,
int cache_file_info)
{
char filename[ MAX_UDF_FILE_NAME_LEN ];
uint8_t *directory;
uint32_t lbnum;
uint16_t TagID;
uint8_t filechar;
uint32_t p;
uint8_t *cached_dir = NULL;
uint32_t dir_lba;
struct AD tmpICB;
int found = 0;
int in_cache = 0;
/* Scan dir for ICB of file */
lbnum = partition->Start + Dir.Location;
// if(DVDUDFCacheLevel(device, -1) > 0) {
/* caching */
//if(!GetUDFCache(device, LBUDFCache, lbnum, &cached_dir)) {
if(!GetUDFCache(udf, LBUDFCache, lbnum, &cached_dir)) {
dir_lba = (Dir.Length + DVD_VIDEO_LB_LEN) / DVD_VIDEO_LB_LEN;
//if((cached_dir = dvdalign_lbmalloc(device, dir_lba)) == NULL) {
if((cached_dir = (uint8_t*) malloc(2048 * dir_lba)) == NULL) {
return 0;
}
//if( DVDReadLBUDF( device, lbnum, dir_lba, cached_dir, 0) <= 0 ) {
if( read( udf->dev, cached_dir, lbnum, dir_lba, 0) ) {
//dvdalign_lbfree(device, cached_dir);
free(cached_dir);
cached_dir = NULL;
}
SetUDFCache(udf, LBUDFCache, lbnum, &cached_dir);
} else {
in_cache = 1;
}
if(cached_dir == NULL) {
return 0;
}
p = 0;
while( p < Dir.Length ) {
UDFDescriptor( &cached_dir[ p ], &TagID );
if( TagID == 257 ) {
p += UDFFileIdentifier( &cached_dir[ p ], &filechar,
filename, &tmpICB );
if(cache_file_info && !in_cache) {
uint8_t tmpFiletype;
struct AD tmpFile;
if( !strcasecmp( FileName, filename ) ) {
*FileICB = tmpICB;
found = 1;
}
UDFMapICB(udf, tmpICB, &tmpFiletype,
partition, &tmpFile);
} else {
if( !strcasecmp( FileName, filename ) ) {
*FileICB = tmpICB;
return 1;
}
}
} else {
if(cache_file_info && (!in_cache) && found) {
return 1;
}
return 0;
}
}
if(cache_file_info && (!in_cache) && found) {
return 1;
}
return 0;
// }
//directory = dvdalign_lbmalloc(device, 2);
directory = (uint8_t*) malloc(2 * 2048);
if(!directory) {
return 0;
}
/*
if( DVDReadLBUDF( device, lbnum, 2, directory, 0 ) <= 0 ) {
dvdalign_lbfree(device, directory);
return 0;
}
*/
if( read( udf->dev, directory, lbnum, 2, 0 ) <= 0 ) {
free(directory);
return 0;
}
p = 0;
while( p < Dir.Length ) {
if( p > DVD_VIDEO_LB_LEN ) {
++lbnum;
p -= DVD_VIDEO_LB_LEN;
Dir.Length -= DVD_VIDEO_LB_LEN;
/*
if( DVDReadLBUDF( device, lbnum, 2, directory, 0 ) <= 0 ) {
dvdalign_lbfree(device, directory);
return 0;
}
*/
if( read( udf->dev, directory, lbnum, 2, 0 ) <= 0 ) {
free(directory);
return 0;
}
}
UDFDescriptor( &directory[ p ], &TagID );
if( TagID == 257 ) {
p += UDFFileIdentifier( &directory[ p ], &filechar,
filename, FileICB );
if( !strcasecmp( FileName, filename ) ) {
//dvdalign_lbfree(device, directory);
free(directory);
return 1;
}
} else {
//dvdalign_lbfree(device, directory);
free(directory);
return 0;
}
}
//dvdalign_lbfree(device, directory);
free(directory);
return 0;
}
static int UDFGetAVDP( udf_t *udf,
struct avdp_t *avdp)
{
uint8_t *Anchor;
uint32_t lbnum, MVDS_location, MVDS_length;
uint16_t TagID;
uint32_t lastsector;
int terminate;
struct avdp_t;
if(GetUDFCache(udf, AVDPCache, 0, avdp)) {
return 1;
}
/* Find Anchor */
lastsector = 0;
lbnum = 256; /* Try #1, prime anchor */
terminate = 0;
//Anchor = dvdalign_lbmalloc(device, 1);
Anchor = (uint8_t*) malloc(2048);
if(!Anchor) {
return 0;
}
for(;;) {
//if( DVDReadLBUDF( device, lbnum, 1, Anchor, 0 ) > 0 ) {
if( ! read( udf->dev, Anchor, lbnum, 1, 0 ) ) {
UDFDescriptor( Anchor, &TagID );
} else {
TagID = 0;
}
if (TagID != 2) {
/* Not an anchor */
if( terminate ) {
//dvdalign_lbfree(device, Anchor);
free(Anchor);
errno = EMEDIUMTYPE;
return 0; /* Final try failed */
}
if( lastsector ) {
/* We already found the last sector. Try #3, alternative
* backup anchor. If that fails, don't try again.
*/
lbnum = lastsector;
terminate = 1;
} else {
/* TODO: Find last sector of the disc (this is optional). */
if( lastsector ) {
/* Try #2, backup anchor */
lbnum = lastsector - 256;
} else {
/* Unable to find last sector */
//dvdalign_lbfree(device, Anchor);
free(Anchor);
errno = EMEDIUMTYPE;
return 0;
}
}
} else {
/* It's an anchor! We can leave */
break;
}
}
/* Main volume descriptor */
UDFExtentAD( &Anchor[ 16 ], &MVDS_length, &MVDS_location );
avdp->mvds.location = MVDS_location;
avdp->mvds.length = MVDS_length;
/* Backup volume descriptor */
UDFExtentAD( &Anchor[ 24 ], &MVDS_length, &MVDS_location );
avdp->rvds.location = MVDS_location;
avdp->rvds.length = MVDS_length;
SetUDFCache(udf, AVDPCache, 0, avdp);
//dvdalign_lbfree(device, Anchor);
free(Anchor);
return 1;
}
/**
* Looks for partition on the disc. Returns 1 if partition found, 0 on error.
* partnum: Number of the partition, starting at 0.
* part: structure to fill with the partition information
*/
static int UDFFindPartition( udf_t *udf, int partnum,
struct Partition *part )
{
uint8_t *LogBlock;
uint32_t lbnum, MVDS_location, MVDS_length;
uint16_t TagID;
int i, volvalid;
struct avdp_t avdp;
if(!UDFGetAVDP(udf, &avdp)) {
return 0;
}
//LogBlock = dvdalign_lbmalloc(device, 1);
LogBlock = (uint8_t*) malloc(2048);
if(!LogBlock) {
return 0;
}
/* Main volume descriptor */
MVDS_location = avdp.mvds.location;
MVDS_length = avdp.mvds.length;
part->valid = 0;
volvalid = 0;
part->VolumeDesc[ 0 ] = '\0';
i = 1;
do {
/* Find Volume Descriptor */
lbnum = MVDS_location;
do {
//if( DVDReadLBUDF( device, lbnum++, 1, LogBlock, 0 ) <= 0 ) {
if( read( udf->dev, LogBlock, lbnum++, 1, 0 ) ) {
TagID = 0;
} else {
UDFDescriptor( LogBlock, &TagID );
}
if( ( TagID == 5 ) && ( !part->valid ) ) {
/* Partition Descriptor */
UDFPartition( LogBlock, &part->Flags, &part->Number,
part->Contents, &part->Start, &part->Length );
part->valid = ( partnum == part->Number );
} else if( ( TagID == 6 ) && ( !volvalid ) ) {
/* Logical Volume Descriptor */
if( UDFLogVolume( LogBlock, part->VolumeDesc ) ) {
/* TODO: sector size wrong! */
} else {
volvalid = 1;
}
}
} while( ( lbnum <= MVDS_location + ( MVDS_length - 1 )
/ DVD_VIDEO_LB_LEN ) && ( TagID != 8 )
&& ( ( !part->valid ) || ( !volvalid ) ) );
if( ( !part->valid) || ( !volvalid ) ) {
/* Backup volume descriptor */
MVDS_location = avdp.mvds.location;
MVDS_length = avdp.mvds.length;
}
} while( i-- && ( ( !part->valid ) || ( !volvalid ) ) );
//dvdalign_lbfree(device, LogBlock);
free(LogBlock);
/* We only care for the partition, not the volume */
return part->valid;
}
uint32_t UDFFindFile( udf_t *udf, char *filename,
uint32_t *filesize )
{
uint8_t *LogBlock;
uint32_t lbnum;
uint16_t TagID;
struct Partition partition;
struct AD RootICB, File, ICB;
char tokenline[ MAX_UDF_FILE_NAME_LEN ];
char *token;
uint8_t filetype;
if(filesize) {
*filesize = 0;
}
tokenline[0] = '\0';
strcat( tokenline, filename );
if(!(GetUDFCache(udf, PartitionCache, 0, &partition) &&
GetUDFCache(udf, RootICBCache, 0, &RootICB))) {
/* Find partition, 0 is the standard location for DVD Video.*/
if( !UDFFindPartition( udf, 0, &partition ) ) {
return 0;
}
SetUDFCache(udf, PartitionCache, 0, &partition);
//LogBlock = dvdalign_lbmalloc(device, 1);
LogBlock = (uint8_t*) malloc(2048);
if(!LogBlock) {
return 0;
}
/* Find root dir ICB */
lbnum = partition.Start;
do {
//if( DVDReadLBUDF( device, lbnum++, 1, LogBlock, 0 ) <= 0 ) {
if( read( udf->dev, LogBlock, lbnum++, 1, 0 ) ) {
TagID = 0;
} else {
UDFDescriptor( LogBlock, &TagID );
}
/* File Set Descriptor */
if( TagID == 256 ) { // File Set Descriptor
UDFLongAD( &LogBlock[ 400 ], &RootICB );
}
} while( ( lbnum < partition.Start + partition.Length )
&& ( TagID != 8 ) && ( TagID != 256 ) );
//dvdalign_lbfree(device, LogBlock);
free(LogBlock);
/* Sanity checks. */
if( TagID != 256 ) {
return 0;
}
if( RootICB.Partition != 0 ) {
return 0;
}
SetUDFCache(udf, RootICBCache, 0, &RootICB);
}
/* Find root dir */
if( !UDFMapICB( udf, RootICB, &filetype, &partition, &File ) ) {
return 0;
}
if( filetype != 4 ) {
return 0; /* Root dir should be dir */
}
{
int cache_file_info = 0;
/* Tokenize filepath */
token = strtok(tokenline, "/");
while( token != NULL ) {
if( !UDFScanDir( udf, File, token, &partition, &ICB,
cache_file_info)) {
return 0;
}
if( !UDFMapICB( udf, ICB, &filetype, &partition, &File ) ) {
return 0;
}
if(!strcmp(token, "VIDEO_TS")) {
cache_file_info = 1;
}
token = strtok( NULL, "/" );
}
}
/* Sanity check. */
if( File.Partition != 0 ) {
return 0;
}
if(filesize) {
*filesize = File.Length;
}
/* Hack to not return partition.Start for empty files. */
if( !File.Location ) {
return 0;
} else {
return partition.Start + File.Location;
}
}
/**
* Gets a Descriptor .
* Returns 1 if descriptor found, 0 on error.
* id, tagid of descriptor
* bufsize, size of BlockBuf (must be >= DVD_VIDEO_LB_LEN)
* and aligned for raw/O_DIRECT read.
*/
static int UDFGetDescriptor( udf_t *udf, int id,
uint8_t *descriptor, int bufsize)
{
uint32_t lbnum, MVDS_location, MVDS_length;
struct avdp_t avdp;
uint16_t TagID;
uint32_t lastsector;
int i, terminate;
int desc_found = 0;
/* Find Anchor */
lastsector = 0;
lbnum = 256; /* Try #1, prime anchor */
terminate = 0;
if(bufsize < DVD_VIDEO_LB_LEN) {
return 0;
}
if(!UDFGetAVDP(udf, &avdp)) {
return 0;
}
/* Main volume descriptor */
MVDS_location = avdp.mvds.location;
MVDS_length = avdp.mvds.length;
i = 1;
do {
/* Find Descriptor */
lbnum = MVDS_location;
do {
//if( DVDReadLBUDF( device, lbnum++, 1, descriptor, 0 ) <= 0 ) {
if( read( udf->dev, descriptor, lbnum++, 1, 0 ) ) {
TagID = 0;
} else {
UDFDescriptor( descriptor, &TagID );
}
if( (TagID == id) && ( !desc_found ) ) {
/* Descriptor */
desc_found = 1;
}
} while( ( lbnum <= MVDS_location + ( MVDS_length - 1 )
/ DVD_VIDEO_LB_LEN ) && ( TagID != 8 )
&& ( !desc_found) );
if( !desc_found ) {
/* Backup volume descriptor */
MVDS_location = avdp.rvds.location;
MVDS_length = avdp.rvds.length;
}
} while( i-- && ( !desc_found ) );
return desc_found;
}
static int UDFGetPVD(udf_t *udf, struct pvd_t *pvd)
{
uint8_t *pvd_buf;
if(GetUDFCache(udf, PVDCache, 0, pvd)) {
return 1;
}
//pvd_buf = dvdalign_lbmalloc(device, 1);
pvd_buf = (uint8_t*) malloc(2048);
if(!pvd_buf) {
return 0;
}
if(!UDFGetDescriptor( udf, 1, pvd_buf, 1*DVD_VIDEO_LB_LEN)) {
//dvdalign_lbfree(device, pvd_buf);
free(pvd_buf);
return 0;
}
memcpy(pvd->VolumeIdentifier, &pvd_buf[24], 32);
memcpy(pvd->VolumeSetIdentifier, &pvd_buf[72], 128);
SetUDFCache(udf, PVDCache, 0, pvd);
//dvdalign_lbfree(device, pvd_buf);
free(pvd_buf);
return 1;
}
/**
* Gets the Volume Identifier string, in 8bit unicode (latin-1)
* volid, place to put the string
* volid_size, size of the buffer volid points to
* returns the size of buffer needed for all data
*/
int UDFGetVolumeIdentifier(udf_t *udf, char *volid,
uint32_t volid_size)
{
struct pvd_t pvd;
uint32_t volid_len;
/* get primary volume descriptor */
if(!UDFGetPVD(udf, &pvd)) {
return 0;
}
volid_len = pvd.VolumeIdentifier[31];
if(volid_len > 31) {
/* this field is only 32 bytes something is wrong */
volid_len = 31;
}
if(volid_size > volid_len) {
volid_size = volid_len;
}
Unicodedecode(pvd.VolumeIdentifier, volid_size, volid);
return volid_len;
}
/**
* Gets the Volume Set Identifier, as a 128-byte dstring (not decoded)
* WARNING This is not a null terminated string
* volsetid, place to put the data
* volsetid_size, size of the buffer volsetid points to
* the buffer should be >=128 bytes to store the whole volumesetidentifier
* returns the size of the available volsetid information (128)
* or 0 on error
*/
int UDFGetVolumeSetIdentifier(udf_t *udf, uint8_t *volsetid,
uint32_t volsetid_size)
{
struct pvd_t pvd;
/* get primary volume descriptor */
if(!UDFGetPVD(udf, &pvd)) {
return 0;
}
if(volsetid_size > 128) {
volsetid_size = 128;
}
memcpy(volsetid, pvd.VolumeSetIdentifier, volsetid_size);
return 128;
}
|