]> git.sesse.net Git - vlc/blob - extras/libdvdcss/css.c
bc9a44f9ea93287182651006c971b7982cc68c40
[vlc] / extras / libdvdcss / css.c
1 /*****************************************************************************
2  * css.c: Functions for DVD authentification and unscrambling
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: css.c,v 1.7 2001/07/27 01:05:17 sam Exp $
6  *
7  * Author: Stéphane Borel <stef@via.ecp.fr>
8  *
9  * based on:
10  *  - css-auth by Derek Fawcus <derek@spider.com>
11  *  - DVD CSS ioctls example program by Andrew T. Veliath <andrewtv@usa.net>
12  *  - The Divide and conquer attack by Frank A. Stevenson <frank@funcom.com>
13  *  - DeCSSPlus by Ethan Hawke
14  *  - DecVOB
15  *  see http://www.lemuria.org/DeCSS/ by Tom Vogt for more information.
16  * 
17  * This program is free software; you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation; either version 2 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
30  *****************************************************************************/
31
32 /*****************************************************************************
33  * Preamble
34  *****************************************************************************/
35 #include "defs.h"
36
37 #include <stdio.h>
38 #include <stdlib.h>
39
40 #include <string.h>
41
42 #include "config.h"
43 #include "common.h"
44
45 #include "videolan/dvdcss.h"
46 #include "libdvdcss.h"
47
48 #ifdef HAVE_CSS
49 #   include "csstables.h"
50 #endif /* HAVE_CSS */
51 #include "ioctl.h"
52
53 /*****************************************************************************
54  * Local prototypes
55  *****************************************************************************/
56 #ifdef HAVE_CSS
57 static int  CSSGetASF    ( dvdcss_handle dvdcss );
58 static void CSSCryptKey  ( int i_key_type, int i_varient,
59                            u8 const * p_challenge, u8* p_key );
60 static int  CSSCracker   ( int i_start, unsigned char * p_crypted,
61                            unsigned char * p_decrypted,
62                            dvd_key_t * p_sector_key, dvd_key_t * p_key );
63 #endif /* HAVE_CSS */
64
65 /*****************************************************************************
66  * CSSTest : check if the disc is encrypted or not
67  *****************************************************************************/
68 int CSSTest( dvdcss_handle dvdcss )
69 {
70     int i_ret, i_copyright;
71
72     i_ret = ioctl_ReadCopyright( dvdcss->i_fd, 0 /* i_layer */, &i_copyright );
73
74     if( i_ret < 0 )
75     {
76         /* Since it's the first ioctl we try to issue, we add a notice */
77         _dvdcss_error( dvdcss, "css error: ioctl_ReadCopyright failed, "
78                        "make sure DVD ioctls were compiled in" );
79
80         return i_ret;
81     }
82
83     return i_copyright;
84 }
85
86 /*****************************************************************************
87  * CSSInit : CSS Structure initialisation and DVD authentication.
88  *****************************************************************************
89  * It simulates the mutual authentication between logical unit and host.
90  * Since we don't need the disc key to find the title key, we just run the
91  * basic unavoidable commands to authenticate device and disc.
92  *****************************************************************************/
93 int CSSInit( dvdcss_handle dvdcss )
94 {
95 #ifdef HAVE_CSS
96     /* structures defined in cdrom.h or dvdio.h */
97     unsigned char p_buffer[2048 + 4 + 1];
98     char psz_warning[32];
99     int  i_agid = 0;
100     int  i_ret = -1;
101     int  i;
102
103     /* Test authentication success */
104     switch( CSSGetASF( dvdcss ) )
105     {
106         case -1:
107             return -1;
108
109         case 1:
110             _dvdcss_debug( dvdcss, "already authenticated" );
111             return 0;
112
113         case 0:
114             _dvdcss_debug( dvdcss, "need to authenticate" );
115     }
116
117     /* Init sequence, request AGID */
118     for( i = 1; i < 4 ; ++i )
119     {
120         sprintf( psz_warning, "requesting AGID %d", i );
121         _dvdcss_debug( dvdcss, psz_warning );
122
123         i_ret = ioctl_ReportAgid( dvdcss->i_fd, &i_agid );
124
125         if( i_ret != -1 )
126         {
127             /* No error during ioctl: we know the device is authenticated */
128             break;
129         }
130
131         _dvdcss_error( dvdcss, "ioctl_ReportAgid failed, invalidating" );
132
133         i_agid = 0;
134         ioctl_InvalidateAgid( dvdcss->i_fd, &i_agid );
135     }
136
137     /* Unable to authenticate without AGID */
138     if( i_ret == -1 )
139     {
140         _dvdcss_error( dvdcss, "ioctl_ReportAgid failed, fatal" );
141         return -1;
142     }
143
144     for( i = 0 ; i < 10; ++i )
145     {
146         dvdcss->css.disc.p_challenge[i] = i;
147     }
148
149     /* Get challenge from host */
150     for( i = 0 ; i < 10 ; ++i )
151     {
152         p_buffer[9-i] = dvdcss->css.disc.p_challenge[i];
153     }
154
155     /* Send challenge to LU */
156     if( ioctl_SendChallenge( dvdcss->i_fd, &i_agid, p_buffer ) < 0 )
157     {
158         _dvdcss_error( dvdcss, "ioctl_SendChallenge failed" );
159         return -1;
160     }
161
162     /* Get key1 from LU */
163     if( ioctl_ReportKey1( dvdcss->i_fd, &i_agid, p_buffer ) < 0)
164     {
165         _dvdcss_error( dvdcss, "ioctl_ReportKey1 failed" );
166         return -1;
167     }
168
169     /* Send key1 to host */
170     for( i = 0 ; i < KEY_SIZE ; i++ )
171     {
172         dvdcss->css.disc.p_key1[i] = p_buffer[4-i];
173     }
174
175     for( i = 0 ; i < 32 ; ++i )
176     {
177         CSSCryptKey( 0, i, dvdcss->css.disc.p_challenge,
178                            dvdcss->css.disc.p_key_check );
179
180         if( memcmp( dvdcss->css.disc.p_key_check,
181                     dvdcss->css.disc.p_key1, KEY_SIZE ) == 0 )
182         {
183             sprintf( psz_warning, "drive authentic, using variant %d", i );
184             _dvdcss_debug( dvdcss, psz_warning );
185             dvdcss->css.disc.i_varient = i;
186             break;
187         }
188     }
189
190     if( i == 32 )
191     {
192         _dvdcss_error( dvdcss, "drive would not authenticate" );
193         return -1;
194     }
195
196     /* Get challenge from LU */
197     if( ioctl_ReportChallenge( dvdcss->i_fd, &i_agid, p_buffer ) < 0 )
198     {
199         _dvdcss_error( dvdcss, "ioctl_ReportKeyChallenge failed" );
200         return -1;
201     }
202
203     /* Send challenge to host */
204     for( i = 0 ; i < 10 ; ++i )
205     {
206         dvdcss->css.disc.p_challenge[i] = p_buffer[9-i];
207     }
208
209     CSSCryptKey( 1, dvdcss->css.disc.i_varient,
210                     dvdcss->css.disc.p_challenge,
211                     dvdcss->css.disc.p_key2 );
212
213     /* Get key2 from host */
214     for( i = 0 ; i < KEY_SIZE ; ++i )
215     {
216         p_buffer[4-i] = dvdcss->css.disc.p_key2[i];
217     }
218
219     /* Send key2 to LU */
220     if( ioctl_SendKey2( dvdcss->i_fd, &i_agid, p_buffer ) < 0 )
221     {
222         _dvdcss_error( dvdcss, "ioctl_SendKey2 failed" );
223         return -1;
224     }
225
226     _dvdcss_debug( dvdcss, "authentication established" );
227
228     memcpy( dvdcss->css.disc.p_challenge,
229             dvdcss->css.disc.p_key1, KEY_SIZE );
230     memcpy( dvdcss->css.disc.p_challenge+KEY_SIZE,
231             dvdcss->css.disc.p_key2, KEY_SIZE );
232
233     CSSCryptKey( 2, dvdcss->css.disc.i_varient,
234                     dvdcss->css.disc.p_challenge,
235                     dvdcss->css.disc.p_key_check );
236
237     _dvdcss_debug( dvdcss, "received session key" );
238
239     if( i_agid < 0 )
240     {
241         return -1;
242     }
243
244     /* Test authentication success */
245     switch( CSSGetASF( dvdcss ) )
246     {
247         case -1:
248             return -1;
249
250         case 1:
251             _dvdcss_debug( dvdcss, "already authenticated" );
252             return 0;
253
254         case 0:
255             _dvdcss_debug( dvdcss, "need to get disc key" );
256     }
257
258     /* Get encrypted disc key */
259     if( ioctl_ReadKey( dvdcss->i_fd, &i_agid, p_buffer ) < 0 )
260     {
261         _dvdcss_error( dvdcss, "ioctl_ReadKey failed" );
262         return -1;
263     }
264
265     /* Unencrypt disc key using bus key */
266     for( i = 0 ; i < 2048 ; i++ )
267     {
268         p_buffer[ i ] ^= dvdcss->css.disc.p_key_check[ 4 - (i % KEY_SIZE) ];
269     }
270     memcpy( dvdcss->css.disc.p_key_check, p_buffer, 2048 );
271
272     /* Test authentication success */
273     switch( CSSGetASF( dvdcss ) )
274     {
275         case -1:
276             return -1;
277
278         case 1:
279             _dvdcss_debug( dvdcss, "successfully authenticated" );
280             return 0;
281
282         case 0:
283             _dvdcss_error( dvdcss, "no way to authenticate" );
284             return -1;
285     }
286
287 #else /* HAVE_CSS */
288     _dvdcss_error( dvdcss, "CSS decryption is disabled in this library" );
289
290 #endif /* HAVE_CSS */
291     return -1;
292
293 }
294
295 /*****************************************************************************
296  * CSSGetKey : get title key.
297  *****************************************************************************
298  * The DVD should have been opened and authenticated before.
299  *****************************************************************************/
300 int CSSGetKey( dvdcss_handle dvdcss, int i_pos, dvd_key_t p_titlekey )
301 {
302 #ifdef HAVE_CSS
303     /*
304      * Title key cracking method from Ethan Hawke,
305      * with Frank A. Stevenson algorithm.
306      * Does not use any player key table and ioctls.
307      */
308     u8          p_buf[0x800];
309     dvd_key_t   p_key;
310     boolean_t   b_encrypted;
311     boolean_t   b_stop_scanning;
312     int         i_blocks_read;
313     int         i_best_plen;
314     int         i_best_p;
315     int         i,j;
316
317     for( i = 0 ; i < KEY_SIZE ; i++ )
318     {
319         p_key[i] = 0;
320     }
321
322     b_encrypted = 0;
323     b_stop_scanning = 0;
324
325     do
326     {
327         i_pos = dvdcss_seek( dvdcss, i_pos );
328         i_blocks_read = dvdcss_read( dvdcss, p_buf, 1, DVDCSS_NOFLAGS );
329
330         /* PES_scrambling_control */
331         if( p_buf[0x14] & 0x30 )
332         {
333             b_encrypted = 1;
334             i_best_plen = 0;
335             i_best_p = 0;
336
337             for( i = 2 ; i < 0x30 ; i++ )
338             {
339                 for( j = i+1 ;
340                      j < 0x80 && ( p_buf[0x7F - (j%i)] == p_buf[0x7F-j] );
341                      j++ );
342                 {
343                     if( j > i_best_plen )
344                     {
345                         i_best_plen = j;
346                         i_best_p = i;
347                     }
348                 }
349             }
350
351             if( ( i_best_plen > 20 ) && ( i_best_plen / i_best_p >= 2) )
352             {
353                 i = CSSCracker( 0,  &p_buf[0x80],
354                         &p_buf[0x80 - ( i_best_plen / i_best_p) *i_best_p],
355                         (dvd_key_t*)&p_buf[0x54],
356                         &p_key );
357                 b_stop_scanning = ( i >= 0 );
358             }
359         }
360
361         i_pos += i_blocks_read;
362
363     } while( i_blocks_read == 0x1 && !b_stop_scanning );
364
365     if( b_stop_scanning )
366     {
367         memcpy( p_titlekey, &p_key, sizeof(dvd_key_t) );
368         _dvdcss_debug( dvdcss, "vts key initialized" );
369         return 0;
370     }
371
372     if( !b_encrypted )
373     {
374         _dvdcss_debug( dvdcss, "file was unscrambled" );
375         return 0;
376     }
377
378     return -1;
379
380 #else /* HAVE_CSS */
381     _dvdcss_error( dvdcss, "css decryption unavailable" );
382     return -1;
383
384 #endif /* HAVE_CSS */
385 }
386
387 /*****************************************************************************
388  * CSSDescrambleSector
389  *****************************************************************************
390  * sec : sector to descramble
391  * key : title key for this sector
392  *****************************************************************************/
393 int CSSDescrambleSector( dvd_key_t p_key, u8* p_sec )
394 {
395 #ifdef HAVE_CSS
396     unsigned int    i_t1, i_t2, i_t3, i_t4, i_t5, i_t6;
397     u8*             p_end = p_sec + 0x800;
398
399     /* PES_scrambling_control */
400     if( p_sec[0x14] & 0x30)
401     {
402         i_t1 = ((p_key)[0] ^ p_sec[0x54]) | 0x100;
403         i_t2 = (p_key)[1] ^ p_sec[0x55];
404         i_t3 = (((p_key)[2]) | ((p_key)[3] << 8) |
405                ((p_key)[4] << 16)) ^ ((p_sec[0x56]) |
406                (p_sec[0x57] << 8) | (p_sec[0x58] << 16));
407         i_t4 = i_t3 & 7;
408         i_t3 = i_t3 * 2 + 8 - i_t4;
409         p_sec += 0x80;
410         i_t5 = 0;
411
412         while( p_sec != p_end )
413         {
414             i_t4 = p_css_tab2[i_t2] ^ p_css_tab3[i_t1];
415             i_t2 = i_t1>>1;
416             i_t1 = ( ( i_t1 & 1 ) << 8 ) ^ i_t4;
417             i_t4 = p_css_tab5[i_t4];
418             i_t6 = ((((((( i_t3 >> 3 ) ^ i_t3 ) >> 1 ) ^
419                                          i_t3 ) >> 8 ) ^ i_t3 ) >> 5) & 0xff;
420             i_t3 = (i_t3 << 8 ) | i_t6;
421             i_t6 = p_css_tab4[i_t6];
422             i_t5 += i_t6 + i_t4;
423             *p_sec = p_css_tab1[*p_sec] ^( i_t5 & 0xff );
424             p_sec++;
425             i_t5 >>= 8;
426         }
427     }
428
429     return 0;
430
431 #else /* HAVE_CSS */
432     return 1;
433
434 #endif /* HAVE_CSS */
435 }
436
437 #ifdef HAVE_CSS
438
439 /* Following functions are local */
440
441 /*****************************************************************************
442  * CSSGetASF : Get Authentification success flag
443  *****************************************************************************
444  * Returns :
445  *  -1 on ioctl error,
446  *  0 if the device needs to be authenticated,
447  *  1 either.
448  *****************************************************************************/
449 static int CSSGetASF( dvdcss_handle dvdcss )
450 {
451     int i_agid;
452     int i_asf = 0;
453
454     for( i_agid = 0 ; i_agid < 4 ; i_agid++ )
455     {
456         if( ioctl_ReportASF( dvdcss->i_fd, &i_agid, &i_asf ) == 0 )
457         {
458             if( i_asf )
459             {
460                 _dvdcss_debug( dvdcss, "GetASF authenticated" );
461             }
462             else
463             {
464                 _dvdcss_debug( dvdcss, "GetASF not authenticated" );
465             }
466
467             return i_asf;
468         }
469     }
470
471     /* The ioctl process has failed */
472     _dvdcss_error( dvdcss, "GetASF fatal error" );
473     return -1;
474 }
475
476 /*****************************************************************************
477  * CSSCryptKey : shuffles bits and unencrypt keys.
478  *****************************************************************************
479  * Used during authentication and disc key negociation in CSSInit.
480  * i_key_type : 0->key1, 1->key2, 2->buskey.
481  * i_varient : between 0 and 31.
482  *****************************************************************************/
483 static void CSSCryptKey( int i_key_type, int i_varient,
484                          u8 const * p_challenge, u8* p_key )
485 {
486     /* Permutation table for challenge */
487     u8      pp_perm_challenge[3][10] =
488             { { 1, 3, 0, 7, 5, 2, 9, 6, 4, 8 },
489               { 6, 1, 9, 3, 8, 5, 7, 4, 0, 2 },
490               { 4, 0, 3, 5, 7, 2, 8, 6, 1, 9 } };
491
492     /* Permutation table for varient table for key2 and buskey */
493     u8      pp_perm_varient[2][32] =
494             { { 0x0a, 0x08, 0x0e, 0x0c, 0x0b, 0x09, 0x0f, 0x0d,
495                 0x1a, 0x18, 0x1e, 0x1c, 0x1b, 0x19, 0x1f, 0x1d,
496                 0x02, 0x00, 0x06, 0x04, 0x03, 0x01, 0x07, 0x05,
497                 0x12, 0x10, 0x16, 0x14, 0x13, 0x11, 0x17, 0x15 },
498               { 0x12, 0x1a, 0x16, 0x1e, 0x02, 0x0a, 0x06, 0x0e,
499                 0x10, 0x18, 0x14, 0x1c, 0x00, 0x08, 0x04, 0x0c,
500                 0x13, 0x1b, 0x17, 0x1f, 0x03, 0x0b, 0x07, 0x0f,
501                 0x11, 0x19, 0x15, 0x1d, 0x01, 0x09, 0x05, 0x0d } };
502
503     u8      p_varients[32] =
504             {   0xB7, 0x74, 0x85, 0xD0, 0xCC, 0xDB, 0xCA, 0x73,
505                 0x03, 0xFE, 0x31, 0x03, 0x52, 0xE0, 0xB7, 0x42,
506                 0x63, 0x16, 0xF2, 0x2A, 0x79, 0x52, 0xFF, 0x1B,
507                 0x7A, 0x11, 0xCA, 0x1A, 0x9B, 0x40, 0xAD, 0x01 };
508
509     /* The "secret" key */
510     u8      p_secret[5] = { 0x55, 0xD6, 0xC4, 0xC5, 0x28 };
511
512     u8      p_bits[30];
513     u8      p_scratch[10];
514     u8      p_tmp1[5];
515     u8      p_tmp2[5];
516     u8      i_lfsr0_o;  /* 1 bit used */
517     u8      i_lfsr1_o;  /* 1 bit used */
518     u32     i_lfsr0;
519     u32     i_lfsr1;
520     u8      i_css_varient;
521     u8      i_cse;
522     u8      i_index;
523     u8      i_combined;
524     u8      i_carry;
525     u8      i_val = 0;
526     int     i_term = 0;
527     int     i_bit;
528     int     i;
529
530     for (i = 9; i >= 0; --i)
531         p_scratch[i] = p_challenge[pp_perm_challenge[i_key_type][i]];
532
533     i_css_varient = ( i_key_type == 0 ) ? i_varient :
534                     pp_perm_varient[i_key_type-1][i_varient];
535
536     /*
537      * This encryption engine implements one of 32 variations
538      * one the same theme depending upon the choice in the
539      * varient parameter (0 - 31).
540      *
541      * The algorithm itself manipulates a 40 bit input into
542      * a 40 bit output.
543      * The parameter 'input' is 80 bits.  It consists of
544      * the 40 bit input value that is to be encrypted followed
545      * by a 40 bit seed value for the pseudo random number
546      * generators.
547      */
548
549     /* Feed the secret into the input values such that
550      * we alter the seed to the LFSR's used above,  then
551      * generate the bits to play with.
552      */
553     for( i = 5 ; --i >= 0 ; )
554     {
555         p_tmp1[i] = p_scratch[5 + i] ^ p_secret[i] ^ p_crypt_tab2[i];
556     }
557
558     /*
559      * We use two LFSR's (seeded from some of the input data bytes) to
560      * generate two streams of pseudo-random bits.  These two bit streams
561      * are then combined by simply adding with carry to generate a final
562      * sequence of pseudo-random bits which is stored in the buffer that
563      * 'output' points to the end of - len is the size of this buffer.
564      *
565      * The first LFSR is of degree 25,  and has a polynomial of:
566      * x^13 + x^5 + x^4 + x^1 + 1
567      *
568      * The second LSFR is of degree 17,  and has a (primitive) polynomial of:
569      * x^15 + x^1 + 1
570      *
571      * I don't know if these polynomials are primitive modulo 2,  and thus
572      * represent maximal-period LFSR's.
573      *
574      *
575      * Note that we take the output of each LFSR from the new shifted in
576      * bit,  not the old shifted out bit.  Thus for ease of use the LFSR's
577      * are implemented in bit reversed order.
578      *
579      */
580     
581     /* In order to ensure that the LFSR works we need to ensure that the
582      * initial values are non-zero.  Thus when we initialise them from
583      * the seed,  we ensure that a bit is set.
584      */
585     i_lfsr0 = ( p_tmp1[0] << 17 ) | ( p_tmp1[1] << 9 ) |
586               (( p_tmp1[2] & ~7 ) << 1 ) | 8 | ( p_tmp1[2] & 7 );
587     i_lfsr1 = ( p_tmp1[3] << 9 ) | 0x100 | p_tmp1[4];
588
589     i_index = sizeof(p_bits);
590     i_carry = 0;
591
592     do
593     {
594         for( i_bit = 0, i_val = 0 ; i_bit < 8 ; ++i_bit )
595         {
596
597             i_lfsr0_o = ( ( i_lfsr0 >> 24 ) ^ ( i_lfsr0 >> 21 ) ^
598                         ( i_lfsr0 >> 20 ) ^ ( i_lfsr0 >> 12 ) ) & 1;
599             i_lfsr0 = ( i_lfsr0 << 1 ) | i_lfsr0_o;
600
601             i_lfsr1_o = ( ( i_lfsr1 >> 16 ) ^ ( i_lfsr1 >> 2 ) ) & 1;
602             i_lfsr1 = ( i_lfsr1 << 1 ) | i_lfsr1_o;
603
604             i_combined = !i_lfsr1_o + i_carry + !i_lfsr0_o;
605             /* taking bit 1 */
606             i_carry = ( i_combined >> 1 ) & 1;
607             i_val |= ( i_combined & 1 ) << i_bit;
608         }
609     
610         p_bits[--i_index] = i_val;
611     } while( i_index > 0 );
612
613     /* This term is used throughout the following to
614      * select one of 32 different variations on the
615      * algorithm.
616      */
617     i_cse = p_varients[i_css_varient] ^ p_crypt_tab2[i_css_varient];
618
619     /* Now the actual blocks doing the encryption.  Each
620      * of these works on 40 bits at a time and are quite
621      * similar.
622      */
623     i_index = 0;
624     for( i = 5, i_term = 0 ; --i >= 0 ; i_term = p_scratch[i] )
625     {
626         i_index = p_bits[25 + i] ^ p_scratch[i];
627         i_index = p_crypt_tab1[i_index] ^ ~p_crypt_tab2[i_index] ^ i_cse;
628
629         p_tmp1[i] = p_crypt_tab2[i_index] ^ p_crypt_tab3[i_index] ^ i_term;
630     }
631     p_tmp1[4] ^= p_tmp1[0];
632
633     for( i = 5, i_term = 0 ; --i >= 0 ; i_term = p_tmp1[i] )
634     {
635         i_index = p_bits[20 + i] ^ p_tmp1[i];
636         i_index = p_crypt_tab1[i_index] ^ ~p_crypt_tab2[i_index] ^ i_cse;
637
638         p_tmp2[i] = p_crypt_tab2[i_index] ^ p_crypt_tab3[i_index] ^ i_term;
639     }
640     p_tmp2[4] ^= p_tmp2[0];
641
642     for( i = 5, i_term = 0 ; --i >= 0 ; i_term = p_tmp2[i] )
643     {
644         i_index = p_bits[15 + i] ^ p_tmp2[i];
645         i_index = p_crypt_tab1[i_index] ^ ~p_crypt_tab2[i_index] ^ i_cse;
646         i_index = p_crypt_tab2[i_index] ^ p_crypt_tab3[i_index] ^ i_term;
647
648         p_tmp1[i] = p_crypt_tab0[i_index] ^ p_crypt_tab2[i_index];
649     }
650     p_tmp1[4] ^= p_tmp1[0];
651
652     for( i = 5, i_term = 0 ; --i >= 0 ; i_term = p_tmp1[i] )
653     {
654         i_index = p_bits[10 + i] ^ p_tmp1[i];
655         i_index = p_crypt_tab1[i_index] ^ ~p_crypt_tab2[i_index] ^ i_cse;
656
657         i_index = p_crypt_tab2[i_index] ^ p_crypt_tab3[i_index] ^ i_term;
658
659         p_tmp2[i] = p_crypt_tab0[i_index] ^ p_crypt_tab2[i_index];
660     }
661     p_tmp2[4] ^= p_tmp2[0];
662
663     for( i = 5, i_term = 0 ; --i >= 0 ; i_term = p_tmp2[i] )
664     {
665         i_index = p_bits[5 + i] ^ p_tmp2[i];
666         i_index = p_crypt_tab1[i_index] ^ ~p_crypt_tab2[i_index] ^ i_cse;
667
668         p_tmp1[i] = p_crypt_tab2[i_index] ^ p_crypt_tab3[i_index] ^ i_term;
669     }
670     p_tmp1[4] ^= p_tmp1[0];
671
672     for(i = 5, i_term = 0 ; --i >= 0 ; i_term = p_tmp1[i] )
673     {
674         i_index = p_bits[i] ^ p_tmp1[i];
675         i_index = p_crypt_tab1[i_index] ^ ~p_crypt_tab2[i_index] ^ i_cse;
676
677         p_key[i] = p_crypt_tab2[i_index] ^ p_crypt_tab3[i_index] ^ i_term;
678     }
679
680     return;
681 }
682
683 /*****************************************************************************
684  * CSSCracker : title key decryption by cracking
685  *****************************************************************************
686  * This function is called by CSSGetKeys to find a key
687  *****************************************************************************/
688 static int CSSCracker( int i_start,
689                        unsigned char * p_crypted,
690                        unsigned char * p_decrypted,
691                        dvd_key_t * p_sector_key,
692                        dvd_key_t * p_key )
693 {
694     unsigned char p_buffer[10];
695     unsigned int i_t1, i_t2, i_t3, i_t4, i_t5, i_t6;
696     unsigned int i_try;
697     unsigned int i_candidate;
698     unsigned int i, j;
699     int i_exit = -1;
700
701
702     for( i = 0 ; i < 10 ; i++ )
703     {
704         p_buffer[i] = p_css_tab1[p_crypted[i]] ^ p_decrypted[i];
705     }
706
707     for( i_try = i_start ; i_try < 0x10000 ; i_try++ )
708     {
709         i_t1 = i_try >> 8 | 0x100;
710         i_t2 = i_try & 0xff;
711         i_t3 = 0;               /* not needed */
712         i_t5 = 0;
713
714         /* iterate cipher 4 times to reconstruct LFSR2 */
715         for( i = 0 ; i < 4 ; i++ )
716         {
717             /* advance LFSR1 normaly */
718             i_t4 = p_css_tab2[i_t2] ^ p_css_tab3[i_t1];
719             i_t2 = i_t1 >> 1;
720             i_t1 = ( ( i_t1 & 1 ) << 8 ) ^ i_t4;
721             i_t4 = p_css_tab5[i_t4];
722             /* deduce i_t6 & i_t5 */
723             i_t6 = p_buffer[i];
724             if( i_t5 )
725             {
726                 i_t6 = ( i_t6 + 0xff ) & 0x0ff;
727             }
728             if( i_t6 < i_t4 )
729             {
730                 i_t6 += 0x100;
731             }
732             i_t6 -= i_t4;
733             i_t5 += i_t6 + i_t4;
734             i_t6 = p_css_tab4[ i_t6 ];
735             /* feed / advance i_t3 / i_t5 */
736             i_t3 = ( i_t3 << 8 ) | i_t6;
737             i_t5 >>= 8;
738         }
739
740         i_candidate = i_t3;
741
742         /* iterate 6 more times to validate candidate key */
743         for( ; i < 10 ; i++ )
744         {
745             i_t4 = p_css_tab2[i_t2] ^ p_css_tab3[i_t1];
746             i_t2 = i_t1 >> 1;
747             i_t1 = ( ( i_t1 & 1 ) << 8 ) ^ i_t4;
748             i_t4 = p_css_tab5[i_t4];
749             i_t6 = ((((((( i_t3 >> 3 ) ^ i_t3 ) >> 1 ) ^
750                                          i_t3 ) >> 8 ) ^ i_t3 ) >> 5 ) & 0xff;
751             i_t3 = ( i_t3 << 8 ) | i_t6;
752             i_t6 = p_css_tab4[i_t6];
753             i_t5 += i_t6 + i_t4;
754             if( ( i_t5 & 0xff ) != p_buffer[i] )
755             {
756                 break;
757             }
758
759             i_t5 >>= 8;
760         }
761
762         if( i == 10 )
763         {
764             /* Do 4 backwards steps of iterating t3 to deduce initial state */
765             i_t3 = i_candidate;
766             for( i = 0 ; i < 4 ; i++ )
767             {
768                 i_t1 = i_t3 & 0xff;
769                 i_t3 = ( i_t3 >> 8 );
770                 /* easy to code, and fast enough bruteforce
771                  * search for byte shifted in */
772                 for( j = 0 ; j < 256 ; j++ )
773                 {
774                     i_t3 = ( i_t3 & 0x1ffff) | ( j << 17 );
775                     i_t6 = ((((((( i_t3 >> 3 ) ^ i_t3 ) >> 1 ) ^
776                                    i_t3 ) >> 8 ) ^ i_t3 ) >> 5 ) & 0xff;
777                     if( i_t6 == i_t1 )
778                     {
779                         break;
780                     }
781                 }
782             }
783
784             i_t4 = ( i_t3 >> 1 ) - 4;
785             for( i_t5 = 0 ; i_t5 < 8; i_t5++ )
786             {
787                 if( ( ( i_t4 + i_t5 ) * 2 + 8 - ( (i_t4 + i_t5 ) & 7 ) )
788                                                                       == i_t3 )
789                 {
790                     (*p_key)[0] = i_try>>8;
791                     (*p_key)[1] = i_try & 0xFF;
792                     (*p_key)[2] = ( ( i_t4 + i_t5 ) >> 0) & 0xFF;
793                     (*p_key)[3] = ( ( i_t4 + i_t5 ) >> 8) & 0xFF;
794                     (*p_key)[4] = ( ( i_t4 + i_t5 ) >> 16) & 0xFF;
795                     i_exit = i_try + 1;
796                 }
797             }
798         }
799     }
800
801     if( i_exit >= 0 )
802     {
803         (*p_key)[0] ^= (*p_sector_key)[0];
804         (*p_key)[1] ^= (*p_sector_key)[1];
805         (*p_key)[2] ^= (*p_sector_key)[2];
806         (*p_key)[3] ^= (*p_sector_key)[3];
807         (*p_key)[4] ^= (*p_sector_key)[4];
808     }
809
810     return i_exit;
811 }
812
813 #endif /* HAVE_CSS */
814