annotate libdvdread/dvd_udf.c @ 373:78e68cde11cf src

replaced *struct assignment with call to memcpy(); patch by Erik Hovland org
author nicodvb
date Thu, 05 Jun 2008 10:22:53 +0000
parents 1274107d0eac
children 9ab286814761
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
1 /*
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
2 * This code is based on dvdudf by:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
3 * Christian Wolff <scarabaeus@convergence.de>.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
4 *
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
5 * Modifications by:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
6 * Billy Biggs <vektor@dumbterm.net>.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
7 * Björn Englund <d4bjorn@dtek.chalmers.se>.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
8 *
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
9 * dvdudf: parse and read the UDF volume information of a DVD Video
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
10 * Copyright (C) 1999 Christian Wolff for convergence integrated media
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
11 * GmbH The author can be reached at scarabaeus@convergence.de, the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
12 * project's page is at http://linuxtv.org/dvd/
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
13 *
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
14 * This program is free software; you can redistribute it and/or modify
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
15 * it under the terms of the GNU General Public License as published by
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
16 * the Free Software Foundation; either version 2 of the License, or (at
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
17 * your option) any later version.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
18 *
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
19 * This program is distributed in the hope that it will be useful, but
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
22 * General Public License for more details.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
23 *
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
24 * You should have received a copy of the GNU General Public License
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
25 * along with this program; if not, write to the Free Software
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
26 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
27 * 02111-1307, USA. Or, point your browser to
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
28 * http://www.gnu.org/copyleft/gpl.html
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
29 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
30
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
31 #include "config.h"
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
32
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
33 #include <stdio.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
34 #include <stdlib.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
35 #include <string.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
36
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
37 #include <sys/types.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
38 #include <sys/stat.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
39 #include <unistd.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
40 #include <inttypes.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
41
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
42 #include "dvd_reader.h"
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
43 #include "dvd_udf.h"
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
44
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
45 /* Private but located in/shared with dvd_reader.c */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
46 extern int UDFReadBlocksRaw( dvd_reader_t *device, uint32_t lb_number,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
47 size_t block_count, unsigned char *data,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
48 int encrypted );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
49
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
50 /* It's required to either fail or deliver all the blocks asked for. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
51 static int DVDReadLBUDF( dvd_reader_t *device, uint32_t lb_number,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
52 size_t block_count, unsigned char *data,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
53 int encrypted )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
54 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
55 int ret;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
56 size_t count = block_count;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
57
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
58 while(count > 0) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
59 ret = UDFReadBlocksRaw(device, lb_number, count, data, encrypted);
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
60
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
61 if(ret <= 0) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
62 /* One of the reads failed or nothing more to read, too bad.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
63 * We won't even bother returning the reads that went ok. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
64 return ret;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
65 }
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
66
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
67 count -= (size_t)ret;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
68 lb_number += (uint32_t)ret;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
69 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
70
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
71 return block_count;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
72 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
73
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
74
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
75 #ifndef NULL
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
76 #define NULL ((void *)0)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
77 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
78
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
79 struct Partition {
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
80 int valid;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
81 char VolumeDesc[128];
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
82 uint16_t Flags;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
83 uint16_t Number;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
84 char Contents[32];
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
85 uint32_t AccessType;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
86 uint32_t Start;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
87 uint32_t Length;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
88 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
89
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
90 struct AD {
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
91 uint32_t Location;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
92 uint32_t Length;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
93 uint8_t Flags;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
94 uint16_t Partition;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
95 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
96
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
97 struct extent_ad {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
98 uint32_t location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
99 uint32_t length;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
100 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
101
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
102 struct avdp_t {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
103 struct extent_ad mvds;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
104 struct extent_ad rvds;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
105 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
106
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
107 struct pvd_t {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
108 uint8_t VolumeIdentifier[32];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
109 uint8_t VolumeSetIdentifier[128];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
110 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
111
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
112 struct lbudf {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
113 uint32_t lb;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
114 uint8_t *data;
261
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
115 /* needed for proper freeing */
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
116 uint8_t *data_base;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
117 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
118
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
119 struct icbmap {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
120 uint32_t lbn;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
121 struct AD file;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
122 uint8_t filetype;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
123 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
124
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
125 struct udf_cache {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
126 int avdp_valid;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
127 struct avdp_t avdp;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
128 int pvd_valid;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
129 struct pvd_t pvd;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
130 int partition_valid;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
131 struct Partition partition;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
132 int rooticb_valid;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
133 struct AD rooticb;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
134 int lb_num;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
135 struct lbudf *lbs;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
136 int map_num;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
137 struct icbmap *maps;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
138 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
139
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
140 typedef enum {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
141 PartitionCache, RootICBCache, LBUDFCache, MapCache, AVDPCache, PVDCache
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
142 } UDFCacheType;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
143
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
144 void FreeUDFCache(void *cache)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
145 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
146 struct udf_cache *c = (struct udf_cache *)cache;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
147 if(c == NULL)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
148 return;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
149
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
150 if(c->lbs) {
261
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
151 int n;
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
152 for(n = 0; n < c->lb_num; n++)
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
153 free(c->lbs[n].data_base);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
154 free(c->lbs);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
155 }
357
8949e15ebbd4 cosmetics: fewer useless braces
nicodvb
parents: 356
diff changeset
156 if(c->maps)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
157 free(c->maps);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
158 free(c);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
159 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
160
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
161
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
162 static int GetUDFCache(dvd_reader_t *device, UDFCacheType type,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
163 uint32_t nr, void *data)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
164 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
165 int n;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
166 struct udf_cache *c;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
167
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
168 if(DVDUDFCacheLevel(device, -1) <= 0)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
169 return 0;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
170
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
171 c = (struct udf_cache *)GetUDFCacheHandle(device);
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
172
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
173 if(c == NULL)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
174 return 0;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
175
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
176 switch(type) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
177 case AVDPCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
178 if(c->avdp_valid) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
179 *(struct avdp_t *)data = c->avdp;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
180 return 1;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
181 }
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
182 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
183 case PVDCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
184 if(c->pvd_valid) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
185 *(struct pvd_t *)data = c->pvd;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
186 return 1;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
187 }
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
188 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
189 case PartitionCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
190 if(c->partition_valid) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
191 *(struct Partition *)data = c->partition;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
192 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
193 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
194 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
195 case RootICBCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
196 if(c->rooticb_valid) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
197 *(struct AD *)data = c->rooticb;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
198 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
199 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
200 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
201 case LBUDFCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
202 for(n = 0; n < c->lb_num; n++) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
203 if(c->lbs[n].lb == nr) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
204 *(uint8_t **)data = c->lbs[n].data;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
205 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
206 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
207 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
208 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
209 case MapCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
210 for(n = 0; n < c->map_num; n++) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
211 if(c->maps[n].lbn == nr) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
212 *(struct icbmap *)data = c->maps[n];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
213 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
214 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
215 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
216 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
217 default:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
218 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
219 }
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
220
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
221 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
222 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
223
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
224 static int SetUDFCache(dvd_reader_t *device, UDFCacheType type,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
225 uint32_t nr, void *data)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
226 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
227 int n;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
228 struct udf_cache *c;
359
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
229 void *tmp;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
230
357
8949e15ebbd4 cosmetics: fewer useless braces
nicodvb
parents: 356
diff changeset
231 if(DVDUDFCacheLevel(device, -1) <= 0)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
232 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
233
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
234 c = (struct udf_cache *)GetUDFCacheHandle(device);
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
235
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
236 if(c == NULL) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
237 c = calloc(1, sizeof(struct udf_cache));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
238 /* fprintf(stderr, "calloc: %d\n", sizeof(struct udf_cache)); */
360
b6fa98f690ee more braces removed
nicodvb
parents: 359
diff changeset
239 if(c == NULL)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
240 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
241 SetUDFCacheHandle(device, c);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
242 }
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
243
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
244
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
245 switch(type) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
246 case AVDPCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
247 c->avdp = *(struct avdp_t *)data;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
248 c->avdp_valid = 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
249 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
250 case PVDCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
251 c->pvd = *(struct pvd_t *)data;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
252 c->pvd_valid = 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
253 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
254 case PartitionCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
255 c->partition = *(struct Partition *)data;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
256 c->partition_valid = 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
257 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
258 case RootICBCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
259 c->rooticb = *(struct AD *)data;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
260 c->rooticb_valid = 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
261 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
262 case LBUDFCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
263 for(n = 0; n < c->lb_num; n++) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
264 if(c->lbs[n].lb == nr) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
265 /* replace with new data */
261
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
266 c->lbs[n].data_base = ((uint8_t **)data)[0];
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
267 c->lbs[n].data = ((uint8_t **)data)[1];
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
268 c->lbs[n].lb = nr;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
269 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
270 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
271 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
272 c->lb_num++;
359
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
273 tmp = realloc(c->lbs, c->lb_num * sizeof(struct lbudf));
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
274 /*
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
275 fprintf(stderr, "realloc lb: %d * %d = %d\n",
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
276 c->lb_num, sizeof(struct lbudf),
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
277 c->lb_num * sizeof(struct lbudf));
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
278 */
359
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
279 if(tmp == NULL) {
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
280 if(c->lbs) free(c->lbs);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
281 c->lb_num = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
282 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
283 }
359
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
284 c->lbs = tmp;
261
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
285 c->lbs[n].data_base = ((uint8_t **)data)[0];
8ad83ff183be fix memleak reported by Jerome
mroi
parents: 242
diff changeset
286 c->lbs[n].data = ((uint8_t **)data)[1];
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
287 c->lbs[n].lb = nr;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
288 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
289 case MapCache:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
290 for(n = 0; n < c->map_num; n++) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
291 if(c->maps[n].lbn == nr) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
292 /* replace with new data */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
293 c->maps[n] = *(struct icbmap *)data;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
294 c->maps[n].lbn = nr;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
295 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
296 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
297 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
298 c->map_num++;
359
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
299 tmp = realloc(c->maps, c->map_num * sizeof(struct icbmap));
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
300 /*
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
301 fprintf(stderr, "realloc maps: %d * %d = %d\n",
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
302 c->map_num, sizeof(struct icbmap),
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
303 c->map_num * sizeof(struct icbmap));
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
304 */
359
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
305 if(tmp == NULL) {
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
306 if(c->maps) free(c->maps);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
307 c->map_num = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
308 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
309 }
359
e2973c342e59 prevent 2 potential memory leaks in SetUDFCache()
nicodvb
parents: 358
diff changeset
310 c->maps = tmp;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
311 c->maps[n] = *(struct icbmap *)data;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
312 c->maps[n].lbn = nr;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
313 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
314 default:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
315 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
316 }
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
317
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
318 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
319 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
320
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
321
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
322 /* For direct data access, LSB first */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
323 #define GETN1(p) ((uint8_t)data[p])
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
324 #define GETN2(p) ((uint16_t)data[p] | ((uint16_t)data[(p) + 1] << 8))
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
325 #define GETN3(p) ((uint32_t)data[p] | ((uint32_t)data[(p) + 1] << 8) \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
326 | ((uint32_t)data[(p) + 2] << 16))
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
327 #define GETN4(p) ((uint32_t)data[p] \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
328 | ((uint32_t)data[(p) + 1] << 8) \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
329 | ((uint32_t)data[(p) + 2] << 16) \
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
330 | ((uint32_t)data[(p) + 3] << 24))
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
331 /* This is wrong with regard to endianess */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
332 #define GETN(p, n, target) memcpy(target, &data[p], n)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
333
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
334 static int Unicodedecode( uint8_t *data, int len, char *target )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
335 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
336 int p = 1, i = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
337
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
338 if( ( data[ 0 ] == 8 ) || ( data[ 0 ] == 16 ) ) do {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
339 if( data[ 0 ] == 16 ) p++; /* Ignore MSB of unicode16 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
340 if( p < len ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
341 target[ i++ ] = data[ p++ ];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
342 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
343 } while( p < len );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
344
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
345 target[ i ] = '\0';
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
346 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
347 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
348
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
349 static int UDFDescriptor( uint8_t *data, uint16_t *TagID )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
350 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
351 *TagID = GETN2(0);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
352 /* TODO: check CRC 'n stuff */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
353 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
354 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
355
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
356 static int UDFExtentAD( uint8_t *data, uint32_t *Length, uint32_t *Location )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
357 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
358 *Length = GETN4(0);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
359 *Location = GETN4(4);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
360 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
361 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
362
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
363 static int UDFShortAD( uint8_t *data, struct AD *ad,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
364 struct Partition *partition )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
365 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
366 ad->Length = GETN4(0);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
367 ad->Flags = ad->Length >> 30;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
368 ad->Length &= 0x3FFFFFFF;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
369 ad->Location = GETN4(4);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
370 ad->Partition = partition->Number; /* use number of current partition */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
371 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
372 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
373
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
374 static int UDFLongAD( uint8_t *data, struct AD *ad )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
375 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
376 ad->Length = GETN4(0);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
377 ad->Flags = ad->Length >> 30;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
378 ad->Length &= 0x3FFFFFFF;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
379 ad->Location = GETN4(4);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
380 ad->Partition = GETN2(8);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
381 /* GETN(10, 6, Use); */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
382 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
383 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
384
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
385 static int UDFExtAD( uint8_t *data, struct AD *ad )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
386 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
387 ad->Length = GETN4(0);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
388 ad->Flags = ad->Length >> 30;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
389 ad->Length &= 0x3FFFFFFF;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
390 ad->Location = GETN4(12);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
391 ad->Partition = GETN2(16);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
392 /* GETN(10, 6, Use); */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
393 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
394 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
395
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
396 static int UDFICB( uint8_t *data, uint8_t *FileType, uint16_t *Flags )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
397 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
398 *FileType = GETN1(11);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
399 *Flags = GETN2(18);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
400 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
401 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
402
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
403
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
404 static int UDFPartition( uint8_t *data, uint16_t *Flags, uint16_t *Number,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
405 char *Contents, uint32_t *Start, uint32_t *Length )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
406 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
407 *Flags = GETN2(20);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
408 *Number = GETN2(22);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
409 GETN(24, 32, Contents);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
410 *Start = GETN4(188);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
411 *Length = GETN4(192);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
412 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
413 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
414
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
415 /**
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
416 * Reads the volume descriptor and checks the parameters. Returns 0 on OK, 1
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
417 * on error.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
418 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
419 static int UDFLogVolume( uint8_t *data, char *VolumeDescriptor )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
420 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
421 uint32_t lbsize, MT_L, N_PM;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
422 Unicodedecode(&data[84], 128, VolumeDescriptor);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
423 lbsize = GETN4(212); /* should be 2048 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
424 MT_L = GETN4(264); /* should be 6 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
425 N_PM = GETN4(268); /* should be 1 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
426 if (lbsize != DVD_VIDEO_LB_LEN) return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
427 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
428 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
429
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
430 static int UDFFileEntry( uint8_t *data, uint8_t *FileType,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
431 struct Partition *partition, struct AD *ad )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
432 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
433 uint16_t flags;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
434 uint32_t L_EA, L_AD;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
435 unsigned int p;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
436
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
437 UDFICB( &data[ 16 ], FileType, &flags );
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
438
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
439 /* Init ad for an empty file (i.e. there isn't a AD, L_AD == 0 ) */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
440 ad->Length = GETN4( 60 ); /* Really 8 bytes a 56 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
441 ad->Flags = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
442 ad->Location = 0; /* what should we put here? */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
443 ad->Partition = partition->Number; /* use number of current partition */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
444
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
445 L_EA = GETN4( 168 );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
446 L_AD = GETN4( 172 );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
447 p = 176 + L_EA;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
448 while( p < 176 + L_EA + L_AD ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
449 switch( flags & 0x0007 ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
450 case 0: UDFShortAD( &data[ p ], ad, partition ); p += 8; break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
451 case 1: UDFLongAD( &data[ p ], ad ); p += 16; break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
452 case 2: UDFExtAD( &data[ p ], ad ); p += 20; break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
453 case 3:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
454 switch( L_AD ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
455 case 8: UDFShortAD( &data[ p ], ad, partition ); break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
456 case 16: UDFLongAD( &data[ p ], ad ); break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
457 case 20: UDFExtAD( &data[ p ], ad ); break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
458 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
459 p += L_AD;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
460 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
461 default:
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
462 p += L_AD; break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
463 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
464 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
465 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
466 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
467
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
468 static int UDFFileIdentifier( uint8_t *data, uint8_t *FileCharacteristics,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
469 char *FileName, struct AD *FileICB )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
470 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
471 uint8_t L_FI;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
472 uint16_t L_IU;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
473
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
474 *FileCharacteristics = GETN1(18);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
475 L_FI = GETN1(19);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
476 UDFLongAD(&data[20], FileICB);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
477 L_IU = GETN2(36);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
478 if (L_FI) Unicodedecode(&data[38 + L_IU], L_FI, FileName);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
479 else FileName[0] = '\0';
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
480 return 4 * ((38 + L_FI + L_IU + 3) / 4);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
481 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
482
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
483 /**
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
484 * Maps ICB to FileAD
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
485 * ICB: Location of ICB of directory to scan
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
486 * FileType: Type of the file
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
487 * File: Location of file the ICB is pointing to
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
488 * return 1 on success, 0 on error;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
489 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
490 static int UDFMapICB( dvd_reader_t *device, struct AD ICB, uint8_t *FileType,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
491 struct Partition *partition, struct AD *File )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
492 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
493 uint8_t LogBlock_base[DVD_VIDEO_LB_LEN + 2048];
242
f794e1c17947 porting AMD64 patches from xine (provided by Goetz Waschk and Gwenole Beauchesne
mroi
parents: 233
diff changeset
494 uint8_t *LogBlock = (uint8_t *)(((uintptr_t)LogBlock_base & ~((uintptr_t)2047)) + 2048);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
495 uint32_t lbnum;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
496 uint16_t TagID;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
497 struct icbmap tmpmap;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
498
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
499 lbnum = partition->Start + ICB.Location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
500 tmpmap.lbn = lbnum;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
501 if(GetUDFCache(device, MapCache, lbnum, &tmpmap)) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
502 *FileType = tmpmap.filetype;
355
80a6f5839cf7 use memcpy() instead of struct assignment. Patch by Erik Hovland org
nicodvb
parents: 334
diff changeset
503 memcpy(File, &tmpmap.file, sizeof(tmpmap.file));
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
504 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
505 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
506
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
507 do {
357
8949e15ebbd4 cosmetics: fewer useless braces
nicodvb
parents: 356
diff changeset
508 if( DVDReadLBUDF( device, lbnum++, 1, LogBlock, 0 ) <= 0 )
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
509 TagID = 0;
357
8949e15ebbd4 cosmetics: fewer useless braces
nicodvb
parents: 356
diff changeset
510 else
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
511 UDFDescriptor( LogBlock, &TagID );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
512
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
513 if( TagID == 261 ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
514 UDFFileEntry( LogBlock, FileType, partition, File );
355
80a6f5839cf7 use memcpy() instead of struct assignment. Patch by Erik Hovland org
nicodvb
parents: 334
diff changeset
515 memcpy(&tmpmap.file, File, sizeof(tmpmap.file));
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
516 tmpmap.filetype = *FileType;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
517 SetUDFCache(device, MapCache, tmpmap.lbn, &tmpmap);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
518 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
519 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
520 } while( ( lbnum <= partition->Start + ICB.Location + ( ICB.Length - 1 )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
521 / DVD_VIDEO_LB_LEN ) && ( TagID != 261 ) );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
522
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
523 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
524 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
525
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
526 /**
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
527 * Dir: Location of directory to scan
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
528 * FileName: Name of file to look for
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
529 * FileICB: Location of ICB of the found file
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
530 * return 1 on success, 0 on error;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
531 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
532 static int UDFScanDir( dvd_reader_t *device, struct AD Dir, char *FileName,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
533 struct Partition *partition, struct AD *FileICB,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
534 int cache_file_info)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
535 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
536 char filename[ MAX_UDF_FILE_NAME_LEN ];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
537 uint8_t directory_base[ 2 * DVD_VIDEO_LB_LEN + 2048];
242
f794e1c17947 porting AMD64 patches from xine (provided by Goetz Waschk and Gwenole Beauchesne
mroi
parents: 233
diff changeset
538 uint8_t *directory = (uint8_t *)(((uintptr_t)directory_base & ~((uintptr_t)2047)) + 2048);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
539 uint32_t lbnum;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
540 uint16_t TagID;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
541 uint8_t filechar;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
542 unsigned int p;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
543 uint8_t *cached_dir_base = NULL, *cached_dir;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
544 uint32_t dir_lba;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
545 struct AD tmpICB;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
546 int found = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
547 int in_cache = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
548
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
549 /* Scan dir for ICB of file */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
550 lbnum = partition->Start + Dir.Location;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
551
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
552 if(DVDUDFCacheLevel(device, -1) > 0) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
553 /* caching */
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
554
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
555 if(!GetUDFCache(device, LBUDFCache, lbnum, &cached_dir)) {
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
556 dir_lba = (Dir.Length + DVD_VIDEO_LB_LEN) / DVD_VIDEO_LB_LEN;
360
b6fa98f690ee more braces removed
nicodvb
parents: 359
diff changeset
557 if((cached_dir_base = malloc(dir_lba * DVD_VIDEO_LB_LEN + 2048)) == NULL)
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
558 return 0;
360
b6fa98f690ee more braces removed
nicodvb
parents: 359
diff changeset
559
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
560 cached_dir = (uint8_t *)(((uintptr_t)cached_dir_base & ~((uintptr_t)2047)) + 2048);
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
561 if( DVDReadLBUDF( device, lbnum, dir_lba, cached_dir, 0) <= 0 ) {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
562 free(cached_dir_base);
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
563 cached_dir_base = NULL;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
564 cached_dir = NULL;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
565 }
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
566 /*
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
567 if(cached_dir) {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
568 fprintf(stderr, "malloc dir: %d\n", dir_lba * DVD_VIDEO_LB_LEN);
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
569 }
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
570 */
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
571 {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
572 uint8_t *data[2];
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
573 data[0] = cached_dir_base;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
574 data[1] = cached_dir;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
575 SetUDFCache(device, LBUDFCache, lbnum, data);
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
576 }
357
8949e15ebbd4 cosmetics: fewer useless braces
nicodvb
parents: 356
diff changeset
577 } else
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
578 in_cache = 1;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
579
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
580 if(cached_dir == NULL)
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
581 return 0;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
582
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
583 p = 0;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
584
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
585 while( p < Dir.Length ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
586 UDFDescriptor( &cached_dir[ p ], &TagID );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
587 if( TagID == 257 ) {
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
588 p += UDFFileIdentifier( &cached_dir[ p ], &filechar, filename, &tmpICB );
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
589 if(cache_file_info && !in_cache) {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
590 uint8_t tmpFiletype;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
591 struct AD tmpFile;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
592
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
593 if( !strcasecmp( FileName, filename ) ) {
373
78e68cde11cf replaced *struct assignment with call to memcpy(); patch by Erik Hovland org
nicodvb
parents: 367
diff changeset
594 memcpy(FileICB, &tmpICB, sizeof(tmpICB));
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
595 found = 1;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
596 }
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
597 UDFMapICB(device, tmpICB, &tmpFiletype, partition, &tmpFile);
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
598 } else {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
599 if( !strcasecmp( FileName, filename ) ) {
373
78e68cde11cf replaced *struct assignment with call to memcpy(); patch by Erik Hovland org
nicodvb
parents: 367
diff changeset
600 memcpy(FileICB, &tmpICB, sizeof(tmpICB));
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
601 return 1;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
602 }
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
603 }
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
604 } else {
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
605 if(cache_file_info && (!in_cache) && found)
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
606 return 1;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
607 return 0;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
608 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
609 }
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
610 if(cache_file_info && (!in_cache) && found)
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
611 return 1;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
612 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
613 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
614
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
615 if( DVDReadLBUDF( device, lbnum, 2, directory, 0 ) <= 0 )
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
616 return 0;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
617
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
618 p = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
619 while( p < Dir.Length ) {
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
620 if( p > DVD_VIDEO_LB_LEN ) {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
621 ++lbnum;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
622 p -= DVD_VIDEO_LB_LEN;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
623 Dir.Length -= DVD_VIDEO_LB_LEN;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
624 if( DVDReadLBUDF( device, lbnum, 2, directory, 0 ) <= 0 ) {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
625 return 0;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
626 }
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
627 }
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
628 UDFDescriptor( &directory[ p ], &TagID );
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
629 if( TagID == 257 ) {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
630 p += UDFFileIdentifier( &directory[ p ], &filechar,
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
631 filename, FileICB );
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
632 if( !strcasecmp( FileName, filename ) ) {
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
633 return 1;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
634 }
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
635 } else
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
636 return 0;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
637 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
638
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
639 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
640 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
641
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
642
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
643 static int UDFGetAVDP( dvd_reader_t *device,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
644 struct avdp_t *avdp)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
645 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
646 uint8_t Anchor_base[ DVD_VIDEO_LB_LEN + 2048 ];
242
f794e1c17947 porting AMD64 patches from xine (provided by Goetz Waschk and Gwenole Beauchesne
mroi
parents: 233
diff changeset
647 uint8_t *Anchor = (uint8_t *)(((uintptr_t)Anchor_base & ~((uintptr_t)2047)) + 2048);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
648 uint32_t lbnum, MVDS_location, MVDS_length;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
649 uint16_t TagID;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
650 uint32_t lastsector;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
651 int terminate;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
652 struct avdp_t;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
653
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
654 if(GetUDFCache(device, AVDPCache, 0, avdp))
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
655 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
656
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
657 /* Find Anchor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
658 lastsector = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
659 lbnum = 256; /* Try #1, prime anchor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
660 terminate = 0;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
661
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
662 for(;;) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
663 if( DVDReadLBUDF( device, lbnum, 1, Anchor, 0 ) > 0 ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
664 UDFDescriptor( Anchor, &TagID );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
665 } else {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
666 TagID = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
667 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
668 if (TagID != 2) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
669 /* Not an anchor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
670 if( terminate ) return 0; /* Final try failed */
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
671
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
672 if( lastsector ) {
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
673 /*
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
674 * We already found the last sector. Try #3, alternative
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
675 * backup anchor. If that fails, don't try again.
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
676 */
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
677 lbnum = lastsector;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
678 terminate = 1;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
679 } else {
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
680 /* TODO: Find last sector of the disc (this is optional). */
360
b6fa98f690ee more braces removed
nicodvb
parents: 359
diff changeset
681 if( lastsector )
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
682 /* Try #2, backup anchor */
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
683 lbnum = lastsector - 256;
360
b6fa98f690ee more braces removed
nicodvb
parents: 359
diff changeset
684 else
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
685 /* Unable to find last sector */
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
686 return 0;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
687 }
357
8949e15ebbd4 cosmetics: fewer useless braces
nicodvb
parents: 356
diff changeset
688 } else
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
689 /* It's an anchor! We can leave */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
690 break;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
691 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
692 /* Main volume descriptor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
693 UDFExtentAD( &Anchor[ 16 ], &MVDS_length, &MVDS_location );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
694 avdp->mvds.location = MVDS_location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
695 avdp->mvds.length = MVDS_length;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
696
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
697 /* Backup volume descriptor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
698 UDFExtentAD( &Anchor[ 24 ], &MVDS_length, &MVDS_location );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
699 avdp->rvds.location = MVDS_location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
700 avdp->rvds.length = MVDS_length;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
701
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
702 SetUDFCache(device, AVDPCache, 0, avdp);
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
703
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
704 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
705 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
706
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
707 /**
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
708 * Looks for partition on the disc. Returns 1 if partition found, 0 on error.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
709 * partnum: Number of the partition, starting at 0.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
710 * part: structure to fill with the partition information
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
711 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
712 static int UDFFindPartition( dvd_reader_t *device, int partnum,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
713 struct Partition *part )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
714 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
715 uint8_t LogBlock_base[ DVD_VIDEO_LB_LEN + 2048 ];
242
f794e1c17947 porting AMD64 patches from xine (provided by Goetz Waschk and Gwenole Beauchesne
mroi
parents: 233
diff changeset
716 uint8_t *LogBlock = (uint8_t *)(((uintptr_t)LogBlock_base & ~((uintptr_t)2047)) + 2048);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
717 uint32_t lbnum, MVDS_location, MVDS_length;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
718 uint16_t TagID;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
719 int i, volvalid;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
720 struct avdp_t avdp;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
721
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
722 if(!UDFGetAVDP(device, &avdp))
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
723 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
724
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
725 /* Main volume descriptor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
726 MVDS_location = avdp.mvds.location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
727 MVDS_length = avdp.mvds.length;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
728
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
729 part->valid = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
730 volvalid = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
731 part->VolumeDesc[ 0 ] = '\0';
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
732 i = 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
733 do {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
734 /* Find Volume Descriptor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
735 lbnum = MVDS_location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
736 do {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
737
357
8949e15ebbd4 cosmetics: fewer useless braces
nicodvb
parents: 356
diff changeset
738 if( DVDReadLBUDF( device, lbnum++, 1, LogBlock, 0 ) <= 0 )
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
739 TagID = 0;
357
8949e15ebbd4 cosmetics: fewer useless braces
nicodvb
parents: 356
diff changeset
740 else
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
741 UDFDescriptor( LogBlock, &TagID );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
742
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
743 if( ( TagID == 5 ) && ( !part->valid ) ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
744 /* Partition Descriptor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
745 UDFPartition( LogBlock, &part->Flags, &part->Number,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
746 part->Contents, &part->Start, &part->Length );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
747 part->valid = ( partnum == part->Number );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
748 } else if( ( TagID == 6 ) && ( !volvalid ) ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
749 /* Logical Volume Descriptor */
360
b6fa98f690ee more braces removed
nicodvb
parents: 359
diff changeset
750 if( UDFLogVolume( LogBlock, part->VolumeDesc ) ) {
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
751 /* TODO: sector size wrong! */
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
752 } else
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
753 volvalid = 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
754 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
755
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
756 } while( ( lbnum <= MVDS_location + ( MVDS_length - 1 )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
757 / DVD_VIDEO_LB_LEN ) && ( TagID != 8 )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
758 && ( ( !part->valid ) || ( !volvalid ) ) );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
759
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
760 if( ( !part->valid) || ( !volvalid ) ) {
358
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
761 /* Backup volume descriptor */
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
762 MVDS_location = avdp.mvds.location;
e998b2df2200 cosmetics: tabs->spaces, hopefully the indentation is much better now
nicodvb
parents: 357
diff changeset
763 MVDS_length = avdp.mvds.length;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
764 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
765 } while( i-- && ( ( !part->valid ) || ( !volvalid ) ) );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
766
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
767 /* We only care for the partition, not the volume */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
768 return part->valid;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
769 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
770
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
771 uint32_t UDFFindFile( dvd_reader_t *device, char *filename,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
772 uint32_t *filesize )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
773 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
774 uint8_t LogBlock_base[ DVD_VIDEO_LB_LEN + 2048 ];
242
f794e1c17947 porting AMD64 patches from xine (provided by Goetz Waschk and Gwenole Beauchesne
mroi
parents: 233
diff changeset
775 uint8_t *LogBlock = (uint8_t *)(((uintptr_t)LogBlock_base & ~((uintptr_t)2047)) + 2048);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
776 uint32_t lbnum;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
777 uint16_t TagID;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
778 struct Partition partition;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
779 struct AD RootICB, File, ICB;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
780 char tokenline[ MAX_UDF_FILE_NAME_LEN ];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
781 char *token;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
782 uint8_t filetype;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
783
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
784 *filesize = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
785 tokenline[0] = '\0';
334
c73a93208d14 prevent string overflow in static buffer using strncat(MAX_UDF_FILE_NAME_LEN-1) instead of strcat() ; patch by Erik Hovland - erik hovland org
nicodvb
parents: 333
diff changeset
786 strncat(tokenline, filename, MAX_UDF_FILE_NAME_LEN - 1);
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
787
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
788 if(!(GetUDFCache(device, PartitionCache, 0, &partition) &&
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
789 GetUDFCache(device, RootICBCache, 0, &RootICB))) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
790 /* Find partition, 0 is the standard location for DVD Video.*/
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
791 if( !UDFFindPartition( device, 0, &partition ) ) return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
792 SetUDFCache(device, PartitionCache, 0, &partition);
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
793
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
794 /* Find root dir ICB */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
795 lbnum = partition.Start;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
796 do {
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
797 if( DVDReadLBUDF( device, lbnum++, 1, LogBlock, 0 ) <= 0 )
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
798 TagID = 0;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
799 else
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
800 UDFDescriptor( LogBlock, &TagID );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
801
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
802 /* File Set Descriptor */
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
803 if( TagID == 256 ) /* File Set Descriptor */
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
804 UDFLongAD( &LogBlock[ 400 ], &RootICB );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
805 } while( ( lbnum < partition.Start + partition.Length )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
806 && ( TagID != 8 ) && ( TagID != 256 ) );
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
807
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
808 /* Sanity checks. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
809 if( TagID != 256 ) return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
810 if( RootICB.Partition != 0 ) return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
811 SetUDFCache(device, RootICBCache, 0, &RootICB);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
812 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
813
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
814 /* Find root dir */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
815 if( !UDFMapICB( device, RootICB, &filetype, &partition, &File ) ) return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
816 if( filetype != 4 ) return 0; /* Root dir should be dir */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
817
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
818 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
819 int cache_file_info = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
820 /* Tokenize filepath */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
821 token = strtok(tokenline, "/");
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
822 while( token != NULL ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
823 if( !UDFScanDir( device, File, token, &partition, &ICB,
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
824 cache_file_info))
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
825 return 0;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
826 if( !UDFMapICB( device, ICB, &filetype, &partition, &File ) )
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
827 return 0;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
828 if(!strcmp(token, "VIDEO_TS"))
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
829 cache_file_info = 1;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
830 token = strtok( NULL, "/" );
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
831 }
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
832 }
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
833
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
834 /* Sanity check. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
835 if( File.Partition != 0 ) return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
836 *filesize = File.Length;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
837 /* Hack to not return partition.Start for empty files. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
838 if( !File.Location )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
839 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
840 else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
841 return partition.Start + File.Location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
842 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
843
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
844
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
845
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
846 /**
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
847 * Gets a Descriptor .
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
848 * Returns 1 if descriptor found, 0 on error.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
849 * id, tagid of descriptor
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
850 * bufsize, size of BlockBuf (must be >= DVD_VIDEO_LB_LEN).
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
851 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
852 static int UDFGetDescriptor( dvd_reader_t *device, int id,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
853 uint8_t *descriptor, int bufsize)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
854 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
855 uint32_t lbnum, MVDS_location, MVDS_length;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
856 struct avdp_t avdp;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
857 uint16_t TagID;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
858 uint32_t lastsector;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
859 int i, terminate;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
860 int desc_found = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
861 /* Find Anchor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
862 lastsector = 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
863 lbnum = 256; /* Try #1, prime anchor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
864 terminate = 0;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
865 if(bufsize < DVD_VIDEO_LB_LEN)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
866 return 0;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
867
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
868 if(!UDFGetAVDP(device, &avdp))
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
869 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
870
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
871 /* Main volume descriptor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
872 MVDS_location = avdp.mvds.location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
873 MVDS_length = avdp.mvds.length;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
874 i = 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
875 do {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
876 /* Find Descriptor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
877 lbnum = MVDS_location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
878 do {
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
879 if( DVDReadLBUDF( device, lbnum++, 1, descriptor, 0 ) <= 0 )
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
880 TagID = 0;
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
881 else
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
882 UDFDescriptor( descriptor, &TagID );
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
883 if( (TagID == id) && ( !desc_found ) )
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
884 /* Descriptor */
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
885 desc_found = 1;
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
886 } while( ( lbnum <= MVDS_location + ( MVDS_length - 1 )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
887 / DVD_VIDEO_LB_LEN ) && ( TagID != 8 )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
888 && ( !desc_found) );
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
889
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
890 if( !desc_found ) {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
891 /* Backup volume descriptor */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
892 MVDS_location = avdp.rvds.location;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
893 MVDS_length = avdp.rvds.length;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
894 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
895 } while( i-- && ( !desc_found ) );
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
896
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
897 return desc_found;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
898 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
899
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
900
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
901 static int UDFGetPVD(dvd_reader_t *device, struct pvd_t *pvd)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
902 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
903 uint8_t pvd_buf_base[DVD_VIDEO_LB_LEN + 2048];
242
f794e1c17947 porting AMD64 patches from xine (provided by Goetz Waschk and Gwenole Beauchesne
mroi
parents: 233
diff changeset
904 uint8_t *pvd_buf = (uint8_t *)(((uintptr_t)pvd_buf_base & ~((uintptr_t)2047)) + 2048);
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
905 if(GetUDFCache(device, PVDCache, 0, pvd))
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
906 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
907
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
908 if(!UDFGetDescriptor( device, 1, pvd_buf, sizeof(pvd_buf)))
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
909 return 0;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
910
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
911 memcpy(pvd->VolumeIdentifier, &pvd_buf[24], 32);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
912 memcpy(pvd->VolumeSetIdentifier, &pvd_buf[72], 128);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
913 SetUDFCache(device, PVDCache, 0, pvd);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
914 return 1;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
915 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
916
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
917 /**
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
918 * Gets the Volume Identifier string, in 8bit unicode (latin-1)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
919 * volid, place to put the string
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
920 * volid_size, size of the buffer volid points to
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
921 * returns the size of buffer needed for all data
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
922 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
923 int UDFGetVolumeIdentifier(dvd_reader_t *device, char *volid,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
924 unsigned int volid_size)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
925 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
926 struct pvd_t pvd;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
927 unsigned int volid_len;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
928
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
929 /* get primary volume descriptor */
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
930 if(!UDFGetPVD(device, &pvd))
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
931 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
932
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
933 volid_len = pvd.VolumeIdentifier[31];
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
934 if(volid_len > 31)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
935 /* this field is only 32 bytes something is wrong */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
936 volid_len = 31;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
937 if(volid_size > volid_len)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
938 volid_size = volid_len;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
939 Unicodedecode(pvd.VolumeIdentifier, volid_size, volid);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
940 return volid_len;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
941 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
942
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
943 /**
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
944 * Gets the Volume Set Identifier, as a 128-byte dstring (not decoded)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
945 * WARNING This is not a null terminated string
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
946 * volsetid, place to put the data
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
947 * volsetid_size, size of the buffer volsetid points to
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
948 * the buffer should be >=128 bytes to store the whole volumesetidentifier
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
949 * returns the size of the available volsetid information (128)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
950 * or 0 on error
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
951 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
952 int UDFGetVolumeSetIdentifier(dvd_reader_t *device, uint8_t *volsetid,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
953 unsigned int volsetid_size)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
954 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
955 struct pvd_t pvd;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
956
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
957 /* get primary volume descriptor */
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
958 if(!UDFGetPVD(device, &pvd))
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
959 return 0;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
960
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
961
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
962 if(volsetid_size > 128)
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
963 volsetid_size = 128;
356
da4ae9160df7 100% cosmetics: removed various spaces/tabs and useless braces. Tiny reindentation
nicodvb
parents: 355
diff changeset
964
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
965 memcpy(volsetid, pvd.VolumeSetIdentifier, volsetid_size);
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
966 return 128;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
967 }