Mercurial > mplayer.hg
annotate libmpdvdkit2/libdvdcss.c @ 16659:f734c20de10a
Add changes from last patch (stream mapping).
author | reimar |
---|---|
date | Tue, 04 Oct 2005 16:47:38 +0000 |
parents | 0af14c5fee82 |
children | 2ab52c9b72b9 |
rev | line source |
---|---|
7027 | 1 /* libdvdcss.c: DVD reading library. |
2 * | |
3 * Authors: Stéphane Borel <stef@via.ecp.fr> | |
4 * Samuel Hocevar <sam@zoy.org> | |
5 * Håkan Hjort <d95hjort@dtek.chalmers.se> | |
6 * | |
7 * Copyright (C) 1998-2002 VideoLAN | |
16631 | 8 * |
9 * Modified for use with MPlayer, changes contained in libdvdcss_changes.diff. | |
10 * detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/ | |
7027 | 11 * $Id$ |
12 * | |
13 * This program is free software; you can redistribute it and/or modify | |
14 * it under the terms of the GNU General Public License as published by | |
15 * the Free Software Foundation; either version 2 of the License, or | |
16 * (at your option) any later version. | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
17 * |
7027 | 18 * This program is distributed in the hope that it will be useful, |
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 * GNU General Public License for more details. | |
22 * | |
23 * You should have received a copy of the GNU General Public License | |
24 * along with this program; if not, write to the Free Software | |
25 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. | |
26 */ | |
27 | |
16630 | 28 /** |
7027 | 29 * \mainpage libdvdcss developer documentation |
30 * | |
31 * \section intro Introduction | |
32 * | |
33 * \e libdvdcss is a simple library designed for accessing DVDs like a block | |
34 * device without having to bother about the decryption. The important features | |
35 * are: | |
36 * \li portability: currently supported platforms are GNU/Linux, FreeBSD, | |
37 * NetBSD, OpenBSD, BSD/OS, BeOS, Windows 95/98, Windows NT/2000, MacOS X, | |
38 * Solaris, HP-UX and OS/2. | |
39 * \li adaptability: unlike most similar projects, libdvdcss doesn't require | |
40 * the region of your drive to be set and will try its best to read from | |
41 * the disc even in the case of a region mismatch. | |
42 * \li simplicity: a DVD player can be built around the \e libdvdcss API using | |
43 * no more than 4 or 5 library calls. | |
44 * | |
45 * \e libdvdcss is free software, released under the General Public License. | |
46 * This ensures that \e libdvdcss remains free and used only with free | |
47 * software. | |
48 * | |
49 * \section api The libdvdcss API | |
50 * | |
51 * The complete \e libdvdcss programming interface is documented in the | |
52 * dvdcss.h file. | |
53 * | |
54 * \section env Environment variables | |
55 * | |
56 * Some environment variables can be used to change the behaviour of | |
57 * \e libdvdcss without having to modify the program which uses it. These | |
58 * variables are: | |
59 * | |
60 * \li \b DVDCSS_VERBOSE: sets the verbosity level. | |
61 * - \c 0 outputs no messages at all. | |
62 * - \c 1 outputs error messages to stderr. | |
63 * - \c 2 outputs error messages and debug messages to stderr. | |
64 * | |
65 * \li \b DVDCSS_METHOD: sets the authentication and decryption method | |
66 * that \e libdvdcss will use to read scrambled discs. Can be one | |
67 * of \c title, \c key or \c disc. | |
68 * - \c key is the default method. \e libdvdcss will use a set of | |
69 * calculated player keys to try and get the disc key. This can fail | |
70 * if the drive does not recognize any of the player keys. | |
71 * - \c disc is a fallback method when \c key has failed. Instead of | |
72 * using player keys, \e libdvdcss will crack the disc key using | |
73 * a brute force algorithm. This process is CPU intensive and requires | |
74 * 64 MB of memory to store temporary data. | |
75 * - \c title is the fallback when all other methods have failed. It does | |
76 * not rely on a key exchange with the DVD drive, but rather uses a | |
77 * crypto attack to guess the title key. On rare cases this may fail | |
78 * because there is not enough encrypted data on the disc to perform | |
79 * a statistical attack, but in the other hand it is the only way to | |
80 * decrypt a DVD stored on a hard disc, or a DVD with the wrong region | |
81 * on an RPC2 drive. | |
82 * | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
83 * \li \b DVDCSS_RAW_DEVICE: specify the raw device to use. Exact usage will |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
84 * depend on your operating system, the Linux utility to set up raw devices |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
85 * is \c raw(8) for instance. Please note that on most operating systems, |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
86 * using a raw device requires highly aligned buffers: Linux requires a |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
87 * 2048 bytes alignment (which is the size of a DVD sector). |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
88 * |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
89 * \li \b DVDCSS_CACHE: specify a directory in which to store title key |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
90 * values. This will speed up descrambling of DVDs which are in the |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
91 * cache. The DVDCSS_CACHE directory is created if it does not exist, |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
92 * and a subdirectory is created named after the DVD's title or |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
93 * manufacturing date. |
7027 | 94 */ |
95 | |
96 /* | |
97 * Preamble | |
98 */ | |
99 #include "config.h" | |
100 | |
101 #include <stdio.h> | |
102 #include <stdlib.h> | |
103 #include <string.h> | |
104 #include <sys/types.h> | |
105 #include <sys/stat.h> | |
106 #include <fcntl.h> | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
107 #include <errno.h> |
16630 | 108 # include <unistd.h> |
109 # include <limits.h> | |
7027 | 110 |
7033 | 111 #include "dvdcss.h" |
7027 | 112 |
113 #include "common.h" | |
114 #include "css.h" | |
115 #include "libdvdcss.h" | |
116 #include "ioctl.h" | |
117 #include "device.h" | |
118 | |
9882 | 119 #ifndef HAVE_MPLAYER |
120 #include "get_path.c" | |
121 #else | |
122 extern char * get_path( char * filename ); | |
123 #endif | |
124 | |
7027 | 125 /** |
126 * \brief Symbol for version checks. | |
127 * | |
128 * The name of this symbol contains the library major number, which makes it | |
129 * easy to check which \e libdvdcss development headers are installed on the | |
130 * system with tools such as autoconf. | |
131 * | |
132 * The variable itself contains the exact version number of the library, | |
133 * which can be useful for specific feature needs. | |
134 */ | |
135 char * dvdcss_interface_2 = VERSION; | |
136 | |
137 /** | |
138 * \brief Open a DVD device or directory and return a dvdcss instance. | |
139 * | |
140 * \param psz_target a string containing the target name, for instance | |
141 * "/dev/hdc" or "E:". | |
142 * \return a handle to a dvdcss instance or NULL on error. | |
143 * | |
144 * Initialize the \e libdvdcss library and open the requested DVD device or | |
145 * directory. \e libdvdcss checks whether ioctls can be performed on the disc, | |
146 * and when possible, the disc key is retrieved. | |
147 * | |
148 * dvdcss_open() returns a handle to be used for all subsequent \e libdvdcss | |
149 * calls. If an error occured, NULL is returned. | |
150 */ | |
151 extern dvdcss_t dvdcss_open ( char *psz_target ) | |
152 { | |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
153 char psz_buffer[PATH_MAX]; |
7027 | 154 int i_ret; |
155 | |
156 char *psz_method = getenv( "DVDCSS_METHOD" ); | |
157 char *psz_verbose = getenv( "DVDCSS_VERBOSE" ); | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
158 char *psz_cache = getenv( "DVDCSS_CACHE" ); |
7027 | 159 #ifndef WIN32 |
160 char *psz_raw_device = getenv( "DVDCSS_RAW_DEVICE" ); | |
161 #endif | |
162 | |
163 dvdcss_t dvdcss; | |
164 | |
165 /* | |
166 * Allocate the library structure | |
167 */ | |
168 dvdcss = malloc( sizeof( struct dvdcss_s ) ); | |
169 if( dvdcss == NULL ) | |
170 { | |
171 return NULL; | |
172 } | |
173 | |
174 /* | |
175 * Initialize structure with default values | |
176 */ | |
177 #ifndef WIN32 | |
178 dvdcss->i_raw_fd = -1; | |
179 #endif | |
180 dvdcss->p_titles = NULL; | |
181 dvdcss->psz_device = (char *)strdup( psz_target ); | |
182 dvdcss->psz_error = "no error"; | |
183 dvdcss->i_method = DVDCSS_METHOD_KEY; | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
184 dvdcss->psz_cachefile[0] = '\0'; |
7027 | 185 dvdcss->b_debug = 0; |
186 dvdcss->b_errors = 0; | |
187 | |
188 /* | |
189 * Find verbosity from DVDCSS_VERBOSE environment variable | |
190 */ | |
191 if( psz_verbose != NULL ) | |
192 { | |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
193 int i = atoi( psz_verbose ); |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
194 |
16630 | 195 if( i >= 2 ) dvdcss->b_debug = i; |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
196 if( i >= 1 ) dvdcss->b_errors = 1; |
7027 | 197 } |
198 | |
199 /* | |
200 * Find method from DVDCSS_METHOD environment variable | |
201 */ | |
202 if( psz_method != NULL ) | |
203 { | |
204 if( !strncmp( psz_method, "key", 4 ) ) | |
205 { | |
206 dvdcss->i_method = DVDCSS_METHOD_KEY; | |
207 } | |
208 else if( !strncmp( psz_method, "disc", 5 ) ) | |
209 { | |
210 dvdcss->i_method = DVDCSS_METHOD_DISC; | |
211 } | |
212 else if( !strncmp( psz_method, "title", 5 ) ) | |
213 { | |
214 dvdcss->i_method = DVDCSS_METHOD_TITLE; | |
215 } | |
216 else | |
217 { | |
16630 | 218 print_error( dvdcss, "unknown decrypt method, please choose " |
219 "from 'title', 'key' or 'disc'" ); | |
7027 | 220 free( dvdcss->psz_device ); |
221 free( dvdcss ); | |
222 return NULL; | |
223 } | |
224 } | |
225 | |
16630 | 226 #if 0 /* MPlayer caches keys in its own configuration directory */ |
227 | |
228 /* | |
229 * If DVDCSS_CACHE was not set, try to guess a default value | |
230 */ | |
231 if( psz_cache == NULL || psz_cache[0] == '\0' ) | |
232 { | |
233 #ifdef HAVE_DIRECT_H | |
234 typedef HRESULT( WINAPI *SHGETFOLDERPATH ) | |
235 ( HWND, int, HANDLE, DWORD, LPTSTR ); | |
236 | |
237 # define CSIDL_FLAG_CREATE 0x8000 | |
238 # define CSIDL_APPDATA 0x1A | |
239 # define SHGFP_TYPE_CURRENT 0 | |
240 | |
241 char psz_home[MAX_PATH]; | |
242 HINSTANCE p_dll; | |
243 SHGETFOLDERPATH p_getpath; | |
244 | |
245 *psz_home = '\0'; | |
246 | |
247 /* Load the shfolder dll to retrieve SHGetFolderPath */ | |
248 p_dll = LoadLibrary( "shfolder.dll" ); | |
249 if( p_dll ) | |
250 { | |
251 p_getpath = (void*)GetProcAddress( p_dll, "SHGetFolderPathA" ); | |
252 if( p_getpath ) | |
253 { | |
254 /* Get the "Application Data" folder for the current user */ | |
255 if( p_getpath( NULL, CSIDL_APPDATA | CSIDL_FLAG_CREATE, | |
256 NULL, SHGFP_TYPE_CURRENT, psz_home ) == S_OK ) | |
257 { | |
258 FreeLibrary( p_dll ); | |
259 } | |
260 else | |
261 { | |
262 *psz_home = '\0'; | |
263 } | |
264 } | |
265 FreeLibrary( p_dll ); | |
266 } | |
267 | |
268 /* Cache our keys in | |
269 * C:\Documents and Settings\$USER\Application Data\dvdcss\ */ | |
270 if( *psz_home ) | |
271 { | |
272 snprintf( psz_buffer, PATH_MAX, "%s/dvdcss", psz_home ); | |
273 psz_buffer[PATH_MAX-1] = '\0'; | |
274 psz_cache = psz_buffer; | |
275 } | |
276 #else | |
277 char *psz_home = NULL; | |
278 # ifdef HAVE_PWD_H | |
279 struct passwd *p_pwd; | |
280 | |
281 /* Try looking in password file for home dir. */ | |
282 p_pwd = getpwuid(getuid()); | |
283 if( p_pwd ) | |
284 { | |
285 psz_home = p_pwd->pw_dir; | |
286 } | |
287 # endif | |
288 | |
289 if( psz_home == NULL ) | |
290 { | |
291 psz_home = getenv( "HOME" ); | |
292 } | |
293 | |
294 /* Cache our keys in ${HOME}/.dvdcss/ */ | |
295 if( psz_home ) | |
296 { | |
297 snprintf( psz_buffer, PATH_MAX, "%s/.dvdcss", psz_home ); | |
298 psz_buffer[PATH_MAX-1] = '\0'; | |
299 psz_cache = psz_buffer; | |
300 } | |
301 #endif | |
302 } | |
303 | |
304 #endif /* 0 */ | |
305 | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
306 /* |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
307 * Find cache dir from the DVDCSS_CACHE environment variable |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
308 */ |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
309 if( psz_cache != NULL ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
310 { |
16630 | 311 if( psz_cache[0] == '\0' || !strcmp( psz_cache, "off" ) ) |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
312 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
313 psz_cache = NULL; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
314 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
315 /* Check that we can add the ID directory and the block filename */ |
16630 | 316 else if( strlen( psz_cache ) + 1 + 32 + 1 + (KEY_SIZE * 2) + 10 + 1 |
317 > PATH_MAX ) | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
318 { |
16630 | 319 print_error( dvdcss, "cache directory name is too long" ); |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
320 psz_cache = NULL; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
321 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
322 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
323 else psz_cache = get_path( "DVDKeys" ); |
7032 | 324 |
7027 | 325 /* |
326 * Open device | |
327 */ | |
328 i_ret = _dvdcss_open( dvdcss ); | |
329 if( i_ret < 0 ) | |
330 { | |
331 free( dvdcss->psz_device ); | |
332 free( dvdcss ); | |
333 return NULL; | |
334 } | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
335 |
7027 | 336 dvdcss->b_scrambled = 1; /* Assume the worst */ |
337 dvdcss->b_ioctls = _dvdcss_use_ioctls( dvdcss ); | |
338 | |
339 if( dvdcss->b_ioctls ) | |
340 { | |
341 i_ret = _dvdcss_test( dvdcss ); | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
342 if( i_ret < 0 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
343 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
344 /* Disable the CSS ioctls and hope that it works? */ |
16630 | 345 print_debug( dvdcss, |
346 "could not check whether the disc was scrambled" ); | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
347 dvdcss->b_ioctls = 0; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
348 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
349 else |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
350 { |
16630 | 351 print_debug( dvdcss, i_ret ? "disc is scrambled" |
352 : "disc is unscrambled" ); | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
353 dvdcss->b_scrambled = i_ret; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
354 } |
7027 | 355 } |
356 | |
357 /* If disc is CSS protected and the ioctls work, authenticate the drive */ | |
358 if( dvdcss->b_scrambled && dvdcss->b_ioctls ) | |
359 { | |
360 i_ret = _dvdcss_disckey( dvdcss ); | |
361 | |
362 if( i_ret < 0 ) | |
363 { | |
364 _dvdcss_close( dvdcss ); | |
365 free( dvdcss->psz_device ); | |
366 free( dvdcss ); | |
367 return NULL; | |
368 } | |
369 } | |
370 | |
16630 | 371 /* If the cache is enabled, write the cache directory tag */ |
372 if( psz_cache ) | |
373 { | |
374 char *psz_tag = "Signature: 8a477f597d28d172789f06886806bc55\r\n" | |
375 "# This file is a cache directory tag created by libdvdcss.\r\n" | |
376 "# For information about cache directory tags, see:\r\n" | |
377 "# http://www.brynosaurus.com/cachedir/\r\n"; | |
378 unsigned char psz_tagfile[PATH_MAX+1+12+1]; | |
379 int i_fd; | |
380 | |
381 sprintf( psz_tagfile, "%s/CACHEDIR.TAG", psz_cache ); | |
382 i_fd = open( psz_tagfile, O_RDWR|O_CREAT, 0644 ); | |
383 if( i_fd >= 0 ) | |
384 { | |
385 write( i_fd, psz_tag, strlen(psz_tag) ); | |
386 close( i_fd ); | |
387 } | |
388 } | |
389 | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
390 /* If the cache is enabled, extract a unique disc ID */ |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
391 if( psz_cache ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
392 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
393 uint8_t p_sector[DVDCSS_BLOCK_SIZE]; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
394 unsigned char psz_debug[PATH_MAX+30]; |
16630 | 395 unsigned char psz_key[1 + KEY_SIZE * 2 + 1]; |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
396 unsigned char * psz_title, * psz_serial; |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
397 int i; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
398 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
399 /* We read sector 0. If it starts with 0x000001ba (BE), we are |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
400 * reading a VOB file, and we should not cache anything. */ |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
401 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
402 i_ret = dvdcss->pf_seek( dvdcss, 0 ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
403 if( i_ret != 0 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
404 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
405 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
406 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
407 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
408 i_ret = dvdcss->pf_read( dvdcss, p_sector, 1 ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
409 if( i_ret != 1 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
410 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
411 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
412 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
413 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
414 if( p_sector[0] == 0x00 && p_sector[1] == 0x00 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
415 && p_sector[2] == 0x01 && p_sector[3] == 0xba ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
416 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
417 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
418 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
419 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
420 /* The data we are looking for is at sector 16 (32768 bytes): |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
421 * - offset 40: disc title (32 uppercase chars) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
422 * - offset 813: manufacturing date + serial no (16 digits) */ |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
423 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
424 i_ret = dvdcss->pf_seek( dvdcss, 16 ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
425 if( i_ret != 16 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
426 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
427 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
428 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
429 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
430 i_ret = dvdcss->pf_read( dvdcss, p_sector, 1 ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
431 if( i_ret != 1 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
432 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
433 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
434 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
435 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
436 /* Get the disc title */ |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
437 psz_title = p_sector + 40; |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
438 psz_title[32] = '\0'; |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
439 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
440 for( i = 0 ; i < 32 ; i++ ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
441 { |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
442 if( psz_title[i] <= ' ' ) |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
443 { |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
444 psz_title[i] = '\0'; |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
445 break; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
446 } |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
447 else if( psz_title[i] == '/' || psz_title[i] == '\\' ) |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
448 { |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
449 psz_title[i] = '-'; |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
450 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
451 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
452 |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
453 /* Get the date + serial */ |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
454 psz_serial = p_sector + 813; |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
455 psz_serial[16] = '\0'; |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
456 |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
457 /* Check that all characters are digits, otherwise convert. */ |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
458 for( i = 0 ; i < 16 ; i++ ) |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
459 { |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
460 if( psz_serial[i] < '0' || psz_serial[i] > '9' ) |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
461 { |
16630 | 462 unsigned char psz_tmp[16 + 1]; |
463 sprintf( psz_tmp, | |
464 "%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", | |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
465 psz_serial[0], psz_serial[1], psz_serial[2], |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
466 psz_serial[3], psz_serial[4], psz_serial[5], |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
467 psz_serial[6], psz_serial[7] ); |
16630 | 468 memcpy( psz_serial, psz_tmp, 16 ); |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
469 break; |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
470 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
471 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
472 |
16630 | 473 /* Get disk key, since some discs have got same title, manufacturing |
474 * date and serial number, but different keys */ | |
475 if( dvdcss->b_scrambled ) | |
476 { | |
477 psz_key[0] = '-'; | |
478 for( i = 0; i < KEY_SIZE; i++ ) | |
479 { | |
480 sprintf( &psz_key[1+i*2], "%.2x", dvdcss->css.p_disc_key[i] ); | |
481 } | |
482 psz_key[1 + KEY_SIZE * 2] = '\0'; | |
483 } | |
484 else | |
485 { | |
486 psz_key[0] = 0; | |
487 } | |
488 | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
489 /* We have a disc name or ID, we can create the cache dir */ |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
490 i = sprintf( dvdcss->psz_cachefile, "%s", psz_cache ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
491 #if !defined( WIN32 ) || defined( SYS_CYGWIN ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
492 i_ret = mkdir( dvdcss->psz_cachefile, 0755 ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
493 #else |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
494 i_ret = mkdir( dvdcss->psz_cachefile ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
495 #endif |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
496 if( i_ret < 0 && errno != EEXIST ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
497 { |
16630 | 498 print_error( dvdcss, "failed creating cache directory" ); |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
499 dvdcss->psz_cachefile[0] = '\0'; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
500 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
501 } |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
502 i += sprintf( dvdcss->psz_cachefile + i, "/"); |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
503 |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
504 // i += sprintf( dvdcss->psz_cachefile + i, "/%s", psz_data ); |
16630 | 505 i += sprintf( dvdcss->psz_cachefile + i, "/%s#%s", psz_title, psz_serial ); |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
506 #if !defined( WIN32 ) || defined( SYS_CYGWIN ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
507 i_ret = mkdir( dvdcss->psz_cachefile, 0755 ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
508 #else |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
509 i_ret = mkdir( dvdcss->psz_cachefile ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
510 #endif |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
511 if( i_ret < 0 && errno != EEXIST ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
512 { |
16630 | 513 print_error( dvdcss, "failed creating cache subdirectory" ); |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
514 dvdcss->psz_cachefile[0] = '\0'; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
515 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
516 } |
9882 | 517 i += sprintf( dvdcss->psz_cachefile + i, "/"); |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
518 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
519 /* Pointer to the filename we will use. */ |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
520 dvdcss->psz_block = dvdcss->psz_cachefile + i; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
521 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
522 sprintf( psz_debug, "using CSS key cache dir: %s", |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
523 dvdcss->psz_cachefile ); |
16630 | 524 print_debug( dvdcss, psz_debug ); |
7032 | 525 } |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
526 nocache: |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
527 |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
528 #ifndef WIN32 |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
529 if( psz_raw_device != NULL ) |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
530 { |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
531 _dvdcss_raw_open( dvdcss, psz_raw_device ); |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
532 } |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
533 #endif |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
534 |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
535 /* Seek at the beginning, just for safety. */ |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
536 dvdcss->pf_seek( dvdcss, 0 ); |
7032 | 537 |
7027 | 538 return dvdcss; |
539 } | |
540 | |
541 /** | |
542 * \brief Return a string containing the latest error that occured in the | |
543 * given \e libdvdcss instance. | |
544 * | |
545 * \param dvdcss a \e libdvdcss instance. | |
546 * \return a null-terminated string containing the latest error message. | |
547 * | |
548 * This function returns a constant string containing the latest error that | |
549 * occured in \e libdvdcss. It can be used to format error messages at your | |
550 * convenience in your application. | |
551 */ | |
552 extern char * dvdcss_error ( dvdcss_t dvdcss ) | |
553 { | |
554 return dvdcss->psz_error; | |
555 } | |
556 | |
557 /** | |
558 * \brief Seek in the disc and change the current key if requested. | |
559 * | |
560 * \param dvdcss a \e libdvdcss instance. | |
561 * \param i_blocks an absolute block offset to seek to. | |
562 * \param i_flags #DVDCSS_NOFLAGS, optionally ored with one of #DVDCSS_SEEK_KEY | |
563 * or #DVDCSS_SEEK_MPEG. | |
564 * \return the new position in blocks, or a negative value in case an error | |
565 * happened. | |
566 * | |
567 * This function seeks to the requested position, in logical blocks. | |
568 * | |
569 * You typically set \p i_flags to #DVDCSS_NOFLAGS when seeking in a .IFO. | |
570 * | |
571 * If #DVDCSS_SEEK_MPEG is specified in \p i_flags and if \e libdvdcss finds it | |
572 * reasonable to do so (ie, if the dvdcss method is not "title"), the current | |
573 * title key will be checked and a new one will be calculated if necessary. | |
574 * This flag is typically used when reading data from a VOB. | |
575 * | |
576 * If #DVDCSS_SEEK_KEY is specified, the title key will be always checked, | |
577 * even with the "title" method. This is equivalent to using the now | |
578 * deprecated dvdcss_title() call. This flag is typically used when seeking | |
579 * in a new title. | |
580 */ | |
581 extern int dvdcss_seek ( dvdcss_t dvdcss, int i_blocks, int i_flags ) | |
582 { | |
583 /* title cracking method is too slow to be used at each seek */ | |
584 if( ( ( i_flags & DVDCSS_SEEK_MPEG ) | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
585 && ( dvdcss->i_method != DVDCSS_METHOD_TITLE ) ) |
7027 | 586 || ( i_flags & DVDCSS_SEEK_KEY ) ) |
587 { | |
588 /* check the title key */ | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
589 if( _dvdcss_title( dvdcss, i_blocks ) ) |
7027 | 590 { |
591 return -1; | |
592 } | |
593 } | |
594 | |
8637
0211de3039eb
update libdvdcss in libmpdvdkit to latest version (1.2.4)
arpi
parents:
8123
diff
changeset
|
595 return dvdcss->pf_seek( dvdcss, i_blocks ); |
7027 | 596 } |
597 | |
598 /** | |
599 * \brief Read from the disc and decrypt data if requested. | |
600 * | |
601 * \param dvdcss a \e libdvdcss instance. | |
602 * \param p_buffer a buffer that will contain the data read from the disc. | |
603 * \param i_blocks the amount of blocks to read. | |
604 * \param i_flags #DVDCSS_NOFLAGS, optionally ored with #DVDCSS_READ_DECRYPT. | |
605 * \return the amount of blocks read, or a negative value in case an | |
606 * error happened. | |
607 * | |
608 * This function reads \p i_blocks logical blocks from the DVD. | |
609 * | |
610 * You typically set \p i_flags to #DVDCSS_NOFLAGS when reading data from a | |
611 * .IFO file on the DVD. | |
612 * | |
613 * If #DVDCSS_READ_DECRYPT is specified in \p i_flags, dvdcss_read() will | |
614 * automatically decrypt scrambled sectors. This flag is typically used when | |
615 * reading data from a .VOB file on the DVD. It has no effect on unscrambled | |
616 * discs or unscrambled sectors, and can be safely used on those. | |
617 * | |
618 * \warning dvdcss_read() expects to be able to write \p i_blocks * | |
619 * #DVDCSS_BLOCK_SIZE bytes in \p p_buffer. | |
620 */ | |
621 extern int dvdcss_read ( dvdcss_t dvdcss, void *p_buffer, | |
622 int i_blocks, | |
623 int i_flags ) | |
624 { | |
625 int i_ret, i_index; | |
626 | |
8637
0211de3039eb
update libdvdcss in libmpdvdkit to latest version (1.2.4)
arpi
parents:
8123
diff
changeset
|
627 i_ret = dvdcss->pf_read( dvdcss, p_buffer, i_blocks ); |
7027 | 628 |
629 if( i_ret <= 0 | |
630 || !dvdcss->b_scrambled | |
631 || !(i_flags & DVDCSS_READ_DECRYPT) ) | |
632 { | |
633 return i_ret; | |
634 } | |
635 | |
636 if( ! memcmp( dvdcss->css.p_title_key, "\0\0\0\0\0", 5 ) ) | |
637 { | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
638 /* For what we believe is an unencrypted title, |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
639 * check that there are no encrypted blocks */ |
7027 | 640 for( i_index = i_ret; i_index; i_index-- ) |
641 { | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
642 if( ((uint8_t*)p_buffer)[0x14] & 0x30 ) |
7027 | 643 { |
16630 | 644 print_error( dvdcss, "no key but found encrypted block" ); |
7027 | 645 /* Only return the initial range of unscrambled blocks? */ |
646 /* or fail completely? return 0; */ | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
647 break; |
7027 | 648 } |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
649 p_buffer = (void *) ((uint8_t *)p_buffer + DVDCSS_BLOCK_SIZE); |
7027 | 650 } |
651 } | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
652 else |
7027 | 653 { |
654 /* Decrypt the blocks we managed to read */ | |
655 for( i_index = i_ret; i_index; i_index-- ) | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
656 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
657 _dvdcss_unscramble( dvdcss->css.p_title_key, p_buffer ); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
658 ((uint8_t*)p_buffer)[0x14] &= 0x8f; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
659 p_buffer = (void *) ((uint8_t *)p_buffer + DVDCSS_BLOCK_SIZE); |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
660 } |
7027 | 661 } |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
662 |
7027 | 663 return i_ret; |
664 } | |
665 | |
666 /** | |
667 * \brief Read from the disc into multiple buffers and decrypt data if | |
668 * requested. | |
669 * | |
670 * \param dvdcss a \e libdvdcss instance. | |
671 * \param p_iovec a pointer to an array of iovec structures that will contain | |
672 * the data read from the disc. | |
673 * \param i_blocks the amount of blocks to read. | |
674 * \param i_flags #DVDCSS_NOFLAGS, optionally ored with #DVDCSS_READ_DECRYPT. | |
675 * \return the amount of blocks read, or a negative value in case an | |
676 * error happened. | |
677 * | |
678 * This function reads \p i_blocks logical blocks from the DVD and writes them | |
679 * to an array of iovec structures. | |
680 * | |
681 * You typically set \p i_flags to #DVDCSS_NOFLAGS when reading data from a | |
682 * .IFO file on the DVD. | |
683 * | |
684 * If #DVDCSS_READ_DECRYPT is specified in \p i_flags, dvdcss_readv() will | |
685 * automatically decrypt scrambled sectors. This flag is typically used when | |
686 * reading data from a .VOB file on the DVD. It has no effect on unscrambled | |
687 * discs or unscrambled sectors, and can be safely used on those. | |
688 * | |
689 * \warning dvdcss_readv() expects to be able to write \p i_blocks * | |
690 * #DVDCSS_BLOCK_SIZE bytes in the buffers pointed by \p p_iovec. | |
691 * Moreover, all iov_len members of the iovec structures should be | |
692 * multiples of #DVDCSS_BLOCK_SIZE. | |
693 */ | |
694 extern int dvdcss_readv ( dvdcss_t dvdcss, void *p_iovec, | |
695 int i_blocks, | |
696 int i_flags ) | |
697 { | |
698 struct iovec *_p_iovec = (struct iovec *)p_iovec; | |
699 int i_ret, i_index; | |
700 void *iov_base; | |
701 size_t iov_len; | |
702 | |
8637
0211de3039eb
update libdvdcss in libmpdvdkit to latest version (1.2.4)
arpi
parents:
8123
diff
changeset
|
703 i_ret = dvdcss->pf_readv( dvdcss, _p_iovec, i_blocks ); |
7027 | 704 |
705 if( i_ret <= 0 | |
706 || !dvdcss->b_scrambled | |
707 || !(i_flags & DVDCSS_READ_DECRYPT) ) | |
708 { | |
709 return i_ret; | |
710 } | |
711 | |
712 /* Initialize loop for decryption */ | |
713 iov_base = _p_iovec->iov_base; | |
714 iov_len = _p_iovec->iov_len; | |
715 | |
716 /* Decrypt the blocks we managed to read */ | |
717 for( i_index = i_ret; i_index; i_index-- ) | |
718 { | |
719 /* Check that iov_len is a multiple of 2048 */ | |
720 if( iov_len & 0x7ff ) | |
721 { | |
722 return -1; | |
723 } | |
724 | |
725 while( iov_len == 0 ) | |
726 { | |
727 _p_iovec++; | |
728 iov_base = _p_iovec->iov_base; | |
729 iov_len = _p_iovec->iov_len; | |
730 } | |
731 | |
732 _dvdcss_unscramble( dvdcss->css.p_title_key, iov_base ); | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
733 ((uint8_t*)iov_base)[0x14] &= 0x8f; |
7027 | 734 |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
735 iov_base = (void *) ((uint8_t*)iov_base + DVDCSS_BLOCK_SIZE); |
7027 | 736 iov_len -= DVDCSS_BLOCK_SIZE; |
737 } | |
738 | |
739 return i_ret; | |
740 } | |
741 | |
742 /** | |
743 * \brief Close the DVD and clean up the library. | |
744 * | |
745 * \param dvdcss a \e libdvdcss instance. | |
746 * \return zero in case of success, a negative value otherwise. | |
747 * | |
748 * This function closes the DVD device and frees all the memory allocated | |
749 * by \e libdvdcss. On return, the #dvdcss_t is invalidated and may not be | |
750 * used again. | |
751 */ | |
752 extern int dvdcss_close ( dvdcss_t dvdcss ) | |
753 { | |
754 dvd_title_t *p_title; | |
755 int i_ret; | |
756 | |
757 /* Free our list of keys */ | |
758 p_title = dvdcss->p_titles; | |
759 while( p_title ) | |
760 { | |
761 dvd_title_t *p_tmptitle = p_title->p_next; | |
762 free( p_title ); | |
763 p_title = p_tmptitle; | |
764 } | |
765 | |
766 i_ret = _dvdcss_close( dvdcss ); | |
767 | |
768 if( i_ret < 0 ) | |
769 { | |
770 return i_ret; | |
771 } | |
772 | |
773 free( dvdcss->psz_device ); | |
774 free( dvdcss ); | |
775 | |
776 return 0; | |
777 } | |
778 | |
779 /* | |
780 * Deprecated. See dvdcss_seek(). | |
781 */ | |
782 #undef dvdcss_title | |
783 extern int dvdcss_title ( dvdcss_t dvdcss, int i_block ) | |
784 { | |
785 return _dvdcss_title( dvdcss, i_block ); | |
786 } | |
787 |