Mercurial > mplayer.hg
annotate libmpdvdkit2/libdvdcss.c @ 18831:bd70d74a994b
updated DOCS with new generic (non LIVE555 dependant) usage of -rtsp-port option
author | ben |
---|---|
date | Mon, 26 Jun 2006 21:32:59 +0000 |
parents | 0783dd397f74 |
children | e5d97c5f3c32 |
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. | |
18783 | 10 * detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/ |
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 |
16848
279cd50f2ba0
Switch from our own to the upstream DVD key caching strategy and directory.
diego
parents:
16714
diff
changeset
|
93 * manufacturing date. If DVDCSS_CACHE is not set or is empty, \e libdvdcss |
279cd50f2ba0
Switch from our own to the upstream DVD key caching strategy and directory.
diego
parents:
16714
diff
changeset
|
94 * will use the default value which is "${HOME}/.dvdcss/" under Unix and |
279cd50f2ba0
Switch from our own to the upstream DVD key caching strategy and directory.
diego
parents:
16714
diff
changeset
|
95 * "C:\Documents and Settings\$USER\Application Data\dvdcss\" under Win32. |
279cd50f2ba0
Switch from our own to the upstream DVD key caching strategy and directory.
diego
parents:
16714
diff
changeset
|
96 * The special value "off" disables caching. |
7027 | 97 */ |
98 | |
99 /* | |
100 * Preamble | |
101 */ | |
102 #include "config.h" | |
103 | |
104 #include <stdio.h> | |
105 #include <stdlib.h> | |
106 #include <string.h> | |
107 #include <sys/types.h> | |
108 #include <sys/stat.h> | |
16714
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
109 #ifdef HAVE_SYS_PARAM_H |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
110 # include <sys/param.h> |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
111 #endif |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
112 #ifdef HAVE_PWD_H |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
113 # include <pwd.h> |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
114 #endif |
7027 | 115 #include <fcntl.h> |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
116 #include <errno.h> |
16714
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
117 |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
118 #ifdef HAVE_UNISTD_H |
16630 | 119 # include <unistd.h> |
16714
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
120 #endif |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
121 |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
122 #ifdef HAVE_LIMITS_H |
16630 | 123 # include <limits.h> |
16714
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
124 #endif |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
125 |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
126 #ifdef HAVE_DIRECT_H |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
127 # include <direct.h> |
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16631
diff
changeset
|
128 #endif |
7027 | 129 |
7033 | 130 #include "dvdcss.h" |
7027 | 131 |
132 #include "common.h" | |
133 #include "css.h" | |
134 #include "libdvdcss.h" | |
135 #include "ioctl.h" | |
136 #include "device.h" | |
137 | |
138 /** | |
139 * \brief Symbol for version checks. | |
140 * | |
141 * The name of this symbol contains the library major number, which makes it | |
142 * easy to check which \e libdvdcss development headers are installed on the | |
143 * system with tools such as autoconf. | |
144 * | |
145 * The variable itself contains the exact version number of the library, | |
146 * which can be useful for specific feature needs. | |
147 */ | |
148 char * dvdcss_interface_2 = VERSION; | |
149 | |
150 /** | |
151 * \brief Open a DVD device or directory and return a dvdcss instance. | |
152 * | |
153 * \param psz_target a string containing the target name, for instance | |
154 * "/dev/hdc" or "E:". | |
155 * \return a handle to a dvdcss instance or NULL on error. | |
156 * | |
157 * Initialize the \e libdvdcss library and open the requested DVD device or | |
158 * directory. \e libdvdcss checks whether ioctls can be performed on the disc, | |
159 * and when possible, the disc key is retrieved. | |
160 * | |
161 * dvdcss_open() returns a handle to be used for all subsequent \e libdvdcss | |
162 * calls. If an error occured, NULL is returned. | |
163 */ | |
164 extern dvdcss_t dvdcss_open ( char *psz_target ) | |
165 { | |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
166 char psz_buffer[PATH_MAX]; |
7027 | 167 int i_ret; |
168 | |
169 char *psz_method = getenv( "DVDCSS_METHOD" ); | |
170 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
|
171 char *psz_cache = getenv( "DVDCSS_CACHE" ); |
7027 | 172 #ifndef WIN32 |
173 char *psz_raw_device = getenv( "DVDCSS_RAW_DEVICE" ); | |
174 #endif | |
175 | |
176 dvdcss_t dvdcss; | |
177 | |
178 /* | |
179 * Allocate the library structure | |
180 */ | |
181 dvdcss = malloc( sizeof( struct dvdcss_s ) ); | |
182 if( dvdcss == NULL ) | |
183 { | |
184 return NULL; | |
185 } | |
186 | |
187 /* | |
188 * Initialize structure with default values | |
189 */ | |
190 #ifndef WIN32 | |
191 dvdcss->i_raw_fd = -1; | |
192 #endif | |
193 dvdcss->p_titles = NULL; | |
194 dvdcss->psz_device = (char *)strdup( psz_target ); | |
195 dvdcss->psz_error = "no error"; | |
196 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
|
197 dvdcss->psz_cachefile[0] = '\0'; |
7027 | 198 dvdcss->b_debug = 0; |
199 dvdcss->b_errors = 0; | |
200 | |
201 /* | |
202 * Find verbosity from DVDCSS_VERBOSE environment variable | |
203 */ | |
204 if( psz_verbose != NULL ) | |
205 { | |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
206 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
|
207 |
16630 | 208 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
|
209 if( i >= 1 ) dvdcss->b_errors = 1; |
7027 | 210 } |
211 | |
212 /* | |
213 * Find method from DVDCSS_METHOD environment variable | |
214 */ | |
215 if( psz_method != NULL ) | |
216 { | |
217 if( !strncmp( psz_method, "key", 4 ) ) | |
218 { | |
219 dvdcss->i_method = DVDCSS_METHOD_KEY; | |
220 } | |
221 else if( !strncmp( psz_method, "disc", 5 ) ) | |
222 { | |
223 dvdcss->i_method = DVDCSS_METHOD_DISC; | |
224 } | |
225 else if( !strncmp( psz_method, "title", 5 ) ) | |
226 { | |
227 dvdcss->i_method = DVDCSS_METHOD_TITLE; | |
228 } | |
229 else | |
230 { | |
16630 | 231 print_error( dvdcss, "unknown decrypt method, please choose " |
232 "from 'title', 'key' or 'disc'" ); | |
7027 | 233 free( dvdcss->psz_device ); |
234 free( dvdcss ); | |
235 return NULL; | |
236 } | |
237 } | |
238 | |
16630 | 239 /* |
240 * If DVDCSS_CACHE was not set, try to guess a default value | |
241 */ | |
242 if( psz_cache == NULL || psz_cache[0] == '\0' ) | |
243 { | |
244 #ifdef HAVE_DIRECT_H | |
245 typedef HRESULT( WINAPI *SHGETFOLDERPATH ) | |
246 ( HWND, int, HANDLE, DWORD, LPTSTR ); | |
247 | |
248 # define CSIDL_FLAG_CREATE 0x8000 | |
249 # define CSIDL_APPDATA 0x1A | |
250 # define SHGFP_TYPE_CURRENT 0 | |
251 | |
252 char psz_home[MAX_PATH]; | |
253 HINSTANCE p_dll; | |
254 SHGETFOLDERPATH p_getpath; | |
255 | |
256 *psz_home = '\0'; | |
257 | |
258 /* Load the shfolder dll to retrieve SHGetFolderPath */ | |
259 p_dll = LoadLibrary( "shfolder.dll" ); | |
260 if( p_dll ) | |
261 { | |
262 p_getpath = (void*)GetProcAddress( p_dll, "SHGetFolderPathA" ); | |
263 if( p_getpath ) | |
264 { | |
265 /* Get the "Application Data" folder for the current user */ | |
266 if( p_getpath( NULL, CSIDL_APPDATA | CSIDL_FLAG_CREATE, | |
267 NULL, SHGFP_TYPE_CURRENT, psz_home ) == S_OK ) | |
268 { | |
269 FreeLibrary( p_dll ); | |
270 } | |
271 else | |
272 { | |
273 *psz_home = '\0'; | |
274 } | |
275 } | |
276 FreeLibrary( p_dll ); | |
277 } | |
278 | |
279 /* Cache our keys in | |
280 * C:\Documents and Settings\$USER\Application Data\dvdcss\ */ | |
281 if( *psz_home ) | |
282 { | |
283 snprintf( psz_buffer, PATH_MAX, "%s/dvdcss", psz_home ); | |
284 psz_buffer[PATH_MAX-1] = '\0'; | |
285 psz_cache = psz_buffer; | |
286 } | |
287 #else | |
288 char *psz_home = NULL; | |
289 # ifdef HAVE_PWD_H | |
290 struct passwd *p_pwd; | |
291 | |
292 /* Try looking in password file for home dir. */ | |
293 p_pwd = getpwuid(getuid()); | |
294 if( p_pwd ) | |
295 { | |
296 psz_home = p_pwd->pw_dir; | |
297 } | |
298 # endif | |
299 | |
300 if( psz_home == NULL ) | |
301 { | |
302 psz_home = getenv( "HOME" ); | |
303 } | |
18109
68145aae7349
fallback to USERPROFILE environment variable for caching CSS keys when
reimar
parents:
16848
diff
changeset
|
304 if( psz_home == NULL ) |
68145aae7349
fallback to USERPROFILE environment variable for caching CSS keys when
reimar
parents:
16848
diff
changeset
|
305 { |
68145aae7349
fallback to USERPROFILE environment variable for caching CSS keys when
reimar
parents:
16848
diff
changeset
|
306 psz_home = getenv( "USERPROFILE" ); |
68145aae7349
fallback to USERPROFILE environment variable for caching CSS keys when
reimar
parents:
16848
diff
changeset
|
307 } |
16630 | 308 |
309 /* Cache our keys in ${HOME}/.dvdcss/ */ | |
310 if( psz_home ) | |
311 { | |
312 snprintf( psz_buffer, PATH_MAX, "%s/.dvdcss", psz_home ); | |
313 psz_buffer[PATH_MAX-1] = '\0'; | |
314 psz_cache = psz_buffer; | |
315 } | |
316 #endif | |
317 } | |
318 | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
319 /* |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
320 * 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
|
321 */ |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
322 if( psz_cache != NULL ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
323 { |
16630 | 324 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
|
325 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
326 psz_cache = NULL; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
327 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
328 /* Check that we can add the ID directory and the block filename */ |
16630 | 329 else if( strlen( psz_cache ) + 1 + 32 + 1 + (KEY_SIZE * 2) + 10 + 1 |
330 > PATH_MAX ) | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
331 { |
16630 | 332 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
|
333 psz_cache = NULL; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
334 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
335 } |
7032 | 336 |
7027 | 337 /* |
338 * Open device | |
339 */ | |
340 i_ret = _dvdcss_open( dvdcss ); | |
341 if( i_ret < 0 ) | |
342 { | |
343 free( dvdcss->psz_device ); | |
344 free( dvdcss ); | |
345 return NULL; | |
346 } | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
347 |
7027 | 348 dvdcss->b_scrambled = 1; /* Assume the worst */ |
349 dvdcss->b_ioctls = _dvdcss_use_ioctls( dvdcss ); | |
350 | |
351 if( dvdcss->b_ioctls ) | |
352 { | |
353 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
|
354 if( i_ret < 0 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
355 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
356 /* Disable the CSS ioctls and hope that it works? */ |
16630 | 357 print_debug( dvdcss, |
358 "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
|
359 dvdcss->b_ioctls = 0; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
360 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
361 else |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
362 { |
16630 | 363 print_debug( dvdcss, i_ret ? "disc is scrambled" |
364 : "disc is unscrambled" ); | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
365 dvdcss->b_scrambled = i_ret; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
366 } |
7027 | 367 } |
368 | |
369 /* If disc is CSS protected and the ioctls work, authenticate the drive */ | |
370 if( dvdcss->b_scrambled && dvdcss->b_ioctls ) | |
371 { | |
372 i_ret = _dvdcss_disckey( dvdcss ); | |
373 | |
374 if( i_ret < 0 ) | |
375 { | |
376 _dvdcss_close( dvdcss ); | |
377 free( dvdcss->psz_device ); | |
378 free( dvdcss ); | |
379 return NULL; | |
380 } | |
381 } | |
382 | |
16630 | 383 /* If the cache is enabled, write the cache directory tag */ |
384 if( psz_cache ) | |
385 { | |
386 char *psz_tag = "Signature: 8a477f597d28d172789f06886806bc55\r\n" | |
387 "# This file is a cache directory tag created by libdvdcss.\r\n" | |
388 "# For information about cache directory tags, see:\r\n" | |
389 "# http://www.brynosaurus.com/cachedir/\r\n"; | |
390 unsigned char psz_tagfile[PATH_MAX+1+12+1]; | |
391 int i_fd; | |
392 | |
393 sprintf( psz_tagfile, "%s/CACHEDIR.TAG", psz_cache ); | |
394 i_fd = open( psz_tagfile, O_RDWR|O_CREAT, 0644 ); | |
395 if( i_fd >= 0 ) | |
396 { | |
397 write( i_fd, psz_tag, strlen(psz_tag) ); | |
398 close( i_fd ); | |
399 } | |
400 } | |
401 | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
402 /* 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
|
403 if( psz_cache ) |
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 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
|
406 unsigned char psz_debug[PATH_MAX+30]; |
16630 | 407 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
|
408 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
|
409 int i; |
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 /* 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
|
412 * 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
|
413 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
414 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
|
415 if( i_ret != 0 ) |
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 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
|
421 if( i_ret != 1 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
422 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
423 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
424 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
425 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
426 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
|
427 && 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
|
428 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
429 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
430 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
431 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
432 /* 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
|
433 * - 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
|
434 * - 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
|
435 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
436 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
|
437 if( i_ret != 16 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
438 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
439 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
440 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
441 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
442 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
|
443 if( i_ret != 1 ) |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
444 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
445 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
446 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
447 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
448 /* 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
|
449 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
|
450 psz_title[32] = '\0'; |
9333
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 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
|
453 { |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
454 if( psz_title[i] <= ' ' ) |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
455 { |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
456 psz_title[i] = '\0'; |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
457 break; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
458 } |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
459 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
|
460 { |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
461 psz_title[i] = '-'; |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
462 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
463 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
464 |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
465 /* Get the date + serial */ |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
466 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
|
467 psz_serial[16] = '\0'; |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
468 |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
469 /* 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
|
470 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
|
471 { |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
472 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
|
473 { |
16630 | 474 unsigned char psz_tmp[16 + 1]; |
475 sprintf( psz_tmp, | |
476 "%.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
|
477 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
|
478 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
|
479 psz_serial[6], psz_serial[7] ); |
16630 | 480 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
|
481 break; |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
482 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
483 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
484 |
16630 | 485 /* Get disk key, since some discs have got same title, manufacturing |
486 * date and serial number, but different keys */ | |
487 if( dvdcss->b_scrambled ) | |
488 { | |
489 psz_key[0] = '-'; | |
490 for( i = 0; i < KEY_SIZE; i++ ) | |
491 { | |
492 sprintf( &psz_key[1+i*2], "%.2x", dvdcss->css.p_disc_key[i] ); | |
493 } | |
494 psz_key[1 + KEY_SIZE * 2] = '\0'; | |
495 } | |
496 else | |
497 { | |
498 psz_key[0] = 0; | |
499 } | |
500 | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
501 /* 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
|
502 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
|
503 #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
|
504 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
|
505 #else |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
506 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
|
507 #endif |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
508 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
|
509 { |
16630 | 510 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
|
511 dvdcss->psz_cachefile[0] = '\0'; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
512 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
513 } |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
514 |
16848
279cd50f2ba0
Switch from our own to the upstream DVD key caching strategy and directory.
diego
parents:
16714
diff
changeset
|
515 i += sprintf( dvdcss->psz_cachefile + i, "/%s-%s%s", psz_title, |
279cd50f2ba0
Switch from our own to the upstream DVD key caching strategy and directory.
diego
parents:
16714
diff
changeset
|
516 psz_serial, psz_key ); |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
517 #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
|
518 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
|
519 #else |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
520 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
|
521 #endif |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
522 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
|
523 { |
16630 | 524 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
|
525 dvdcss->psz_cachefile[0] = '\0'; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
526 goto nocache; |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
527 } |
9882 | 528 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
|
529 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
530 /* 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
|
531 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
|
532 |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
533 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
|
534 dvdcss->psz_cachefile ); |
16630 | 535 print_debug( dvdcss, psz_debug ); |
7032 | 536 } |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
537 nocache: |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
538 |
10720
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
539 #ifndef WIN32 |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
540 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
|
541 { |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
542 _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
|
543 } |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
544 #endif |
f23c35ce0d16
synced to libdvdcss 1.2.8 (except the DVDCSS_PATH guessing, we use our
arpi
parents:
9882
diff
changeset
|
545 |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
546 /* 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
|
547 dvdcss->pf_seek( dvdcss, 0 ); |
7032 | 548 |
7027 | 549 return dvdcss; |
550 } | |
551 | |
552 /** | |
553 * \brief Return a string containing the latest error that occured in the | |
554 * given \e libdvdcss instance. | |
555 * | |
556 * \param dvdcss a \e libdvdcss instance. | |
557 * \return a null-terminated string containing the latest error message. | |
558 * | |
559 * This function returns a constant string containing the latest error that | |
560 * occured in \e libdvdcss. It can be used to format error messages at your | |
561 * convenience in your application. | |
562 */ | |
563 extern char * dvdcss_error ( dvdcss_t dvdcss ) | |
564 { | |
565 return dvdcss->psz_error; | |
566 } | |
567 | |
568 /** | |
569 * \brief Seek in the disc and change the current key if requested. | |
570 * | |
571 * \param dvdcss a \e libdvdcss instance. | |
572 * \param i_blocks an absolute block offset to seek to. | |
573 * \param i_flags #DVDCSS_NOFLAGS, optionally ored with one of #DVDCSS_SEEK_KEY | |
574 * or #DVDCSS_SEEK_MPEG. | |
575 * \return the new position in blocks, or a negative value in case an error | |
576 * happened. | |
577 * | |
578 * This function seeks to the requested position, in logical blocks. | |
579 * | |
580 * You typically set \p i_flags to #DVDCSS_NOFLAGS when seeking in a .IFO. | |
581 * | |
582 * If #DVDCSS_SEEK_MPEG is specified in \p i_flags and if \e libdvdcss finds it | |
583 * reasonable to do so (ie, if the dvdcss method is not "title"), the current | |
584 * title key will be checked and a new one will be calculated if necessary. | |
585 * This flag is typically used when reading data from a VOB. | |
586 * | |
587 * If #DVDCSS_SEEK_KEY is specified, the title key will be always checked, | |
588 * even with the "title" method. This is equivalent to using the now | |
589 * deprecated dvdcss_title() call. This flag is typically used when seeking | |
590 * in a new title. | |
591 */ | |
592 extern int dvdcss_seek ( dvdcss_t dvdcss, int i_blocks, int i_flags ) | |
593 { | |
594 /* title cracking method is too slow to be used at each seek */ | |
595 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
|
596 && ( dvdcss->i_method != DVDCSS_METHOD_TITLE ) ) |
7027 | 597 || ( i_flags & DVDCSS_SEEK_KEY ) ) |
598 { | |
599 /* check the title key */ | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
600 if( _dvdcss_title( dvdcss, i_blocks ) ) |
7027 | 601 { |
602 return -1; | |
603 } | |
604 } | |
605 | |
8637
0211de3039eb
update libdvdcss in libmpdvdkit to latest version (1.2.4)
arpi
parents:
8123
diff
changeset
|
606 return dvdcss->pf_seek( dvdcss, i_blocks ); |
7027 | 607 } |
608 | |
609 /** | |
610 * \brief Read from the disc and decrypt data if requested. | |
611 * | |
612 * \param dvdcss a \e libdvdcss instance. | |
613 * \param p_buffer a buffer that will contain the data read from the disc. | |
614 * \param i_blocks the amount of blocks to read. | |
615 * \param i_flags #DVDCSS_NOFLAGS, optionally ored with #DVDCSS_READ_DECRYPT. | |
616 * \return the amount of blocks read, or a negative value in case an | |
617 * error happened. | |
618 * | |
619 * This function reads \p i_blocks logical blocks from the DVD. | |
620 * | |
621 * You typically set \p i_flags to #DVDCSS_NOFLAGS when reading data from a | |
622 * .IFO file on the DVD. | |
623 * | |
624 * If #DVDCSS_READ_DECRYPT is specified in \p i_flags, dvdcss_read() will | |
625 * automatically decrypt scrambled sectors. This flag is typically used when | |
626 * reading data from a .VOB file on the DVD. It has no effect on unscrambled | |
627 * discs or unscrambled sectors, and can be safely used on those. | |
628 * | |
629 * \warning dvdcss_read() expects to be able to write \p i_blocks * | |
630 * #DVDCSS_BLOCK_SIZE bytes in \p p_buffer. | |
631 */ | |
632 extern int dvdcss_read ( dvdcss_t dvdcss, void *p_buffer, | |
633 int i_blocks, | |
634 int i_flags ) | |
635 { | |
636 int i_ret, i_index; | |
637 | |
8637
0211de3039eb
update libdvdcss in libmpdvdkit to latest version (1.2.4)
arpi
parents:
8123
diff
changeset
|
638 i_ret = dvdcss->pf_read( dvdcss, p_buffer, i_blocks ); |
7027 | 639 |
640 if( i_ret <= 0 | |
641 || !dvdcss->b_scrambled | |
642 || !(i_flags & DVDCSS_READ_DECRYPT) ) | |
643 { | |
644 return i_ret; | |
645 } | |
646 | |
647 if( ! memcmp( dvdcss->css.p_title_key, "\0\0\0\0\0", 5 ) ) | |
648 { | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
649 /* 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
|
650 * check that there are no encrypted blocks */ |
7027 | 651 for( i_index = i_ret; i_index; i_index-- ) |
652 { | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
653 if( ((uint8_t*)p_buffer)[0x14] & 0x30 ) |
7027 | 654 { |
16630 | 655 print_error( dvdcss, "no key but found encrypted block" ); |
7027 | 656 /* Only return the initial range of unscrambled blocks? */ |
657 /* 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
|
658 break; |
7027 | 659 } |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
660 p_buffer = (void *) ((uint8_t *)p_buffer + DVDCSS_BLOCK_SIZE); |
7027 | 661 } |
662 } | |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
663 else |
7027 | 664 { |
665 /* Decrypt the blocks we managed to read */ | |
666 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
|
667 { |
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
668 _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
|
669 ((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
|
670 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
|
671 } |
7027 | 672 } |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
673 |
7027 | 674 return i_ret; |
675 } | |
676 | |
677 /** | |
678 * \brief Read from the disc into multiple buffers and decrypt data if | |
679 * requested. | |
680 * | |
681 * \param dvdcss a \e libdvdcss instance. | |
682 * \param p_iovec a pointer to an array of iovec structures that will contain | |
683 * the data read from the disc. | |
684 * \param i_blocks the amount of blocks to read. | |
685 * \param i_flags #DVDCSS_NOFLAGS, optionally ored with #DVDCSS_READ_DECRYPT. | |
686 * \return the amount of blocks read, or a negative value in case an | |
687 * error happened. | |
688 * | |
689 * This function reads \p i_blocks logical blocks from the DVD and writes them | |
690 * to an array of iovec structures. | |
691 * | |
692 * You typically set \p i_flags to #DVDCSS_NOFLAGS when reading data from a | |
693 * .IFO file on the DVD. | |
694 * | |
695 * If #DVDCSS_READ_DECRYPT is specified in \p i_flags, dvdcss_readv() will | |
696 * automatically decrypt scrambled sectors. This flag is typically used when | |
697 * reading data from a .VOB file on the DVD. It has no effect on unscrambled | |
698 * discs or unscrambled sectors, and can be safely used on those. | |
699 * | |
700 * \warning dvdcss_readv() expects to be able to write \p i_blocks * | |
701 * #DVDCSS_BLOCK_SIZE bytes in the buffers pointed by \p p_iovec. | |
702 * Moreover, all iov_len members of the iovec structures should be | |
703 * multiples of #DVDCSS_BLOCK_SIZE. | |
704 */ | |
705 extern int dvdcss_readv ( dvdcss_t dvdcss, void *p_iovec, | |
706 int i_blocks, | |
707 int i_flags ) | |
708 { | |
709 struct iovec *_p_iovec = (struct iovec *)p_iovec; | |
710 int i_ret, i_index; | |
711 void *iov_base; | |
712 size_t iov_len; | |
713 | |
8637
0211de3039eb
update libdvdcss in libmpdvdkit to latest version (1.2.4)
arpi
parents:
8123
diff
changeset
|
714 i_ret = dvdcss->pf_readv( dvdcss, _p_iovec, i_blocks ); |
7027 | 715 |
716 if( i_ret <= 0 | |
717 || !dvdcss->b_scrambled | |
718 || !(i_flags & DVDCSS_READ_DECRYPT) ) | |
719 { | |
720 return i_ret; | |
721 } | |
722 | |
723 /* Initialize loop for decryption */ | |
724 iov_base = _p_iovec->iov_base; | |
725 iov_len = _p_iovec->iov_len; | |
726 | |
727 /* Decrypt the blocks we managed to read */ | |
728 for( i_index = i_ret; i_index; i_index-- ) | |
729 { | |
730 /* Check that iov_len is a multiple of 2048 */ | |
731 if( iov_len & 0x7ff ) | |
732 { | |
733 return -1; | |
734 } | |
735 | |
736 while( iov_len == 0 ) | |
737 { | |
738 _p_iovec++; | |
739 iov_base = _p_iovec->iov_base; | |
740 iov_len = _p_iovec->iov_len; | |
741 } | |
742 | |
743 _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
|
744 ((uint8_t*)iov_base)[0x14] &= 0x8f; |
7027 | 745 |
9333
f0f0f176d298
sync with libdvdcss 1.2.5 (including u8->uint8_t and whitespace cosmetics...)
arpi
parents:
8841
diff
changeset
|
746 iov_base = (void *) ((uint8_t*)iov_base + DVDCSS_BLOCK_SIZE); |
7027 | 747 iov_len -= DVDCSS_BLOCK_SIZE; |
748 } | |
749 | |
750 return i_ret; | |
751 } | |
752 | |
753 /** | |
754 * \brief Close the DVD and clean up the library. | |
755 * | |
756 * \param dvdcss a \e libdvdcss instance. | |
757 * \return zero in case of success, a negative value otherwise. | |
758 * | |
759 * This function closes the DVD device and frees all the memory allocated | |
760 * by \e libdvdcss. On return, the #dvdcss_t is invalidated and may not be | |
761 * used again. | |
762 */ | |
763 extern int dvdcss_close ( dvdcss_t dvdcss ) | |
764 { | |
765 dvd_title_t *p_title; | |
766 int i_ret; | |
767 | |
768 /* Free our list of keys */ | |
769 p_title = dvdcss->p_titles; | |
770 while( p_title ) | |
771 { | |
772 dvd_title_t *p_tmptitle = p_title->p_next; | |
773 free( p_title ); | |
774 p_title = p_tmptitle; | |
775 } | |
776 | |
777 i_ret = _dvdcss_close( dvdcss ); | |
778 | |
779 if( i_ret < 0 ) | |
780 { | |
781 return i_ret; | |
782 } | |
783 | |
784 free( dvdcss->psz_device ); | |
785 free( dvdcss ); | |
786 | |
787 return 0; | |
788 } | |
789 | |
790 /* | |
791 * Deprecated. See dvdcss_seek(). | |
792 */ | |
793 #undef dvdcss_title | |
794 extern int dvdcss_title ( dvdcss_t dvdcss, int i_block ) | |
795 { | |
796 return _dvdcss_title( dvdcss, i_block ); | |
797 } | |
798 |