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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
|
/*
* Blu-ray stream playback
* by cRTrn13 <crtrn13-at-gmail.com> 2009
*
* This file is part of MPlayer.
*
* MPlayer is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* MPlayer 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdio.h>
#include <limits.h>
#include <ctype.h>
#include <strings.h>
#include "libavutil/common.h"
#include "libavutil/aes.h"
#include "libavutil/sha.h"
#include "libavutil/avstring.h"
#include "libmpdemux/demuxer.h"
#include "libavutil/intreadwrite.h"
#include "m_struct.h"
#include "m_option.h"
#include "mp_msg.h"
#include "stream.h"
#include "stream_bd.h"
// FIXME: Some systems don't define PATH_MAX (Example: GNU/Hurd)
#ifndef PATH_MAX
# define PATH_MAX 4096
#endif
static const int BD_UNIT_SIZE = 6144;
static const char BD_UKF_PATH[] = "%s/AACS/Unit_Key_RO.inf";
static const char BD_M2TS_PATH[] = "%s/BDMV/STREAM/%05d.m2ts";
static const char BD_CLIPINF_PATH[] = "%s/BDMV/CLIPINF/%05d.clpi";
static const char DEFAULT_BD_DEVICE[] = "/mnt/bd";
static const struct stream_priv_s {
int title;
char *device;
} stream_priv_dflts = {
0,
NULL
};
// Format: bd://[title][</mntlocation>]
// --> e.g.: bd://117/media/THE_MUMMY/
// --> or bd://152
// instead of directly, mount location can also be gotten through -dvd-device
#define ST_OFF(f) M_ST_OFF(struct stream_priv_s,f)
static const m_option_t stream_opts_fields[] = {
{ "hostname", ST_OFF(title), CONF_TYPE_INT, M_OPT_RANGE, 0, 99999, NULL},
{ "filename", ST_OFF(device), CONF_TYPE_STRING, 0, 0 ,0, NULL},
{ NULL, NULL, 0, 0, 0, 0, NULL }
};
static const struct m_struct_st stream_opts = {
"bd",
sizeof(struct stream_priv_s),
&stream_priv_dflts,
stream_opts_fields
};
typedef union {
uint64_t u64[2];
uint8_t u8[16];
} key;
static const key BD_CBC_IV = {
.u8 = {
0x0b, 0xa0, 0xf8, 0xdd, 0xfe, 0xa6, 0x1f, 0xb3,
0xd8, 0xdf, 0x9f, 0x56, 0x6a, 0x05, 0x0f, 0x78
}
};
struct uks {
int count;
key *keys;
};
// This is just a guess
#define LANG_NAME_LEN 20
struct lang_map {
int id;
int type;
char lang_name[LANG_NAME_LEN + 1];
};
struct bd_priv {
key vuk;
key iv;
int title;
const char *device;
stream_t *title_file;
struct AVAES *aescbc;
struct AVAES *aeseed;
int64_t pos;
struct uks uks;
int nr_lang_maps;
struct lang_map *lang_maps;
};
static void bd_stream_close(stream_t *s)
{
struct bd_priv *bd = s->priv;
free_stream(bd->title_file);
av_free(bd->aescbc);
av_free(bd->aeseed);
free(bd->uks.keys);
free(bd);
}
static int bd_stream_seek(stream_t *s, int64_t pos)
{
struct bd_priv *bd = s->priv;
// must seek to start of unit
pos -= pos % BD_UNIT_SIZE;
if (!stream_seek(bd->title_file, pos)) {
s->eof = 1;
return 0;
}
bd->pos = pos;
s->pos = pos;
return 1;
}
#define ID_STR_LEN 41
static void id2str(const uint8_t *id, int idlen, char dst[ID_STR_LEN])
{
int i;
idlen = FFMIN(idlen, 20);
for (i = 0; i < idlen; i++)
snprintf(dst + 2*i, 3, "%02"PRIx8, id[i]);
}
static int find_vuk(struct bd_priv *bd, const uint8_t discid[20])
{
char line[1024];
char filename[PATH_MAX];
const char *home;
int vukfound = 0;
stream_t *file;
char idstr[ID_STR_LEN];
id2str(discid, 20, idstr);
// look up discid in KEYDB.cfg to get VUK
home = getenv("HOME");
snprintf(filename, sizeof(filename), "%s/.cache/aacs/vuk/%s", home, idstr);
file = open_stream(filename, NULL, NULL);
if (file) {
vukfound = 1;
memset(line, 0, sizeof(line));
vukfound &= stream_read(file, line, 32) == 32;
vukfound &= sscanf(line, "%16"SCNx64, &bd->vuk.u64[0]) == 1;
vukfound &= sscanf(line + 16, "%16"SCNx64, &bd->vuk.u64[1]) == 1;
bd->vuk.u64[0] = av_be2ne64(bd->vuk.u64[0]);
bd->vuk.u64[1] = av_be2ne64(bd->vuk.u64[1]);
free_stream(file);
if (vukfound)
return 1;
}
snprintf(filename, sizeof(filename), "%s/.config/aacs/KEYDB.cfg", home);
file = open_stream(filename, NULL, NULL);
if (!file) {
snprintf(filename, sizeof(filename), "%s/.dvdcss/KEYDB.cfg", home);
file = open_stream(filename, NULL, NULL);
}
if (!file) {
mp_msg(MSGT_OPEN,MSGL_ERR,
"Cannot open VUK database file %s\n", filename);
return 0;
}
while (stream_read_line(file, line, sizeof(line), 0)) {
char *vst;
// file is built up this way:
// DISCID = title | V | VUK
// or
// DISCID = title | key-pair
// key-pair = V | VUK
// or D | Date
// or M | M-key???
// or I | I-Key
// can be followed by ; and comment
if (strncasecmp(line, idstr, 40))
continue;
mp_msg(MSGT_OPEN, MSGL_V, "KeyDB found Entry for DiscID:\n%s\n", line);
vst = strstr(line, "| V |");
if (!vst)
break;
vst += 6;
while (isspace(*vst)) vst++;
if (sscanf(vst, "%16"SCNx64, &bd->vuk.u64[0]) != 1)
continue;
if (sscanf(vst + 16, "%16"SCNx64, &bd->vuk.u64[1]) != 1)
continue;
bd->vuk.u64[0] = av_be2ne64(bd->vuk.u64[0]);
bd->vuk.u64[1] = av_be2ne64(bd->vuk.u64[1]);
vukfound = 1;
}
free_stream(file);
return vukfound;
}
static int bd_get_uks(struct bd_priv *bd)
{
unsigned char *buf;
size_t file_size;
int pos;
int i;
struct AVAES *a;
struct AVSHA *asha;
stream_t *file;
char filename[PATH_MAX];
uint8_t discid[20];
char idstr[ID_STR_LEN];
snprintf(filename, sizeof(filename), BD_UKF_PATH, bd->device);
file = open_stream(filename, NULL, NULL);
if (!file) {
mp_msg(MSGT_OPEN, MSGL_ERR,
"Cannot open file %s to get UK and DiscID\n", filename);
return 0;
}
file_size = file->end_pos;
if (file_size <= 0 || file_size > 10 * 1024* 1024) {
mp_msg(MSGT_OPEN, MSGL_ERR, "File %s too large\n", filename);
free_stream(file);
return 0;
}
buf = av_malloc(file_size);
stream_read(file, buf, file_size);
free_stream(file);
// get discid from file
asha = av_malloc(av_sha_size);
av_sha_init(asha, 160);
av_sha_update(asha, buf, file_size);
av_sha_final(asha, discid);
av_free(asha);
if (!find_vuk(bd, discid)) {
id2str(discid, 20, idstr);
mp_msg(MSGT_OPEN, MSGL_ERR,
"No Volume Unique Key (VUK) found for this Disc: %s\n", idstr);
av_free(buf);
return 0;
}
pos = AV_RB32(buf);
if (pos < file_size) {
int key_pos = pos + 48;
int max_count = (file_size - key_pos - 16) / 48;
bd->uks.count = AV_RB16(&buf[pos]);
if (max_count < bd->uks.count) {
mp_msg(MSGT_OPEN, MSGL_ERR,
"File to small for key count %i, using %i\n",
bd->uks.count, max_count);
bd->uks.count = max_count;
}
bd->uks.keys = calloc(bd->uks.count, sizeof(key));
a = av_malloc(av_aes_size);
av_aes_init(a, bd->vuk.u8, 128, 1);
id2str(discid, 20, idstr);
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_BD_DISCID=%s\n", idstr);
id2str(bd->vuk.u8, 16, idstr);
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_BD_VUK=%s\n", idstr);
for (i = 0; i < bd->uks.count; i++) {
av_aes_crypt(a, bd->uks.keys[i].u8, &buf[key_pos], 1, NULL, 1); // decrypt unit key
key_pos += 48;
}
av_free(a);
}
av_free(buf);
return 1;
}
// NOTE: we assume buf is sufficiently aligned to 64 bit read/writes
static int64_t bd_read(struct bd_priv *bd, uint8_t *buf, int len)
{
int read_len;
int unit_offset = bd->pos % BD_UNIT_SIZE;
len &= ~15;
if (!len)
return 0;
read_len = stream_read(bd->title_file, buf, len);
if (read_len != len)
return -1;
if (unit_offset) {
int decrypt_len = FFMIN(len, BD_UNIT_SIZE - unit_offset);
av_aes_crypt(bd->aescbc, buf, buf, decrypt_len / 16, bd->iv.u8, 1);
buf += decrypt_len;
len -= decrypt_len;
}
while (len) {
int decrypt_len = FFMIN(len, BD_UNIT_SIZE);
// reset aes context as at start of unit
key enc_seed;
bd->iv = BD_CBC_IV;
// perform encryption of first 16 bytes of unit (seed)
av_aes_crypt(bd->aeseed, enc_seed.u8, buf, 1, NULL, 0);
// perform xor
enc_seed.u64[0] ^= AV_RN64A(buf);
enc_seed.u64[1] ^= AV_RN64A(buf + 8);
// set uk AES-CBC key from enc_seed and BD_CBC_IV
av_aes_init(bd->aescbc, enc_seed.u8, 128, 1);
// decrypt
av_aes_crypt(bd->aescbc, &buf[16], &buf[16],
(decrypt_len - 16) / 16, bd->iv.u8, 1);
buf += decrypt_len;
len -= decrypt_len;
}
bd->pos += read_len;
return read_len;
}
static int bd_stream_fill_buffer(stream_t *s, char *buf, int len)
{
int read_len;
struct bd_priv *bd = s->priv;
read_len = bd_read(bd, buf, len);
s->pos = bd->pos;
return read_len;
}
static int is_video_type(int type)
{
switch (type) {
case 1:
case 2:
case 0x10:
case 0x1b:
case 0xD1:
case 0xEA:
return 1;
}
return 0;
}
static int is_audio_type(int type)
{
switch (type) {
case 3:
case 4:
case 0x0f:
case 0x11:
case 0x80:
case 0x81:
case 0x8A:
case 0x82:
case 0x85:
case 0x86:
return 1;
}
return 0;
}
static int is_sub_type(int type)
{
switch (type) {
case 0x90:
return 1;
}
return 0;
}
static const char *bd_lang_from_id(stream_t *s, int id)
{
struct bd_priv *bd = s->priv;
int i;
for (i = 0; i < bd->nr_lang_maps; i++) {
if (bd->lang_maps[i].id == id)
return bd->lang_maps[i].lang_name;
}
return NULL;
}
int bd_aid_from_lang(stream_t *s, const char *lang)
{
struct bd_priv *bd = s->priv;
int i;
for (i = 0; i < bd->nr_lang_maps; i++) {
if (is_audio_type(bd->lang_maps[i].type) &&
strstr(bd->lang_maps[i].lang_name, lang))
return bd->lang_maps[i].id;
}
return -1;
}
int bd_sid_from_lang(stream_t *s, const char *lang)
{
struct bd_priv *bd = s->priv;
int i;
for (i = 0; i < bd->nr_lang_maps; i++) {
if (is_sub_type(bd->lang_maps[i].type) &&
strstr(bd->lang_maps[i].lang_name, lang))
return bd->lang_maps[i].id;
}
return -1;
}
static void get_clipinf(struct bd_priv *bd)
{
int i;
int langmap_offset, index_offset, end_offset;
char filename[PATH_MAX];
stream_t *file;
snprintf(filename, sizeof(filename), BD_CLIPINF_PATH, bd->device, bd->title);
file = open_stream(filename, NULL, NULL);
if (!file) {
mp_msg(MSGT_OPEN, MSGL_ERR, "Cannot open clipinf %s\n", filename);
return;
}
if (stream_read_qword(file) != AV_RB64("HDMV0200")) {
mp_msg(MSGT_OPEN, MSGL_ERR, "Unknown clipinf format\n");
return;
}
stream_read_dword(file); // unknown offset
langmap_offset = stream_read_dword(file);
index_offset = stream_read_dword(file);
end_offset = stream_read_dword(file);
// read language <-> stream id mappings
stream_seek(file, langmap_offset);
stream_read_dword(file); // size
stream_skip(file, 8); // unknown
bd->nr_lang_maps = stream_read_char(file); // number of entries
stream_read_char(file); // unknown
bd->lang_maps = calloc(bd->nr_lang_maps, sizeof(*bd->lang_maps));
for (i = 0; i < bd->nr_lang_maps; i++) {
int type;
bd->lang_maps[i].id = stream_read_word(file);
stream_read_char(file); // unknown
type = stream_read_char(file);
if (!is_video_type(type) && !is_audio_type(type) && !is_sub_type(type))
mp_msg(MSGT_OPEN, MSGL_WARN, "Unknown type %x in clipinf\n", type);
bd->lang_maps[i].type = type;
stream_read(file, bd->lang_maps[i].lang_name, LANG_NAME_LEN);
}
free_stream(file);
}
static int bd_stream_control(stream_t *s, int cmd, void *arg)
{
switch (cmd) {
case STREAM_CTRL_GET_LANG:
{
struct stream_lang_req *req = arg;
const char *lang = bd_lang_from_id(s, req->id);
if (!lang)
return STREAM_ERROR;
av_strlcpy(req->buf, lang, sizeof(req->buf));
return STREAM_OK;
}
}
return STREAM_UNSUPPORTED;
}
static int bd_stream_open(stream_t *s, int mode, void* opts, int* file_format)
{
char filename[PATH_MAX];
struct stream_priv_s* p = opts;
struct bd_priv *bd = calloc(1, sizeof(*bd));
if (p->device)
bd->device = p->device;
else if (bluray_device)
bd->device = bluray_device;
else
bd->device = DEFAULT_BD_DEVICE;
s->sector_size = BD_UNIT_SIZE;
s->read_chunk = 32 * BD_UNIT_SIZE;
s->flags = STREAM_READ | MP_STREAM_SEEK;
s->fill_buffer = bd_stream_fill_buffer;
s->seek = bd_stream_seek;
s->control = bd_stream_control;
s->close = bd_stream_close;
s->start_pos = 0;
s->priv = bd;
s->type = STREAMTYPE_BD;
s->url = strdup("bd://");
bd->pos = 0;
bd->title = p->title;
// get and decrypt unit keys
if (!bd_get_uks(bd))
return STREAM_ERROR;
bd->aescbc = av_malloc(av_aes_size);
bd->aeseed = av_malloc(av_aes_size);
// set up AES key from uk
av_aes_init(bd->aeseed, bd->uks.keys[0].u8, 128, 0);
snprintf(filename, sizeof(filename), BD_M2TS_PATH, bd->device, bd->title);
mp_msg(MSGT_OPEN, MSGL_STATUS, "Opening %s\n", filename);
bd->title_file = open_stream(filename, NULL, NULL);
if (!bd->title_file)
return STREAM_ERROR;
s->end_pos = bd->title_file->end_pos;
get_clipinf(bd);
return STREAM_OK;
}
const stream_info_t stream_info_bd = {
"Blu-ray",
"bd",
"cRTrn13",
"",
bd_stream_open,
{ "bd", NULL },
&stream_opts,
1
};
|