drms.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:62k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * drms.c: DRMS
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: ca4d9c63982b4456f09903aaf171d09924a94e0e $
  6.  *
  7.  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  8.  *          Sam Hocevar <sam@zoy.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifdef __LIBVLC__
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #   include <vlc_common.h>
  29. #   include <vlc_md5.h>
  30. #   include "libmp4.h"
  31. #   include <vlc_charset.h>
  32. #else
  33. #   include "drmsvl.h"
  34. #endif
  35. #ifdef WIN32
  36. #   include <io.h>
  37. #else
  38. #   include <stdio.h>
  39. #endif
  40. #include <errno.h>
  41. #ifdef WIN32
  42. #   if !defined( UNDER_CE )
  43. #       include <direct.h>
  44. #   endif
  45. #   include <tchar.h>
  46. #   include <shlobj.h>
  47. #   include <windows.h>
  48. #endif
  49. #ifdef HAVE_SYS_STAT_H
  50. #   include <sys/stat.h>
  51. #endif
  52. #ifdef HAVE_SYS_TYPES_H
  53. #   include <sys/types.h>
  54. #endif
  55. /* In Solaris (and perhaps others) PATH_MAX is in limits.h. */
  56. #include <limits.h>
  57. #ifdef __APPLE__
  58. #   include <mach/mach.h>
  59. #   include <IOKit/IOKitLib.h>
  60. #   include <CoreFoundation/CFNumber.h>
  61. #endif
  62. #ifdef HAVE_SYSFS_LIBSYSFS_H
  63. #   include <sysfs/libsysfs.h>
  64. #endif
  65. #include "drms.h"
  66. #include "drmstables.h"
  67. #if !defined( UNDER_CE )
  68. /*****************************************************************************
  69.  * aes_s: AES keys structure
  70.  *****************************************************************************
  71.  * This structure stores a set of keys usable for encryption and decryption
  72.  * with the AES/Rijndael algorithm.
  73.  *****************************************************************************/
  74. struct aes_s
  75. {
  76.     uint32_t pp_enc_keys[ AES_KEY_COUNT + 1 ][ 4 ];
  77.     uint32_t pp_dec_keys[ AES_KEY_COUNT + 1 ][ 4 ];
  78. };
  79. #ifdef __LIBVLC__
  80. # define Digest DigestMD5
  81. #else
  82. /*****************************************************************************
  83.  * md5_s: MD5 message structure
  84.  *****************************************************************************
  85.  * This structure stores the static information needed to compute an MD5
  86.  * hash. It has an extra data buffer to allow non-aligned writes.
  87.  *****************************************************************************/
  88. struct md5_s
  89. {
  90.     uint64_t i_bits;      /* Total written bits */
  91.     uint32_t p_digest[4]; /* The MD5 digest */
  92.     uint32_t p_data[16];  /* Buffer to cache non-aligned writes */
  93. };
  94. #endif
  95. /*****************************************************************************
  96.  * shuffle_s: shuffle structure
  97.  *****************************************************************************
  98.  * This structure stores the static information needed to shuffle data using
  99.  * a custom algorithm.
  100.  *****************************************************************************/
  101. struct shuffle_s
  102. {
  103.     uint32_t i_version;
  104.     uint32_t p_commands[ 20 ];
  105.     uint32_t p_bordel[ 16 ];
  106. };
  107. #define SWAP( a, b ) { (a) ^= (b); (b) ^= (a); (a) ^= (b); }
  108. /*****************************************************************************
  109.  * drms_s: DRMS structure
  110.  *****************************************************************************
  111.  * This structure stores the static information needed to decrypt DRMS data.
  112.  *****************************************************************************/
  113. struct drms_s
  114. {
  115.     uint32_t i_user;
  116.     uint32_t i_key;
  117.     uint8_t  p_iviv[ 16 ];
  118.     uint8_t *p_name;
  119.     uint32_t p_key[ 4 ];
  120.     struct aes_s aes;
  121.     char     psz_homedir[ PATH_MAX ];
  122. };
  123. /*****************************************************************************
  124.  * Local prototypes
  125.  *****************************************************************************/
  126. static void InitAES       ( struct aes_s *, uint32_t * );
  127. static void DecryptAES    ( struct aes_s *, uint32_t *, const uint32_t * );
  128. #ifndef __LIBVLC__
  129. static void InitMD5       ( struct md5_s * );
  130. static void AddMD5        ( struct md5_s *, const uint8_t *, uint32_t );
  131. static void EndMD5        ( struct md5_s * );
  132. static void Digest        ( struct md5_s *, uint32_t * );
  133. #endif
  134. static void InitShuffle   ( struct shuffle_s *, uint32_t *, uint32_t );
  135. static void DoShuffle     ( struct shuffle_s *, uint32_t *, uint32_t );
  136. static uint32_t FirstPass ( uint32_t * );
  137. static void SecondPass    ( uint32_t *, uint32_t );
  138. static void ThirdPass     ( uint32_t * );
  139. static void FourthPass    ( uint32_t * );
  140. static void TinyShuffle1  ( uint32_t * );
  141. static void TinyShuffle2  ( uint32_t * );
  142. static void TinyShuffle3  ( uint32_t * );
  143. static void TinyShuffle4  ( uint32_t * );
  144. static void TinyShuffle5  ( uint32_t * );
  145. static void TinyShuffle6  ( uint32_t * );
  146. static void TinyShuffle7  ( uint32_t * );
  147. static void TinyShuffle8  ( uint32_t * );
  148. static void DoExtShuffle  ( uint32_t * );
  149. static int GetSystemKey   ( uint32_t *, bool );
  150. static int WriteUserKey   ( void *, uint32_t * );
  151. static int ReadUserKey    ( void *, uint32_t * );
  152. static int GetUserKey     ( void *, uint32_t * );
  153. static int GetSCIData     ( char *, uint32_t **, uint32_t * );
  154. static int HashSystemInfo ( uint32_t * );
  155. static int GetiPodID      ( int64_t * );
  156. #ifdef WORDS_BIGENDIAN
  157. /*****************************************************************************
  158.  * Reverse: reverse byte order
  159.  *****************************************************************************/
  160. static inline void Reverse( uint32_t *p_buffer, int n )
  161. {
  162.     int i;
  163.     for( i = 0; i < n; i++ )
  164.     {
  165.         p_buffer[ i ] = GetDWLE(&p_buffer[ i ]);
  166.     }
  167. }
  168. #    define REVERSE( p, n ) Reverse( p, n )
  169. #else
  170. #    define REVERSE( p, n )
  171. #endif
  172. /*****************************************************************************
  173.  * BlockXOR: XOR two 128 bit blocks
  174.  *****************************************************************************/
  175. static inline void BlockXOR( uint32_t *p_dest, uint32_t *p_s1, uint32_t *p_s2 )
  176. {
  177.     int i;
  178.     for( i = 0; i < 4; i++ )
  179.     {
  180.         p_dest[ i ] = p_s1[ i ] ^ p_s2[ i ];
  181.     }
  182. }
  183. /*****************************************************************************
  184.  * drms_alloc: allocate a DRMS structure
  185.  *****************************************************************************/
  186. void *drms_alloc( const char *psz_homedir )
  187. {
  188.     struct drms_s *p_drms;
  189.     p_drms = calloc( 1, sizeof(struct drms_s) );
  190.     if( !p_drms )
  191.         return NULL;
  192.     strncpy( p_drms->psz_homedir, psz_homedir, PATH_MAX );
  193.     p_drms->psz_homedir[ PATH_MAX - 1 ] = '';
  194.     return (void *)p_drms;
  195. }
  196. /*****************************************************************************
  197.  * drms_free: free a previously allocated DRMS structure
  198.  *****************************************************************************/
  199. void drms_free( void *_p_drms )
  200. {
  201.     struct drms_s *p_drms = (struct drms_s *)_p_drms;
  202.     free( (void *)p_drms->p_name );
  203.     free( p_drms );
  204. }
  205. /*****************************************************************************
  206.  * drms_decrypt: unscramble a chunk of data
  207.  *****************************************************************************/
  208. void drms_decrypt( void *_p_drms, uint32_t *p_buffer, uint32_t i_bytes, uint32_t *p_key )
  209. {
  210.     struct drms_s *p_drms = (struct drms_s *)_p_drms;
  211.     uint32_t p_key_buf[ 4 ];
  212.     unsigned int i_blocks;
  213.     /* AES is a block cypher, round down the byte count */
  214.     i_blocks = i_bytes / 16;
  215.     i_bytes = i_blocks * 16;
  216.     /* Initialise the key */
  217.     if( !p_key )
  218.     {
  219.         p_key = p_key_buf;
  220.         memcpy( p_key, p_drms->p_key, 16 );
  221.     }
  222.     /* Unscramble */
  223.     while( i_blocks-- )
  224.     {
  225.         uint32_t p_tmp[ 4 ];
  226.         REVERSE( p_buffer, 4 );
  227.         DecryptAES( &p_drms->aes, p_tmp, p_buffer );
  228.         BlockXOR( p_tmp, p_key, p_tmp );
  229.         /* Use the previous scrambled data as the key for next block */
  230.         memcpy( p_key, p_buffer, 16 );
  231.         /* Copy unscrambled data back to the buffer */
  232.         memcpy( p_buffer, p_tmp, 16 );
  233.         REVERSE( p_buffer, 4 );
  234.         p_buffer += 4;
  235.     }
  236. }
  237. /*****************************************************************************
  238.  * drms_get_p_key: copy the p_key into user buffer
  239.  ****************************************************************************/
  240. void drms_get_p_key( void *_p_drms, uint32_t *p_key )
  241. {
  242.     struct drms_s *p_drms = (struct drms_s *)_p_drms;
  243.     memcpy( p_key, p_drms->p_key, 16 );
  244. }
  245. /*****************************************************************************
  246.  * drms_init: initialise a DRMS structure
  247.  *****************************************************************************
  248.  * Return values:
  249.  *  0: success
  250.  * -1: unimplemented
  251.  * -2: invalid argument
  252.  * -3: could not get system key
  253.  * -4: could not get SCI data
  254.  * -5: no user key found in SCI data
  255.  * -6: invalid user key
  256.  *****************************************************************************/
  257. int drms_init( void *_p_drms, uint32_t i_type,
  258.                uint8_t *p_info, uint32_t i_len )
  259. {
  260.     struct drms_s *p_drms = (struct drms_s *)_p_drms;
  261.     int i_ret = 0;
  262.     switch( i_type )
  263.     {
  264.         case FOURCC_user:
  265.             if( i_len < sizeof(p_drms->i_user) )
  266.             {
  267.                 i_ret = -2;
  268.                 break;
  269.             }
  270.             p_drms->i_user = U32_AT( p_info );
  271.             break;
  272.         case FOURCC_key:
  273.             if( i_len < sizeof(p_drms->i_key) )
  274.             {
  275.                 i_ret = -2;
  276.                 break;
  277.             }
  278.             p_drms->i_key = U32_AT( p_info );
  279.             break;
  280.         case FOURCC_iviv:
  281.             if( i_len < sizeof(p_drms->p_key) )
  282.             {
  283.                 i_ret = -2;
  284.                 break;
  285.             }
  286.             memcpy( p_drms->p_iviv, p_info, 16 );
  287.             break;
  288.         case FOURCC_name:
  289.             p_drms->p_name = (uint8_t*) strdup( (char *)p_info );
  290.             if( p_drms->p_name == NULL )
  291.             {
  292.                 i_ret = -2;
  293.             }
  294.             break;
  295.         case FOURCC_priv:
  296.         {
  297.             uint32_t p_priv[ 64 ];
  298.             struct md5_s md5;
  299.             if( i_len < 64 )
  300.             {
  301.                 i_ret = -2;
  302.                 break;
  303.             }
  304.             InitMD5( &md5 );
  305.             AddMD5( &md5, p_drms->p_name, strlen( (char *)p_drms->p_name ) );
  306.             AddMD5( &md5, p_drms->p_iviv, 16 );
  307.             EndMD5( &md5 );
  308.             if( p_drms->i_user == 0 && p_drms->i_key == 0 )
  309.             {
  310.                 static const char p_secret[] = "tr1-th3n.y00_by3";
  311.                 memcpy( p_drms->p_key, p_secret, 16 );
  312.                 REVERSE( p_drms->p_key, 4 );
  313.             }
  314.             else
  315.             {
  316.                 i_ret = GetUserKey( p_drms, p_drms->p_key );
  317.                 if( i_ret )
  318.                 {
  319.                     break;
  320.                 }
  321.             }
  322.             InitAES( &p_drms->aes, p_drms->p_key );
  323.             memcpy( p_priv, p_info, 64 );
  324.             memcpy( p_drms->p_key, md5.p_digest, 16 );
  325.             drms_decrypt( p_drms, p_priv, 64, NULL );
  326.             REVERSE( p_priv, 64 );
  327.             if( p_priv[ 0 ] != 0x6e757469 ) /* itun */
  328.             {
  329.                 i_ret = -6;
  330.                 break;
  331.             }
  332.             InitAES( &p_drms->aes, p_priv + 6 );
  333.             memcpy( p_drms->p_key, p_priv + 12, 16 );
  334.             free( (void *)p_drms->p_name );
  335.             p_drms->p_name = NULL;
  336.         }
  337.         break;
  338.     }
  339.     return i_ret;
  340. }
  341. /* The following functions are local */
  342. /*****************************************************************************
  343.  * InitAES: initialise AES/Rijndael encryption/decryption tables
  344.  *****************************************************************************
  345.  * The Advanced Encryption Standard (AES) is described in RFC 3268
  346.  *****************************************************************************/
  347. static void InitAES( struct aes_s *p_aes, uint32_t *p_key )
  348. {
  349.     unsigned int i, t;
  350.     uint32_t i_key, i_seed;
  351.     memset( p_aes->pp_enc_keys[1], 0, 16 );
  352.     memcpy( p_aes->pp_enc_keys[0], p_key, 16 );
  353.     /* Generate the key tables */
  354.     i_seed = p_aes->pp_enc_keys[ 0 ][ 3 ];
  355.     for( i_key = 0; i_key < AES_KEY_COUNT; i_key++ )
  356.     {
  357.         uint32_t j;
  358.         i_seed = AES_ROR( i_seed, 8 );
  359.         j = p_aes_table[ i_key ];
  360.         j ^= p_aes_encrypt[ (i_seed >> 24) & 0xff ]
  361.               ^ AES_ROR( p_aes_encrypt[ (i_seed >> 16) & 0xff ], 8 )
  362.               ^ AES_ROR( p_aes_encrypt[ (i_seed >> 8) & 0xff ], 16 )
  363.               ^ AES_ROR( p_aes_encrypt[ i_seed & 0xff ], 24 );
  364.         j ^= p_aes->pp_enc_keys[ i_key ][ 0 ];
  365.         p_aes->pp_enc_keys[ i_key + 1 ][ 0 ] = j;
  366.         j ^= p_aes->pp_enc_keys[ i_key ][ 1 ];
  367.         p_aes->pp_enc_keys[ i_key + 1 ][ 1 ] = j;
  368.         j ^= p_aes->pp_enc_keys[ i_key ][ 2 ];
  369.         p_aes->pp_enc_keys[ i_key + 1 ][ 2 ] = j;
  370.         j ^= p_aes->pp_enc_keys[ i_key ][ 3 ];
  371.         p_aes->pp_enc_keys[ i_key + 1 ][ 3 ] = j;
  372.         i_seed = j;
  373.     }
  374.     memcpy( p_aes->pp_dec_keys[ 0 ],
  375.             p_aes->pp_enc_keys[ 0 ], 16 );
  376.     for( i = 1; i < AES_KEY_COUNT; i++ )
  377.     {
  378.         for( t = 0; t < 4; t++ )
  379.         {
  380.             uint32_t j, k, l, m, n;
  381.             j = p_aes->pp_enc_keys[ i ][ t ];
  382.             k = (((j >> 7) & 0x01010101) * 27) ^ ((j & 0xff7f7f7f) << 1);
  383.             l = (((k >> 7) & 0x01010101) * 27) ^ ((k & 0xff7f7f7f) << 1);
  384.             m = (((l >> 7) & 0x01010101) * 27) ^ ((l & 0xff7f7f7f) << 1);
  385.             j ^= m;
  386.             n = AES_ROR( l ^ j, 16 ) ^ AES_ROR( k ^ j, 8 ) ^ AES_ROR( j, 24 );
  387.             p_aes->pp_dec_keys[ i ][ t ] = k ^ l ^ m ^ n;
  388.         }
  389.     }
  390. }
  391. /*****************************************************************************
  392.  * DecryptAES: decrypt an AES/Rijndael 128 bit block
  393.  *****************************************************************************/
  394. static void DecryptAES( struct aes_s *p_aes,
  395.                         uint32_t *p_dest, const uint32_t *p_src )
  396. {
  397.     uint32_t p_wtxt[ 4 ]; /* Working cyphertext */
  398.     uint32_t p_tmp[ 4 ];
  399.     unsigned int i_round, t;
  400.     for( t = 0; t < 4; t++ )
  401.     {
  402.         /* FIXME: are there any endianness issues here? */
  403.         p_wtxt[ t ] = p_src[ t ] ^ p_aes->pp_enc_keys[ AES_KEY_COUNT ][ t ];
  404.     }
  405.     /* Rounds 0 - 8 */
  406.     for( i_round = 0; i_round < (AES_KEY_COUNT - 1); i_round++ )
  407.     {
  408.         for( t = 0; t < 4; t++ )
  409.         {
  410.             p_tmp[ t ] = AES_XOR_ROR( p_aes_itable, p_wtxt );
  411.         }
  412.         for( t = 0; t < 4; t++ )
  413.         {
  414.             p_wtxt[ t ] = p_tmp[ t ]
  415.                     ^ p_aes->pp_dec_keys[ (AES_KEY_COUNT - 1) - i_round ][ t ];
  416.         }
  417.     }
  418.     /* Final round (9) */
  419.     for( t = 0; t < 4; t++ )
  420.     {
  421.         p_dest[ t ] = AES_XOR_ROR( p_aes_decrypt, p_wtxt );
  422.         p_dest[ t ] ^= p_aes->pp_dec_keys[ 0 ][ t ];
  423.     }
  424. }
  425. #ifndef __LIBVLC__
  426. /*****************************************************************************
  427.  * InitMD5: initialise an MD5 message
  428.  *****************************************************************************
  429.  * The MD5 message-digest algorithm is described in RFC 1321
  430.  *****************************************************************************/
  431. static void InitMD5( struct md5_s *p_md5 )
  432. {
  433.     p_md5->p_digest[ 0 ] = 0x67452301;
  434.     p_md5->p_digest[ 1 ] = 0xefcdab89;
  435.     p_md5->p_digest[ 2 ] = 0x98badcfe;
  436.     p_md5->p_digest[ 3 ] = 0x10325476;
  437.     memset( p_md5->p_data, 0, 64 );
  438.     p_md5->i_bits = 0;
  439. }
  440. /*****************************************************************************
  441.  * AddMD5: add i_len bytes to an MD5 message
  442.  *****************************************************************************/
  443. static void AddMD5( struct md5_s *p_md5, const uint8_t *p_src, uint32_t i_len )
  444. {
  445.     unsigned int i_current; /* Current bytes in the spare buffer */
  446.     unsigned int i_offset = 0;
  447.     i_current = (p_md5->i_bits / 8) & 63;
  448.     p_md5->i_bits += 8 * i_len;
  449.     /* If we can complete our spare buffer to 64 bytes, do it and add the
  450.      * resulting buffer to the MD5 message */
  451.     if( i_len >= (64 - i_current) )
  452.     {
  453.         memcpy( ((uint8_t *)p_md5->p_data) + i_current, p_src,
  454.                 (64 - i_current) );
  455.         Digest( p_md5, p_md5->p_data );
  456.         i_offset += (64 - i_current);
  457.         i_len -= (64 - i_current);
  458.         i_current = 0;
  459.     }
  460.     /* Add as many entire 64 bytes blocks as we can to the MD5 message */
  461.     while( i_len >= 64 )
  462.     {
  463.         uint32_t p_tmp[ 16 ];
  464.         memcpy( p_tmp, p_src + i_offset, 64 );
  465.         Digest( p_md5, p_tmp );
  466.         i_offset += 64;
  467.         i_len -= 64;
  468.     }
  469.     /* Copy our remaining data to the message's spare buffer */
  470.     memcpy( ((uint8_t *)p_md5->p_data) + i_current, p_src + i_offset, i_len );
  471. }
  472. /*****************************************************************************
  473.  * EndMD5: finish an MD5 message
  474.  *****************************************************************************
  475.  * This function adds adequate padding to the end of the message, and appends
  476.  * the bit count so that we end at a block boundary.
  477.  *****************************************************************************/
  478. static void EndMD5( struct md5_s *p_md5 )
  479. {
  480.     unsigned int i_current;
  481.     i_current = (p_md5->i_bits / 8) & 63;
  482.     /* Append 0x80 to our buffer. No boundary check because the temporary
  483.      * buffer cannot be full, otherwise AddMD5 would have emptied it. */
  484.     ((uint8_t *)p_md5->p_data)[ i_current++ ] = 0x80;
  485.     /* If less than 8 bytes are available at the end of the block, complete
  486.      * this 64 bytes block with zeros and add it to the message. We'll add
  487.      * our length at the end of the next block. */
  488.     if( i_current > 56 )
  489.     {
  490.         memset( ((uint8_t *)p_md5->p_data) + i_current, 0, (64 - i_current) );
  491.         Digest( p_md5, p_md5->p_data );
  492.         i_current = 0;
  493.     }
  494.     /* Fill the unused space in our last block with zeroes and put the
  495.      * message length at the end. */
  496.     memset( ((uint8_t *)p_md5->p_data) + i_current, 0, (56 - i_current) );
  497.     p_md5->p_data[ 14 ] = p_md5->i_bits & 0xffffffff;
  498.     p_md5->p_data[ 15 ] = (p_md5->i_bits >> 32);
  499.     REVERSE( &p_md5->p_data[ 14 ], 2 );
  500.     Digest( p_md5, p_md5->p_data );
  501. }
  502. #define F1( x, y, z ) ((z) ^ ((x) & ((y) ^ (z))))
  503. #define F2( x, y, z ) F1((z), (x), (y))
  504. #define F3( x, y, z ) ((x) ^ (y) ^ (z))
  505. #define F4( x, y, z ) ((y) ^ ((x) | ~(z)))
  506. #define MD5_DO( f, w, x, y, z, data, s ) 
  507.     ( w += f(x, y, z) + data,  w = w<<s | w>>(32-s),  w += x )
  508. /*****************************************************************************
  509.  * Digest: update the MD5 digest with 64 bytes of data
  510.  *****************************************************************************/
  511. static void Digest( struct md5_s *p_md5, uint32_t *p_input )
  512. {
  513.     uint32_t a, b, c, d;
  514.     REVERSE( p_input, 16 );
  515.     a = p_md5->p_digest[ 0 ];
  516.     b = p_md5->p_digest[ 1 ];
  517.     c = p_md5->p_digest[ 2 ];
  518.     d = p_md5->p_digest[ 3 ];
  519.     MD5_DO( F1, a, b, c, d, p_input[  0 ] + 0xd76aa478,  7 );
  520.     MD5_DO( F1, d, a, b, c, p_input[  1 ] + 0xe8c7b756, 12 );
  521.     MD5_DO( F1, c, d, a, b, p_input[  2 ] + 0x242070db, 17 );
  522.     MD5_DO( F1, b, c, d, a, p_input[  3 ] + 0xc1bdceee, 22 );
  523.     MD5_DO( F1, a, b, c, d, p_input[  4 ] + 0xf57c0faf,  7 );
  524.     MD5_DO( F1, d, a, b, c, p_input[  5 ] + 0x4787c62a, 12 );
  525.     MD5_DO( F1, c, d, a, b, p_input[  6 ] + 0xa8304613, 17 );
  526.     MD5_DO( F1, b, c, d, a, p_input[  7 ] + 0xfd469501, 22 );
  527.     MD5_DO( F1, a, b, c, d, p_input[  8 ] + 0x698098d8,  7 );
  528.     MD5_DO( F1, d, a, b, c, p_input[  9 ] + 0x8b44f7af, 12 );
  529.     MD5_DO( F1, c, d, a, b, p_input[ 10 ] + 0xffff5bb1, 17 );
  530.     MD5_DO( F1, b, c, d, a, p_input[ 11 ] + 0x895cd7be, 22 );
  531.     MD5_DO( F1, a, b, c, d, p_input[ 12 ] + 0x6b901122,  7 );
  532.     MD5_DO( F1, d, a, b, c, p_input[ 13 ] + 0xfd987193, 12 );
  533.     MD5_DO( F1, c, d, a, b, p_input[ 14 ] + 0xa679438e, 17 );
  534.     MD5_DO( F1, b, c, d, a, p_input[ 15 ] + 0x49b40821, 22 );
  535.     MD5_DO( F2, a, b, c, d, p_input[  1 ] + 0xf61e2562,  5 );
  536.     MD5_DO( F2, d, a, b, c, p_input[  6 ] + 0xc040b340,  9 );
  537.     MD5_DO( F2, c, d, a, b, p_input[ 11 ] + 0x265e5a51, 14 );
  538.     MD5_DO( F2, b, c, d, a, p_input[  0 ] + 0xe9b6c7aa, 20 );
  539.     MD5_DO( F2, a, b, c, d, p_input[  5 ] + 0xd62f105d,  5 );
  540.     MD5_DO( F2, d, a, b, c, p_input[ 10 ] + 0x02441453,  9 );
  541.     MD5_DO( F2, c, d, a, b, p_input[ 15 ] + 0xd8a1e681, 14 );
  542.     MD5_DO( F2, b, c, d, a, p_input[  4 ] + 0xe7d3fbc8, 20 );
  543.     MD5_DO( F2, a, b, c, d, p_input[  9 ] + 0x21e1cde6,  5 );
  544.     MD5_DO( F2, d, a, b, c, p_input[ 14 ] + 0xc33707d6,  9 );
  545.     MD5_DO( F2, c, d, a, b, p_input[  3 ] + 0xf4d50d87, 14 );
  546.     MD5_DO( F2, b, c, d, a, p_input[  8 ] + 0x455a14ed, 20 );
  547.     MD5_DO( F2, a, b, c, d, p_input[ 13 ] + 0xa9e3e905,  5 );
  548.     MD5_DO( F2, d, a, b, c, p_input[  2 ] + 0xfcefa3f8,  9 );
  549.     MD5_DO( F2, c, d, a, b, p_input[  7 ] + 0x676f02d9, 14 );
  550.     MD5_DO( F2, b, c, d, a, p_input[ 12 ] + 0x8d2a4c8a, 20 );
  551.     MD5_DO( F3, a, b, c, d, p_input[  5 ] + 0xfffa3942,  4 );
  552.     MD5_DO( F3, d, a, b, c, p_input[  8 ] + 0x8771f681, 11 );
  553.     MD5_DO( F3, c, d, a, b, p_input[ 11 ] + 0x6d9d6122, 16 );
  554.     MD5_DO( F3, b, c, d, a, p_input[ 14 ] + 0xfde5380c, 23 );
  555.     MD5_DO( F3, a, b, c, d, p_input[  1 ] + 0xa4beea44,  4 );
  556.     MD5_DO( F3, d, a, b, c, p_input[  4 ] + 0x4bdecfa9, 11 );
  557.     MD5_DO( F3, c, d, a, b, p_input[  7 ] + 0xf6bb4b60, 16 );
  558.     MD5_DO( F3, b, c, d, a, p_input[ 10 ] + 0xbebfbc70, 23 );
  559.     MD5_DO( F3, a, b, c, d, p_input[ 13 ] + 0x289b7ec6,  4 );
  560.     MD5_DO( F3, d, a, b, c, p_input[  0 ] + 0xeaa127fa, 11 );
  561.     MD5_DO( F3, c, d, a, b, p_input[  3 ] + 0xd4ef3085, 16 );
  562.     MD5_DO( F3, b, c, d, a, p_input[  6 ] + 0x04881d05, 23 );
  563.     MD5_DO( F3, a, b, c, d, p_input[  9 ] + 0xd9d4d039,  4 );
  564.     MD5_DO( F3, d, a, b, c, p_input[ 12 ] + 0xe6db99e5, 11 );
  565.     MD5_DO( F3, c, d, a, b, p_input[ 15 ] + 0x1fa27cf8, 16 );
  566.     MD5_DO( F3, b, c, d, a, p_input[  2 ] + 0xc4ac5665, 23 );
  567.     MD5_DO( F4, a, b, c, d, p_input[  0 ] + 0xf4292244,  6 );
  568.     MD5_DO( F4, d, a, b, c, p_input[  7 ] + 0x432aff97, 10 );
  569.     MD5_DO( F4, c, d, a, b, p_input[ 14 ] + 0xab9423a7, 15 );
  570.     MD5_DO( F4, b, c, d, a, p_input[  5 ] + 0xfc93a039, 21 );
  571.     MD5_DO( F4, a, b, c, d, p_input[ 12 ] + 0x655b59c3,  6 );
  572.     MD5_DO( F4, d, a, b, c, p_input[  3 ] + 0x8f0ccc92, 10 );
  573.     MD5_DO( F4, c, d, a, b, p_input[ 10 ] + 0xffeff47d, 15 );
  574.     MD5_DO( F4, b, c, d, a, p_input[  1 ] + 0x85845dd1, 21 );
  575.     MD5_DO( F4, a, b, c, d, p_input[  8 ] + 0x6fa87e4f,  6 );
  576.     MD5_DO( F4, d, a, b, c, p_input[ 15 ] + 0xfe2ce6e0, 10 );
  577.     MD5_DO( F4, c, d, a, b, p_input[  6 ] + 0xa3014314, 15 );
  578.     MD5_DO( F4, b, c, d, a, p_input[ 13 ] + 0x4e0811a1, 21 );
  579.     MD5_DO( F4, a, b, c, d, p_input[  4 ] + 0xf7537e82,  6 );
  580.     MD5_DO( F4, d, a, b, c, p_input[ 11 ] + 0xbd3af235, 10 );
  581.     MD5_DO( F4, c, d, a, b, p_input[  2 ] + 0x2ad7d2bb, 15 );
  582.     MD5_DO( F4, b, c, d, a, p_input[  9 ] + 0xeb86d391, 21 );
  583.     p_md5->p_digest[ 0 ] += a;
  584.     p_md5->p_digest[ 1 ] += b;
  585.     p_md5->p_digest[ 2 ] += c;
  586.     p_md5->p_digest[ 3 ] += d;
  587. }
  588. #endif
  589. /*****************************************************************************
  590.  * InitShuffle: initialise a shuffle structure
  591.  *****************************************************************************
  592.  * This function initialises tables in the p_shuffle structure that will be
  593.  * used later by DoShuffle. The only external parameter is p_sys_key.
  594.  *****************************************************************************/
  595. static void InitShuffle( struct shuffle_s *p_shuffle, uint32_t *p_sys_key,
  596.                          uint32_t i_version )
  597. {
  598.     char p_secret1[] = "Tv!*";
  599.     static const char p_secret2[] = "____v8rhvsaAvOKM____FfUH%798=[;."
  600.                                     "____f8677680a634____ba87fnOIf)(*";
  601.     unsigned int i;
  602.     p_shuffle->i_version = i_version;
  603.     /* Fill p_commands using the key and a secret seed */
  604.     for( i = 0; i < 20; i++ )
  605.     {
  606.         struct md5_s md5;
  607.         int32_t i_hash;
  608.         InitMD5( &md5 );
  609.         AddMD5( &md5, (const uint8_t *)p_sys_key, 16 );
  610.         AddMD5( &md5, (const uint8_t *)p_secret1, 4 );
  611.         EndMD5( &md5 );
  612.         p_secret1[ 3 ]++;
  613.         REVERSE( md5.p_digest, 1 );
  614.         i_hash = ((int32_t)U32_AT(md5.p_digest)) % 1024;
  615.         p_shuffle->p_commands[ i ] = i_hash < 0 ? i_hash * -1 : i_hash;
  616.     }
  617.     /* Fill p_bordel with completely meaningless initial values. */
  618.     memcpy( p_shuffle->p_bordel, p_secret2, 64 );
  619.     for( i = 0; i < 4; i++ )
  620.     {
  621.         p_shuffle->p_bordel[ 4 * i ] = U32_AT(p_sys_key + i);
  622.         REVERSE( p_shuffle->p_bordel + 4 * i + 1, 3 );
  623.     }
  624. }
  625. /*****************************************************************************
  626.  * DoShuffle: shuffle buffer
  627.  *****************************************************************************
  628.  * This is so ugly and uses so many MD5 checksums that it is most certainly
  629.  * one-way, though why it needs to be so complicated is beyond me.
  630.  *****************************************************************************/
  631. static void DoShuffle( struct shuffle_s *p_shuffle,
  632.                        uint32_t *p_buffer, uint32_t i_size )
  633. {
  634.     struct md5_s md5;
  635.     uint32_t p_big_bordel[ 16 ];
  636.     uint32_t *p_bordel = p_shuffle->p_bordel;
  637.     unsigned int i;
  638.     static const uint32_t p_secret3[] =
  639.     {
  640.         0xAAAAAAAA, 0x01757700, 0x00554580, 0x01724500, 0x00424580,
  641.         0x01427700, 0x00000080, 0xC1D59D01, 0x80144981, 0x815C8901,
  642.         0x80544981, 0x81D45D01, 0x00000080, 0x81A3BB03, 0x00A2AA82,
  643.         0x01A3BB03, 0x0022A282, 0x813BA202, 0x00000080, 0x6D575737,
  644.         0x4A5275A5, 0x6D525725, 0x4A5254A5, 0x6B725437, 0x00000080,
  645.         0xD5DDB938, 0x5455A092, 0x5D95A013, 0x4415A192, 0xC5DD393A,
  646.         0x00000080, 0x55555555
  647.     };
  648.     static const uint32_t i_secret3 = sizeof(p_secret3)/sizeof(p_secret3[0]);
  649.     static const char p_secret4[] =
  650.         "pbclevtug (p) Nccyr Pbzchgre, Vap.  Nyy Evtugf Erfreirq.";
  651.     static const uint32_t i_secret4 = sizeof(p_secret4)/sizeof(p_secret4[0]); /* It include the terminal '' */
  652.     /* Using the MD5 hash of a memory block is probably not one-way enough
  653.      * for the iTunes people. This function randomises p_bordel depending on
  654.      * the values in p_commands to make things even more messy in p_bordel. */
  655.     for( i = 0; i < 20; i++ )
  656.     {
  657.         uint8_t i_command, i_index;
  658.         if( !p_shuffle->p_commands[ i ] )
  659.         {
  660.             continue;
  661.         }
  662.         i_command = (p_shuffle->p_commands[ i ] & 0x300) >> 8;
  663.         i_index = p_shuffle->p_commands[ i ] & 0xff;
  664.         switch( i_command )
  665.         {
  666.         case 0x3:
  667.             p_bordel[ i_index & 0xf ] = p_bordel[ i_index >> 4 ]
  668.                                       + p_bordel[ ((i_index + 0x10) >> 4) & 0xf ];
  669.             break;
  670.         case 0x2:
  671.             p_bordel[ i_index >> 4 ] ^= p_shuffle_xor[ 0xff - i_index ];
  672.             break;
  673.         case 0x1:
  674.             p_bordel[ i_index >> 4 ] -= p_shuffle_sub[ 0xff - i_index ];
  675.             break;
  676.         default:
  677.             p_bordel[ i_index >> 4 ] += p_shuffle_add[ 0xff - i_index ];
  678.             break;
  679.         }
  680.     }
  681.     if( p_shuffle->i_version == 0x01000300 )
  682.     {
  683.         DoExtShuffle( p_bordel );
  684.     }
  685.     /* Convert our newly randomised p_bordel to big endianness and take
  686.      * its MD5 hash. */
  687.     InitMD5( &md5 );
  688.     for( i = 0; i < 16; i++ )
  689.     {
  690.         p_big_bordel[ i ] = U32_AT(p_bordel + i);
  691.     }
  692.     AddMD5( &md5, (const uint8_t *)p_big_bordel, 64 );
  693.     if( p_shuffle->i_version == 0x01000300 )
  694.     {
  695.         uint32_t p_tmp3[i_secret3];
  696.         char     p_tmp4[i_secret4];
  697.         memcpy( p_tmp3, p_secret3, sizeof(p_secret3) );
  698.         REVERSE( p_tmp3, i_secret3 );
  699. #define ROT13(c) (((c)>='A'&&(c)<='Z')?(((c)-'A'+13)%26)+'A':
  700.                       ((c)>='a'&&(c)<='z')?(((c)-'a'+13)%26)+'a':c)
  701.         for( uint32_t i = 0; i < i_secret4; i++ )
  702.             p_tmp4[i] = ROT13( p_secret4[i] );
  703. #undef ROT13
  704.         AddMD5( &md5, (const uint8_t *)p_tmp3, sizeof(p_secret3) );
  705.         AddMD5( &md5, (const uint8_t *)p_tmp4, i_secret4 );
  706.     }
  707.     EndMD5( &md5 );
  708.     /* XOR our buffer with the computed checksum */
  709.     for( i = 0; i < i_size; i++ )
  710.     {
  711.         p_buffer[ i ] ^= md5.p_digest[ i ];
  712.     }
  713. }
  714. /*****************************************************************************
  715.  * DoExtShuffle: extended shuffle
  716.  *****************************************************************************
  717.  * This is even uglier.
  718.  *****************************************************************************/
  719. static void DoExtShuffle( uint32_t * p_bordel )
  720. {
  721.     uint32_t i_ret;
  722.     i_ret = FirstPass( p_bordel );
  723.     SecondPass( p_bordel, i_ret );
  724.     ThirdPass( p_bordel );
  725.     FourthPass( p_bordel );
  726. }
  727. static uint32_t FirstPass( uint32_t * p_bordel )
  728. {
  729.     uint32_t i, i_cmd, i_ret = 5;
  730.     TinyShuffle1( p_bordel );
  731.     for( ; ; )
  732.     {
  733.         for( ; ; )
  734.         {
  735.             p_bordel[ 1 ] += 0x10000000;
  736.             p_bordel[ 3 ] += 0x12777;
  737.             if( (p_bordel[ 10 ] & 1) && i_ret )
  738.             {
  739.                 i_ret--;
  740.                 p_bordel[ 1 ] -= p_bordel[ 2 ];
  741.                 p_bordel[ 11 ] += p_bordel[ 12 ];
  742.                 break;
  743.             }
  744.             if( (p_bordel[ 1 ] + p_bordel[ 2 ]) >= 0x7D0 )
  745.             {
  746.                 switch( ((p_bordel[ 3 ] ^ 0x567F) >> 2) & 7 )
  747.                 {
  748.                     case 0:
  749.                         for( i = 0; i < 3; i++ )
  750.                         {
  751.                             if( p_bordel[ i + 10 ] > 0x4E20 )
  752.                             {
  753.                                 p_bordel[ i + 1 ] += p_bordel[ i + 2 ];
  754.                             }
  755.                         }
  756.                         break;
  757.                     case 4:
  758.                         p_bordel[ 1 ] -= p_bordel[ 2 ];
  759.                         /* no break */
  760.                     case 3:
  761.                         p_bordel[ 11 ] += p_bordel[ 12 ];
  762.                         break;
  763.                     case 6:
  764.                         p_bordel[ 3 ] ^= p_bordel[ 4 ];
  765.                         /* no break */
  766.                     case 8:
  767.                         p_bordel[ 13 ] &= p_bordel[ 14 ];
  768.                         /* no break */
  769.                     case 1:
  770.                         p_bordel[ 0 ] |= p_bordel[ 1 ];
  771.                         if( i_ret )
  772.                         {
  773.                             return i_ret;
  774.                         }
  775.                         break;
  776.                 }
  777.                 break;
  778.             }
  779.         }
  780.         for( i = 0, i_cmd = 0; i < 16; i++ )
  781.         {
  782.             if( p_bordel[ i ] < p_bordel[ i_cmd ] )
  783.             {
  784.                 i_cmd = i;
  785.             }
  786.         }
  787.         if( i_ret && i_cmd != 5 )
  788.         {
  789.             i_ret--;
  790.         }
  791.         else
  792.         {
  793.             if( i_cmd == 5 )
  794.             {
  795.                 p_bordel[ 8 ] &= p_bordel[ 6 ] >> 1;
  796.                 p_bordel[ 3 ] <<= 1;
  797.             }
  798.             for( i = 0; i < 3; i++ )
  799.             {
  800.                 p_bordel[ 11 ] += 1;
  801.                 if( p_bordel[ 11 ] & 5 )
  802.                 {
  803.                     p_bordel[ 8 ] += p_bordel[ 9 ];
  804.                 }
  805.                 else if( i_ret )
  806.                 {
  807.                     i_ret--;
  808.                     i_cmd = 3;
  809.                     goto break2;
  810.                 }
  811.             }
  812.             i_cmd = (p_bordel[ 15 ] + 0x93) >> 3;
  813.             if( p_bordel[ 15 ] & 0x100 )
  814.             {
  815.                 i_cmd ^= 0xDEAD;
  816.             }
  817.         }
  818.         switch( i_cmd & 3 )
  819.         {
  820.             case 0:
  821.                 while( p_bordel[ 11 ] & 1 )
  822.                 {
  823.                     p_bordel[ 11 ] >>= 1;
  824.                     p_bordel[ 12 ] += 1;
  825.                 }
  826.                 /* no break */
  827.             case 2:
  828.                 p_bordel[ 14 ] -= 0x19FE;
  829.                 break;
  830.             case 3:
  831.                 if( i_ret )
  832.                 {
  833.                     i_ret--;
  834.                     p_bordel[ 5 ] += 5;
  835.                     continue;
  836.                 }
  837.                 break;
  838.         }
  839.         i_cmd = ((p_bordel[ 3 ] + p_bordel[ 4 ] + 10) >> 1) - p_bordel[ 4 ];
  840.         break;
  841.     }
  842. break2:
  843.     switch( i_cmd & 3 )
  844.     {
  845.         case 0:
  846.             p_bordel[ 14 ] >>= 1;
  847.             break;
  848.         case 1:
  849.             p_bordel[ 5 ] <<= 2;
  850.             break;
  851.         case 2:
  852.             p_bordel[ 12 ] |= 5;
  853.             break;
  854.         case 3:
  855.             p_bordel[ 15 ] &= 0x55;
  856.             if( i_ret )
  857.             {
  858.                 p_bordel[ 2 ] &= 0xB62FC;
  859.                 return i_ret;
  860.             }
  861.             break;
  862.     }
  863.     TinyShuffle2( p_bordel );
  864.     return i_ret;
  865. }
  866. static void SecondPass( uint32_t * p_bordel, uint32_t i_tmp )
  867. {
  868.     uint32_t i, i_cmd, i_jc = 5;
  869.     TinyShuffle3( p_bordel );
  870.     for( i = 0, i_cmd = 0; i < 16; i++ )
  871.     {
  872.         if( p_bordel[ i ] > p_bordel[ i_cmd ] )
  873.         {
  874.             i_cmd = i;
  875.         }
  876.     }
  877.     switch( i_cmd )
  878.     {
  879.         case 0:
  880.             if( p_bordel[ 1 ] < p_bordel[ 8 ] )
  881.             {
  882.                 p_bordel[ 5 ] += 1;
  883.             }
  884.             break;
  885.         case 4:
  886.             if( (p_bordel[ 9 ] & 0x7777) == 0x3333 )
  887.             {
  888.                 p_bordel[ 5 ] -= 1;
  889.             }
  890.             else
  891.             {
  892.                 i_jc--;
  893.                 if( p_bordel[ 1 ] < p_bordel[ 8 ] )
  894.                 {
  895.                     p_bordel[ 5 ] += 1;
  896.                 }
  897.                 break;
  898.             }
  899.             /* no break */
  900.         case 7:
  901.             p_bordel[ 2 ] -= 1;
  902.             p_bordel[ 1 ] -= p_bordel[ 5 ];
  903.             for( i = 0; i < 3; i++ )
  904.             {
  905.                 switch( p_bordel[ 1 ] & 3 )
  906.                 {
  907.                     case 0:
  908.                         p_bordel[ 1 ] += 1;
  909.                         /* no break */
  910.                     case 1:
  911.                         p_bordel[ 3 ] -= 8;
  912.                         break;
  913.                     case 2:
  914.                         p_bordel[ 13 ] &= 0xFEFEFEF7;
  915.                         break;
  916.                     case 3:
  917.                         p_bordel[ 8 ] |= 0x80080011;
  918.                         break;
  919.                 }
  920.             }
  921.             return;
  922.         case 10:
  923.             p_bordel[ 4 ] -= 1;
  924.             p_bordel[ 5 ] += 1;
  925.             p_bordel[ 6 ] -= 1;
  926.             p_bordel[ 7 ] += 1;
  927.             break;
  928.         default:
  929.             p_bordel[ 15 ] ^= 0x18547EFF;
  930.             break;
  931.     }
  932.     for( i = 3; i--; )
  933.     {
  934.         switch( ( p_bordel[ 12 ] + p_bordel[ 13 ] + p_bordel[ 6 ] ) % 5 )
  935.         {
  936.             case 0:
  937.                 p_bordel[ 12 ] -= 1;
  938.                 /* no break */
  939.             case 1:
  940.                 p_bordel[ 12 ] -= 1;
  941.                 p_bordel[ 13 ] += 1;
  942.                 break;
  943.             case 2:
  944.                 p_bordel[ 13 ] += 4;
  945.                 /* no break */
  946.             case 3:
  947.                 p_bordel[ 12 ] -= 1;
  948.                 break;
  949.             case 4:
  950.                 i_jc--;
  951.                 p_bordel[ 5 ] += 1;
  952.                 p_bordel[ 6 ] -= 1;
  953.                 p_bordel[ 7 ] += 1;
  954.                 i = 3; /* Restart the whole loop */
  955.                 break;
  956.         }
  957.     }
  958.     TinyShuffle4( p_bordel );
  959.     for( ; ; )
  960.     {
  961.         TinyShuffle5( p_bordel );
  962.         switch( ( p_bordel[ 2 ] * 2 + 15 ) % 5 )
  963.         {
  964.             case 0:
  965.                 if( ( p_bordel[ 3 ] + i_tmp ) <=
  966.                     ( p_bordel[ 1 ] + p_bordel[ 15 ] ) )
  967.                 {
  968.                     p_bordel[ 3 ] += 1;
  969.                 }
  970.                 break;
  971.             case 4:
  972.                 p_bordel[ 10 ] -= 0x13;
  973.                 break;
  974.             case 3:
  975.                 p_bordel[ 5 ] >>= 2;
  976.                 break;
  977.         }
  978.         if( !( p_bordel[ 2 ] & 1 ) || i_jc == 0 )
  979.         {
  980.             break;
  981.         }
  982.         i_jc--;
  983.         p_bordel[ 2 ] += 0x13;
  984.         p_bordel[ 12 ] += 1;
  985.     }
  986.     p_bordel[ 2 ] &= 0x10076000;
  987. }
  988. static void ThirdPass( uint32_t * p_bordel )
  989. {
  990.     uint32_t i_cmd;
  991.     i_cmd = ((p_bordel[ 7 ] + p_bordel[ 14 ] + 10) >> 1) - p_bordel[ 14 ];
  992.     i_cmd = i_cmd % 10;
  993.     switch( i_cmd )
  994.     {
  995.         case 0:
  996.             p_bordel[ 1 ] <<= 1;
  997.             p_bordel[ 2 ] <<= 2;
  998.             p_bordel[ 3 ] <<= 3;
  999.             break;
  1000.         case 6:
  1001.             p_bordel[ i_cmd + 3 ] &= 0x5EDE36B;
  1002.             p_bordel[ 5 ] += p_bordel[ 8 ];
  1003.             p_bordel[ 4 ] += p_bordel[ 7 ];
  1004.             p_bordel[ 3 ] += p_bordel[ 6 ];
  1005.             p_bordel[ 2 ] += p_bordel[ 5 ];
  1006.             /* no break */
  1007.         case 2:
  1008.             p_bordel[ 1 ] += p_bordel[ 4 ];
  1009.             p_bordel[ 0 ] += p_bordel[ 3 ];
  1010.             TinyShuffle6( p_bordel );
  1011.             return; /* jc = 4 */
  1012.         case 3:
  1013.             if( (p_bordel[ 11 ] & p_bordel[ 2 ]) > 0x211B )
  1014.             {
  1015.                 p_bordel[ 6 ] += 1;
  1016.             }
  1017.             break;
  1018.         case 4:
  1019.             p_bordel[ 7 ] += 1;
  1020.             /* no break */
  1021.         case 5:
  1022.             p_bordel[ 9 ] ^= p_bordel[ 2 ];
  1023.             break;
  1024.         case 7:
  1025.             p_bordel[ 2 ] ^= (p_bordel[ 1 ] & p_bordel[ 13 ]);
  1026.             break;
  1027.         case 8:
  1028.             p_bordel[ 0 ] -= p_bordel[ 11 ] & p_bordel[ 15 ];
  1029.             return; /* jc = 4 */
  1030.         case 9:
  1031.             p_bordel[ 6 ] >>= (p_bordel[ 14 ] & 3);
  1032.             break;
  1033.     }
  1034.     SWAP( p_bordel[ 0 ], p_bordel[ 10 ] );
  1035.     TinyShuffle6( p_bordel );
  1036.     return; /* jc = 5 */
  1037. }
  1038. static void FourthPass( uint32_t * p_bordel )
  1039. {
  1040.     uint32_t i, j;
  1041.     TinyShuffle7( p_bordel );
  1042.     switch( p_bordel[ 5 ] % 5)
  1043.     {
  1044.         case 0:
  1045.             p_bordel[ 0 ] += 1;
  1046.             break;
  1047.         case 2:
  1048.             p_bordel[ 11 ] ^= (p_bordel[ 3 ] + p_bordel[ 6 ] + p_bordel[ 8 ]);
  1049.             break;
  1050.         case 3:
  1051.             for( i = 4; i < 15 && (p_bordel[ i ] & 5) == 0; i++ )
  1052.             {
  1053.                 SWAP( p_bordel[ i ], p_bordel[ 15 - i ] );
  1054.             }
  1055.             break;
  1056.         case 4:
  1057.             p_bordel[ 12 ] -= 1;
  1058.             p_bordel[ 13 ] += 1;
  1059.             p_bordel[ 2 ] -= 0x64;
  1060.             p_bordel[ 3 ] += 0x64;
  1061.             TinyShuffle8( p_bordel );
  1062.             return;
  1063.     }
  1064.     for( i = 0, j = 0; i < 16; i++ )
  1065.     {
  1066.         if( p_bordel[ i ] > p_bordel[ j ] )
  1067.         {
  1068.             j = i;
  1069.         }
  1070.     }
  1071.     switch( p_bordel[ j ] % 100 )
  1072.     {
  1073.         case 0:
  1074.             SWAP( p_bordel[ 0 ], p_bordel[ j ] );
  1075.             break;
  1076.         case 8:
  1077.             p_bordel[ 1 ] >>= 1;
  1078.             p_bordel[ 2 ] <<= 1;
  1079.             p_bordel[ 14 ] >>= 3;
  1080.             p_bordel[ 15 ] <<= 4;
  1081.             break;
  1082.         case 57:
  1083.             p_bordel[ j ] += p_bordel[ 13 ];
  1084.             break;
  1085.         case 76:
  1086.             p_bordel[ 1 ] += 0x20E;
  1087.             p_bordel[ 5 ] += 0x223D;
  1088.             p_bordel[ 13 ] -= 0x576;
  1089.             p_bordel[ 15 ] += 0x576;
  1090.             return;
  1091.         case 91:
  1092.             p_bordel[ 2 ] -= 0x64;
  1093.             p_bordel[ 3 ] += 0x64;
  1094.             p_bordel[ 12 ] -= 1;
  1095.             p_bordel[ 13 ] += 1;
  1096.             break;
  1097.         case 99:
  1098.             p_bordel[ 0 ] += 1;
  1099.             p_bordel[ j ] += p_bordel[ 13 ];
  1100.             break;
  1101.     }
  1102.     TinyShuffle8( p_bordel );
  1103. }
  1104. /*****************************************************************************
  1105.  * TinyShuffle[12345678]: tiny shuffle subroutines
  1106.  *****************************************************************************
  1107.  * These standalone functions are little helpers for the shuffling process.
  1108.  *****************************************************************************/
  1109. static void TinyShuffle1( uint32_t * p_bordel )
  1110. {
  1111.     uint32_t i_cmd = (p_bordel[ 5 ] + 10) >> 2;
  1112.     if( p_bordel[ 5 ] > 0x7D0 )
  1113.     {
  1114.         i_cmd -= 0x305;
  1115.     }
  1116.     switch( i_cmd & 3 )
  1117.     {
  1118.         case 0:
  1119.             p_bordel[ 5 ] += 5;
  1120.             break;
  1121.         case 1:
  1122.             p_bordel[ 4 ] -= 1;
  1123.             break;
  1124.         case 2:
  1125.             if( p_bordel[ 4 ] & 5 )
  1126.             {
  1127.                 p_bordel[ 1 ] ^= 0x4D;
  1128.             }
  1129.             /* no break */
  1130.         case 3:
  1131.             p_bordel[ 12 ] += 5;
  1132.             break;
  1133.     }
  1134. }
  1135. static void TinyShuffle2( uint32_t * p_bordel )
  1136. {
  1137.     uint32_t i, j;
  1138.     for( i = 0, j = 0; i < 16; i++ )
  1139.     {
  1140.         if( (p_bordel[ i ] & 0x777) > (p_bordel[ j ] & 0x777) )
  1141.         {
  1142.             j = i;
  1143.         }
  1144.     }
  1145.     if( j > 5 )
  1146.     {
  1147.         for( ; j < 15; j++ )
  1148.         {
  1149.             p_bordel[ j ] += p_bordel[ j + 1 ];
  1150.         }
  1151.     }
  1152.     else
  1153.     {
  1154.         p_bordel[ 2 ] &= 0xB62FC;
  1155.     }
  1156. }
  1157. static void TinyShuffle3( uint32_t * p_bordel )
  1158. {
  1159.     uint32_t i_cmd = p_bordel[ 6 ] + 0x194B;
  1160.     if( p_bordel[ 6 ] > 0x2710 )
  1161.     {
  1162.         i_cmd >>= 1;
  1163.     }
  1164.     switch( i_cmd & 3 )
  1165.     {
  1166.         case 1:
  1167.             p_bordel[ 3 ] += 0x19FE;
  1168.             break;
  1169.         case 2:
  1170.             p_bordel[ 7 ] -= p_bordel[ 3 ] >> 2;
  1171.             /* no break */
  1172.         case 0:
  1173.             p_bordel[ 5 ] ^= 0x248A;
  1174.             break;
  1175.     }
  1176. }
  1177. static void TinyShuffle4( uint32_t * p_bordel )
  1178. {
  1179.     uint32_t i, j;
  1180.     for( i = 0, j = 0; i < 16; i++ )
  1181.     {
  1182.         if( p_bordel[ i ] < p_bordel[ j ] )
  1183.         {
  1184.             j = i;
  1185.         }
  1186.     }
  1187.     if( (p_bordel[ j ] % (j + 1)) > 10 )
  1188.     {
  1189.         p_bordel[ 1 ] -= 1;
  1190.         p_bordel[ 2 ] += 0x13;
  1191.         p_bordel[ 12 ] += 1;
  1192.     }
  1193. }
  1194. static void TinyShuffle5( uint32_t * p_bordel )
  1195. {
  1196.     uint32_t i;
  1197.     p_bordel[ 2 ] &= 0x7F3F;
  1198.     for( i = 0; i < 5; i++ )
  1199.     {
  1200.         switch( ( p_bordel[ 2 ] + 10 + i ) % 5 )
  1201.         {
  1202.             case 0:
  1203.                 p_bordel[ 12 ] &= p_bordel[ 2 ];
  1204.                 /* no break */
  1205.             case 1:
  1206.                 p_bordel[ 3 ] ^= p_bordel[ 15 ];
  1207.                 break;
  1208.             case 2:
  1209.                 p_bordel[ 15 ] += 0x576;
  1210.                 /* no break */
  1211.             case 3:
  1212.                 p_bordel[ 7 ] -= 0x2D;
  1213.                 /* no break */
  1214.             case 4:
  1215.                 p_bordel[ 1 ] <<= 1;
  1216.                 break;
  1217.         }
  1218.     }
  1219. }
  1220. static void TinyShuffle6( uint32_t * p_bordel )
  1221. {
  1222.     uint32_t i, j;
  1223.     for( i = 0; i < 8; i++ )
  1224.     {
  1225.         j = p_bordel[ 3 ] & 0x7514 ? 5 : 7;
  1226.         SWAP( p_bordel[ i ], p_bordel[ i + j ] );
  1227.     }
  1228. }
  1229. static void TinyShuffle7( uint32_t * p_bordel )
  1230. {
  1231.     uint32_t i;
  1232.     i = (((p_bordel[ 9 ] + p_bordel[ 15 ] + 12) >> 2) - p_bordel[ 4 ]) & 7;
  1233.     while( i-- )
  1234.     {
  1235.         SWAP( p_bordel[ i ], p_bordel[ i + 3 ] );
  1236.     }
  1237.     SWAP( p_bordel[ 1 ], p_bordel[ 10 ] );
  1238. }
  1239. static void TinyShuffle8( uint32_t * p_bordel )
  1240. {
  1241.     uint32_t i;
  1242.     i = (p_bordel[ 0 ] & p_bordel[ 6 ]) & 0xF;
  1243.     switch( p_bordel[ i ] % 1000 )
  1244.     {
  1245.         case 7:
  1246.             if( (p_bordel[ i ] & 0x777) > (p_bordel[ 7 ] & 0x5555) )
  1247.             {
  1248.                 p_bordel[ i ] ^= p_bordel[ 5 ] & p_bordel[ 3 ];
  1249.             }
  1250.             break;
  1251.         case 19:
  1252.             p_bordel[ 15 ] &= 0x5555;
  1253.             break;
  1254.         case 93:
  1255.             p_bordel[ i ] ^= p_bordel[ 15 ];
  1256.             break;
  1257.         case 100:
  1258.             SWAP( p_bordel[ 0 ], p_bordel[ 3 ] );
  1259.             SWAP( p_bordel[ 1 ], p_bordel[ 6 ] );
  1260.             SWAP( p_bordel[ 3 ], p_bordel[ 6 ] );
  1261.             SWAP( p_bordel[ 4 ], p_bordel[ 9 ] );
  1262.             SWAP( p_bordel[ 5 ], p_bordel[ 8 ] );
  1263.             SWAP( p_bordel[ 6 ], p_bordel[ 7 ] );
  1264.             SWAP( p_bordel[ 13 ], p_bordel[ 14 ] );
  1265.             break;
  1266.         case 329:
  1267.             p_bordel[ i ] += p_bordel[ 1 ] ^ 0x80080011;
  1268.             p_bordel[ i ] += p_bordel[ 2 ] ^ 0xBEEFDEAD;
  1269.             p_bordel[ i ] += p_bordel[ 3 ] ^ 0x8765F444;
  1270.             p_bordel[ i ] += p_bordel[ 4 ] ^ 0x78145326;
  1271.             break;
  1272.         case 567:
  1273.             p_bordel[ 12 ] -= p_bordel[ i ];
  1274.             p_bordel[ 13 ] += p_bordel[ i ];
  1275.             break;
  1276.         case 612:
  1277.             p_bordel[ i ] += p_bordel[ 1 ];
  1278.             p_bordel[ i ] -= p_bordel[ 7 ];
  1279.             p_bordel[ i ] -= p_bordel[ 8 ];
  1280.             p_bordel[ i ] += p_bordel[ 9 ];
  1281.             p_bordel[ i ] += p_bordel[ 13 ];
  1282.             break;
  1283.         case 754:
  1284.             i = __MIN( i, 12 );
  1285.             p_bordel[ i + 1 ] >>= 1;
  1286.             p_bordel[ i + 2 ] <<= 4;
  1287.             p_bordel[ i + 3 ] >>= 3;
  1288.             break;
  1289.         case 777:
  1290.             p_bordel[ 1 ] += 0x20E;
  1291.             p_bordel[ 5 ] += 0x223D;
  1292.             p_bordel[ 13 ] -= 0x576;
  1293.             p_bordel[ 15 ] += 0x576;
  1294.             break;
  1295.         case 981:
  1296.             if( (p_bordel[ i ] ^ 0x8765F441) < 0x2710 )
  1297.             {
  1298.                 SWAP( p_bordel[ 0 ], p_bordel[ 1 ] );
  1299.             }
  1300.             else
  1301.             {
  1302.                 SWAP( p_bordel[ 1 ], p_bordel[ 11 ] );
  1303.             }
  1304.             break;
  1305.     }
  1306. }
  1307. /*****************************************************************************
  1308.  * GetSystemKey: get the system key
  1309.  *****************************************************************************
  1310.  * Compute the system key from various system information, see HashSystemInfo.
  1311.  *****************************************************************************/
  1312. static int GetSystemKey( uint32_t *p_sys_key, bool b_ipod )
  1313. {
  1314.     static const char p_secret5[ 8 ] = "YuaFlafu";
  1315.     static const char p_secret6[ 8 ] = "zPif98ga";
  1316.     struct md5_s md5;
  1317.     int64_t i_ipod_id;
  1318.     uint32_t p_system_hash[ 4 ];
  1319.     /* Compute the MD5 hash of our system info */
  1320.     if( ( !b_ipod && HashSystemInfo( p_system_hash ) ) ||
  1321.         (  b_ipod && GetiPodID( &i_ipod_id ) ) )
  1322.     {
  1323.         return -1;
  1324.     }
  1325.     /* Combine our system info hash with additional secret data. The resulting
  1326.      * MD5 hash will be our system key. */
  1327.     InitMD5( &md5 );
  1328.     AddMD5( &md5, (const uint8_t*)p_secret5, 8 );
  1329.     if( !b_ipod )
  1330.     {
  1331.         AddMD5( &md5, (const uint8_t *)p_system_hash, 6 );
  1332.         AddMD5( &md5, (const uint8_t *)p_system_hash, 6 );
  1333.         AddMD5( &md5, (const uint8_t *)p_system_hash, 6 );
  1334.         AddMD5( &md5, (const uint8_t *)p_secret6, 8 );
  1335.     }
  1336.     else
  1337.     {
  1338.         i_ipod_id = U64_AT(&i_ipod_id);
  1339.         AddMD5( &md5, (const uint8_t *)&i_ipod_id, sizeof(i_ipod_id) );
  1340.         AddMD5( &md5, (const uint8_t *)&i_ipod_id, sizeof(i_ipod_id) );
  1341.         AddMD5( &md5, (const uint8_t *)&i_ipod_id, sizeof(i_ipod_id) );
  1342.     }
  1343.     EndMD5( &md5 );
  1344.     memcpy( p_sys_key, md5.p_digest, 16 );
  1345.     return 0;
  1346. }
  1347. #ifdef WIN32
  1348. #   define DRMS_DIRNAME "drms"
  1349. #else
  1350. #   define DRMS_DIRNAME ".drms"
  1351. #endif
  1352. /*****************************************************************************
  1353.  * WriteUserKey: write the user key to hard disk
  1354.  *****************************************************************************
  1355.  * Write the user key to the hard disk so that it can be reused later or used
  1356.  * on operating systems other than Win32.
  1357.  *****************************************************************************/
  1358. static int WriteUserKey( void *_p_drms, uint32_t *p_user_key )
  1359. {
  1360.     struct drms_s *p_drms = (struct drms_s *)_p_drms;
  1361.     FILE *file;
  1362.     int i_ret = -1;
  1363.     char psz_path[ PATH_MAX ];
  1364.     snprintf( psz_path, PATH_MAX - 1,
  1365.               "%s/" DRMS_DIRNAME, p_drms->psz_homedir );
  1366. #if defined( WIN32 )
  1367.     if( !mkdir( psz_path ) || errno == EEXIST )
  1368. #else
  1369.     if( !mkdir( psz_path, 0755 ) || errno == EEXIST )
  1370. #endif
  1371.     {
  1372.         snprintf( psz_path, PATH_MAX - 1, "%s/" DRMS_DIRNAME "/%08X.%03d",
  1373.                   p_drms->psz_homedir, p_drms->i_user, p_drms->i_key );
  1374.         file = utf8_fopen( psz_path, "wb" );
  1375.         if( file != NULL )
  1376.         {
  1377.             i_ret = fwrite( p_user_key, sizeof(uint32_t),
  1378.                             4, file ) == 4 ? 0 : -1;
  1379.             fclose( file );
  1380.         }
  1381.     }
  1382.     return i_ret;
  1383. }
  1384. /*****************************************************************************
  1385.  * ReadUserKey: read the user key from hard disk
  1386.  *****************************************************************************
  1387.  * Retrieve the user key from the hard disk if available.
  1388.  *****************************************************************************/
  1389. static int ReadUserKey( void *_p_drms, uint32_t *p_user_key )
  1390. {
  1391.     struct drms_s *p_drms = (struct drms_s *)_p_drms;
  1392.     FILE *file;
  1393.     int i_ret = -1;
  1394.     char psz_path[ PATH_MAX ];
  1395.     snprintf( psz_path, PATH_MAX - 1,
  1396.               "%s/" DRMS_DIRNAME "/%08X.%03d", p_drms->psz_homedir,
  1397.               p_drms->i_user, p_drms->i_key );
  1398.     file = utf8_fopen( psz_path, "rb" );
  1399.     if( file != NULL )
  1400.     {
  1401.         i_ret = fread( p_user_key, sizeof(uint32_t),
  1402.                        4, file ) == 4 ? 0 : -1;
  1403.         fclose( file );
  1404.     }
  1405.     return i_ret;
  1406. }
  1407. /*****************************************************************************
  1408.  * GetUserKey: get the user key
  1409.  *****************************************************************************
  1410.  * Retrieve the user key from the hard disk if available, otherwise generate
  1411.  * it from the system key. If the key could be successfully generated, write
  1412.  * it to the hard disk for future use.
  1413.  *****************************************************************************/
  1414. static int GetUserKey( void *_p_drms, uint32_t *p_user_key )
  1415. {
  1416.     static const char p_secret7[] = "mUfnpognadfgf873";
  1417.     struct drms_s *p_drms = (struct drms_s *)_p_drms;
  1418.     struct aes_s aes;
  1419.     struct shuffle_s shuffle;
  1420.     uint32_t i, y;
  1421.     uint32_t *p_sci_data = NULL;
  1422.     uint32_t i_user, i_key;
  1423.     uint32_t p_sys_key[ 4 ];
  1424.     uint32_t i_sci_size = 0, i_blocks, i_remaining;
  1425.     uint32_t *p_sci0, *p_sci1, *p_buffer;
  1426.     uint32_t p_sci_key[ 4 ];
  1427.     char *psz_ipod;
  1428.     int i_ret = -5;
  1429.     if( ReadUserKey( p_drms, p_user_key ) == 0 )
  1430.     {
  1431.         REVERSE( p_user_key, 4 );
  1432.         return 0;
  1433.     }
  1434.     psz_ipod = getenv( "IPOD" );
  1435.     if( GetSystemKey( p_sys_key, psz_ipod ? true : false ) )
  1436.     {
  1437.         return -3;
  1438.     }
  1439.     if( GetSCIData( psz_ipod, &p_sci_data, &i_sci_size ) )
  1440.     {
  1441.         return -4;
  1442.     }
  1443.     /* Phase 1: unscramble the SCI data using the system key and shuffle
  1444.      *          it using DoShuffle(). */
  1445.     /* Skip the first 4 bytes (some sort of header). Decrypt the rest. */
  1446.     i_blocks = (i_sci_size - 4) / 16;
  1447.     i_remaining = (i_sci_size - 4) - (i_blocks * 16);
  1448.     p_buffer = p_sci_data + 1;
  1449.     /* Decrypt and shuffle our data at the same time */
  1450.     InitAES( &aes, p_sys_key );
  1451.     REVERSE( p_sys_key, 4 );
  1452.     REVERSE( p_sci_data, 1 );
  1453.     InitShuffle( &shuffle, p_sys_key, p_sci_data[ 0 ] );
  1454.     memcpy( p_sci_key, p_secret7, 16 );
  1455.     REVERSE( p_sci_key, 4 );
  1456.     while( i_blocks-- )
  1457.     {
  1458.         uint32_t p_tmp[ 4 ];
  1459.         REVERSE( p_buffer, 4 );
  1460.         DecryptAES( &aes, p_tmp, p_buffer );
  1461.         BlockXOR( p_tmp, p_sci_key, p_tmp );
  1462.         /* Use the previous scrambled data as the key for next block */
  1463.         memcpy( p_sci_key, p_buffer, 16 );
  1464.         /* Shuffle the decrypted data using a custom routine */
  1465.         DoShuffle( &shuffle, p_tmp, 4 );
  1466.         /* Copy this block back to p_buffer */
  1467.         memcpy( p_buffer, p_tmp, 16 );
  1468.         p_buffer += 4;
  1469.     }
  1470.     if( i_remaining >= 4 )
  1471.     {
  1472.         REVERSE( p_buffer, i_remaining / 4 );
  1473.         DoShuffle( &shuffle, p_buffer, i_remaining / 4 );
  1474.     }
  1475.     /* Phase 2: look for the user key in the generated data. I must admit I
  1476.      *          do not understand what is going on here, because it almost
  1477.      *          looks like we are browsing data that makes sense, even though
  1478.      *          the DoShuffle() part made it completely meaningless. */
  1479.     y = 0;
  1480.     REVERSE( p_sci_data + 5, 1 );
  1481.     i = U32_AT( p_sci_data + 5 );
  1482.     i_sci_size -= 22 * sizeof(uint32_t);
  1483.     p_sci1 = p_sci_data + 22;
  1484.     p_sci0 = NULL;
  1485.     while( i_sci_size >= 20 && i > 0 )
  1486.     {
  1487.         if( p_sci0 == NULL )
  1488.         {
  1489.             i_sci_size -= 18 * sizeof(uint32_t);
  1490.             if( i_sci_size < 20 )
  1491.             {
  1492.                 break;
  1493.             }
  1494.             p_sci0 = p_sci1;
  1495.             REVERSE( p_sci1 + 17, 1 );
  1496.             y = U32_AT( p_sci1 + 17 );
  1497.             p_sci1 += 18;
  1498.         }
  1499.         if( !y )
  1500.         {
  1501.             i--;
  1502.             p_sci0 = NULL;
  1503.             continue;
  1504.         }
  1505.         i_user = U32_AT( p_sci0 );
  1506.         i_key = U32_AT( p_sci1 );
  1507.         REVERSE( &i_user, 1 );
  1508.         REVERSE( &i_key, 1 );
  1509.         if( i_user == p_drms->i_user && ( ( i_key == p_drms->i_key ) ||
  1510.             ( !p_drms->i_key && ( p_sci1 == (p_sci0 + 18) ) ) ) )
  1511.         {
  1512.             memcpy( p_user_key, p_sci1 + 1, 16 );
  1513.             REVERSE( p_sci1 + 1, 4 );
  1514.             WriteUserKey( p_drms, p_sci1 + 1 );
  1515.             i_ret = 0;
  1516.             break;
  1517.         }
  1518.         y--;
  1519.         p_sci1 += 5;
  1520.         i_sci_size -= 5 * sizeof(uint32_t);
  1521.     }
  1522.     free( p_sci_data );
  1523.     return i_ret;
  1524. }
  1525. /*****************************************************************************
  1526.  * GetSCIData: get SCI data from "SC Info.sidb"
  1527.  *****************************************************************************
  1528.  * Read SCI data from "Apple ComputeriTunesSC InfoSC Info.sidb"
  1529.  *****************************************************************************/
  1530. static int GetSCIData( char *psz_ipod, uint32_t **pp_sci,
  1531.                        uint32_t *pi_sci_size )
  1532. {
  1533.     FILE *file;
  1534.     char *psz_path = NULL;
  1535.     char p_tmp[ 4 * PATH_MAX ];
  1536.     int i_ret = -1;
  1537.     if( psz_ipod == NULL )
  1538.     {
  1539. #ifdef WIN32
  1540.         const wchar_t *wfile =
  1541.                 L"\Apple Computer\iTunes\SC Info\SC Info.sidb";
  1542.         typedef HRESULT (WINAPI *SHGETFOLDERPATH)( HWND, int, HANDLE, DWORD,
  1543.                                                    LPWSTR );
  1544.         HINSTANCE shfolder_dll = NULL;
  1545.         SHGETFOLDERPATH dSHGetFolderPath = NULL;
  1546.         wchar_t wpath[PATH_MAX];
  1547.         if( ( shfolder_dll = LoadLibrary( _T("SHFolder.dll") ) ) != NULL )
  1548.         {
  1549.             dSHGetFolderPath =
  1550.                 (SHGETFOLDERPATH)GetProcAddress( shfolder_dll,
  1551.                                                  _T("SHGetFolderPathW") );
  1552.         }
  1553.         if( dSHGetFolderPath != NULL &&
  1554.             SUCCEEDED( dSHGetFolderPath( NULL, CSIDL_COMMON_APPDATA,
  1555.                                          NULL, 0, wpath ) ) )
  1556.         {
  1557.             if (wcslen( wpath ) + wcslen( wfile ) >= PATH_MAX )
  1558.             {
  1559.                 return -1;
  1560.             }
  1561.             wcscat( wpath, wfile );
  1562.             psz_path = FromWide( wpath );
  1563.             strncpy( p_tmp, psz_path, sizeof( p_tmp ) - 1 );
  1564.             p_tmp[sizeof( p_tmp ) - 1] = '';
  1565.             free( psz_path );
  1566.             psz_path = p_tmp;
  1567.         }
  1568.         if( shfolder_dll != NULL )
  1569.         {
  1570.             FreeLibrary( shfolder_dll );
  1571.         }
  1572. #endif
  1573.     }
  1574.     else
  1575.     {
  1576. #define ISCINFO "iSCInfo"
  1577.         if( strstr( psz_ipod, ISCINFO ) == NULL )
  1578.         {
  1579.             snprintf( p_tmp, sizeof(p_tmp) - 1,
  1580.                       "%s/iPod_Control/iTunes/" ISCINFO "2", psz_ipod );
  1581.             psz_path = p_tmp;
  1582.         }
  1583.         else
  1584.         {
  1585.             psz_path = psz_ipod;
  1586.         }
  1587.     }
  1588.     if( psz_path == NULL )
  1589.     {
  1590.         return -1;
  1591.     }
  1592.     file = utf8_fopen( psz_path, "rb" );
  1593.     if( file != NULL )
  1594.     {
  1595.         struct stat st;
  1596.         if( !fstat( fileno( file ), &st ) && st.st_size >= 4 )
  1597.         {
  1598.             *pp_sci = malloc( st.st_size );
  1599.             if( *pp_sci != NULL )
  1600.             {
  1601.                 if( fread( *pp_sci, 1, st.st_size,
  1602.                            file ) == (size_t)st.st_size )
  1603.                 {
  1604.                     *pi_sci_size = st.st_size;
  1605.                     i_ret = 0;
  1606.                 }
  1607.                 else
  1608.                 {
  1609.                     free( (void *)*pp_sci );
  1610.                     *pp_sci = NULL;
  1611.                 }
  1612.             }
  1613.         }
  1614.         fclose( file );
  1615.     }
  1616.     return i_ret;
  1617. }
  1618. /*****************************************************************************
  1619.  * HashSystemInfo: hash system information
  1620.  *****************************************************************************
  1621.  * This function computes the MD5 hash of the C: hard drive serial number,
  1622.  * BIOS version, CPU type and Windows version.
  1623.  *****************************************************************************/
  1624. static int HashSystemInfo( uint32_t *p_system_hash )
  1625. {
  1626.     struct md5_s md5;
  1627.     int i_ret = 0;
  1628. #ifdef WIN32
  1629.     HKEY i_key;
  1630.     unsigned int i;
  1631.     DWORD i_size;
  1632.     DWORD i_serial;
  1633.     LPBYTE p_reg_buf;
  1634.     static const LPCTSTR p_reg_keys[ 3 ][ 2 ] =
  1635.     {
  1636.         {
  1637.             _T("HARDWARE\DESCRIPTION\System"),
  1638.             _T("SystemBiosVersion")
  1639.         },
  1640.         {
  1641.             _T("HARDWARE\DESCRIPTION\System\CentralProcessor\0"),
  1642.             _T("ProcessorNameString")
  1643.         },
  1644.         {
  1645.             _T("SOFTWARE\Microsoft\Windows\CurrentVersion"),
  1646.             _T("ProductId")
  1647.         }
  1648.     };
  1649.     InitMD5( &md5 );
  1650.     AddMD5( &md5, "cache-control", 13 );
  1651.     AddMD5( &md5, "Ethernet", 8 );
  1652.     GetVolumeInformation( _T("C:\"), NULL, 0, &i_serial,
  1653.                           NULL, NULL, NULL, 0 );
  1654.     AddMD5( &md5, (const uint8_t *)&i_serial, 4 );
  1655.     for( i = 0; i < sizeof(p_reg_keys) / sizeof(p_reg_keys[ 0 ]); i++ )
  1656.     {
  1657.         if( RegOpenKeyEx( HKEY_LOCAL_MACHINE, p_reg_keys[ i ][ 0 ],
  1658.                           0, KEY_READ, &i_key ) != ERROR_SUCCESS )
  1659.         {
  1660.             continue;
  1661.         }
  1662.         if( RegQueryValueEx( i_key, p_reg_keys[ i ][ 1 ],
  1663.                              NULL, NULL, NULL, &i_size ) != ERROR_SUCCESS )
  1664.         {
  1665.             RegCloseKey( i_key );
  1666.             continue;
  1667.         }
  1668.         p_reg_buf = malloc( i_size );
  1669.         if( p_reg_buf != NULL )
  1670.         {
  1671.             if( RegQueryValueEx( i_key, p_reg_keys[ i ][ 1 ],
  1672.                                  NULL, NULL, p_reg_buf,
  1673.                                  &i_size ) == ERROR_SUCCESS )
  1674.             {
  1675.                 AddMD5( &md5, (const uint8_t *)p_reg_buf, i_size );
  1676.             }
  1677.             free( p_reg_buf );
  1678.         }
  1679.         RegCloseKey( i_key );
  1680.     }
  1681. #else
  1682.     InitMD5( &md5 );
  1683.     i_ret = -1;
  1684. #endif
  1685.     EndMD5( &md5 );
  1686.     memcpy( p_system_hash, md5.p_digest, 16 );
  1687.     return i_ret;
  1688. }
  1689. /*****************************************************************************
  1690.  * GetiPodID: Get iPod ID
  1691.  *****************************************************************************
  1692.  * This function gets the iPod ID.
  1693.  *****************************************************************************/
  1694. static int GetiPodID( int64_t *p_ipod_id )
  1695. {
  1696.     int i_ret = -1;
  1697. #define PROD_NAME   "iPod"
  1698. #define VENDOR_NAME "Apple Computer, Inc."
  1699.     char *psz_ipod_id = getenv( "IPODID" );
  1700.     if( psz_ipod_id != NULL )
  1701.     {
  1702.         *p_ipod_id = strtoll( psz_ipod_id, NULL, 16 );
  1703.         return 0;
  1704.     }
  1705. #ifdef __APPLE__
  1706.     CFTypeRef value;
  1707.     mach_port_t port;
  1708.     io_object_t device;
  1709.     io_iterator_t iterator;
  1710.     CFMutableDictionaryRef match_dic;
  1711.     CFMutableDictionaryRef smatch_dic;
  1712.     if( IOMasterPort( MACH_PORT_NULL, &port ) == KERN_SUCCESS )
  1713.     {
  1714.         smatch_dic = IOServiceMatching( "IOFireWireUnit" );
  1715.         match_dic = CFDictionaryCreateMutable( kCFAllocatorDefault, 0,
  1716.                                            &kCFTypeDictionaryKeyCallBacks,
  1717.                                            &kCFTypeDictionaryValueCallBacks );
  1718.         if( smatch_dic != NULL && match_dic != NULL )
  1719.         {
  1720.             CFDictionarySetValue( smatch_dic,
  1721.                                   CFSTR("FireWire Vendor Name"),
  1722.                                   CFSTR(VENDOR_NAME) );
  1723.             CFDictionarySetValue( smatch_dic,
  1724.                                   CFSTR("FireWire Product Name"),
  1725.                                   CFSTR(PROD_NAME) );
  1726.             CFDictionarySetValue( match_dic,
  1727.                                   CFSTR(kIOPropertyMatchKey),
  1728.                                   smatch_dic );
  1729.             if( IOServiceGetMatchingServices( port, match_dic,
  1730.                                               &iterator ) == KERN_SUCCESS )
  1731.             {
  1732.                 while( ( device = IOIteratorNext( iterator ) ) != NULL )
  1733.                 {
  1734.                     value = IORegistryEntryCreateCFProperty( device,
  1735.                         CFSTR("GUID"), kCFAllocatorDefault, kNilOptions );
  1736.                     if( value != NULL )
  1737.                     {
  1738.                         if( CFGetTypeID( value ) == CFNumberGetTypeID() )
  1739.                         {
  1740.                             int64_t i_ipod_id;
  1741.                             CFNumberGetValue( (CFNumberRef)value,
  1742.                                               kCFNumberLongLongType,
  1743.                                               &i_ipod_id );
  1744.                             *p_ipod_id = i_ipod_id;
  1745.                             i_ret = 0;
  1746.                         }
  1747.                         CFRelease( value );
  1748.                     }
  1749.                     IOObjectRelease( device );
  1750.                     if( !i_ret ) break;
  1751.                 }
  1752.                 IOObjectRelease( iterator );
  1753.             }
  1754.             CFRelease( match_dic );
  1755.         }
  1756.         mach_port_deallocate( mach_task_self(), port );
  1757.     }
  1758. #elif defined (HAVE_SYSFS_LIBSYSFS_H)
  1759.     struct sysfs_bus *bus = NULL;
  1760.     struct dlist *devlist = NULL;
  1761.     struct dlist *attributes = NULL;
  1762.     struct sysfs_device *curdev = NULL;
  1763.     struct sysfs_attribute *curattr = NULL;
  1764.     bus = sysfs_open_bus( "ieee1394" );
  1765.     if( bus != NULL )
  1766.     {
  1767.         devlist = sysfs_get_bus_devices( bus );
  1768.         if( devlist != NULL )
  1769.         {
  1770.             dlist_for_each_data( devlist, curdev, struct sysfs_device )
  1771.             {
  1772.                 attributes = sysfs_get_device_attributes( curdev );
  1773.                 if( attributes != NULL )
  1774.                 {
  1775.                     dlist_for_each_data( attributes, curattr,
  1776.                                          struct sysfs_attribute )
  1777.                     {
  1778.                         if( ( strcmp( curattr->name, "model_name" ) == 0 ) &&
  1779.                             ( strncmp( curattr->value, PROD_NAME,
  1780.                                        sizeof(PROD_NAME) ) == 0 ) )
  1781.                         {
  1782.                             *p_ipod_id = strtoll( curdev->name, NULL, 16 );
  1783.                             i_ret = 0;
  1784.                             break;
  1785.                         }
  1786.                     }
  1787.                }
  1788.                 if( !i_ret ) break;
  1789.             }
  1790.         }
  1791.         sysfs_close_bus( bus );
  1792.     }
  1793. #endif
  1794.     return i_ret;
  1795. }
  1796. #else /* !defined( UNDER_CE ) */
  1797. void *drms_alloc( const char *psz_homedir ){ return NULL; }
  1798. void drms_free( void *a ){}
  1799. void drms_decrypt( void *a, uint32_t *b, uint32_t c, uint32_t *k  ){}
  1800. void drms_get_p_key( void *p_drms, uint32_t *p_key ){}
  1801. int drms_init( void *a, uint32_t b, uint8_t *c, uint32_t d ){ return -1; }
  1802. #endif /* defined( UNDER_CE ) */