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
|
/*
* Copyright (C) 2000, 2001 Martin Norb�k, H�an Hjort
* 2002-2004 the dvdnav project
*
* This file is part of libdvdnav, a DVD navigation library. It is modified
* from a file originally part of the Ogle DVD player.
*
* libdvdnav 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.
*
* libdvdnav 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
* $Id: vmcmd.c,v 1.6 2004/03/16 11:43:38 mroi Exp $
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <ctype.h>
#include <inttypes.h>
#include "dvdnav_internal.h"
/* freebsd compatibility */
#ifndef PRIu8
#define PRIu8 "d"
#endif
/* freebsd compatibility */
#ifndef PRIu16
#define PRIu16 "d"
#endif
static const char *cmp_op_table[] = {
NULL, "&", "==", "!=", ">=", ">", "<=", "<"
};
static const char *set_op_table[] = {
NULL, "=", "<->", "+=", "-=", "*=", "/=", "%=", "rnd", "&=", "|=", "^="
};
static const char *link_table[] = {
"LinkNoLink", "LinkTopC", "LinkNextC", "LinkPrevC",
NULL, "LinkTopPG", "LinkNextPG", "LinkPrevPG",
NULL, "LinkTopPGC", "LinkNextPGC", "LinkPrevPGC",
"LinkGoUpPGC", "LinkTailPGC", NULL, NULL,
"RSM"
};
static const char *system_reg_table[] = {
"Menu Description Language Code",
"Audio Stream Number",
"Sub-picture Stream Number",
"Angle Number",
"Title Track Number",
"VTS Title Track Number",
"VTS PGC Number",
"PTT Number for One_Sequential_PGC_Title",
"Highlighted Button Number",
"Navigation Timer",
"Title PGC Number for Navigation Timer",
"Audio Mixing Mode for Karaoke",
"Country Code for Parental Management",
"Parental Level",
"Player Configurations for Video",
"Player Configurations for Audio",
"Initial Language Code for Audio",
"Initial Language Code Extension for Audio",
"Initial Language Code for Sub-picture",
"Initial Language Code Extension for Sub-picture",
"Player Regional Code",
"Reserved 21",
"Reserved 22",
"Reserved 23"
};
static const char *system_reg_abbr_table[] = {
NULL,
"ASTN",
"SPSTN",
"AGLN",
"TTN",
"VTS_TTN",
"TT_PGCN",
"PTTN",
"HL_BTNN",
"NVTMR",
"NV_PGCN",
NULL,
"CC_PLT",
"PLT",
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
};
static void print_system_reg(uint16_t reg) {
if(reg < sizeof(system_reg_abbr_table) / sizeof(char *))
fprintf(MSG_OUT, "%s (SRPM:%d)", system_reg_table[reg], reg);
else
fprintf(MSG_OUT, " WARNING: Unknown system register ( reg=%d ) ", reg);
}
static void print_g_reg(uint8_t reg) {
if(reg < 16)
fprintf(MSG_OUT, "g[%" PRIu8 "]", reg);
else
fprintf(MSG_OUT, " WARNING: Unknown general register ");
}
static void print_reg(uint8_t reg) {
if(reg & 0x80)
print_system_reg(reg & 0x7f);
else
print_g_reg(reg & 0x7f);
}
static void print_cmp_op(uint8_t op) {
if(op < sizeof(cmp_op_table) / sizeof(char *) && cmp_op_table[op] != NULL)
fprintf(MSG_OUT, " %s ", cmp_op_table[op]);
else
fprintf(MSG_OUT, " WARNING: Unknown compare op ");
}
static void print_set_op(uint8_t op) {
if(op < sizeof(set_op_table) / sizeof(char *) && set_op_table[op] != NULL)
fprintf(MSG_OUT, " %s ", set_op_table[op]);
else
fprintf(MSG_OUT, " WARNING: Unknown set op ");
}
static void print_reg_or_data(command_t* command, int immediate, int start) {
if(immediate) {
uint32_t i = vm_getbits(command, start, 16);
fprintf(MSG_OUT, "0x%x", i);
if(isprint(i & 0xff) && isprint((i>>8) & 0xff))
fprintf(MSG_OUT, " (\"%c%c\")", (char)((i>>8) & 0xff), (char)(i & 0xff));
} else {
print_reg(vm_getbits(command, start - 8, 8));
}
}
static void print_reg_or_data_2(command_t* command, int immediate, int start) {
if(immediate)
fprintf(MSG_OUT, "0x%x", vm_getbits(command, start - 1, 7));
else
fprintf(MSG_OUT, "g[%" PRIu8 "]", vm_getbits(command, start - 4, 4));
}
static void print_reg_or_data_3(command_t* command, int immediate, int start) {
if(immediate) {
uint32_t i = vm_getbits(command, start, 16);
fprintf(MSG_OUT, "0x%x", i);
if(isprint(i & 0xff) && isprint((i>>8) & 0xff))
fprintf(MSG_OUT, " (\"%c%c\")", (char)((i>>8) & 0xff), (char)(i & 0xff));
} else {
print_reg(vm_getbits(command, start, 8));
}
}
static void print_if_version_1(command_t* command) {
uint8_t op = vm_getbits(command, 54, 3);
if(op) {
fprintf(MSG_OUT, "if (");
print_g_reg(vm_getbits(command,39,8));
print_cmp_op(op);
print_reg_or_data(command, vm_getbits(command, 55,1), 31);
fprintf(MSG_OUT, ") ");
}
}
static void print_if_version_2(command_t* command) {
uint8_t op = vm_getbits(command, 54, 3);
if(op) {
fprintf(MSG_OUT, "if (");
print_reg(vm_getbits(command, 15, 8));
print_cmp_op(op);
print_reg(vm_getbits(command, 7, 8));
fprintf(MSG_OUT, ") ");
}
}
static void print_if_version_3(command_t* command) {
uint8_t op = vm_getbits(command, 54, 3);
if(op) {
fprintf(MSG_OUT, "if (");
print_g_reg(vm_getbits(command, 43, 4));
print_cmp_op(op);
print_reg_or_data(command, vm_getbits(command, 55, 1), 15);
fprintf(MSG_OUT, ") ");
}
}
static void print_if_version_4(command_t* command) {
uint8_t op = vm_getbits(command, 54, 3);
if(op) {
fprintf(MSG_OUT, "if (");
print_g_reg(vm_getbits(command, 51, 4));
print_cmp_op(op);
print_reg_or_data(command, vm_getbits(command, 55, 1), 31);
fprintf(MSG_OUT, ") ");
}
}
static void print_if_version_5(command_t* command) {
uint8_t op = vm_getbits(command, 54, 3);
int set_immediate = vm_getbits(command, 60, 1);
if(op) {
if (set_immediate) {
fprintf(MSG_OUT, "if (");
print_g_reg(vm_getbits(command, 31, 8));
print_cmp_op(op);
print_reg(vm_getbits(command, 23, 8));
fprintf(MSG_OUT, ") ");
} else {
fprintf(MSG_OUT, "if (");
print_g_reg(vm_getbits(command, 39, 8));
print_cmp_op(op);
print_reg_or_data(command, vm_getbits(command, 55, 1), 31);
fprintf(MSG_OUT, ") ");
}
}
}
static void print_special_instruction(command_t* command) {
uint8_t op = vm_getbits(command, 51, 4);
switch(op) {
case 0: /* NOP */
fprintf(MSG_OUT, "Nop");
break;
case 1: /* Goto line */
fprintf(MSG_OUT, "Goto %" PRIu8, vm_getbits(command, 7, 8));
break;
case 2: /* Break */
fprintf(MSG_OUT, "Break");
break;
case 3: /* Parental level */
fprintf(MSG_OUT, "SetTmpPML %" PRIu8 ", Goto %" PRIu8,
vm_getbits(command, 11, 4), vm_getbits(command, 7, 8));
break;
default:
fprintf(MSG_OUT, "WARNING: Unknown special instruction (%i)",
vm_getbits(command, 51, 4));
}
}
static void print_linksub_instruction(command_t* command) {
uint32_t linkop = vm_getbits(command, 7, 8);
uint32_t button = vm_getbits(command, 15, 6);
if(linkop < sizeof(link_table)/sizeof(char *) && link_table[linkop] != NULL)
fprintf(MSG_OUT, "%s (button %" PRIu8 ")", link_table[linkop], button);
else
fprintf(MSG_OUT, "WARNING: Unknown linksub instruction (%i)", linkop);
}
static void print_link_instruction(command_t* command, int optional) {
uint8_t op = vm_getbits(command, 51, 4);
if(optional && op)
fprintf(MSG_OUT, ", ");
switch(op) {
case 0:
if(!optional)
fprintf(MSG_OUT, "WARNING: NOP (link)!");
break;
case 1:
print_linksub_instruction(command);
break;
case 4:
fprintf(MSG_OUT, "LinkPGCN %" PRIu16, vm_getbits(command, 14, 15));
break;
case 5:
fprintf(MSG_OUT, "LinkPTT %" PRIu16 " (button %" PRIu8 ")",
vm_getbits(command, 9, 10), vm_getbits(command, 15, 6));
break;
case 6:
fprintf(MSG_OUT, "LinkPGN %" PRIu8 " (button %" PRIu8 ")",
vm_getbits(command, 6, 7), vm_getbits(command, 15, 6));
break;
case 7:
fprintf(MSG_OUT, "LinkCN %" PRIu8 " (button %" PRIu8 ")",
vm_getbits(command, 7, 8), vm_getbits(command, 15, 6));
break;
default:
fprintf(MSG_OUT, "WARNING: Unknown link instruction");
}
}
static void print_jump_instruction(command_t* command) {
switch(vm_getbits(command, 51, 4)) {
case 1:
fprintf(MSG_OUT, "Exit");
break;
case 2:
fprintf(MSG_OUT, "JumpTT %" PRIu8, vm_getbits(command, 22, 7));
break;
case 3:
fprintf(MSG_OUT, "JumpVTS_TT %" PRIu8, vm_getbits(command, 22, 7));
break;
case 5:
fprintf(MSG_OUT, "JumpVTS_PTT %" PRIu8 ":%" PRIu16,
vm_getbits(command, 22, 7), vm_getbits(command, 41, 10));
break;
case 6:
switch(vm_getbits(command, 23, 2)) {
case 0:
fprintf(MSG_OUT, "JumpSS FP");
break;
case 1:
fprintf(MSG_OUT, "JumpSS VMGM (menu %" PRIu8 ")", vm_getbits(command, 19, 4));
break;
case 2:
fprintf(MSG_OUT, "JumpSS VTSM (vts %" PRIu8 ", title %" PRIu8
", menu %" PRIu8 ")", vm_getbits(command, 30, 7), vm_getbits(command, 38, 7), vm_getbits(command, 19, 4));
break;
case 3:
fprintf(MSG_OUT, "JumpSS VMGM (pgc %" PRIu8 ")", vm_getbits(command, 46, 15));
break;
}
break;
case 8:
switch(vm_getbits(command, 23, 2)) {
case 0:
fprintf(MSG_OUT, "CallSS FP (rsm_cell %" PRIu8 ")",
vm_getbits(command, 31, 8));
break;
case 1:
fprintf(MSG_OUT, "CallSS VMGM (menu %" PRIu8
", rsm_cell %" PRIu8 ")", vm_getbits(command, 19, 4), vm_getbits(command, 31, 8));
break;
case 2:
fprintf(MSG_OUT, "CallSS VTSM (menu %" PRIu8
", rsm_cell %" PRIu8 ")", vm_getbits(command, 19, 4), vm_getbits(command, 31, 8));
break;
case 3:
fprintf(MSG_OUT, "CallSS VMGM (pgc %" PRIu8 ", rsm_cell %" PRIu8 ")",
vm_getbits(command, 46, 15), vm_getbits(command, 31, 8));
break;
}
break;
default:
fprintf(MSG_OUT, "WARNING: Unknown Jump/Call instruction");
}
}
static void print_system_set(command_t* command) {
int i;
/* FIXME: What about SPRM11 ? Karaoke */
/* Surely there must be some system set command for that ? */
switch(vm_getbits(command, 59, 4)) {
case 1: /* Set system reg 1 &| 2 &| 3 (Audio, Subp. Angle) */
for(i = 1; i <= 3; i++) {
if(vm_getbits(command, 47 - (i*8), 1)) {
print_system_reg(i);
fprintf(MSG_OUT, " = ");
print_reg_or_data_2(command, vm_getbits(command, 60, 1), 47 - (i*8) );
fprintf(MSG_OUT, " ");
}
}
break;
case 2: /* Set system reg 9 & 10 (Navigation timer, Title PGC number) */
print_system_reg(9);
fprintf(MSG_OUT, " = ");
print_reg_or_data(command, vm_getbits(command, 60, 1), 47);
fprintf(MSG_OUT, " ");
print_system_reg(10);
fprintf(MSG_OUT, " = %" PRIu16, vm_getbits(command, 30, 15)); /* ?? */
break;
case 3: /* Mode: Counter / Register + Set */
fprintf(MSG_OUT, "SetMode ");
if(vm_getbits(command, 23, 1))
fprintf(MSG_OUT, "Counter ");
else
fprintf(MSG_OUT, "Register ");
print_g_reg(vm_getbits(command, 19, 4));
print_set_op(0x1); /* '=' */
print_reg_or_data(command, vm_getbits(command, 60, 1), 47);
break;
case 6: /* Set system reg 8 (Highlighted button) */
print_system_reg(8);
if(vm_getbits(command, 60, 1)) /* immediate */
fprintf(MSG_OUT, " = 0x%x (button no %d)", vm_getbits(command, 31, 16), vm_getbits(command, 31, 6));
else
fprintf(MSG_OUT, " = g[%" PRIu8 "]", vm_getbits(command, 19, 4));
break;
default:
fprintf(MSG_OUT, "WARNING: Unknown system set instruction (%i)",
vm_getbits(command, 59, 4));
}
}
static void print_set_version_1(command_t* command) {
uint8_t set_op = vm_getbits(command, 59, 4);
if(set_op) {
print_g_reg(vm_getbits(command, 35, 4));
print_set_op(set_op);
print_reg_or_data(command, vm_getbits(command, 60, 1), 31);
} else {
fprintf(MSG_OUT, "NOP");
}
}
static void print_set_version_2(command_t* command) {
uint8_t set_op = vm_getbits(command, 59, 4);
if(set_op) {
print_g_reg(vm_getbits(command, 51, 4));
print_set_op(set_op);
print_reg_or_data(command, vm_getbits(command, 60, 1), 47);
} else {
fprintf(MSG_OUT, "NOP");
}
}
static void print_set_version_3(command_t* command) {
uint8_t set_op = vm_getbits(command, 59, 4);
if(set_op) {
print_g_reg(vm_getbits(command, 51, 4));
print_set_op(set_op);
print_reg_or_data_3(command, vm_getbits(command, 60, 1), 47);
} else {
fprintf(MSG_OUT, "NOP");
}
}
void vm_print_mnemonic(vm_cmd_t *vm_command) {
command_t command;
command.instruction =( (uint64_t) vm_command->bytes[0] << 56 ) |
( (uint64_t) vm_command->bytes[1] << 48 ) |
( (uint64_t) vm_command->bytes[2] << 40 ) |
( (uint64_t) vm_command->bytes[3] << 32 ) |
( (uint64_t) vm_command->bytes[4] << 24 ) |
( (uint64_t) vm_command->bytes[5] << 16 ) |
( (uint64_t) vm_command->bytes[6] << 8 ) |
(uint64_t) vm_command->bytes[7] ;
command.examined = 0;
switch(vm_getbits(&command,63,3)) { /* three first bits */
case 0: /* Special instructions */
print_if_version_1(&command);
print_special_instruction(&command);
break;
case 1: /* Jump/Call or Link instructions */
if(vm_getbits(&command,60,1)) {
print_if_version_2(&command);
print_jump_instruction(&command);
} else {
print_if_version_1(&command);
print_link_instruction(&command, 0); /* must be pressent */
}
break;
case 2: /* Set System Parameters instructions */
print_if_version_2(&command);
print_system_set(&command);
print_link_instruction(&command, 1); /* either 'if' or 'link' */
break;
case 3: /* Set General Parameters instructions */
print_if_version_3(&command);
print_set_version_1(&command);
print_link_instruction(&command, 1); /* either 'if' or 'link' */
break;
case 4: /* Set, Compare -> LinkSub instructions */
print_set_version_2(&command);
fprintf(MSG_OUT, ", ");
print_if_version_4(&command);
print_linksub_instruction(&command);
break;
case 5: /* Compare -> (Set and LinkSub) instructions */
print_if_version_5(&command);
fprintf(MSG_OUT, "{ ");
print_set_version_3(&command);
fprintf(MSG_OUT, ", ");
print_linksub_instruction(&command);
fprintf(MSG_OUT, " }");
break;
case 6: /* Compare -> Set, always LinkSub instructions */
print_if_version_5(&command);
fprintf(MSG_OUT, "{ ");
print_set_version_3(&command);
fprintf(MSG_OUT, " } ");
print_linksub_instruction(&command);
break;
default:
fprintf(MSG_OUT, "WARNING: Unknown instruction type (%i)", vm_getbits(&command, 63, 3));
}
/* Check if there still are bits set that were not examined */
if(command.instruction & ~ command.examined) {
fprintf(MSG_OUT, " libdvdnav: vmcmd.c: [WARNING, unknown bits:");
fprintf(MSG_OUT, " %08llx", (command.instruction & ~ command.examined) );
fprintf(MSG_OUT, "]");
}
}
void vm_print_cmd(int row, vm_cmd_t *vm_command) {
int i;
fprintf(MSG_OUT, "(%03d) ", row + 1);
for(i = 0; i < 8; i++)
fprintf(MSG_OUT, "%02x ", vm_command->bytes[i]);
fprintf(MSG_OUT, "| ");
vm_print_mnemonic(vm_command);
fprintf(MSG_OUT, "\n");
}
|