1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
/*
| Copyright (c) 2009 Chris Lee <clee@mg8.org>
| Copyright (C) 2009 Christophe Fergeau <cfergeau@mandriva.com>
|
| The code contained in this file is free software; you can redistribute
| it and/or modify it under the terms of the GNU Lesser General Public
| License as published by the Free Software Foundation; either version
| 2.1 of the License, or (at your option) any later version.
|
| This file is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
| Lesser General Public License for more details.
|
| You should have received a copy of the GNU Lesser General Public
| License along with this code; if not, write to the Free Software
| Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
| USA
|
| iTunes and iPod are trademarks of Apple
|
| This product is not supported/written/published by Apple!
*/
#if HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include "rijndael.h"
#include <glib/gstdio.h>
#include "itdb_device.h"
#include "db-itunes-parser.h"
#include "itdb_private.h"
static const uint8_t AES_KEY[16] = { 0x61, 0x8c, 0xa1, 0x0d, 0xc7, 0xf5, 0x7f, 0xd3, 0xb4, 0x72, 0x3e, 0x08, 0x15, 0x74, 0x63, 0xd7 };
/*
| hash_generate and hash_extract are :
| Copyright (c) 2009 Chris Lee <clee@mg8.org>
| licensed under the terms of the WTFPL <http://sam.zoy.org/wtfpl/>
*/
/* Generate a signature for an iTunesDB or a cbk file using the file SHA1
* and a (IV, random bytes) for this device we want to sign for
*/
static void hash_generate(uint8_t signature[46],
const uint8_t sha1[20],
const uint8_t iv[16],
const uint8_t random_bytes[12])
{
uint8_t output[32] = { 0 }, plaintext[32] = { 0 };
memcpy(plaintext, sha1, 20);
memcpy(&plaintext[20], random_bytes, 12);
signature[0] = 0x01;
signature[1] = 0x00;
memcpy(&signature[2], random_bytes, 12);
aes_set_key((uint8_t *)AES_KEY);
aes_encrypt(iv, plaintext, output, 32);
memcpy(&signature[14], output, 32);
}
/* Given a valid signature and SHA1 for a file, extracts a valid (IV,
* random bytes) couple which can be used to sign any iTunesDB or cbk file
* for the device the signature was made for
*/
static int hash_extract(const uint8_t signature[46],
const uint8_t sha1[20],
uint8_t iv[16],
uint8_t random_bytes[12])
{
uint8_t plaintext[32] = { 0 }, output[32] = { 0 };
if (signature[0] != 0x01 || signature[1] != 0x00) {
fprintf(stderr, "Invalid signature prefix!\n");
return -1;
}
memcpy(plaintext, sha1, 20);
memcpy(&plaintext[20], &signature[2], 12);
memcpy(output, plaintext, 32);
aes_set_key((uint8_t *)AES_KEY);
aes_decrypt(plaintext, (uint8_t *)&signature[14], output, 16);
if (memcmp(&plaintext[16], &output[16], 16)) {
fprintf(stderr, "uh oh\n");
return -1;
}
memcpy(iv, output, 16);
memcpy(random_bytes, &signature[2], 12);
return 0;
}
struct Hash78Info {
unsigned char header[6];
unsigned char uuid[20];
unsigned char rndpart[12];
unsigned char iv[16];
} __attribute__((__packed__));
static char *get_hash_info_path (const Itdb_Device *device)
{
char *filename;
char *device_dir;
device_dir = itdb_get_device_dir (device->mountpoint);
filename = g_build_filename (device_dir, "HashInfo", NULL);
g_free (device_dir);
return filename;
}
static gboolean write_hash_info (const Itdb_Device *device,
unsigned char iv[16],
unsigned char rndpart[12])
{
struct Hash78Info hash_info;
char *filename;
gboolean success;
const char header[] = "HASHv0";
memcpy (hash_info.header, header, sizeof (hash_info.header));
success = itdb_device_get_hex_uuid (device, hash_info.uuid);
if (!success) {
return FALSE;
}
memcpy (hash_info.rndpart, rndpart, sizeof (hash_info.rndpart));
memcpy (hash_info.iv, iv, sizeof (hash_info.iv));
filename = get_hash_info_path (device);
success = g_file_set_contents (filename, (void *)&hash_info,
sizeof (hash_info), NULL);
g_free (filename);
return success;
}
static struct Hash78Info *read_hash_info (const Itdb_Device *device)
{
char *filename;
gsize len;
gboolean read_ok;
unsigned char uuid[20];
struct Hash78Info *info;
if (!itdb_device_get_hex_uuid (device, uuid)) {
return NULL;
}
filename = get_hash_info_path (device);
read_ok = g_file_get_contents (filename, (gchar**)&info, &len, NULL);
g_free (filename);
if (!read_ok) {
return NULL;
}
if (len != sizeof (*info)) {
g_free (info);
return NULL;
}
if (memcmp (info->uuid, uuid, sizeof (uuid)) != 0) {
/* the HashInfo file seems invalid for this device, just remove it
*/
filename = get_hash_info_path (device);
g_unlink (filename);
g_free (filename);
g_free (info);
return NULL;
}
return info;
}
static void itdb_hash72_compute_itunesdb_sha1 (unsigned char *itdb_data,
gsize itdb_len,
unsigned char sha1[20])
{
guchar backup18[8];
guchar backup32[20];
guchar hash72[46];
gsize sha1_len;
GChecksum *checksum;
MhbdHeader *header;
g_assert (itdb_len >= 0x6c);
header = (MhbdHeader *)itdb_data;
g_assert (strncmp (header->header_id, "mhbd", strlen ("mhbd")) == 0);
memcpy (backup18, &header->db_id, sizeof (backup18));
memcpy (backup32, &header->unk_0x32, sizeof (backup32));
memcpy (hash72, &header->hash72, sizeof (hash72));
/* Those fields must be zero'ed out for the sha1 calculation */
memset(&header->db_id, 0, sizeof (header->db_id));
memset(&header->hash58, 0, sizeof (header->hash58));
memset(&header->hash72, 0, sizeof (header->hash72));
sha1_len = g_checksum_type_get_length (G_CHECKSUM_SHA1);
checksum = g_checksum_new (G_CHECKSUM_SHA1);
g_checksum_update (checksum, itdb_data, itdb_len);
g_checksum_get_digest (checksum, sha1, &sha1_len);
g_checksum_free (checksum);
memcpy (&header->db_id, backup18, sizeof (backup18));
memcpy (&header->unk_0x32, backup32, sizeof (backup32));
}
gboolean itdb_hash72_extract_hash_info (const Itdb_Device *device,
unsigned char *itdb_data,
gsize itdb_len)
{
guchar hash72[46];
guchar sha1[20];
guchar iv[16];
guchar random_bytes[12];
MhbdHeader *header;
int iv_extracted;
struct Hash78Info *hash_info;
if ((itdb_device_get_checksum_type (device) != ITDB_CHECKSUM_HASH72)
|| (!itdb_device_supports_sqlite_db (device))) {
/* No need to generate a HashInfo file */
return FALSE;
}
if (itdb_len < 0x6c) {
return FALSE;
}
hash_info = read_hash_info (device);
g_free (hash_info);
if (hash_info != NULL) {
/* We already have what we need to generate signatures for this device,
* no need to go on
*/
return TRUE;
}
header = (MhbdHeader *)itdb_data;
g_assert (strncmp (header->header_id, "mhbd", strlen ("mhbd")) == 0);
memcpy (hash72, &header->hash72, sizeof (hash72));
itdb_hash72_compute_itunesdb_sha1 (itdb_data, itdb_len, sha1);
iv_extracted = hash_extract (hash72, sha1, iv, random_bytes);
if (iv_extracted != 0) {
return FALSE;
}
return write_hash_info (device, iv, random_bytes);
}
gboolean itdb_hash72_compute_hash_for_sha1 (const Itdb_Device *device,
const guchar sha1[20],
guchar signature[46],
GError **error)
{
struct Hash78Info *hash_info;
hash_info = read_hash_info (device);
if (hash_info == NULL) {
if (error != NULL) {
g_set_error (error, ITDB_FILE_ERROR, ITDB_FILE_ERROR_NOTFOUND,
"Can't write iPod database because of missing HashInfo file");
}
return FALSE;
}
hash_generate (signature, sha1, hash_info->iv, hash_info->rndpart);
g_free (hash_info);
return TRUE;
}
gboolean itdb_hash72_write_hash (const Itdb_Device *device,
unsigned char *itdb_data,
gsize itdb_len,
GError **error)
{
guchar sha1[20];
MhbdHeader *header;
if (itdb_len < 0x6c) {
g_set_error (error, 0, -1, "iTunesDB file too small to write checksum");
return FALSE;
}
header = (MhbdHeader *)itdb_data;
header->hashing_scheme = GUINT16_FROM_LE (ITDB_CHECKSUM_HASH72);
itdb_hash72_compute_itunesdb_sha1 (itdb_data, itdb_len, sha1);
return itdb_hash72_compute_hash_for_sha1 (device, sha1, header->hash72, error);
}
|