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 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
|
/*
* libMirage: utility functions and helpers
* Copyright (C) 2006-2014 Rok Mandeljc
*
* This program 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.
*
* This program 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.
*/
/**
* SECTION: mirage-utils
* @title: Utilities
* @short_description: Various helper and utility functions.
* @include: mirage-utils.h
*
* These functions cover various functionality. They are exported
* because, while primarily designed to be used within libMirage, they
* could also prove useful to other applications.
*/
#include "mirage/config.h"
#include "mirage/mirage.h"
#include <glib/gi18n-lib.h>
/**********************************************************************\
* Data patterns *
\**********************************************************************/
/**
* mirage_pattern_sync:
*
* A 12-byte sync pattern, found at the beginning of non-audio sectors.
*/
const guint8 mirage_pattern_sync[12] = { 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00 };
/**
* mirage_pattern_cd001:
*
* A 8-byte CD001 pattern, found at 16th sector of ISO data tracks.
*/
const guint8 mirage_pattern_cd001[8] = { 0x01, 0x43, 0x44, 0x30, 0x30, 0x31, 0x01, 0x00 };
/**
* mirage_pattern_bea01:
*
* A 8-byte BEA01 pattern, found at 16th sector of UDF data tracks.
*/
const guint8 mirage_pattern_bea01[8] = { 0x00, 0x42, 0x45, 0x41, 0x30, 0x31, 0x01, 0x00 };
/**********************************************************************\
* File helper functions *
\**********************************************************************/
/* Helper for mirage_find_data_file() */
static gchar *find_data_file (const gchar *path, const gchar *filename)
{
const gchar *test_filename;
gchar *ret_filename;
GDir *dir;
gint filename_len, test_filename_len, ret_filename_len;
/* Try combining path and basename first */
ret_filename = g_build_filename(path, filename, NULL);
if (g_file_test(ret_filename, G_FILE_TEST_IS_REGULAR)) {
return ret_filename;
}
g_free(ret_filename);
/* Do case-insensitive search among the files found in path. Match
only against beginning of the hypothesized filename, so that we
also get results with additional suffices. E.g., if we search
for file.dat, accept file.dat.gz as well. But always return the
shortest match. */
dir = g_dir_open(path, 0, NULL);
if (!dir) {
return NULL;
}
/* Store length of input filename */
filename_len = strlen(filename);
ret_filename = NULL;
ret_filename_len = G_MAXINT;
while ((test_filename = g_dir_read_name(dir))) {
/* Make sure beginning matches */
if (mirage_helper_strncasecmp(test_filename, filename, filename_len)) {
continue;
}
/* Now check if the name is shorter than what we already have */
test_filename_len = strlen(test_filename);
if (test_filename_len < ret_filename_len) {
/* Make sure file is valid */
gchar *full_filename = g_build_filename(path, test_filename, NULL);
if (g_file_test(full_filename, G_FILE_TEST_IS_REGULAR)) {
g_free(ret_filename);
ret_filename = full_filename;
ret_filename_len = test_filename_len;
} else {
g_free(full_filename);
}
}
}
g_dir_close(dir);
return ret_filename;
}
/**
* mirage_helper_find_data_file:
* @filename: (in): declared filename
* @path: (in) (allow-none): path where to look for file (can be a filename), or %NULL
*
* Attempts to find a file with filename @filename and path @path. @filename can
* be file's basename or an absolute path. @path can be either directory path (in
* this case, it must end with '/') or a filename (i.e. of file descriptor).
*
* If @filename is an absolute path, its existence is first checked. If it
* does not exist, search (see below) is performed in @filename's dirname. If
* still no match is found and @path is not %NULL, @path's dirname is combined
* with @filename's basename, and the combination's existence is checked. If
* that fails as well, search (see below) is performed in @path's dirname.
* Searching in the directory is performed as follows. Directory is opened
* and its content is case-insensitively compared to @filename's basename.
* All filenames whose beginning match @filename are considered, and the
* shortest one is returned. This way, all possible case variations
* (i.e. file.iso, FILE.ISO, FiLe.IsO, etc.) are taken into account.
* This function can return a filename with additional suffices, but only if
* a file without those extra suffices does not exist. E.g., if search is
* done for 'data.img', and only 'data.img.gz' exists, it will be returned.
* However, if both 'data.img' and 'data.img.gz' exist, the former will be
* returned.
* The returned string should be freed when no longer needed.
*
* Returns: a newly allocated string containing the fullpath of file, or %NULL.
*/
gchar *mirage_helper_find_data_file (const gchar *filename, const gchar *path)
{
gchar *ret_filename = NULL;
gchar *dirname;
gchar *basename;
/* We'll need basename either way */
basename = g_path_get_basename(filename);
/* If filename is an absolute path, try using it first */
if (g_path_is_absolute(filename)) {
/* Directory name from filename */
dirname = g_path_get_dirname(filename);
/* Find the filename using our helper */
ret_filename = find_data_file(dirname, basename);
g_free(dirname);
/* If found, return */
if (ret_filename) {
g_free(basename);
return ret_filename;
}
}
/* If path is provided, try using it */
if (path) {
/* Directory name from provided path */
dirname = g_path_get_dirname(path);
/* Find the filename using our helper */
ret_filename = find_data_file(dirname, basename);
g_free(dirname);
}
g_free(basename);
/* Either we found it, or we return NULL */
return ret_filename;
}
/**
* mirage_helper_get_suffix:
* @filename: (in): filename
*
* Retrieves suffix from @filename.
*
* Returns: (transfer none): pointer to character in @filename at which the suffix starts.
*/
const gchar *mirage_helper_get_suffix (const gchar *filename)
{
return g_strrstr(filename, ".");
}
/**
* mirage_helper_has_suffix:
* @filename: (in): filename
* @suffix: (in): suffix
*
* Checks whether file name @filename ends with suffix @suffix.
*
* Returns: %TRUE if @filename contains suffix @suffix, %FALSE if not
*/
gboolean mirage_helper_has_suffix (const gchar *filename, const gchar *suffix)
{
g_return_val_if_fail(filename != NULL, FALSE);
g_return_val_if_fail(suffix != NULL, FALSE);
const gchar *file_suffix = mirage_helper_get_suffix(filename);
/* If file has no suffix, don't bother */
if (!file_suffix) {
return FALSE;
}
return mirage_helper_strcasecmp(file_suffix, suffix) == 0;
}
/**
* mirage_helper_strcasecmp:
* @str1: (in): first string
* @str2: (in): second string
*
* Replacement function for g_strcasecmp/strcasecmp, which can properly handle UTF-8.
* Glib docs state this is only an approximation, albeit it should be a fairly good one.
*
* It compares the two strings @str1 and @str2, ignoring the case of the characters.
* It returns an integer less than, equal to, or greater than zero if @str1 is found,
* respectively, to be less than, to match, or be greater than @str2.
*
* Returns: an integer less than, equal to, or greater than zero if @str1
* is found, respectively, to be less than, to match, or be greater than @str2.
*/
gint mirage_helper_strcasecmp (const gchar *str1, const gchar *str2)
{
gchar *s1 = g_utf8_casefold(str1, -1);
gchar *s2 = g_utf8_casefold(str2, -1);
gint rv;
rv = g_utf8_collate(s1, s2);
g_free(s1);
g_free(s2);
return rv;
}
/**
* mirage_helper_strncasecmp:
* @str1: (in): first string
* @str2: (in): second string
* @len: (in): length of string to compare
*
* Replacement function for g_strncasecmp/strncasecmp, which can properly handle UTF-8.
* Glib docs state this is only an approximation, albeit it should be a fairly good one.
*
* It compares first @len characters of string @str1 and @str2, ignoring the case of
* the characters. It returns an integer less than, equal to, or greater than zero if
* first @len characters of @str1 is found, respectively, to be less than, to match,
* or be greater than first @len characters of @str2.
*
* Returns: an integer less than, equal to, or greater than zero if first @len
* characters of @str1 is found, respectively, to be less than, to match, or
* be greater than first @len characters of @str2.
*/
gint mirage_helper_strncasecmp (const gchar *str1, const gchar *str2, gint len)
{
gchar *s1 = g_utf8_casefold(str1, len);
gchar *s2 = g_utf8_casefold(str2, len);
gint rv;
rv = g_utf8_collate(s1, s2);
g_free(s1);
g_free(s2);
return rv;
}
/**********************************************************************\
* MSF/LBA utility functions *
\**********************************************************************/
/**
* mirage_helper_lba2msf:
* @lba: (in): LBA address
* @diff: (in): account for the difference
* @m: (out) (allow-none): location to store minutes, or %NULL
* @s: (out) (allow-none): location to store seconds, or %NULL
* @f: (out) (allow-none): location to store frames, or %NULL
*
* Converts LBA sector address stored in @lba into MSF address, storing each field
* into @m, @s and @f, respectively.
*
* If @diff is %TRUE, 150 frames difference is accounted for; this should be
* used when converting absolute addresses. When converting relative addresses
* (or lengths), @diff should be set to %FALSE.
*
*/
void mirage_helper_lba2msf (gint lba, gboolean diff, guint8 *m, guint8 *s, guint8 *f)
{
if (diff) {
lba += 150;
}
if (lba < 0) {
lba += 450000;
}
if (m) *m = lba/(75*60);
if (s) *s = (lba /75) % 60;
if (f) *f = lba % 75;
return;
}
/**
* mirage_helper_lba2msf_str:
* @lba: (in): LBA address
* @diff: (in): account for the difference
*
* Converts LBA sector address stored in @lba into MSF address.
*
* If @diff is %TRUE, 150 frames difference is accounted for; this should be
* used when converting absolute addresses. When converting relative addresses
* (or lengths), @diff should be set to %FALSE.
*
* Returns: a newly-allocated string containing MSF address; it should be freed
* with g_free() when no longer needed.
*/
gchar *mirage_helper_lba2msf_str (gint lba, gboolean diff)
{
gchar *ret;
if (diff) {
lba += 150;
}
if (lba < 0) {
lba += 450000;
}
ret = g_strdup_printf("%02d:%02d:%02d", lba/(75*60), (lba/75) % 60, lba % 75);
return ret;
}
/**
* mirage_helper_msf2lba:
* @m: (in): minutes
* @s: (in): seconds
* @f: (in): frames
* @diff: (in): difference
*
* Converts MSF sector address stored in @m, @s and @f into LBA address.
*
* If @diff is %TRUE, 150 frames difference is accounted for; this should be
* used when converting absolute addresses. When converting relative addresses
* (or lengths), @diff should be set to %FALSE.
*
* Returns: integer representing LBA address
*/
gint mirage_helper_msf2lba (guint8 m, guint8 s, guint8 f, gboolean diff)
{
gint lba = (m*60+s)*75 + f;
if (diff) {
lba -= 150;
}
if (m >= 90) {
lba -= 450000;
}
return lba;
}
/**
* mirage_helper_msf2lba_str:
* @msf: (in): MSF string
* @diff: (in): difference
*
* Converts MSF sector address stored in @msf string into LBA address.
*
* If @diff is %TRUE, 150 frames difference is accounted for; this should be
* used when converting absolute addresses. When converting relative addresses
* (or lengths), @diff should be set to %FALSE.
*
* Returns: integer representing LBA address or -1 on failure.
*/
gint mirage_helper_msf2lba_str (const gchar *msf, gboolean diff)
{
gint ret, m, s, f;
if (!msf) return -1;
ret = sscanf(msf, "%d:%d:%d", &m, &s, &f);
if (ret != 3) return -1;
return mirage_helper_msf2lba(m, s, f, diff);
}
/**********************************************************************\
* Hex/BCD utility functions *
\**********************************************************************/
/**
* mirage_helper_hex2bcd:
* @hex: (in): hex-encoded integer
*
* Converts hex-encoded integer into bcd-encoded integer.
*
* Returns: bcd-encoded integer
*/
gint mirage_helper_hex2bcd (gint hex)
{
if (hex >= 0 && hex <= 99) {
return ((hex / 10) << 4) | (hex % 10);
} else {
return hex;
}
}
/**
* mirage_helper_bcd2hex:
* @bcd: (in): bcd-encoded integer
*
* Converts bcd-encoded integer into hex-encoded integer.
*
* Returns: hex-encoded integer
*/
gint mirage_helper_bcd2hex (gint bcd)
{
guint8 d1 = bcd & 0x0f;
guint8 d2 = bcd >> 4;
if (d1 <= 9 && d2 <= 9) {
return d2 * 10 + d1;
} else {
return bcd;
}
}
/**********************************************************************\
* ASCII/ISRC utility functions *
\**********************************************************************/
/**
* mirage_helper_ascii2isrc:
* @c: (in): ASCII character
*
* Converts ASCII character @c into ISRC character.
*
* Returns: ISRC character
*/
guint8 mirage_helper_ascii2isrc (gchar c)
{
if (g_ascii_isdigit(c)) {
return (c - '0') & 0x3F;
}
if (g_ascii_isupper(c)) {
return (c - 'A' + 17) & 0x3F;
}
if (g_ascii_islower(c)) {
return (c - 'a' + 17) & 0x3F;
}
return 0;
}
/**
* mirage_helper_isrc2ascii:
* @c: (in): ISRC character
*
* Converts ISRC character @c into ASCII character.
*
* Returns: ACSII character
*/
gchar mirage_helper_isrc2ascii (guint8 c)
{
if (c <= 9) {
return '0' + c;
}
if (c >= 17 && c <= 42) {
return 'A' + (c - 17);
}
return 0;
}
/**
* mirage_helper_validate_isrc:
* @isrc: (in) (array fixed-size=12): An ASCII encoded ISRC string.
*
* Performs a limited validation of an ISRC string.
*
* Returns: TRUE or FALSE
*/
gboolean mirage_helper_validate_isrc (const gchar *isrc)
{
if (!isrc) return FALSE;
if (g_ascii_isalnum(isrc[ 0]) &&
g_ascii_isalnum(isrc[ 1]) &&
g_ascii_isalnum(isrc[ 2]) &&
g_ascii_isalnum(isrc[ 3]) &&
g_ascii_isalnum(isrc[ 4]) &&
g_ascii_isdigit(isrc[ 5]) &&
g_ascii_isdigit(isrc[ 6]) &&
g_ascii_isdigit(isrc[ 7]) &&
g_ascii_isdigit(isrc[ 8]) &&
g_ascii_isdigit(isrc[ 9]) &&
g_ascii_isdigit(isrc[10]) &&
g_ascii_isdigit(isrc[11]))
{
return TRUE;
}
return FALSE;
}
/**********************************************************************\
* Cyclic Redundancy Check (CRC) routines *
\**********************************************************************/
/**
* crc16_1021_lut:
*
* Global look-up table for computing CRC16 with generator polygon value
* 0x1021, used for computing CRC in Q sub-channel in
* mirage_helper_subchannel_q_calculate_crc().
*
* The look-up table buffer is allocated and initialized by
* mirage_initialize(), using mirage_helper_init_crc16_lut(). It is
* freed and cleared by mirage_shutdown().
*
* The lookup table is generated from the polynomial given as:
* P(x) = x^16 + x^12 + x^5 + x^0 =
* x^16 + x^12 + x^5 + 1
* Where only the 16 lowest bits are used:
* 0x11021 & 0xFFFF = 0x1021
*/
guint16 *crc16_1021_lut = NULL;
/**
* crc32_d8018001_lut:
*
* Global look-up table for computing CRC32 with generator polygon value
* 0xD8018001, used for computing CRC (EDC) over sector data in
* mirage_helper_sector_edc_ecc_compute_edc_block().
*
* The look-up table buffer is allocated and initialized by
* mirage_initialize(), using mirage_helper_init_crc32_lut(). It is
* freed and cleared by mirage_shutdown().
*
* The lookup table is generated from the polynomial given as:
* P(x) = (x^16 + x^15 + x^2 + x^0) * (x^16 + x^2 + x^1 + x^0) =
* x^32 + x^31 + x^16 + x^15 + x^4 + x^3 + x + 1
* Where only the 32 lowest bits are used:
* 0x18001801B & 0xFFFFFFFF = 0x8001801B
* This value is then reflected (reversed bitwise):
* 0x8001801B -> 0xD8018001
*/
guint32 *crc32_d8018001_lut = NULL;
/**
* mirage_helper_init_crc16_lut:
* @genpoly: (in): generator polynomial
*
* Calculates a look-up table for CRC16 based on the generator polynomial.
*
* Returns: Pointer to the CRC16 look-up table or NULL on failure.
*/
guint16 *mirage_helper_init_crc16_lut (guint16 genpoly)
{
guint16 *crc16_lut = g_try_new(guint16, 256);
if (!crc16_lut) {
return NULL;
}
/* Generate look-up table */
for (guint i = 0; i < 256; ++i) {
guint16 value = 0;
guint16 temp = i << 8;
for(guint j = 0; j < 8; ++j) {
if ((value ^ temp) & 0x8000) {
value = ((value << 1) ^ genpoly);
} else {
value <<= 1;
}
temp <<= 1;
}
crc16_lut[i] = value;
}
return crc16_lut;
}
#define CRC32_LUT(tab, idx) crc32_lut[(tab) * 256 + (idx)]
/**
* mirage_helper_init_crc32_lut:
* @genpoly: (in): generator polynomial
* @slices: (in): number of bytes to process at once
*
* Calculates a look-up table for CRC32 based on the generator polynomial.
* The size of the lookup table depends on @slices. The standard algorithm
* processes 1 byte at a time and has a look-up table size of 1KiB, whereas
* The slice-by-4 and slice-by-8 algorithms use 4 and 8 KiB look-up tables that
* are derived from the initial look-up table.
*
* Returns: Pointer to the CRC32 look-up table or NULL on failure.
*/
guint32 *mirage_helper_init_crc32_lut (guint32 genpoly, guint slices)
{
/* Check if slices in in the valid range */
if (slices < 1 || slices > 8) {
return NULL;
}
guint32 *crc32_lut = g_try_new(guint32, slices * 256);
if (!crc32_lut) {
return NULL;
}
/* Generate look-up table for slice-by-1 */
if (slices >= 1) {
for (guint i = 0; i < 256; i++) {
guint32 crc = i;
for (guint j = 0; j < 8; j++) {
crc = (crc >> 1) ^ ((crc & 1) * genpoly);
}
CRC32_LUT(0, i) = crc;
}
}
/* Generate look-up tables for slice-by-4 (and slice-by-8) */
if (slices >= 4) {
for (guint i = 0; i < 256; i++) {
CRC32_LUT(1, i) = (CRC32_LUT(0, i) >> 8) ^ CRC32_LUT(0, CRC32_LUT(0, i) & 0xFF);
CRC32_LUT(2, i) = (CRC32_LUT(1, i) >> 8) ^ CRC32_LUT(0, CRC32_LUT(1, i) & 0xFF);
CRC32_LUT(3, i) = (CRC32_LUT(2, i) >> 8) ^ CRC32_LUT(0, CRC32_LUT(2, i) & 0xFF);
}
}
/* Generate look-up tables for slice-by-8 */
if (slices >= 8) {
for (guint i = 0; i < 256; i++) {
CRC32_LUT(4, i) = (CRC32_LUT(3, i) >> 8) ^ CRC32_LUT(0, CRC32_LUT(3, i) & 0xFF);
CRC32_LUT(5, i) = (CRC32_LUT(4, i) >> 8) ^ CRC32_LUT(0, CRC32_LUT(4, i) & 0xFF);
CRC32_LUT(6, i) = (CRC32_LUT(5, i) >> 8) ^ CRC32_LUT(0, CRC32_LUT(5, i) & 0xFF);
CRC32_LUT(7, i) = (CRC32_LUT(6, i) >> 8) ^ CRC32_LUT(0, CRC32_LUT(6, i) & 0xFF);
}
}
return crc32_lut;
}
/**
* mirage_helper_calculate_crc16:
* @data: (in) (array length=length): buffer containing data
* @length: (in): length of data
* @crctab: (in) (array fixed-size=256): pointer to CRC polynomial table
* @reflected: (in): whether to use the reflected algorithm
* @invert: (in): whether the result should be inverted
*
* Calculates the CRC-16 checksum of the data stored in @data.
*
* Returns: CRC-16 checksum of data
*/
guint16 mirage_helper_calculate_crc16 (const guint8 *data, guint length, const guint16 *crctab, gboolean reflected, gboolean invert)
{
guint16 crc = 0;
g_assert(data && crctab);
if (!reflected) {
while (length--) {
crc = (crc << 8) ^ crctab[(crc >> 8) ^ *data++];
}
} else {
while (length--) {
crc = (crc >> 8) ^ crctab[(crc & 0xFF) ^ *data++];
}
}
if (invert) {
crc = ~crc;
}
return crc;
}
/**
* mirage_helper_calculate_crc32_fast:
* @data: (in) (array length=length): buffer containing data
* @length: (in): length of data
* @crctab: (in) (array fixed-size=2048): pointer to CRC polynomial table
* @reflected: (in): whether to use the reflected algorithm
* @invert: (in): whether the initial value and result should be inverted
*
* Calculates the CRC-32 checksum of the data stored in @data. This is
* fast slice-by-8 implementation that processes 8 bytes at a time, and
* requires @crctab to be allocating using mirage_helper_init_crc32_lut()
* with slice parameter set to 8.
*
* Returns: CRC-32 checksum of data
*/
guint32 mirage_helper_calculate_crc32_fast (const guint8 *data, guint length, const guint32 *crctab, gboolean reflected, gboolean invert)
{
guint32 crc = 0;
const guint32 *crc32_lut = crctab;
guint32 *current = (guint32 *)data;
guint8 *current2 = (guint8 *)data;
g_assert(data && crctab);
if (invert) {
crc = ~crc;
}
if (!reflected) {
/* FIXME: Implement non-reflected version of slicing-by-8 algorithm */
while (length--) {
crc = (crc << 8) ^ crctab[(crc >> 24) ^ *data++];
}
} else {
/* Process any initial un-aligned bytes */
guint ub = ((gulong) current) % sizeof(guint64);
if (ub) {
guint temp = ub = sizeof(guint64) - ub;
while (temp--) {
crc = (crc >> 8) ^ CRC32_LUT(0, (crc & 0xFF) ^ *current2++);
}
current = (guint32*) ((guint8*) current + ub);
length -= ub;
}
/* Make sure we are 64-bit aligned here */
g_assert((((gulong) current) % sizeof(guint64)) == 0);
/* Process eight bytes at once */
while (length >= 8) {
if (G_BYTE_ORDER == G_LITTLE_ENDIAN) {
guint32 one = *current++ ^ crc;
guint32 two = *current++;
crc = CRC32_LUT(0, (two >> 24) ) ^
CRC32_LUT(1, (two >> 16) & 0xFF) ^
CRC32_LUT(2, (two >> 8 ) & 0xFF) ^
CRC32_LUT(3, (two ) & 0xFF) ^
CRC32_LUT(4, (one >> 24) ) ^
CRC32_LUT(5, (one >> 16) & 0xFF) ^
CRC32_LUT(6, (one >> 8 ) & 0xFF) ^
CRC32_LUT(7, (one ) & 0xFF);
} else if (G_BYTE_ORDER == G_BIG_ENDIAN) {
guint32 one = *current++ ^ GUINT32_SWAP_LE_BE(crc);
guint32 two = *current++;
crc = CRC32_LUT(0, (two ) & 0xFF) ^
CRC32_LUT(1, (two >> 8 ) & 0xFF) ^
CRC32_LUT(2, (two >> 16) & 0xFF) ^
CRC32_LUT(3, (two >> 24) ) ^
CRC32_LUT(4, (one ) & 0xFF) ^
CRC32_LUT(5, (one >> 8 ) & 0xFF) ^
CRC32_LUT(6, (one >> 16) & 0xFF) ^
CRC32_LUT(7, (one >> 24) );
} else {
g_assert_not_reached();
}
length -= 8;
}
current2 = (guint8 *)current;
/* Process remaining 1 to 7 bytes */
while (length--) {
crc = (crc >> 8) ^ CRC32_LUT(0, (crc & 0xFF) ^ *current2++);
}
}
if (invert) {
crc = ~crc;
}
return crc;
}
/**
* mirage_helper_calculate_crc32_standard:
* @data: (in) (array length=length): buffer containing data
* @length: (in): length of data
* @crctab: (in) (array fixed-size=256): pointer to CRC polynomial table
* @reflected: (in): whether to use the reflected algorithm
* @invert: (in): whether the initial value and result should be inverted
*
* Calculates the CRC-32 checksum of the data stored in @data. This is
* standard inplementation that processes 1 byte at a time, and requires
* @crctab to be allocated using mirage_helper_init_crc32_lut() with slice
* parameter set to 1.
*
* Returns: CRC-32 checksum of data
*/
guint32 mirage_helper_calculate_crc32_standard (const guint8 *data, guint length, const guint32 *crctab, gboolean reflected, gboolean invert)
{
guint32 crc = 0;
if (invert) {
crc = ~crc;
}
g_assert(data && crctab);
if (!reflected) {
while (length--) {
crc = (crc << 8) ^ crctab[(crc >> 24) ^ *data++];
}
} else {
while (length--) {
crc = (crc >> 8) ^ crctab[(crc & 0xFF) ^ *data++];
}
}
if (invert) {
crc = ~crc;
}
return crc;
}
/**********************************************************************\
* Subchannel utility functions *
\**********************************************************************/
/**
* mirage_helper_subchannel_q_calculate_crc:
* @data: (in) (array fixed-size=10): buffer containing Q subchannel data (10 bytes)
*
* Calculates the CRC-16 checksum of the Q subchannel data stored in @data.
*
* Returns: CRC-16 checksum of Q subchannel data
*/
guint16 mirage_helper_subchannel_q_calculate_crc (const guint8 *data)
{
return mirage_helper_calculate_crc16(data, 10, crc16_1021_lut, FALSE, TRUE);
}
/**
* mirage_helper_subchannel_q_encode_mcn:
* @buf: (out caller-allocates) (array fixed-size=7): buffer to encode MCN into (7 bytes)
* @mcn: (in) (array fixed-size=13): MCN string (13 bytes)
*
* Encodes MCN string @mcn into buffer @buf.
*/
void mirage_helper_subchannel_q_encode_mcn (guint8 *buf, const gchar *mcn)
{
const gchar *m = mcn;
for (guint i = 0; i < 6; i++) {
guint8 val;
val = (*m++ - '0') << 4;
val |= (*m++ - '0') & 0x0F;
buf[i] = val;
}
buf[6] = (*m++ - '0') << 4;
}
/**
* mirage_helper_subchannel_q_decode_mcn:
* @buf: (in) (array fixed-size=7): buffer containing encoded MCN (7 bytes)
* @mcn: (out caller-allocates) (array fixed-size=13): string to decode MCN into (13 bytes)
*
* Decodes MCN stored in @buf into string @mcn.
*/
void mirage_helper_subchannel_q_decode_mcn (const guint8 *buf, gchar *mcn)
{
gchar *m = mcn;
for (guint i = 0; i < 6; i++) {
*m++ = (buf[i] >> 4) + '0';
*m++ = (buf[i] & 0x0F) + '0';
}
*m++ = (buf[6] >> 4) + '0';
}
/**
* mirage_helper_subchannel_q_encode_isrc:
* @buf: (out caller-allocates) (array fixed-size=8): buffer to encode ISRC into (8 bytes)
* @isrc: (in) (array fixed-size=12): ISRC string (12 bytes)
*
* Encodes ISRC string @isrc into buffer @buf.
*/
void mirage_helper_subchannel_q_encode_isrc (guint8 *buf, const gchar *isrc)
{
guint8 d;
buf[0] = mirage_helper_ascii2isrc(isrc[0]) << 2;
d = mirage_helper_ascii2isrc(isrc[1]);
buf[0] |= d >> 4;
buf[1] = d << 4;
d = mirage_helper_ascii2isrc(isrc[2]);
buf[1] |= d >> 2;
buf[2] = d << 6;
buf[2] |= mirage_helper_ascii2isrc(isrc[3]);
buf[3] = mirage_helper_ascii2isrc(isrc[4]) << 2;
buf[4] = ((isrc[5] - '0') << 4) | ((isrc[6] - '0') & 0x0F);
buf[5] = ((isrc[7] - '0') << 4) | ((isrc[8] - '0') & 0x0F);
buf[6] = ((isrc[9] - '0') << 4) | ((isrc[10] - '0') & 0x0F);
buf[7] = ((isrc[11] - '0') << 4);
}
/**
* mirage_helper_subchannel_q_decode_isrc:
* @buf: (in) (array fixed-size=8): buffer containing encoded ISRC (8 bytes)
* @isrc: (out caller-allocates) (array fixed-size=12): string to decode ISRC into (12 bytes)
*
* Decodes ISRC stored in @buf into string @isrc.
*/
void mirage_helper_subchannel_q_decode_isrc (const guint8 *buf, gchar *isrc)
{
guint8 d;
d = (buf[0] >> 2) & 0x3F;
isrc[0] = mirage_helper_isrc2ascii(d);
d = ((buf[0] & 0x03) << 4) | ((buf[1] >> 4) & 0x0F);
isrc[1] = mirage_helper_isrc2ascii(d);
d = ((buf[1] & 0x0F) << 2) | ((buf[2] >> 6) & 0x03);
isrc[2] = mirage_helper_isrc2ascii(d);
d = buf[2] & 0x3F;
isrc[3] = mirage_helper_isrc2ascii(d);
d = (buf[3] >> 2) & 0x3F;
isrc[4] = mirage_helper_isrc2ascii(d);
isrc[5] = ((buf[4] >> 4) & 0x0F) + '0';
isrc[6] = (buf[4] & 0x0F) + '0';
isrc[7] = ((buf[5] >> 4) & 0x0F) + '0';
isrc[8] = (buf[5] & 0x0F) + '0';
isrc[9] = ((buf[6] >> 4) & 0x0F) + '0';
isrc[10] = (buf[6] & 0x0F) + '0';
isrc[11] = ((buf[7] >> 4) & 0x0F) + '0';
}
/**
* mirage_helper_subchannel_interleave:
* @subchan: (in): subchannel type
* @channel12: (in) (array fixed-size=12): buffer containing subchannel data to interleave (12 bytes)
* @channel96: (out caller-allocates) (array fixed-size=96): buffer to interleave subchannel data into (96 bytes)
*
* Interleaves subchannel data of type @subchan stored in @channel12 into
* subchannel data stored in @subchannel96.
*/
void mirage_helper_subchannel_interleave (gint subchan, const guint8 *channel12, guint8 *channel96)
{
guint8 *ptr = channel96;
guint8 val;
for (gint i = 0; i < 12; i++) {
for (gint j = 0; j < 8; j++) {
val = (channel12[i] & (0x01 << j)) >> j; /* Make it 1 or 0 */
ptr[7-j] |= (val << subchan);
}
ptr += 8;
}
}
/**
* mirage_helper_subchannel_deinterleave:
* @subchan: (in): subchannel type
* @channel96: (in) (array fixed-size=96): buffer containing subchannel data to deinterleave (96 bytes)
* @channel12: (out caller-allocates) (array fixed-size=12): buffer to deinterleave subchannel data into (12 bytes)
*
* Deinterleaves subchannel data of type @subchan from subchannel data stored in
* @channel96 and writes the resulting subhcannel data into @subchannel12.
*/
void mirage_helper_subchannel_deinterleave (gint subchan, const guint8 *channel96, guint8 *channel12)
{
for (gint i = 0; i < 12; i++) {
for (gint j = 0; j < 8; j++) {
guint8 val = (channel96[i*8+j] & (0x01 << subchan)) >> subchan;
channel12[i] |= (val << (7-j));
}
}
}
/**********************************************************************\
* EDC/ECC utility functions *
\**********************************************************************/
/* The following code is based on Neill Corlett's ECM code */
static const guint8 ecc_f_lut[256] = {
0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, 0x10, 0x12, 0x14, 0x16,
0x18, 0x1A, 0x1C, 0x1E, 0x20, 0x22, 0x24, 0x26, 0x28, 0x2A, 0x2C, 0x2E,
0x30, 0x32, 0x34, 0x36, 0x38, 0x3A, 0x3C, 0x3E, 0x40, 0x42, 0x44, 0x46,
0x48, 0x4A, 0x4C, 0x4E, 0x50, 0x52, 0x54, 0x56, 0x58, 0x5A, 0x5C, 0x5E,
0x60, 0x62, 0x64, 0x66, 0x68, 0x6A, 0x6C, 0x6E, 0x70, 0x72, 0x74, 0x76,
0x78, 0x7A, 0x7C, 0x7E, 0x80, 0x82, 0x84, 0x86, 0x88, 0x8A, 0x8C, 0x8E,
0x90, 0x92, 0x94, 0x96, 0x98, 0x9A, 0x9C, 0x9E, 0xA0, 0xA2, 0xA4, 0xA6,
0xA8, 0xAA, 0xAC, 0xAE, 0xB0, 0xB2, 0xB4, 0xB6, 0xB8, 0xBA, 0xBC, 0xBE,
0xC0, 0xC2, 0xC4, 0xC6, 0xC8, 0xCA, 0xCC, 0xCE, 0xD0, 0xD2, 0xD4, 0xD6,
0xD8, 0xDA, 0xDC, 0xDE, 0xE0, 0xE2, 0xE4, 0xE6, 0xE8, 0xEA, 0xEC, 0xEE,
0xF0, 0xF2, 0xF4, 0xF6, 0xF8, 0xFA, 0xFC, 0xFE, 0x1D, 0x1F, 0x19, 0x1B,
0x15, 0x17, 0x11, 0x13, 0x0D, 0x0F, 0x09, 0x0B, 0x05, 0x07, 0x01, 0x03,
0x3D, 0x3F, 0x39, 0x3B, 0x35, 0x37, 0x31, 0x33, 0x2D, 0x2F, 0x29, 0x2B,
0x25, 0x27, 0x21, 0x23, 0x5D, 0x5F, 0x59, 0x5B, 0x55, 0x57, 0x51, 0x53,
0x4D, 0x4F, 0x49, 0x4B, 0x45, 0x47, 0x41, 0x43, 0x7D, 0x7F, 0x79, 0x7B,
0x75, 0x77, 0x71, 0x73, 0x6D, 0x6F, 0x69, 0x6B, 0x65, 0x67, 0x61, 0x63,
0x9D, 0x9F, 0x99, 0x9B, 0x95, 0x97, 0x91, 0x93, 0x8D, 0x8F, 0x89, 0x8B,
0x85, 0x87, 0x81, 0x83, 0xBD, 0xBF, 0xB9, 0xBB, 0xB5, 0xB7, 0xB1, 0xB3,
0xAD, 0xAF, 0xA9, 0xAB, 0xA5, 0xA7, 0xA1, 0xA3, 0xDD, 0xDF, 0xD9, 0xDB,
0xD5, 0xD7, 0xD1, 0xD3, 0xCD, 0xCF, 0xC9, 0xCB, 0xC5, 0xC7, 0xC1, 0xC3,
0xFD, 0xFF, 0xF9, 0xFB, 0xF5, 0xF7, 0xF1, 0xF3, 0xED, 0xEF, 0xE9, 0xEB,
0xE5, 0xE7, 0xE1, 0xE3
};
static const guint8 ecc_b_lut[256] = {
0x00, 0xF4, 0xF5, 0x01, 0xF7, 0x03, 0x02, 0xF6, 0xF3, 0x07, 0x06, 0xF2,
0x04, 0xF0, 0xF1, 0x05, 0xFB, 0x0F, 0x0E, 0xFA, 0x0C, 0xF8, 0xF9, 0x0D,
0x08, 0xFC, 0xFD, 0x09, 0xFF, 0x0B, 0x0A, 0xFE, 0xEB, 0x1F, 0x1E, 0xEA,
0x1C, 0xE8, 0xE9, 0x1D, 0x18, 0xEC, 0xED, 0x19, 0xEF, 0x1B, 0x1A, 0xEE,
0x10, 0xE4, 0xE5, 0x11, 0xE7, 0x13, 0x12, 0xE6, 0xE3, 0x17, 0x16, 0xE2,
0x14, 0xE0, 0xE1, 0x15, 0xCB, 0x3F, 0x3E, 0xCA, 0x3C, 0xC8, 0xC9, 0x3D,
0x38, 0xCC, 0xCD, 0x39, 0xCF, 0x3B, 0x3A, 0xCE, 0x30, 0xC4, 0xC5, 0x31,
0xC7, 0x33, 0x32, 0xC6, 0xC3, 0x37, 0x36, 0xC2, 0x34, 0xC0, 0xC1, 0x35,
0x20, 0xD4, 0xD5, 0x21, 0xD7, 0x23, 0x22, 0xD6, 0xD3, 0x27, 0x26, 0xD2,
0x24, 0xD0, 0xD1, 0x25, 0xDB, 0x2F, 0x2E, 0xDA, 0x2C, 0xD8, 0xD9, 0x2D,
0x28, 0xDC, 0xDD, 0x29, 0xDF, 0x2B, 0x2A, 0xDE, 0x8B, 0x7F, 0x7E, 0x8A,
0x7C, 0x88, 0x89, 0x7D, 0x78, 0x8C, 0x8D, 0x79, 0x8F, 0x7B, 0x7A, 0x8E,
0x70, 0x84, 0x85, 0x71, 0x87, 0x73, 0x72, 0x86, 0x83, 0x77, 0x76, 0x82,
0x74, 0x80, 0x81, 0x75, 0x60, 0x94, 0x95, 0x61, 0x97, 0x63, 0x62, 0x96,
0x93, 0x67, 0x66, 0x92, 0x64, 0x90, 0x91, 0x65, 0x9B, 0x6F, 0x6E, 0x9A,
0x6C, 0x98, 0x99, 0x6D, 0x68, 0x9C, 0x9D, 0x69, 0x9F, 0x6B, 0x6A, 0x9E,
0x40, 0xB4, 0xB5, 0x41, 0xB7, 0x43, 0x42, 0xB6, 0xB3, 0x47, 0x46, 0xB2,
0x44, 0xB0, 0xB1, 0x45, 0xBB, 0x4F, 0x4E, 0xBA, 0x4C, 0xB8, 0xB9, 0x4D,
0x48, 0xBC, 0xBD, 0x49, 0xBF, 0x4B, 0x4A, 0xBE, 0xAB, 0x5F, 0x5E, 0xAA,
0x5C, 0xA8, 0xA9, 0x5D, 0x58, 0xAC, 0xAD, 0x59, 0xAF, 0x5B, 0x5A, 0xAE,
0x50, 0xA4, 0xA5, 0x51, 0xA7, 0x53, 0x52, 0xA6, 0xA3, 0x57, 0x56, 0xA2,
0x54, 0xA0, 0xA1, 0x55
};
/**
* mirage_helper_sector_edc_ecc_compute_edc_block:
* @src: (in) (array length=size): data to calculate EDC data for
* @size: (in): size of data in @src
* @dest: (out caller-allocates) (array fixed-size=4): buffer to write calculated EDC data into (4 bytes)
*
* Calculates EDC (error detection code) for data in @src of length @size and
* writes the result into @dest.
*
* To calculate EDC for different types of sectors and store it into sector data, use:
* <itemizedlist>
* <listitem>
* Mode 1 sector:
* <programlisting>
* mirage_helper_sector_edc_ecc_compute_edc_block(sector_buffer+0x00, 0x810, sector_buffer+0x810);
* </programlisting>
* </listitem>
* <listitem>
* Mode 2 Form 1 sector:
* <programlisting>
* mirage_helper_sector_edc_ecc_compute_edc_block(sector_buffer+0x10, 0x808, sector_buffer+0x818);
* </programlisting>
* </listitem>
* <listitem>
* Mode 2 Form 2 sector:
* <programlisting>
* mirage_helper_sector_edc_ecc_compute_edc_block(sector_buffer+0x10, 0x91C, sector_buffer+0x92C);
* </programlisting>
* </listitem>
* </itemizedlist>
* (This is assuming all other sector data is already stored in sector_buffer and that sector_buffer is 2532 bytes long)
*/
void mirage_helper_sector_edc_ecc_compute_edc_block (const guint8 *src, guint16 size, guint8 *dest)
{
guint32 edc;
guint32 *dest2 = (guint32 *) dest;
edc = mirage_helper_calculate_crc32_fast(src, size, crc32_d8018001_lut, TRUE, FALSE);
*dest2 = GUINT32_TO_LE(edc);
}
/**
* mirage_helper_sector_edc_ecc_compute_ecc_block:
* @src: (in): data to calculate ECC data for
* @major_count: (in): major count
* @minor_count: (in): minor count
* @major_mult: (in): major multiplicator
* @minor_inc: (in): minor increment
* @dest: (out caller-allocates): buffer to write calculated ECC data into
*
* Calculates ECC (error correction code) for data in @src and writes the result
* into @dest. The code assumes 2352 byte sectors. It can calculate both P and Q
* layer of ECC data, depending on @major_count, @minor_count, @major_mult and
* minor_inc.
*
* To calculate ECC (first P, then Q layer) for different types of sectors and store it into sector data, use:
* <itemizedlist>
* <listitem>
* Mode 1 sector:
* <programlisting>
* mirage_helper_sector_edc_ecc_compute_ecc_block(sector_buffer+0xC, 86, 24, 2, 86, sector_buffer+0x81C);
* mirage_helper_sector_edc_ecc_compute_ecc_block(sector_buffer+0xC, 52, 43, 86, 88, sector_buffer+0x8C8);
* </programlisting>
* </listitem>
* <listitem>
* Mode 2 Form 1 sector:
* <programlisting>
* mirage_helper_sector_edc_ecc_compute_ecc_block(sector_buffer+0xC, 86, 24, 2, 86, sector_buffer+0x81C); \n
* mirage_helper_sector_edc_ecc_compute_ecc_block(sector_buffer+0xC, 52, 43, 86, 88, sector_buffer+0x8C8);
* </programlisting>
* </listitem>
* </itemizedlist>
* (This is assuming all other sector data, including EDC, is already stored in sector_buffer and that sector_buffer is 2532 bytes long)
*/
void mirage_helper_sector_edc_ecc_compute_ecc_block (const guint8 *src, guint32 major_count, guint32 minor_count, guint32 major_mult, guint32 minor_inc, guint8 *dest)
{
guint32 size = major_count * minor_count;
guint32 index;
guint8 ecc_a, ecc_b, temp;
for (guint32 major = 0; major < major_count; major++) {
index = (major >> 1) * major_mult + (major & 1);
ecc_a = 0;
ecc_b = 0;
for (guint32 minor = 0; minor < minor_count; minor++) {
temp = src[index];
index += minor_inc;
if (index >= size) {
index -= size;
}
ecc_a ^= temp;
ecc_b ^= temp;
ecc_a = ecc_f_lut[ecc_a];
}
ecc_a = ecc_b_lut[ecc_f_lut[ecc_a] ^ ecc_b];
dest[major ] = ecc_a;
dest[major + major_count] = ecc_a ^ ecc_b;
}
}
/**
* mirage_helper_determine_sector_type:
* @buf: (in): buffer containing at least first 16 bytes of sector's data
*
* Determines sector type from its data, based on first 16 bytes, which
* correspond to sync pattern and header.
*
* This function is intened to be used in image parsers, for determining
* track mode in cases when full (2352-byte) sector data is available.
*
* Returns: sector type (one of %MirageSectorType)
*/
MirageSectorType mirage_helper_determine_sector_type (const guint8 *buf)
{
if (!memcmp(buf, mirage_pattern_sync, sizeof(mirage_pattern_sync))) {
switch (buf[15]) {
case 0: return MIRAGE_SECTOR_MODE0;
case 1: return MIRAGE_SECTOR_MODE1;
case 2: return MIRAGE_SECTOR_MODE2_MIXED;
}
}
/* No sync pattern; assume audio sector */
return MIRAGE_SECTOR_AUDIO;
}
/**********************************************************************\
* Text data encoding *
\**********************************************************************/
static const guint8 bom_utf32be[] = { 0x00, 0x00, 0xFE, 0xFF };
static const gchar utf32be[] = "utf-32be";
static const guint8 bom_utf32le[] = { 0xFF, 0xFE, 0x00, 0x00 };
static const gchar utf32le[] = "utf-32le";
static const guint8 bom_utf16be[] = { 0xFE, 0xFF };
static const gchar utf16be[] = "utf-16be";
static const guint8 bom_utf16le[] = { 0xFF, 0xFE };
static const gchar utf16le[] = "utf-16le";
/**
* mirage_helper_encoding_from_bom:
* @buffer: (in) (transfer none) (array fixed-size=4): a 4-byte buffer containing BOM
*
* Tries to decode BOM provided in @buffer, and based on the result
* returns the following encodings: UTF-32BE, UTF32-LE, UTF-16LE, UTF-16BE
* or UTF-8 (if BOM is not valid).
*
* Returns: (transfer none): the name of encoding, or %NULL if UTF-8 is
* assumed. The string is statically stored and should not be modified.
*/
const gchar *mirage_helper_encoding_from_bom (const guint8 *buffer)
{
/* Identify the encoding */
if (!memcmp(buffer, bom_utf32be, sizeof(bom_utf32be))) {
return utf32be;
} else if (!memcmp(buffer, bom_utf32le, sizeof(bom_utf32le))) {
return utf32le;
} else if (!memcmp(buffer, bom_utf16be, sizeof(bom_utf16be))) {
return utf16be;
} else if (!memcmp(buffer, bom_utf16le, sizeof(bom_utf16le))) {
return utf16le;
}
return NULL;
}
/**********************************************************************\
* ECMA-130 Annex B sector data scrambler *
\**********************************************************************/
/**
* ecma_130_scrambler_lut:
*
* Global look-up table for scrambling/de-scrambling sector data as
* per ECMA-130, Annex B. Used by mirage_sector_scramble().
*
* The look-up table buffer is allocated and initialized by
* mirage_initialize(), using mirage_helper_init_ecma_130b_scrambler_lut().
* It is freed and cleared by mirage_shutdown().
*/
guint8 *ecma_130_scrambler_lut = NULL;
/**
* mirage_helper_init_ecma_130b_scrambler_lut:
*
* Calculates a look-up table for sector data scrambler from ECMA-130,
* Annex B. The look-up table consists of 2340 entries, each being a
* scramble byte for corresponding byte in sector data.
*
* Returns: Pointer to the generated scrambler look-up table or NULL on failure.
*/
guint8 *mirage_helper_init_ecma_130b_scrambler_lut (void)
{
guint8 *lut = g_try_new(guint8, 2340);
if (!lut) {
return lut;
}
/* Get scramble bytes for all input bytes */
guint16 fsr = 1; /* Initial feedback shift register value */
for (gint i = 0; i < 2340; i++) {
guint8 value = 0;
/* Feedback shift register */
for (gint j = 0; j < 8; j++) {
/* Output of FSR is its least significant bit */
guint8 lsb = fsr & 1;
value |= lsb << j;
/* Shift */
fsr = fsr >> 1;
/* Most significant bit x^15 is XOR of x^0 and x^1 (which is the new lsb) */
if ((fsr & 1) ^ lsb) {
fsr |= 0x4000;
} else {
fsr &= 0x3FFF;
}
}
lut[i] = value;
}
return lut;
}
/**********************************************************************\
* General-purpose string formatter *
\**********************************************************************/
static gboolean format_string_cb (const GMatchInfo *match_info, GString *result, GHashTable *dictionary)
{
GVariant *replacement;
gchar *str;
/* Grab token part of the match */
str = g_match_info_fetch_named(match_info, "token");
replacement = g_hash_table_lookup(dictionary, str);
g_free(str);
if (replacement) {
GString *replacement_format = g_string_new("%");
/* Grab and prepend prefix */
str = g_match_info_fetch_named(match_info, "prefix");
g_string_prepend(replacement_format, str);
g_free(str);
/* Grab format part of the match */
str = g_match_info_fetch_named(match_info, "format");
g_string_append(replacement_format, str);
g_free(str);
if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_STRING)) {
g_string_append(replacement_format, "s");
g_string_append_printf(result, replacement_format->str, g_variant_get_string(replacement, NULL));
} else if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_INT16)) {
g_string_append(replacement_format, G_GINT16_FORMAT);
g_string_append_printf(result, replacement_format->str, g_variant_get_int16(replacement));
} else if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_INT16)) {
g_string_append(replacement_format, G_GINT16_FORMAT);
g_string_append_printf(result, replacement_format->str, g_variant_get_int16(replacement));
} else if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_INT32)) {
g_string_append(replacement_format, G_GINT32_FORMAT);
g_string_append_printf(result, replacement_format->str, g_variant_get_int32(replacement));
} else if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_INT64)) {
g_string_append(replacement_format, G_GINT64_FORMAT);
g_string_append_printf(result, replacement_format->str, g_variant_get_int64(replacement));
} else if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_UINT16)) {
g_string_append(replacement_format, G_GUINT16_FORMAT);
g_string_append_printf(result, replacement_format->str, g_variant_get_uint16(replacement));
} else if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_UINT32)) {
g_string_append(replacement_format, G_GUINT32_FORMAT);
g_string_append_printf(result, replacement_format->str, g_variant_get_uint32(replacement));
} else if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_UINT64)) {
g_string_append(replacement_format, G_GUINT64_FORMAT);
g_string_append_printf(result, replacement_format->str, g_variant_get_uint64(replacement));
} else if (g_variant_is_of_type(replacement, G_VARIANT_TYPE_BOOLEAN)) {
g_string_append(replacement_format, G_GINT32_FORMAT);
g_string_append_printf(result, replacement_format->str, g_variant_get_boolean(replacement));
}
/* Free the format string */
g_string_free(replacement_format, TRUE);
}
return FALSE;
}
/**
* mirage_helper_format_string:
* @format: (in): format string
* @...: (in): %NULL-terminated list of replacement token/value pairs
*
* General-purpose string formatter with token replacement. Similarly to
* sprintf, the tokens begin with percent character, but instead of denoting
* format type, the tokens denote placeholders for user-defined replacements.
* Sprintf-like field width and precision modifiers are supported for formatting
* the replacements. If replacement is not specified for a replacement token
* found in format, then the token is removed in the output string.
*
* If replacement does not exist and the token to be replaced is preceded
* by other word-caracters (see #GRegex documentation for details), in
* addition to the replacement token, all those word characters are removed
* together with the leading non-word character.
*
* <informalexample>
* <programlisting>
* // Example: formatting a filename
* output = mirage_helper_format_string("%b-%02s-track%t.%e",
* "b", g_variant_new_string("some_image"),
* "s", g_variant_new_int16(1),
* "t", g_variant_new_int16(3),
* "e", g_variant_new_string("iso"), NULL);
* // output = "some_image-01-track3.iso"
*
* // Example: removal of preceding characters when replacement does not exist
* output = mirage_helper_format_string("%b-%02s-track%t.%e",
* "b", g_variant_new_string("some_image"),
* "s", g_variant_new_int16(1),
* "e", g_variant_new_string("iso"), NULL);
* // output = "some_image-01.iso"
* </programlisting>
* </informalexample>
*
* @Varargs is a %NULL-terminated list of replacement token/value pairs,
* where a replacement token/value pair is a pair of string and a #GVariant.
*
* Returns: (transfer full): string with all replacement tokens either
* replaced or removed. The string should be freed using g_free() when
* no longer needed.
*/
gchar *mirage_helper_format_string (const gchar *format, ...)
{
gchar *result;
va_list args;
va_start(args, format);
result = mirage_helper_format_stringv(format, args);
va_end(args);
return result;
}
/**
* mirage_helper_format_stringv:
* @format: (in): format string
* @args: (in): %NULL-terminated list of replacement token/value pairs
*
* Variable-argument-list-version of mirage_helper_format_string().
*
* @args is a %NULL-terminated list of replacement token/value pairs,
* where a replacement token/value pair is a pair of string and a #GVariant.
*
* Returns: (transfer full): string with all replacement tokens either
* replaced or removed. The string should be freed using g_free() when
* no longer needed.
*/
gchar *mirage_helper_format_stringv (const gchar *format, va_list args)
{
gchar *result;
/* Gather tokens and their replacement values into a hash table */
GHashTable *dictionary = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, (GDestroyNotify)g_variant_unref);
while (TRUE) {
/* Get token; break if NULL */
gchar *token = va_arg(args, gchar *);
if (!token) {
break;
}
g_hash_table_insert(dictionary, token, g_variant_ref_sink(va_arg(args, GVariant *)));
}
result = mirage_helper_format_stringd(format, dictionary);
g_hash_table_unref(dictionary);
return result;
}
/**
* mirage_helper_format_stringd:
* @format: (in): format string
* @dictionary: (in): a #GHashTable containing replacement token/value pairs
*
* Dictionary-version of mirage_helper_format_string().
*
* @dictionary is a #GHashTable where keys are replacement token strings
* and each value is a #GVariant containing corresponding token replacement
* value.
*
* Returns: (transfer full): string with all replacement tokens either
* replaced or removed. The string should be freed using g_free() when
* no longer needed.
*/
gchar *mirage_helper_format_stringd (const gchar *format, GHashTable *dictionary)
{
/* Use regex to replace the tokens with their replacement values */
GRegex *regex = g_regex_new("(?<prefix>\\W\\w*)?%(?<format>\\w+)?(?<token>\\w)", 0, 0, NULL);
gchar *result = g_regex_replace_eval(regex, format, -1, 0, 0, (GRegexEvalCallback)format_string_cb, dictionary, NULL);
g_regex_unref(regex);
return result;
}
|