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 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043
|
/*
* zkey - Generate, re-encipher, and validate secure keys
*
* Copyright IBM Corp. 2018
*
* s390-tools is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#include <dlfcn.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <linux/if_alg.h>
#include <stdbool.h>
#include <string.h>
#include <stdint.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#include "lib/util_base.h"
#include "lib/util_libc.h"
#include "lib/util_panic.h"
#include "pkey.h"
#include "utils.h"
#ifndef AF_ALG
#define AF_ALG 38
#endif
#ifndef SOL_ALG
#define SOL_ALG 279
#endif
#define pr_verbose(verbose, fmt...) do { \
if (verbose) \
warnx(fmt); \
} while (0)
#define DOUBLE_KEYSIZE_FOR_XTS(keysize, xts) ((xts) ? 2 * (keysize) : (keysize))
#define HALF_KEYSIZE_FOR_XTS(keysize, xts) ((xts) ? (keysize) / 2 : (keysize))
#define MAX_CIPHER_LEN 32
#define INITIAL_APQN_ENTRIES 16
/**
* Opens the pkey device and returns its file descriptor.
*
* @param verbose if true, verbose messages are printed
*
* @returns the file descriptor or -1 to indicate an error
*/
int open_pkey_device(bool verbose)
{
int pkey_fd;
pkey_fd = open(PKEYDEVICE, O_RDWR);
if (pkey_fd < 0) {
warnx("File '%s:' %s\nEnsure that the 'pkey' kernel module "
"is loaded", PKEYDEVICE, strerror(errno));
return -1;
}
pr_verbose(verbose, "Device '%s' has been opened successfully",
PKEYDEVICE);
return pkey_fd;
}
/**
* Read a secure key file and return the allocated buffer and size.
*
* @param[in] keyfile the name of the file to read
* @param[out] secure_key_size on return, the size of the secure key read
* @param[in] verbose if true, verbose messages are printed
*
* @return a buffer containing the secure key, or NULL in case of an error.
* The returned buffer must be freed by the caller.
*/
u8 *read_secure_key(const char *keyfile, size_t *secure_key_size,
bool verbose)
{
size_t count, size;
struct stat sb;
char *msg;
FILE *fp;
u8 *buf;
util_assert(keyfile != NULL, "Internal error: keyfile is NULL");
util_assert(secure_key_size != NULL,
"Internal error: secure_key_size is NULL");
if (stat(keyfile, &sb)) {
warnx("File '%s': %s", keyfile, strerror(errno));
return NULL;
}
size = sb.st_size;
if (size < MIN_SECURE_KEY_SIZE || size > 2 * MAX_SECURE_KEY_SIZE) {
warnx("File '%s' has an invalid size: %lu", keyfile, size);
return NULL;
}
fp = fopen(keyfile, "r");
if (fp == NULL) {
warnx("File '%s': %s", keyfile, strerror(errno));
return NULL;
}
buf = util_malloc(size);
count = fread(buf, 1, size, fp);
if (count != size) {
msg = ferror(fp) ? strerror(errno) : "File is too small";
warnx("File '%s': %s", keyfile, msg);
free(buf);
buf = NULL;
goto out;
}
*secure_key_size = size;
if (verbose) {
pr_verbose(verbose, "%lu bytes read from file '%s'", size,
keyfile);
util_hexdump_grp(stderr, NULL, buf, 4, size, 0);
}
out:
fclose(fp);
return buf;
}
/**
* Write a secure key file
*
* @param[in] keyfile the name of the file to write
* @param[in] secure_key a buffer containing the secure key
* @param[in] secure_key_size the size of the secure key
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 in case of success, -EIO in case of an error
*/
int write_secure_key(const char *keyfile, const u8 *secure_key,
size_t secure_key_size, bool verbose)
{
size_t count;
FILE *fp;
util_assert(keyfile != NULL, "Internal error: keyfile is NULL");
util_assert(secure_key != NULL, "Internal error: secure_key is NULL");
util_assert(secure_key_size > 0,
"Internal error: secure_key_size is zero");
fp = fopen(keyfile, "w");
if (fp == NULL) {
warnx("File '%s': %s", keyfile, strerror(errno));
return -EIO;
}
count = fwrite(secure_key, 1, secure_key_size, fp);
if (count != secure_key_size) {
warnx("File '%s': %s", keyfile, strerror(errno));
fclose(fp);
return -EIO;
}
if (verbose) {
pr_verbose(verbose, "%lu bytes written to file '%s'",
secure_key_size, keyfile);
util_hexdump_grp(stderr, NULL, secure_key, 4,
secure_key_size, 0);
}
fclose(fp);
return 0;
}
/**
* Read a clear key file and return the allocated buffer and size
*
* @param[in] keyfile the name of the file to read
* @param[in] keybits the clear key size in bits. When keybits is 0, then
* the file size determines the keybits.
* @param[in] xts if true an XTS key is to be read
* @param[out] clear_key_size on return, the size of the clear key read
* @param[in] verbose if true, verbose messages are printed
*
* @return a buffer containing the clear key, or NULL in case of an error.
* The returned buffer must be freed by the caller.
*/
static u8 *read_clear_key(const char *keyfile, size_t keybits, bool xts,
size_t *clear_key_size, bool verbose)
{
size_t count, size, expected_size;
struct stat sb;
char *msg;
FILE *fp;
u8 *buf;
util_assert(keyfile != NULL, "Internal error: keyfile is NULL");
util_assert(clear_key_size != NULL,
"Internal error: clear_key_size is NULL");
if (stat(keyfile, &sb)) {
warnx("File '%s': %s", keyfile, strerror(errno));
return NULL;
}
size = sb.st_size;
if (keybits != 0) {
expected_size = DOUBLE_KEYSIZE_FOR_XTS(keybits / 8, xts);
if (size != expected_size) {
warnx("File '%s' has an invalid size, "
"%lu bytes expected", keyfile, expected_size);
return NULL;
}
} else {
keybits = HALF_KEYSIZE_FOR_XTS(size * 8, xts);
}
switch (keybits) {
case 128:
break;
case 192:
if (xts) {
warnx("File '%s' has an invalid size, "
"192 bit keys are not supported with XTS",
keyfile);
return NULL;
}
break;
case 256:
break;
default:
if (xts)
warnx("File '%s' has an invalid size, "
"32 or 64 bytes expected", keyfile);
else
warnx("File '%s' has an invalid size, 16, 24 "
"or 32 bytes expected", keyfile);
return NULL;
}
fp = fopen(keyfile, "r");
if (fp == NULL) {
warnx("File '%s': %s", keyfile, strerror(errno));
return NULL;
}
buf = util_malloc(size);
count = fread(buf, 1, size, fp);
if (count != size) {
msg = ferror(fp) ? strerror(errno) : "File is too small";
warnx("File '%s': %s", keyfile, msg);
free(buf);
buf = NULL;
goto out;
}
*clear_key_size = size;
if (verbose) {
pr_verbose(verbose, "%lu bytes read from file '%s'", size,
keyfile);
util_hexdump_grp(stderr, NULL, buf, 4, size, 0);
}
out:
fclose(fp);
return buf;
}
/**
* Returns the PKEY_KEYTYPE_xxx value for the specified key size.
*
* @param[in] keysize the key size in bits
*
* @returns the PKEY_KEYTYPE_xxx value or 0 for an unknown key size
*/
static u32 keysize_to_keytype(enum pkey_key_size keysize)
{
switch (keysize) {
case PKEY_SIZE_AES_128:
return PKEY_KEYTYPE_AES_128;
case PKEY_SIZE_AES_192:
return PKEY_KEYTYPE_AES_192;
case PKEY_SIZE_AES_256:
return PKEY_KEYTYPE_AES_256;
default:
return 0;
}
}
/**
* Returns the PKEY_SIZE_xxx value for the specified keybits.
*
* @param[in] keybits the key size in bits
*
* @returns thePKEY_SIZE_xxx value or 0 for an unknown key size
*/
static enum pkey_key_size keybits_to_keysize(u32 keybits)
{
switch (keybits) {
case 128:
return PKEY_SIZE_AES_128;
case 192:
return PKEY_SIZE_AES_192;
case 256:
return PKEY_SIZE_AES_256;
default:
return PKEY_SIZE_UNKNOWN;
}
}
/*
* Wrapper for the PKEY_GENSECK/PKEY_GENSECK2 IOCTL to generate a secure
* key of any type by random. If the newer PKEY_GENSECK2 IOCTL is not supported
* by the pkey device, then it falls back to the older PKEY_GENSECK IOCTL
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in/out] genseck info about key to generate
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
static int pkey_genseck2(int pkey_fd, struct pkey_genseck2 *genseck2,
bool verbose)
{
struct pkey_genseck genseck;
int rc;
u32 i;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(genseck2 != NULL, "Internal error: genseck2 is NULL");
rc = ioctl(pkey_fd, PKEY_GENSECK2, genseck2);
if (rc != 0 && errno != ENOTTY)
return -errno;
if (rc == 0)
return 0;
/* New IOCTL is not available, fall back to old one */
pr_verbose(verbose, "ioctl PKEY_GENSECK2 not supported, fall back to "
"PKEY_GENSECK");
if (genseck2->type != PKEY_TYPE_CCA_DATA) {
warnx("Key-type is not supported");
return -ENOTSUP;
}
if (genseck2->keylen < AESDATA_KEY_SIZE)
return -EINVAL;
memset(&genseck, 0, sizeof(genseck));
genseck.keytype = keysize_to_keytype(genseck2->size);
if (genseck.keytype == 0)
return -EINVAL;
for (i = 0; i < genseck2->apqn_entries; i++) {
genseck.cardnr = genseck2->apqns[i].card;
genseck.domain = genseck2->apqns[i].domain;
rc = ioctl(pkey_fd, PKEY_GENSECK, &genseck);
if (rc != 0)
continue;
memcpy(genseck2->key, &genseck.seckey.seckey, AESDATA_KEY_SIZE);
genseck2->keylen = AESDATA_KEY_SIZE;
return 0;
}
return -errno;
}
/*
* Wrapper for the PKEY_CLR2SECK/PKEY_CLR2SECK2 IOCTL to generate a secure
* key of any type from a clear key. If the newer PKEY_CLR2SECK2 IOCTL is not
* supported by the pkey device, then it falls back to the older PKEY_CLR2SECK
* IOCTL
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in/out] clr2seck2 info about key to generate
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
static int pkey_clr2seck2(int pkey_fd, struct pkey_clr2seck2 *clr2seck2,
bool verbose)
{
struct pkey_clr2seck clr2seck;
int rc;
u32 i;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(clr2seck2 != NULL, "Internal error: clr2seck2 is NULL");
rc = ioctl(pkey_fd, PKEY_CLR2SECK2, clr2seck2);
if (rc != 0 && errno != ENOTTY)
return -errno;
if (rc == 0)
return 0;
/* New IOCTL is not available, fall back to old one */
pr_verbose(verbose, "ioctl PKEY_CLR2SECK2 not supported, fall back to "
"PKEY_CLR2SECK");
if (clr2seck2->type != PKEY_TYPE_CCA_DATA) {
warnx("Key-type is not supported");
return -ENOTSUP;
}
if (clr2seck2->keylen < AESDATA_KEY_SIZE)
return -EINVAL;
memset(&clr2seck, 0, sizeof(clr2seck));
clr2seck.clrkey = clr2seck2->clrkey;
clr2seck.keytype = keysize_to_keytype(clr2seck2->size);
if (clr2seck.keytype == 0)
return -EINVAL;
for (i = 0; i < clr2seck2->apqn_entries; i++) {
clr2seck.cardnr = clr2seck2->apqns[i].card;
clr2seck.domain = clr2seck2->apqns[i].domain;
rc = ioctl(pkey_fd, PKEY_CLR2SECK, &clr2seck);
if (rc != 0)
continue;
memcpy(clr2seck2->key, &clr2seck.seckey.seckey,
AESDATA_KEY_SIZE);
clr2seck2->keylen = AESDATA_KEY_SIZE;
return 0;
}
return -errno;
}
/*
* Wrapper for the PKEY_VERIFYKEY/PKEY_VERIFYKEY2 IOCTL to verify a secure
* key of any type. If the newer PKEY_VERIFYKEY2 IOCTL is not supported
* by the pkey device, then it falls back to the older PKEY_VERIFYKEY IOCTL
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in/out] verifykey2 info about key to verify
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
static int pkey_verifyseck2(int pkey_fd, struct pkey_verifykey2 *verifykey2,
bool verbose)
{
struct pkey_verifykey verifykey;
int rc;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(verifykey2 != NULL, "Internal error: verifyseck2 is NULL");
rc = ioctl(pkey_fd, PKEY_VERIFYKEY2, verifykey2);
if (rc != 0 && errno != ENOTTY)
return -errno;
if (rc == 0)
return 0;
/* New IOCTL is not available, fall back to old one */
pr_verbose(verbose, "ioctl PKEY_VERIFYKEY2 not supported, fall back to "
"PKEY_VERIFYKEY");
if (!is_cca_aes_data_key(verifykey2->key, verifykey2->keylen))
return -ENODEV;
memset(&verifykey, 0, sizeof(verifykey));
memcpy(&verifykey.seckey, verifykey2->key, sizeof(verifykey.seckey));
/*
* Note: the old IOCTL does not support to check a specific card and
* domain. If falling back to the old IOCTL, this input is silently
* ignored, and all APQNs currently available in the system are used.
*/
rc = ioctl(pkey_fd, PKEY_VERIFYKEY, &verifykey);
if (rc != 0)
return -errno;
if ((verifykey.attributes & PKEY_VERIFY_ATTR_AES) == 0)
return -ENODEV;
verifykey2->type = PKEY_TYPE_CCA_DATA;
verifykey2->cardnr = verifykey.cardnr;
verifykey2->domain = verifykey.domain;
verifykey2->size = keybits_to_keysize(verifykey.keysize);
if (verifykey.attributes & PKEY_VERIFY_ATTR_OLD_MKVP)
verifykey2->flags = PKEY_FLAGS_MATCH_ALT_MKVP;
else
verifykey2->flags = PKEY_FLAGS_MATCH_CUR_MKVP;
return 0;
}
/**
* Print a list of APQNs if verbose is set
*/
static void pr_verbose_apqn_list(bool verbose, struct pkey_apqn *list, u32 num)
{
u32 i;
if (!verbose)
return;
for (i = 0; i < num ; i++)
warnx(" APQN: %02x.%04x", list[i].card, list[i].domain);
}
/**
* Filter a n array list of APQNs (struct pkey_apqn) by a list of APQN strings.
*
* @param[in] apqn_list a zero terminated array of pointers to C-strings
* @param[in/out] apqns A list of APQNs as array of struct pkey_apqn to
* filter. The list is modified during filtering.
* @param[in/out] apqn_entries Number of entries in the list of APQNs. The
* number is modified during filtering.
*
* @returns 0 on success, a negative errno in case of an error
*/
static int filter_apqn_list(const char **apqn_list, struct pkey_apqn **apqns,
u32 *apqn_entries)
{
unsigned int count, i, k, card, domain;
struct pkey_apqn *list = *apqns;
bool found;
if (apqn_list == NULL)
return 0;
for (count = 0; apqn_list[count] != NULL; count++)
;
if (count == 0)
return 0;
for (i = 0; i < *apqn_entries; i++) {
found = false;
for (k = 0; apqn_list[k] != NULL; k++) {
if (sscanf(apqn_list[k], "%x.%x", &card, &domain) != 2)
return -EINVAL;
if (list[i].card == card && list[i].domain == domain) {
found = true;
break;
}
}
if (!found) {
if (i < *apqn_entries - 1)
memmove(&list[i], &list[i+1],
(*apqn_entries - i - 1) *
sizeof(struct pkey_apqn));
(*apqn_entries)--;
i--;
}
}
return 0;
}
/**
* Build a list of APQNs in the form accepted by the pkey IOCTLs from the
* List of APQNs as zero terminated array of pointers to C-strings that
* are usable for the CCA-AESDATA key type.
*
* @param[in] apqn_list a zero terminated array of pointers to C-strings
* @param[out] apqns A list of APQNs as array of struct pkey_apqn. The
* list must be freed by the caller using free().
* @param[out] apqn_entries Number of entries in the list of APQNs
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
static int build_apqn_list_for_aes_data(const char **apqn_list,
struct pkey_apqn **apqns,
u32 *apqn_entries, bool verbose)
{
unsigned int card, domain, count = 0;
struct pkey_apqn *list = NULL;
u32 list_entries = 0;
int i;
pr_verbose(verbose, "Build a list of APQNs for CCA-AESDATA");
if (apqn_list != NULL)
for (count = 0; apqn_list[count] != NULL; count++)
;
if (count > 0) {
list = util_malloc(count * sizeof(struct pkey_apqn));
list_entries = count;
for (i = 0; apqn_list[i] != NULL; i++) {
if (sscanf(apqn_list[i], "%x.%x", &card, &domain) != 2)
return -EINVAL;
list[i].card = card;
list[i].domain = domain;
}
} else {
/*
* Although the new pkey IOCTLs do not support APQN entries
* with ANY indication, build an ANY-list here. If we get here,
* then the new IOCTLs are not available, and it will fall back
* to the old IOCTL which do support ANY specifications.
*/
list = util_malloc(sizeof(struct pkey_apqn));
list_entries = 1;
list[0].card = AUTOSELECT;
list[0].domain = AUTOSELECT;
}
*apqns = list;
*apqn_entries = list_entries;
pr_verbose(verbose, "%u APQNs found", list_entries);
pr_verbose_apqn_list(verbose, list, list_entries);
return 0;
}
/**
* Build a list of APQNs in the form accepted by the pkey IOCTLs from the
* List of APQNs as zero terminated array of pointers to C-strings that
* are usable for the specified key type.
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in] type the key type
* @param[in] apqn_list a zero terminated array of pointers to C-strings
* @param[out] apqns A list of APQNs as array of struct pkey_apqn. The
* list must be freed by the caller using free().
* @param[out] apqn_entries Number of entries in the list of APQNs
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
static int build_apqn_list_for_key_type(int pkey_fd, enum pkey_key_type type,
const char **apqn_list,
struct pkey_apqn **apqns,
u32 *apqn_entries, bool verbose)
{
struct pkey_apqns4keytype apqns4keytype;
int rc;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(apqns != NULL, "Internal error: apqns is NULL");
util_assert(apqn_entries != NULL,
"Internal error: apqn_entries is NULL");
pr_verbose(verbose, "Build a list of APQNs for key type %d", type);
memset(&apqns4keytype, 0, sizeof(apqns4keytype));
apqns4keytype.type = type;
apqns4keytype.apqn_entries = INITIAL_APQN_ENTRIES;
apqns4keytype.apqns = (struct pkey_apqn *)util_malloc(
apqns4keytype.apqn_entries * sizeof(struct pkey_apqn));
do {
rc = ioctl(pkey_fd, PKEY_APQNS4KT, &apqns4keytype);
if (rc == 0)
break;
rc = -errno;
pr_verbose(verbose, "ioctl PKEY_APQNS4KT rc: %s",
strerror(-rc));
switch (rc) {
case -ENOSPC:
free(apqns4keytype.apqns);
apqns4keytype.apqns = (struct pkey_apqn *)
util_malloc(apqns4keytype.apqn_entries *
sizeof(struct pkey_apqn));
continue;
case -ENOTTY:
/*
* New IOCTL is not available: build the list
* manually (Key type CCA-AESDATA only)
*/
free(apqns4keytype.apqns);
if (type != PKEY_TYPE_CCA_DATA)
return -ENOTSUP;
rc = build_apqn_list_for_aes_data(apqn_list, apqns,
apqn_entries,
verbose);
return rc;
case -EINVAL:
/* This is usually due to an unsupported key type */
rc = -ENOTSUP;
goto out;
default:
goto out;
}
} while (rc != 0);
if (apqns4keytype.apqn_entries == 0) {
pr_verbose(verbose, "No APQN available for key type %d", type);
rc = -ENODEV;
goto out;
}
rc = filter_apqn_list(apqn_list, &apqns4keytype.apqns,
&apqns4keytype.apqn_entries);
if (rc != 0)
goto out;
if (apqns4keytype.apqn_entries == 0) {
pr_verbose(verbose, "No APQN available for key type %d", type);
rc = -ENODEV;
goto out;
}
pr_verbose(verbose, "%u APQNs found", apqns4keytype.apqn_entries);
pr_verbose_apqn_list(verbose, apqns4keytype.apqns,
apqns4keytype.apqn_entries);
out:
if (rc == 0) {
*apqns = apqns4keytype.apqns;
*apqn_entries = apqns4keytype.apqn_entries;
} else {
*apqns = NULL;
*apqn_entries = 0;
free(apqns4keytype.apqns);
}
return rc;
}
/**
* Build a list of APQNs in the form accepted by the pkey IOCTLs from the
* List of APQNs as zero terminated array of pointers to C-strings that are
* usable for the specufied key.
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in] key the key
* @param[in] keylen the length of the key
* @param[in] flags PKEY_FLAGS_MATCH_xxx flags
* @param[in] apqn_list a zero terminated array of pointers to C-strings
* @param[out] apqns A list of APQNs as array of struct pkey_apqn. The
* list must be freed by the caller using free().
* @param[out] apqn_entries Number of entries in the list of APQNs
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
static int build_apqn_list_for_key(int pkey_fd, u8 *key, u32 keylen, u32 flags,
const char **apqn_list,
struct pkey_apqn **apqns,
u32 *apqn_entries, bool verbose)
{
struct pkey_apqns4key apqns4key;
int rc;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(key != NULL, "Internal error: key is NULL");
util_assert(apqns != NULL, "Internal error: apqns is NULL");
util_assert(apqn_entries != NULL,
"Internal error: apqn_entries is NULL");
pr_verbose(verbose, "Build a list of APQNs for the key");
memset(&apqns4key, 0, sizeof(apqns4key));
apqns4key.key = key;
apqns4key.keylen = keylen;
apqns4key.flags = flags;
apqns4key.apqn_entries = INITIAL_APQN_ENTRIES;
apqns4key.apqns = (struct pkey_apqn *)util_malloc(
apqns4key.apqn_entries * sizeof(struct pkey_apqn));
do {
rc = ioctl(pkey_fd, PKEY_APQNS4K, &apqns4key);
if (rc == 0)
break;
rc = -errno;
pr_verbose(verbose, "ioctl PKEY_APQNS4K rc: %s", strerror(-rc));
switch (rc) {
case -ENOSPC:
free(apqns4key.apqns);
apqns4key.apqns = (struct pkey_apqn *)
util_malloc(apqns4key.apqn_entries *
sizeof(struct pkey_apqn));
continue;
case -ENOTTY:
/*
* New IOCTL is not available: build the list manually
* (Key type CCA-AESDATA only)
*/
free(apqns4key.apqns);
if (!is_cca_aes_data_key(key, keylen))
return -ENOTSUP;
rc = build_apqn_list_for_aes_data(apqn_list, apqns,
apqn_entries,
verbose);
return rc;
case -EINVAL:
/* This is usually due to an unsupported key type */
rc = -ENOTSUP;
goto out;
default:
goto out;
}
} while (rc != 0);
if (apqns4key.apqn_entries == 0) {
pr_verbose(verbose, "No APQN available for the key");
rc = -ENODEV;
goto out;
}
rc = filter_apqn_list(apqn_list, &apqns4key.apqns,
&apqns4key.apqn_entries);
if (rc != 0)
goto out;
if (apqns4key.apqn_entries == 0) {
pr_verbose(verbose, "No APQN available for the key");
rc = -ENODEV;
goto out;
}
pr_verbose(verbose, "%u APQNs found", apqns4key.apqn_entries);
pr_verbose_apqn_list(verbose, apqns4key.apqns, apqns4key.apqn_entries);
out:
if (rc == 0) {
*apqns = apqns4key.apqns;
*apqn_entries = apqns4key.apqn_entries;
} else {
*apqns = NULL;
*apqn_entries = 0;
free(apqns4key.apqns);
}
return rc;
}
/**
* Convert the key type string into the pkey enumeration
*
* @param[in] key_type the type of the key
*
* @returns the pkey key type or 0 for an u known key type
*/
static enum pkey_key_type key_type_to_pkey_type(const char *key_type)
{
if (strcasecmp(key_type, KEY_TYPE_CCA_AESDATA) == 0)
return PKEY_TYPE_CCA_DATA;
if (strcasecmp(key_type, KEY_TYPE_CCA_AESCIPHER) == 0)
return PKEY_TYPE_CCA_CIPHER;
if (strcasecmp(key_type, KEY_TYPE_EP11_AES) == 0)
return PKEY_TYPE_EP11;
return 0;
}
/**
* Return the size of a key blob for a specific type
*
* @param[in] type the type of the key
*
* @returns the size of the key or 0 for an invalid key type
*/
static size_t key_size_for_type(enum pkey_key_type type)
{
switch (type) {
case PKEY_TYPE_CCA_DATA:
return AESDATA_KEY_SIZE;
case PKEY_TYPE_CCA_CIPHER:
return AESCIPHER_KEY_SIZE;
case PKEY_TYPE_EP11:
return EP11_KEY_SIZE;
default:
return 0;
}
}
/**
* Generate a secure key by random
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in] keyfile the file name of the secure key to generate
* @param[in] keybits the cryptographic size of the key in bits
* @param[in] xts if true an XTS key is generated
* @param[in] key_type the type of the key
* @param[in] apqns a zero terminated array of pointers to APQN-strings,
* or NULL for AUTOSELECT
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
int generate_secure_key_random(int pkey_fd, const char *keyfile,
size_t keybits, bool xts, const char *key_type,
const char **apqns, bool verbose)
{
struct pkey_genseck2 genseck2;
size_t secure_key_size, size;
u8 *secure_key = NULL;
int rc;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(keyfile != NULL, "Internal error: keyfile is NULL");
util_assert(key_type != NULL, "Internal error: key_type is NULL");
if (keybits == 0)
keybits = DEFAULT_KEYBITS;
pr_verbose(verbose, "Generate secure key by random");
memset(&genseck2, 0, sizeof(genseck2));
genseck2.type = key_type_to_pkey_type(key_type);
if (genseck2.type == 0) {
warnx("Key-type not supported; %s", key_type);
return -ENOTSUP;
}
genseck2.size = keybits_to_keysize(keybits);
if (genseck2.size == 0) {
warnx("Invalid value for '--keybits'/'-c': '%lu'", keybits);
return -EINVAL;
}
if (keybits == 192 && xts) {
warnx("Invalid value for '--keybits'|'-c' "
"for XTS: '%lu'", keybits);
return -EINVAL;
}
rc = build_apqn_list_for_key_type(pkey_fd, genseck2.type, apqns,
&genseck2.apqns,
&genseck2.apqn_entries, verbose);
if (rc != 0) {
if (rc == -ENODEV || rc == -ENOTSUP)
warnx("No APQN is available that can generate a secure "
"key of type %s", key_type);
else
warnx("Failed to build a list of APQNs that can "
"generate a secure key of type %s: %s", key_type,
strerror(-rc));
return rc;
}
size = key_size_for_type(genseck2.type);
secure_key_size = DOUBLE_KEYSIZE_FOR_XTS(size, xts);
secure_key = util_zalloc(secure_key_size);
genseck2.key = secure_key;
genseck2.keylen = size;
rc = pkey_genseck2(pkey_fd, &genseck2, verbose);
if (rc != 0) {
warnx("Failed to generate a secure key: %s", strerror(-rc));
goto out;
}
if (xts) {
free(genseck2.apqns);
genseck2.apqns = NULL;
genseck2.apqn_entries = 0;
/*
* Ensure to generate 2nd key with an APQN that has the same
* master key that is used by the 1st key.
*/
rc = build_apqn_list_for_key(pkey_fd, secure_key, size,
PKEY_FLAGS_MATCH_CUR_MKVP, apqns,
&genseck2.apqns,
&genseck2.apqn_entries, verbose);
if (rc != 0) {
if (rc == -ENODEV || rc == -ENOTSUP)
warnx("No APQN is available that can generate "
"a secure key of type %s", key_type);
else
warnx("Failed to build a list of APQNs that "
"can generate a secure key of type %s: "
"%s", key_type, strerror(-rc));
goto out;
}
genseck2.key = secure_key + size;
genseck2.keylen = size;
rc = pkey_genseck2(pkey_fd, &genseck2, verbose);
if (rc != 0) {
warnx("Failed to generate a secure key: %s",
strerror(-rc));
goto out;
}
}
pr_verbose(verbose, "Successfully generated a secure key");
rc = write_secure_key(keyfile, secure_key, secure_key_size, verbose);
out:
free(genseck2.apqns);
free(secure_key);
return rc;
}
/*
* Generate a secure key from a clear key file
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in] keyfile the file name of the secure key to generate
* @param[in] keybits the cryptographic size of the key in bits. When
* keybits is 0, then the clear key file size
* determines the keybits.
* @param[in] xts if true an XTS key is generated
* @param[in] clearkeyfile the file name of the clear key to read
* @param[in] key_type the type of the key
* @param[in] apqns a zero terminated array of pointers to APQN-strings,
* or NULL for AUTOSELECT
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
int generate_secure_key_clear(int pkey_fd, const char *keyfile,
size_t keybits, bool xts,
const char *clearkeyfile, const char *key_type,
const char **apqns, bool verbose)
{
struct pkey_clr2seck2 clr2seck2;
size_t secure_key_size;
size_t clear_key_size;
u8 *secure_key;
u8 *clear_key;
size_t size;
int rc;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(keyfile != NULL, "Internal error: keyfile is NULL");
util_assert(clearkeyfile != NULL,
"Internal error: clearkeyfile is NULL");
util_assert(key_type != NULL, "Internal error: key_type is NULL");
pr_verbose(verbose, "Generate secure key from a clear key");
clear_key = read_clear_key(clearkeyfile, keybits, xts, &clear_key_size,
verbose);
if (clear_key == NULL)
return -EINVAL;
memset(&clr2seck2, 0, sizeof(clr2seck2));
memcpy(&clr2seck2.clrkey, clear_key,
HALF_KEYSIZE_FOR_XTS(clear_key_size, xts));
clr2seck2.type = key_type_to_pkey_type(key_type);
if (clr2seck2.type == 0) {
warnx("Key-type not supported; %s", key_type);
return -ENOTSUP;
}
clr2seck2.size = keybits_to_keysize(HALF_KEYSIZE_FOR_XTS(
clear_key_size * 8, xts));
if (clr2seck2.size == 0) {
warnx("Invalid clear key size: '%lu' bytes", clear_key_size);
return -EINVAL;
}
if (keybits == 192 && xts) {
warnx("Invalid clear key size for XTS: '%lu' bytes",
clear_key_size);
return -EINVAL;
}
rc = build_apqn_list_for_key_type(pkey_fd, clr2seck2.type, apqns,
&clr2seck2.apqns,
&clr2seck2.apqn_entries, verbose);
if (rc != 0) {
if (rc == -ENODEV || rc == -ENOTSUP)
warnx("No APQN is available that can generate a secure "
"key of type %s", key_type);
else
warnx("Failed to build a list of APQNs that can "
"generate a secure key of type %s: %s", key_type,
strerror(-rc));
return rc;
}
size = key_size_for_type(clr2seck2.type);
secure_key_size = DOUBLE_KEYSIZE_FOR_XTS(size, xts);
secure_key = util_zalloc(secure_key_size);
clr2seck2.key = secure_key;
clr2seck2.keylen = size;
rc = pkey_clr2seck2(pkey_fd, &clr2seck2, verbose);
if (rc != 0) {
warnx("Failed to generate a secure key: %s", strerror(-rc));
goto out;
}
if (xts) {
free(clr2seck2.apqns);
clr2seck2.apqns = NULL;
clr2seck2.apqn_entries = 0;
memcpy(&clr2seck2.clrkey, clear_key + clear_key_size / 2,
clear_key_size / 2);
/*
* Ensure to generate 2nd key with an APQN that has the same
* master key that is used by the 1st key.
*/
rc = build_apqn_list_for_key(pkey_fd, secure_key, size,
PKEY_FLAGS_MATCH_CUR_MKVP, apqns,
&clr2seck2.apqns,
&clr2seck2.apqn_entries, verbose);
if (rc != 0) {
if (rc == -ENODEV || rc == -ENOTSUP)
warnx("No APQN is available that can generate "
"a secure key of type %s", key_type);
else
warnx("Failed to build a list of APQNs that "
"can generate a secure key of type %s: "
"%s", key_type, strerror(-rc));
goto out;
}
clr2seck2.key = secure_key + size;
clr2seck2.keylen = size;
rc = pkey_clr2seck2(pkey_fd, &clr2seck2, verbose);
if (rc != 0) {
warnx("Failed to generate a secure key: %s",
strerror(-rc));
goto out;
}
}
pr_verbose(verbose,
"Successfully generated a secure key from a clear key");
rc = write_secure_key(keyfile, secure_key, secure_key_size, verbose);
out:
memset(&clr2seck2, 0, sizeof(clr2seck2));
memset(clear_key, 0, clear_key_size);
free(clear_key);
free(secure_key);
free(clr2seck2.apqns);
return rc;
}
/**
* Validates an XTS secure key (the second part)
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in] apqn the APQN to verify the key with
* @param[in] secure_key a buffer containing the secure key
* @param[in] secure_key_size the secure key size
* @param[in] part1_keysize the key size of the first key part
* @param[in] part1_flags the flags of the first key part
* @param[out] clear_key_bitsize on return , the cryptographic size of the
* clear key
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
static int validate_secure_xts_key(int pkey_fd, struct pkey_apqn *apqn,
u8 *secure_key, size_t secure_key_size,
enum pkey_key_size part1_keysize,
u32 part1_flags, size_t *clear_key_bitsize,
bool verbose)
{
struct pkey_verifykey2 verifykey2;
int rc;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(secure_key != NULL, "Internal error: secure_key is NULL");
util_assert(apqn != NULL, "Internal error: apqn is NULL");
memset(&verifykey2, 0, sizeof(verifykey2));
verifykey2.key = secure_key + (secure_key_size / 2);
verifykey2.keylen = secure_key_size / 2;
verifykey2.cardnr = apqn->card;
verifykey2.domain = apqn->domain;
rc = pkey_verifyseck2(pkey_fd, &verifykey2, verbose);
if (rc < 0) {
pr_verbose(verbose, "Failed to validate the 2nd part of the "
"XTS secure key on APQN %02x.%04x: %s", apqn->card,
apqn->domain, strerror(-rc));
return rc;
}
if (verifykey2.size != part1_keysize) {
pr_verbose(verbose, "XTS secure key contains 2 keys using "
"different key sizes");
return -EINVAL;
}
if (verifykey2.flags != part1_flags) {
pr_verbose(verbose, "XTS secure key contains 2 keys using "
"different master keys");
return -EINVAL;
}
if (clear_key_bitsize && verifykey2.size != PKEY_SIZE_UNKNOWN)
*clear_key_bitsize += verifykey2.size;
return 0;
}
/**
* Validates a secure key
*
* @param[in] pkey_fd the pkey file descriptor
* @param[in] secure_key a buffer containing the secure key
* @param[in] secure_key_size the secure key size
* @param[out] clear_key_bitsize on return , the cryptographic size of the
* clear key
* @param[out] is_old_mk in return set to 1 to indicate if the secure key
* is currently enciphered by the OLD master key
* @param[in] apqns a zero terminated array of pointers to APQN-strings,
* or NULL for AUTOSELECT
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
int validate_secure_key(int pkey_fd,
u8 *secure_key, size_t secure_key_size,
size_t *clear_key_bitsize, int *is_old_mk,
const char **apqns, bool verbose)
{
struct pkey_verifykey2 verifykey2;
struct pkey_apqn *list = NULL;
u32 i, list_entries = 0;
bool xts, valid;
u32 flags;
int rc;
util_assert(pkey_fd != -1, "Internal error: pkey_fd is -1");
util_assert(secure_key != NULL, "Internal error: secure_key is NULL");
xts = is_xts_key(secure_key, secure_key_size);
flags = PKEY_FLAGS_MATCH_CUR_MKVP;
if (is_cca_aes_data_key(secure_key, secure_key_size) ||
is_cca_aes_cipher_key(secure_key, secure_key_size))
flags |= PKEY_FLAGS_MATCH_ALT_MKVP;
rc = build_apqn_list_for_key(pkey_fd, secure_key,
HALF_KEYSIZE_FOR_XTS(secure_key_size, xts),
flags, apqns, &list, &list_entries,
verbose);
if (rc != 0) {
pr_verbose(verbose, "Failed to build a list of APQNs that can "
"validate this secure key: %s", strerror(-rc));
return rc;
}
if (is_old_mk != NULL)
*is_old_mk = true;
if (clear_key_bitsize != NULL)
*clear_key_bitsize = 0;
valid = false;
for (i = 0; i < list_entries; i++) {
memset(&verifykey2, 0, sizeof(verifykey2));
verifykey2.key = secure_key;
verifykey2.keylen = HALF_KEYSIZE_FOR_XTS(secure_key_size, xts);
verifykey2.cardnr = list[i].card;
verifykey2.domain = list[i].domain;
rc = pkey_verifyseck2(pkey_fd, &verifykey2, verbose);
if (rc < 0) {
pr_verbose(verbose, "Failed to validate the secure key "
"on APQN %02x.%04x: %s", list[i].card,
list[i].domain, strerror(-rc));
continue;
}
if (is_xts_key(secure_key, secure_key_size)) {
rc = validate_secure_xts_key(pkey_fd, &list[i],
secure_key,
secure_key_size,
verifykey2.size,
verifykey2.flags,
clear_key_bitsize,
verbose);
if (rc != 0)
continue;
}
valid = true;
if (clear_key_bitsize) {
if (verifykey2.size != PKEY_SIZE_UNKNOWN)
*clear_key_bitsize += verifykey2.size;
clear_key_bitsize = NULL; /* Set it only once */
}
/*
* If at least one of the APQNs have a matching current MK,
* then don't report OLD, even if some match the old MK.
*/
if (is_old_mk &&
(verifykey2.flags & PKEY_FLAGS_MATCH_CUR_MKVP))
*is_old_mk = false;
}
if (!valid)
return -ENODEV;
pr_verbose(verbose, "Secure key validation completed successfully");
if (list != NULL)
free(list);
return rc;
}
/**
* Generate a key verification pattern of a secure key by encrypting the all
* zero message with the secure key using the AF_ALG interface
*
* @param[in] key the secure key token
* @param[in] key_size the size of the secure key
* @param[in] vp buffer where the verification pattern is returned
* @param[in] vp_len the size of the buffer
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error
*/
int generate_key_verification_pattern(const u8 *key, size_t key_size,
char *vp, size_t vp_len, bool verbose)
{
int tfmfd = -1, opfd = -1, rc = 0;
char null_msg[ENC_ZERO_LEN];
char enc_zero[ENC_ZERO_LEN];
struct af_alg_iv *alg_iv;
struct cmsghdr *header;
uint32_t *type;
ssize_t len;
size_t i;
struct sockaddr_alg sa = {
.salg_family = AF_ALG,
.salg_type = "skcipher",
};
struct iovec iov = {
.iov_base = (void *)null_msg,
.iov_len = sizeof(null_msg),
};
int iv_msg_size = CMSG_SPACE(sizeof(*alg_iv) + PAES_BLOCK_SIZE);
char buffer[CMSG_SPACE(sizeof(*type)) + iv_msg_size];
struct msghdr msg = {
.msg_control = buffer,
.msg_controllen = sizeof(buffer),
.msg_iov = &iov,
.msg_iovlen = 1,
};
if (vp_len < VERIFICATION_PATTERN_LEN) {
rc = -EMSGSIZE;
goto out;
}
snprintf((char *)sa.salg_name, sizeof(sa.salg_name), "%s(paes)",
is_xts_key(key, key_size) ? "xts" : "cbc");
tfmfd = socket(AF_ALG, SOCK_SEQPACKET, 0);
if (tfmfd < 0) {
rc = -errno;
pr_verbose(verbose, "Failed to open an AF_ALG socket");
goto out;
}
if (bind(tfmfd, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
rc = -errno;
pr_verbose(verbose, "Failed to bind the AF_ALG socket, "
"salg_name='%s' ", sa.salg_name);
goto out;
}
if (setsockopt(tfmfd, SOL_ALG, ALG_SET_KEY, key,
key_size) < 0) {
rc = -errno;
pr_verbose(verbose, "Failed to set the key");
goto out;
}
opfd = accept(tfmfd, NULL, NULL);
if (opfd < 0) {
rc = -errno;
pr_verbose(verbose, "Failed to accept on the AF_ALG socket");
goto out;
}
memset(null_msg, 0, sizeof(null_msg));
memset(buffer, 0, sizeof(buffer));
header = CMSG_FIRSTHDR(&msg);
if (header == NULL) {
pr_verbose(verbose, "Failed to obtain control message header");
rc = -EINVAL;
goto out;
}
header->cmsg_level = SOL_ALG;
header->cmsg_type = ALG_SET_OP;
header->cmsg_len = CMSG_LEN(sizeof(*type));
type = (void *)CMSG_DATA(header);
*type = ALG_OP_ENCRYPT;
header = CMSG_NXTHDR(&msg, header);
if (header == NULL) {
pr_verbose(verbose, "Failed to obtain control message "
"header");
rc = -EINVAL;
goto out;
}
header->cmsg_level = SOL_ALG;
header->cmsg_type = ALG_SET_IV;
header->cmsg_len = iv_msg_size;
alg_iv = (void *)CMSG_DATA(header);
alg_iv->ivlen = PAES_BLOCK_SIZE;
memcpy(alg_iv->iv, null_msg, PAES_BLOCK_SIZE);
len = sendmsg(opfd, &msg, 0);
if (len != ENC_ZERO_LEN) {
pr_verbose(verbose, "Failed to send to the AF_ALG socket");
rc = -errno;
goto out;
}
len = read(opfd, enc_zero, sizeof(enc_zero));
if (len != ENC_ZERO_LEN) {
pr_verbose(verbose, "Failed to receive from the AF_ALG socket");
rc = -errno;
goto out;
}
memset(vp, 0, vp_len);
for (i = 0; i < sizeof(enc_zero); i++)
sprintf(&vp[i * 2], "%02x", enc_zero[i]);
pr_verbose(verbose, "Key verification pattern: %s", vp);
out:
if (opfd != -1)
close(opfd);
if (tfmfd != -1)
close(tfmfd);
if (rc != 0)
pr_verbose(verbose, "Failed to generate the key verification "
"pattern: %s", strerror(-rc));
return rc;
}
int get_master_key_verification_pattern(const u8 *key, size_t key_size,
u8 *mkvp, bool UNUSED(verbose))
{
struct aesdatakeytoken *datakey = (struct aesdatakeytoken *)key;
struct aescipherkeytoken *cipherkey = (struct aescipherkeytoken *)key;
struct ep11keytoken *ep11key = (struct ep11keytoken *)key;
util_assert(key != NULL, "Internal error: secure_key is NULL");
util_assert(mkvp != NULL, "Internal error: mkvp is NULL");
memset(mkvp, 0, MKVP_LENGTH);
if (is_cca_aes_data_key(key, key_size))
memcpy(mkvp, &datakey->mkvp, sizeof(datakey->mkvp));
else if (is_cca_aes_cipher_key(key, key_size))
memcpy(mkvp, &cipherkey->kvp, sizeof(cipherkey->kvp));
else if (is_ep11_aes_key(key, key_size))
memcpy(mkvp, &ep11key->wkvp, sizeof(ep11key->wkvp));
else
return -EINVAL;
return 0;
}
/**
* Check if the specified key is a CCA AESDATA key token.
*
* @param[in] key the secure key token
* @param[in] key_size the size of the secure key
*
* @returns true if the key is an CCA AESDATA token type
*/
bool is_cca_aes_data_key(const u8 *key, size_t key_size)
{
struct tokenheader *hdr = (struct tokenheader *)key;
if (key == NULL || key_size < AESDATA_KEY_SIZE)
return false;
if (hdr->type != TOKEN_TYPE_CCA_INTERNAL)
return false;
if (hdr->version != TOKEN_VERSION_AESDATA)
return false;
return true;
}
/**
* Check if the specified key is a CCA AESCIPHER key token.
*
* @param[in] key the secure key token
* @param[in] key_size the size of the secure key
*
* @returns true if the key is an CCA AESCIPHER token type
*/
bool is_cca_aes_cipher_key(const u8 *key, size_t key_size)
{
struct aescipherkeytoken *cipherkey = (struct aescipherkeytoken *)key;
if (key == NULL || key_size < AESCIPHER_KEY_SIZE)
return false;
if (cipherkey->type != TOKEN_TYPE_CCA_INTERNAL)
return false;
if (cipherkey->version != TOKEN_VERSION_AESCIPHER)
return false;
if (cipherkey->length > key_size)
return false;
if (cipherkey->kms != 0x03) /* key wrapped by master key */
return false;
if (cipherkey->kwm != 0x02) /* key wrapped using AESKW */
return false;
if (cipherkey->pfv != 0x00 && cipherkey->pfv != 0x01) /* V0 or V1 */
return false;
if (cipherkey->adv != 0x01) /* Should have ass. data sect. version 1 */
return false;
if (cipherkey->at != 0x02) /* Algorithm: AES */
return false;
if (cipherkey->kt != 0x0001) /* Key type: CIPHER */
return false;
if (cipherkey->adl != 26) /* Ass. data section length should be 26 */
return false;
if (cipherkey->kll != 0) /* Should have no key label */
return false;
if (cipherkey->eadl != 0) /* Should have no ext associated data */
return false;
if (cipherkey->uadl != 0) /* Should have no user associated data */
return false;
if (cipherkey->kufc != 2) /* Should have 2 KUFs */
return false;
if (cipherkey->kmfc != 3) /* Should have 3 KMFs */
return false;
return true;
}
/**
* Check if the specified key is a EP11 AES key token.
*
* @param[in] key the secure key token
* @param[in] key_size the size of the secure key
*
* @returns true if the key is an EP11 AES token type
*/
bool is_ep11_aes_key(const u8 *key, size_t key_size)
{
struct ep11keytoken *ep11key = (struct ep11keytoken *)key;
if (key == NULL || key_size < EP11_KEY_SIZE)
return false;
if (ep11key->head.type != TOKEN_TYPE_NON_CCA)
return false;
if (ep11key->head.version != TOKEN_VERSION_EP11_AES)
return false;
if (ep11key->head.length > key_size)
return false;
if (ep11key->version != 0x1234)
return false;
return true;
}
/**
* Check if the specified key is an XTS type key
*
* @param[in] key the secure key token
* @param[in] key_size the size of the secure key
*
* @returns true if the key is an XTS key type
*/
bool is_xts_key(const u8 *key, size_t key_size)
{
if (is_cca_aes_data_key(key, key_size)) {
if (key_size == 2 * AESDATA_KEY_SIZE &&
is_cca_aes_data_key(key + AESDATA_KEY_SIZE,
key_size - AESDATA_KEY_SIZE))
return true;
} else if (is_cca_aes_cipher_key(key, key_size)) {
if (key_size == 2 * AESCIPHER_KEY_SIZE &&
is_cca_aes_cipher_key(key + AESCIPHER_KEY_SIZE,
key_size - AESCIPHER_KEY_SIZE))
return true;
} else if (is_ep11_aes_key(key, key_size)) {
if (key_size == 2 * EP11_KEY_SIZE &&
is_ep11_aes_key(key + EP11_KEY_SIZE,
key_size - EP11_KEY_SIZE))
return true;
}
return false;
}
/**
* Gets the size in bits of the effective key of the specified secure key
*
* @param[in] key the secure key token
* @param[in] key_size the size of the secure key
* @param[out] bitsize On return, contains the size in bits of the key.
* If the key size can not be determined, then 0 is
* passed back as bitsize.
*
* @returns 0 on success, a negative errno in case of an error
*/
int get_key_bit_size(const u8 *key, size_t key_size, size_t *bitsize)
{
struct aesdatakeytoken *datakey = (struct aesdatakeytoken *)key;
struct aescipherkeytoken *cipherkey = (struct aescipherkeytoken *)key;
struct ep11keytoken *ep11key = (struct ep11keytoken *)key;
util_assert(bitsize != NULL, "Internal error: bitsize is NULL");
if (is_cca_aes_data_key(key, key_size)) {
*bitsize = datakey->bitsize;
if (key_size == 2 * AESDATA_KEY_SIZE) {
datakey = (struct aesdatakeytoken *)(key +
AESDATA_KEY_SIZE);
*bitsize += datakey->bitsize;
}
} else if (is_cca_aes_cipher_key(key, key_size)) {
if (cipherkey->pfv == 0x00) /* V0 payload */
*bitsize = cipherkey->pl - 384;
else
*bitsize = 0; /* Unknown */
if (key_size == 2 * AESCIPHER_KEY_SIZE) {
cipherkey = (struct aescipherkeytoken *)(key +
AESCIPHER_KEY_SIZE);
if (cipherkey->pfv == 0x00) /* V0 payload */
*bitsize += cipherkey->pl - 384;
}
} else if (is_ep11_aes_key(key, key_size)) {
*bitsize = ep11key->head.keybitlen;
if (key_size == 2 * EP11_KEY_SIZE) {
ep11key = (struct ep11keytoken *)(key + EP11_KEY_SIZE);
*bitsize += ep11key->head.keybitlen;
}
} else {
return -EINVAL;
}
return 0;
}
/**
* Returns the type of the key
*
* @param[in] key the secure key token
* @param[in] key_size the size of the secure key
*
* @returns a static string on success, NULL in case of an error
*/
const char *get_key_type(const u8 *key, size_t key_size)
{
if (is_cca_aes_data_key(key, key_size))
return KEY_TYPE_CCA_AESDATA;
if (is_cca_aes_cipher_key(key, key_size))
return KEY_TYPE_CCA_AESCIPHER;
if (is_ep11_aes_key(key, key_size))
return KEY_TYPE_EP11_AES;
return NULL;
}
/**
* Returns the minimum card level for a specific key type
*
* @param[in] key_type the type of the key
*
* @returns the minimum card level, or -1 for unknown key types
*/
int get_min_card_level_for_keytype(const char *key_type)
{
if (key_type == NULL)
return -1;
if (strcasecmp(key_type, KEY_TYPE_CCA_AESDATA) == 0)
return 3;
if (strcasecmp(key_type, KEY_TYPE_CCA_AESCIPHER) == 0)
return 6;
if (strcasecmp(key_type, KEY_TYPE_EP11_AES) == 0)
return 7;
return -1;
}
const struct fw_version *get_min_fw_version_for_keytype(const char *key_type)
{
static const struct fw_version ep11_fw_version = {
.major = 0, .minor = 0, .api_ordinal = 4, };
if (key_type == NULL)
return NULL;
if (strcasecmp(key_type, KEY_TYPE_EP11_AES) == 0)
return &ep11_fw_version;
return NULL;
}
/**
* Returns the card type required for a specific key type
*
* @param[in] key_type the type of the key
*
* @returns the card type, or CARD_TYPE_ANY for unknown key types
*/
enum card_type get_card_type_for_keytype(const char *key_type)
{
if (key_type == NULL)
return CARD_TYPE_ANY;
if (strcasecmp(key_type, KEY_TYPE_CCA_AESDATA) == 0)
return CARD_TYPE_CCA;
if (strcasecmp(key_type, KEY_TYPE_CCA_AESCIPHER) == 0)
return CARD_TYPE_CCA;
if (strcasecmp(key_type, KEY_TYPE_EP11_AES) == 0)
return CARD_TYPE_EP11;
return CARD_TYPE_ANY;
}
/**
* Performs extended checks on an AES CIPHER key. It checks the key usage
* fields (KUFs) and key management fields (KMFs) of the key. The function
* returns -EINVAL and issues warning messages if a mismatch is detected.
*
* @param[in] key the secure key token
* @param[in] key_size the size of the secure key
*
* @returns 0 on success, a negative errno in case of an error
*/
int check_aes_cipher_key(const u8 *key, size_t key_size)
{
struct aescipherkeytoken *cipherkey = (struct aescipherkeytoken *)key;
bool mismatch = false;
if (!is_cca_aes_cipher_key(key, key_size)) {
warnx("The key is not of type '"KEY_TYPE_CCA_AESCIPHER"'");
return -EINVAL;
}
if ((cipherkey->kuf1 & 0x8000) == 0) {
printf("WARNING: The secure key can not be used for "
"encryption\n");
mismatch = true;
}
if ((cipherkey->kuf1 & 0x4000) == 0) {
printf("WARNING: The secure key can not be used for "
"decryption\n");
mismatch = true;
}
if (cipherkey->kuf1 & 0x1000) {
printf("WARNING: The secure key can only be used in UDXs\n");
mismatch = true;
}
if (cipherkey->kmf1 & 0x8000) {
printf("WARNING: The secure key can be exported using a "
"symmetric key\n");
mismatch = true;
}
if (cipherkey->kmf1 & 0x4000) {
printf("WARNING: The secure key can be exported using an "
"unauthenticated asymmetric key\n");
mismatch = true;
}
if (cipherkey->kmf1 & 0x2000) {
printf("WARNING: The secure key can be exported using an "
"authenticated asymmetric key\n");
mismatch = true;
}
if (cipherkey->kmf1 & 0x1000) {
printf("WARNING: The secure key can be exported using a RAW "
"key\n");
mismatch = true;
}
if ((cipherkey->kmf1 & 0x0800) == 0) {
printf("WARNING: The secure key can not be transformed into a "
"CPACF protected key\n");
mismatch = true;
}
if ((cipherkey->kmf1 & 0x0080) == 0) {
printf("WARNING: The secure key can be exported using a DES "
"key\n");
mismatch = true;
}
if ((cipherkey->kmf1 & 0x0040) == 0) {
printf("WARNING: The secure key can be exported using an AES "
"key\n");
mismatch = true;
}
if ((cipherkey->kmf1 & 0x0008) == 0) {
printf("WARNING: The secure key can be exported using an RSA "
"key\n");
mismatch = true;
}
if (cipherkey->kmf2 & 0xC000) {
printf("WARNING: The secure key is incomplete\n");
mismatch = true;
}
if (cipherkey->kmf2 & 0x0010) {
printf("WARNING: The secure key was previously encrypted with "
"an untrusted KEK\n");
mismatch = true;
}
if (cipherkey->kmf2 & 0x0008) {
printf("WARNING: The secure key was previously in a format "
"without type or usage attributes\n");
mismatch = true;
}
if (cipherkey->kmf2 & 0x0004) {
printf("WARNING: The secure key was previously encrypted with "
"a key weaker than itself\n");
mismatch = true;
}
if (cipherkey->kmf2 & 0x0002) {
printf("WARNING: The secure key was previously in a non-CCA "
"format\n");
mismatch = true;
}
if (cipherkey->kmf2 & 0x0001) {
printf("WARNING: The secure key was previously encrypted in "
"ECB mode\n");
mismatch = true;
}
if ((cipherkey->kmf3 & 0xFF00) == 0x0000 ||
(cipherkey->kmf3 & 0x00FF) == 0x0000) {
printf("WARNING: The secure key was created by an unknown "
"method\n");
mismatch = true;
}
if ((cipherkey->kmf3 & 0xFF00) == 0x0400 ||
(cipherkey->kmf3 & 0x00FF) == 0x0004) {
printf("WARNING: The secure key was created from cleartext key "
"components\n");
mismatch = true;
}
if ((cipherkey->kmf3 & 0xFF00) == 0x0500 ||
(cipherkey->kmf3 & 0x00FF) == 0x0005) {
printf("WARNING: The secure key was entered as a cleartext key "
"value\n");
mismatch = true;
}
if ((cipherkey->kmf3 & 0x00FF) == 0x0012) {
printf("WARNING: The secure key was converted from a CCA "
"key-token that had no export control attributes\n");
mismatch = true;
}
return mismatch ? -EINVAL : 0;
}
static int reencipher_cca_secure_key(struct cca_lib *cca, u8 *secure_key,
size_t secure_key_size, const char *apqns,
u8 *mkvp, enum reencipher_method method,
bool *apqn_selected, bool verbose)
{
unsigned int flags;
int rc;
if (method == REENCIPHER_OLD_TO_CURRENT)
flags = FLAG_SEL_CCA_MATCH_OLD_MKVP;
else
flags = FLAG_SEL_CCA_MATCH_CUR_MKVP |
FLAG_SEL_CCA_NEW_MUST_BE_SET;
*apqn_selected = true;
rc = select_cca_adapter_by_mkvp(cca, mkvp, apqns, flags,
verbose);
if (rc == -ENOTSUP) {
rc = 0;
*apqn_selected = false;
}
if (rc != 0) {
pr_verbose(verbose, "No APQN found that is suitable "
"for re-enciphering this secure key");
return rc;
}
rc = key_token_change(cca, secure_key, secure_key_size,
method == REENCIPHER_OLD_TO_CURRENT ?
METHOD_OLD_TO_CURRENT :
METHOD_CURRENT_TO_NEW,
verbose);
if (rc != 0) {
pr_verbose(verbose, "Failed to re-encipher secure key: "
"%s", strerror(-rc));
return rc;
}
return 0;
}
static int reencipher_ep11_secure_key(struct ep11_lib *ep11, u8 *secure_key,
size_t secure_key_size, const char *apqns,
u8 *mkvp, bool *apqn_selected,
bool verbose)
{
unsigned int card, domain;
unsigned int flags;
target_t target;
int rc;
flags = FLAG_SEL_EP11_MATCH_CUR_MKVP |
FLAG_SEL_EP11_NEW_MUST_BE_SET;
*apqn_selected = true;
rc = select_ep11_apqn_by_mkvp(ep11, mkvp, apqns, flags,
&target, &card, &domain, verbose);
if (rc == -ENOTSUP) {
rc = 0;
*apqn_selected = false;
}
if (rc != 0) {
pr_verbose(verbose, "No APQN found that is suitable "
"for re-enciphering this secure key");
return rc;
}
rc = reencipher_ep11_key(ep11, target, card, domain,
secure_key, secure_key_size, verbose);
free_ep11_target_for_apqn(ep11, target);
if (rc != 0) {
pr_verbose(verbose, "Failed to re-encipher secure key: "
"%s", strerror(-rc));
return rc;
}
return 0;
}
/**
* Re-enciphers a secure key
*
* @param[in] lib the external library struct
* @param[in] secure_key a buffer containing the secure key
* @param[in] secure_key_size the secure key size
* @param[in] apqns a comma separated list of APQNs. If NULL is
* specified, or an empty string, then all online
* APQNs of the matching type are subject to be used.
* @param[in] method the re-encipher method
* @param[out] apqn_selected On return: true if a specific APQN was selected.
* @param[in] verbose if true, verbose messages are printed
*
* @returns 0 on success, a negative errno in case of an error.
* -ENODEV is returned if no APQN could be found with a matching master key.
* -EIO is returned if the re-enciphering has failed.
*/
int reencipher_secure_key(struct ext_lib *lib, u8 *secure_key,
size_t secure_key_size, const char *apqns,
enum reencipher_method method, bool *apqn_selected,
bool verbose)
{
u8 mkvp[MKVP_LENGTH];
int rc;
util_assert(lib != NULL, "Internal error: lib is NULL");
util_assert(secure_key != NULL, "Internal error: secure_key is NULL");
util_assert(apqn_selected != NULL,
"Internal error: apqn_selected is NULL");
*apqn_selected = true;
rc = get_master_key_verification_pattern(secure_key, secure_key_size,
mkvp, verbose);
if (rc != 0) {
pr_verbose(verbose, "Failed to get the master key verification "
"pattern: %s", strerror(-rc));
return rc;
}
if (is_ep11_aes_key(secure_key, secure_key_size)) {
/* EP11 secure key: need the EP11 host library */
if (lib->ep11->lib_ep11 == NULL) {
rc = load_ep11_library(lib->ep11, verbose);
if (rc != 0)
return rc;
}
if (method == REENCIPHER_OLD_TO_CURRENT) {
util_print_indented("ERROR: An APQN of a IBM "
"cryptographic adapter in EP11 "
"coprocessor mode does not have an "
"OLD master key register. Thus, "
"you can not re-encipher a secure "
"key of type 'EP11-AES' from the "
"OLD to the CURRENT master key "
"register.\n", 0);
return -EINVAL;
}
rc = reencipher_ep11_secure_key(lib->ep11, secure_key,
secure_key_size, apqns, mkvp,
apqn_selected, verbose);
} else if (is_cca_aes_data_key(secure_key, secure_key_size) ||
is_cca_aes_cipher_key(secure_key, secure_key_size)) {
/* CCA secure key: need the CCA host library */
if (lib->cca->lib_csulcca == NULL) {
rc = load_cca_library(lib->cca, verbose);
if (rc != 0)
return rc;
}
rc = reencipher_cca_secure_key(lib->cca, secure_key,
secure_key_size, apqns, mkvp,
method, apqn_selected, verbose);
} else {
pr_verbose(verbose, "Invalid key type");
rc = -EINVAL;
}
return rc;
}
|