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 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// -*- Mode: C++ -*-
//
// Copyright (C) 2015-2025 Red Hat, Inc.
//
// Author: Sinny Kumari
/// @file
/// This program compares the ABIs of binaries inside two packages.
///
/// For now, the supported package formats are Deb and RPM, but
/// support for other formats would be greatly appreciated.
///
/// The program takes the two packages to compare as well as their
/// associated debug info packages.
///
/// The program extracts the content of the two packages into a
/// temporary directory , looks for the ELF binaries in there,
/// compares their ABIs and emit a report about the changes.
/// As this program uses libpthread to perform several tasks
/// concurrently, here is a coarse grain description of the sequence
/// of actions performed, including where things are done
/// concurrently.
///
/// (steps 1/ and 2/ are performed concurrently. Then steps 3/ and 4/
/// are performed in sequence)
///
/// 1/ the first package and its ancillary packages (debug info and
/// devel packages) are extracted concurrently.
/// There is one thread per package being extracted. So if there are
/// 3 thread packages (one package, one debug info package and one
/// devel package), then there are 3 threads to extracts them. Then
/// when the extracting is done, another thread performs the analysis
/// of th1 extracted content.
///
/// 2/ A similar thing is done for the second package.
///
/// 3/ comparisons are performed concurrently.
///
/// 4/ the reports are then emitted to standard output, always in the same
/// order.
// In case we have a bad fts we include this before config.h because
// it can't handle _FILE_OFFSET_BITS. Everything we need here is fine
// if its declarations just come first. Also, include sys/types.h
// before fts. On some systems fts.h is not self contained.
#ifdef BAD_FTS
#include <sys/types.h>
#include <fts.h>
#endif
// For package configuration macros.
#include "config.h"
#include <assert.h>
#include <fcntl.h>
#include <sys/stat.h>
// If fts.h is included before config.h, its indirect inclusions may
// not give us the right LFS aliases of these functions, so map them
// manually.
#ifdef BAD_FTS
#ifdef _FILE_OFFSET_BITS
#define open open64
#define fopen fopen64
#endif
#else
#include <sys/types.h>
#include <fts.h>
#endif
#include <algorithm>
#include <cstdlib>
#include <cstring>
#include <fstream>
#include <iostream>
#include <map>
#include <memory>
#include <string>
#include <unordered_set>
#include <vector>
#include "abg-workers.h"
#include "abg-config.h"
#include "abg-tools-utils.h"
#include "abg-comparison.h"
#include "abg-suppression.h"
#include "abg-dwarf-reader.h"
#include "abg-reader.h"
#include "abg-writer.h"
#ifdef WITH_CTF
#include "abg-ctf-reader.h"
#endif
#ifdef WITH_BTF
#include "abg-btf-reader.h"
#endif
using std::cout;
using std::cerr;
using std::string;
using std::ostream;
using std::ofstream;
using std::vector;
using std::map;
using std::unordered_set;
using std::set;
using std::ostringstream;
using std::shared_ptr;
using std::dynamic_pointer_cast;
using abg_compat::optional;
using abigail::workers::task;
using abigail::workers::task_sptr;
using abigail::workers::queue;
using abigail::tools_utils::maybe_get_symlink_target_file_path;
using abigail::tools_utils::file_exists;
using abigail::tools_utils::is_dir;
using abigail::tools_utils::emit_prefix;
using abigail::tools_utils::check_file;
using abigail::tools_utils::ensure_dir_path_created;
using abigail::tools_utils::guess_file_type;
using abigail::tools_utils::string_ends_with;
using abigail::tools_utils::dir_name;
using abigail::tools_utils::real_path;
using abigail::tools_utils::string_suffix;
using abigail::tools_utils::sorted_strings_common_prefix;
using abigail::tools_utils::file_type;
using abigail::tools_utils::make_path_absolute;
using abigail::tools_utils::base_name;
using abigail::tools_utils::get_rpm_arch;
using abigail::tools_utils::gen_suppr_spec_from_headers;
using abigail::tools_utils::get_default_system_suppression_file_path;
using abigail::tools_utils::get_default_user_suppression_file_path;
using abigail::tools_utils::get_vmlinux_path_from_kernel_dist;
using abigail::tools_utils::get_dsos_provided_by_rpm;
using abigail::tools_utils::build_corpus_group_from_kernel_dist_under;
using abigail::tools_utils::load_default_system_suppressions;
using abigail::tools_utils::load_default_user_suppressions;
using abigail::tools_utils::abidiff_status;
using abigail::tools_utils::create_best_elf_based_reader;
using abigail::tools_utils::timer;
using abigail::ir::corpus_sptr;
using abigail::ir::corpus_group_sptr;
using abigail::comparison::diff_context;
using abigail::comparison::diff_context_sptr;
using abigail::comparison::compute_diff;
using abigail::comparison::corpus_diff_sptr;
using abigail::comparison::get_default_harmless_categories_bitmap;
using abigail::comparison::get_default_harmful_categories_bitmap;
using abigail::suppr::suppression_sptr;
using abigail::suppr::suppressions_type;
using abigail::suppr::read_suppressions;
using abigail::elf::get_soname_of_elf_file;
using abigail::elf::get_type_of_elf_file;
using abigail::xml_writer::create_write_context;
using abigail::xml_writer::write_context_sptr;
using abigail::xml_writer::write_corpus;
using namespace abigail;
class package;
/// Convenience typedef for a shared pointer to a @ref package.
typedef shared_ptr<package> package_sptr;
class package_set;
/// Convenience typedef for a shared pointer to a @ref package_set.
typedef shared_ptr<package_set> package_set_sptr;
static package_set*
is_package_set(const package* pkg);
/// The options passed to the current program.
class options
{
options();
public:
string wrong_option;
string wrong_arg;
string prog_name;
bool display_usage;
bool display_version;
bool missing_operand;
bool nonexistent_file;
bool abignore;
bool parallel;
set<string> package_set_paths1;
set<string> package_set_paths2;
vector<string> debug_packages1;
vector<string> debug_packages2;
string devel_package1;
string devel_package2;
size_t num_workers;
bool verbose;
bool verbose_diff;
bool drop_private_types;
bool show_relative_offset_changes;
bool no_default_suppression;
bool keep_tmp_files;
bool compare_dso_only;
bool compare_private_dsos;
bool leaf_changes_only;
bool show_all_types;
bool show_hexadecimal_values;
bool show_offsets_sizes_in_bits;
bool show_impacted_interfaces;
bool show_full_impact_report;
bool show_linkage_names;
bool show_redundant_changes;
bool show_harmless_changes;
bool show_locs;
bool show_added_syms;
bool show_symbols_not_referenced_by_debug_info;
bool show_added_binaries;
bool fail_if_no_debug_info;
bool show_identical_binaries;
bool leverage_dwarf_factorization;
bool assume_odr_for_cplusplus;
bool self_check;
bool ignore_soname;
optional<bool> exported_interfaces_only;
#ifdef WITH_CTF
bool use_ctf;
#endif
#ifdef WITH_BTF
bool use_btf;
#endif
vector<string> kabi_stablelist_packages;
vector<string> suppression_paths;
vector<string> kabi_stablelist_paths;
suppressions_type kabi_suppressions;
package_set_sptr pkg_set1;
package_set_sptr pkg_set2;
options(const string& program_name)
: prog_name(program_name),
display_usage(),
display_version(),
missing_operand(),
nonexistent_file(),
abignore(true),
parallel(true),
verbose(),
verbose_diff(),
drop_private_types(),
show_relative_offset_changes(true),
no_default_suppression(),
keep_tmp_files(),
compare_dso_only(),
compare_private_dsos(),
leaf_changes_only(),
show_all_types(),
show_hexadecimal_values(),
show_offsets_sizes_in_bits(true),
show_impacted_interfaces(),
show_full_impact_report(),
show_linkage_names(true),
show_redundant_changes(),
show_harmless_changes(),
show_locs(true),
show_added_syms(true),
show_symbols_not_referenced_by_debug_info(true),
show_added_binaries(true),
fail_if_no_debug_info(),
show_identical_binaries(),
leverage_dwarf_factorization(true),
assume_odr_for_cplusplus(true),
self_check(),
ignore_soname()
#ifdef WITH_CTF
,
use_ctf()
#endif
#ifdef WITH_BTF
,
use_btf()
#endif
{
// set num_workers to the default number of threads of the
// underlying maching. This is the default value for the number
// of workers to use in workers queues throughout the code.
num_workers = abigail::workers::get_number_of_threads();
}
};
static bool
get_interesting_files_under(const string dir,
const string& file_name_to_look_for,
options& opts,
vector<string>& interesting_files);
static bool
get_interesting_files_under(const package_set_sptr package,
const string& file_name_to_look_for,
options& opts,
vector<string>& interesting_files);
static string
get_pretty_printed_list_of_packages(const vector<string>& packages);
static bool
is_kernel_package(const package_sptr& package);
static package_sptr
get_core_kernel_package(const package_set_sptr& ps);
static package_sptr
get_core_kernel_package(const package_set* ps);
/// Abstract ELF files from the packages which ABIs ought to be
/// compared
class elf_file
{
private:
elf_file();
public:
string path;
string name;
string soname;
off_t size;
abigail::elf::elf_type type;
/// The path to the elf file.
///
/// @param path the path to the elf file.
elf_file(const string& path)
: path(path)
{
abigail::tools_utils::base_name(path, name);
get_soname_of_elf_file(path, soname);
get_type_of_elf_file(path, type);
struct stat estat;
stat(path.c_str(), &estat);
size = estat.st_size;
}
};
/// A convenience typedef for a shared pointer to elf_file.
typedef shared_ptr<elf_file> elf_file_sptr;
/// Abstract the result of comparing two packages.
///
/// This contains the the paths of the set of added binaries, removed
/// binaries, and binaries whic ABI changed.
struct abi_diff
{
vector<elf_file_sptr> added_binaries;
vector<elf_file_sptr> removed_binaries;
vector<string> changed_binaries;
/// Test if the current diff carries changes.
///
/// @return true iff the current diff carries changes.
bool
has_changes()
{
return (!added_binaries.empty()
|| !removed_binaries.empty()
||!changed_binaries.empty());
}
};
/// Abstracts a package.
class package
{
public:
/// The kind of package we are looking at.
enum kind
{
/// Main package. Contains binaries to ABI-compare.
KIND_MAIN = 0,
/// Devel package. Contains public headers files in which public
/// types are defined.
KIND_DEVEL,
/// Debug info package. Contains the debug info for the binaries
/// int he main packge.
KIND_DEBUG_INFO,
/// Contains kernel ABI stablelists
KIND_KABI_STABLELISTS,
/// Source package. Contains the source of the binaries in the
/// main package.
KIND_SRC
};
private:
string path_;
string extracted_dir_path_;
string common_paths_prefix_;
abigail::tools_utils::file_type type_;
kind kind_;
map<string, elf_file_sptr> path_elf_file_sptr_map_;
vector<package_sptr> debug_info_packages_;
package_sptr devel_package_;
package_sptr kabi_stablelist_package_;
vector<string> elf_file_paths_;
set<string> public_dso_sonames_;
public:
/// Constructor for the @ref package type.
///
/// @param path the path to the package.
///
/// @parm dir the temporary directory where to extract the content
/// of the package.
///
/// @param pkg_kind the kind of package.
package(const string& path,
const string& dir,
kind pkg_kind = package::KIND_MAIN)
: path_(path),
kind_(pkg_kind)
{
type_ = guess_file_type(path);
if (type_ == abigail::tools_utils::FILE_TYPE_DIR)
extracted_dir_path_ = path;
else
extracted_dir_path_ = extracted_packages_parent_dir() + "/" + dir;
}
virtual ~package()
{}
/// Getter of the path of the package.
///
/// @return the path of the package.
const string&
path() const
{return path_;}
/// Setter of the path of the package.
///
/// @param s the new path.
void
path(const string& s)
{path_ = s;}
/// Getter of the base name of the package.
///
/// @return the base name of the package.
string
base_name() const
{
string name;
abigail::tools_utils::base_name(path(), name);
return name;
}
/// Getter for the path to the root dir where the packages are
/// extracted.
///
/// @return the path to the root dir where the packages are
/// extracted.
static const string&
extracted_packages_parent_dir();
/// Getter for the path to the directory where the packages are
/// extracted for the current thread.
///
/// @return the path to the directory where the packages are
/// extracted for the current thread.
const string&
extracted_dir_path() const
{return extracted_dir_path_;}
/// Setter for the path to the directory where the packages are
/// extracted for the current thread.
///
/// @param p the new path.
void
extracted_dir_path(const string& p)
{extracted_dir_path_ = p;}
/// Getter of the the prefix that is common to all the paths of all
/// the elements of the package.
///
/// @return the common path prefix of package elements.
const string&
common_paths_prefix() const
{return common_paths_prefix_;}
/// Getter of the the prefix that is common to all the paths of all
/// the elements of the package.
///
/// @return the common path prefix of package elements.
string&
common_paths_prefix()
{return common_paths_prefix_;}
/// Setter of the the prefix that is common to all the paths of all
/// the elements of the package.
///
///
///@param p the new prefix.
void
common_paths_prefix(const string& p)
{common_paths_prefix_ = p;}
/// Getter for the file type of the current package.
///
/// @return the file type of the current package.
abigail::tools_utils::file_type
type() const
{return type_;}
/// Setter for the file type of the current package.
///
/// @param t the new file type.
void type(abigail::tools_utils::file_type t)
{type_ = t;}
/// Get the package kind
///
/// @return the package kind
kind
get_kind() const
{return kind_;}
/// Set the package kind
///
/// @param k the package kind.
void
set_kind(kind k)
{kind_ = k;}
/// Getter for the path <-> elf_file map.
///
/// @return the the path <-> elf_file map.
const map<string, elf_file_sptr>&
path_elf_file_sptr_map() const
{return path_elf_file_sptr_map_;}
/// Getter for the path <-> elf_file map.
///
/// @return the the path <-> elf_file map.
map<string, elf_file_sptr>&
path_elf_file_sptr_map()
{return path_elf_file_sptr_map_;}
/// Getter for the debug info packages associated to the current
/// package.
///
/// There can indeed be several debug info packages needed for one
/// input package, as the debug info for that input package can be
/// split across several debuginfo packages.
///
/// @return the debug info packages associated to the current
/// package.
const vector<package_sptr>&
debug_info_packages() const
{return debug_info_packages_;}
/// Getter for the debug info packages associated to the current
/// package.
///
/// There can indeed be several debug info packages needed for one
/// input package, as the debug info for that input package can be
/// split across several debuginfo packages.
///
/// @return the debug info packages associated to the current
/// package.
vector<package_sptr>&
debug_info_packages()
{return debug_info_packages_;}
/// Setter for the debug info packages associated to the current
/// package.
///
/// There can indeed be several debug info packages needed for one
/// input package, as the debug info for that input package can be
/// split across several debuginfo packages.
///
/// @param p the new debug info package.
void
debug_info_packages(const vector<package_sptr> &p)
{debug_info_packages_ = p;}
/// Getter for the devel package associated to the current package.
///
/// @return the devel package associated to the current package.
const package_sptr&
devel_package() const
{return devel_package_;}
/// Setter of the devel package associated to the current package.
///
/// @param p the new devel package associated to the current package.
void
devel_package(const package_sptr& p)
{devel_package_ = p;}
/// Getter of the associated kernel abi stablelist package, if any.
///
/// @return the associated kernel abi stablelist package.
const package_sptr
kabi_stablelist_package() const
{return kabi_stablelist_package_;}
/// Setter of the associated kernel abi stablelist package.
///
/// @param p the new kernel abi stablelist package.
void
kabi_stablelist_package(const package_sptr& p)
{kabi_stablelist_package_ = p;}
/// Getter of the path to the elf files of the package.
///
/// @return the path tothe elf files of the package.
const vector<string>&
elf_file_paths() const
{return elf_file_paths_;}
/// Getter of the path to the elf files of the package.
///
/// @return the path tothe elf files of the package.
vector<string>&
elf_file_paths()
{return elf_file_paths_;}
/// Getter of the SONAMEs of the public DSOs carried by this
/// package.
///
/// This is relevant only if the --private-dso option was *NOT*
/// provided.
///
/// @return the SONAMEs of the public DSOs carried by this package.
const set<string>&
public_dso_sonames() const
{return public_dso_sonames_;}
/// Getter of the SONAMEs of the public DSOs carried by this
/// package.
///
/// This is relevant only if the --private-dso option was *NOT*
/// provided.
///
/// @return the SONAMEs of the public DSOs carried by this package.
set<string>&
public_dso_sonames()
{return public_dso_sonames_;}
/// Convert the absolute path of an element of this package into a
/// path relative to the root path pointing to this package.
///
/// That is, suppose the content of a package named 'pkg' is located
/// at /root/path/pkg. Suppose an element of that package is named
/// is at '/root/path/pkg/somewhere/inside/element'.
///
/// This function will return the path:
/// /pkg/somewhere/inside/element.
///
/// @param path the path to consider.
///
/// @param converted_path the resulting converted path. This is set
/// iff the function returns true.
///
/// @return true if the path could be converted to being relative to
/// the extracted directory.
bool
convert_path_to_relative(const string& path, string& converted_path) const
{
string root = extracted_dir_path_;
string p = path;
return string_suffix(p, root, converted_path);
}
// Convert the absolute path of an element of this package into a
// path relative to the prefix common to the paths of all elements
// of the package.
//
// @param path the path to conver.
//
// @param converted_path the resulting converted path. This is set
// iff the function returns true.
//
// @return true iff the function could successfully convert @p path
// and put the result into @p converted_path.
bool
convert_path_to_unique_suffix(const string& path,
string& converted_path) const
{return string_suffix(path, common_paths_prefix(), converted_path);}
/// Retrieve the set of "interesting" package element paths by
/// walking the package.
///
/// And then compute the path prefix that is common to all the
/// collected elements.
///
/// @param the options of this application.
void
load_elf_file_paths(options& opts)
{
if (!common_paths_prefix().empty()
|| !elf_file_paths().empty())
// We have already loaded the elf file paths, don't do it again.
return;
get_interesting_files_under(extracted_dir_path(),
/*file_name_to_look_for=*/"",
opts, elf_file_paths());
std::sort(elf_file_paths().begin(), elf_file_paths().end());
string common_prefix;
sorted_strings_common_prefix(elf_file_paths(), common_paths_prefix());
}
/// Create the path of an ABI file to be associated with a given
/// binary.
///
/// @param elf_file_path the path to the binary to consider.
///
/// @param abi_file_path the resulting ABI file path. This is set
/// iff the function return true.
///
/// @return true if the ABI file path could be constructed and the
/// directory tree containing it could be created. In that case,
/// the resulting ABI file path is set to the @p abi_file_path
/// output parameter.
bool
create_abi_file_path(const string &elf_file_path,
string &abi_file_path) const
{
string abi_path, dir, parent;
if (!convert_path_to_relative(elf_file_path, abi_path))
return false;
abi_path = extracted_dir_path() + "/abixml" + abi_path + ".abi";
if (!abigail::tools_utils::ensure_parent_dir_created(abi_path))
return false;
abi_file_path = abi_path;
return true;
}
/// Erase the content of the temporary extraction directory that has
/// been populated by the @ref extract_package() function;
///
/// @param opts the options passed to the current program.
void
erase_extraction_directory(const options &opts) const
{
if (type() == abigail::tools_utils::FILE_TYPE_DIR)
// If we are comparing two directories, do not erase the
// directory as it was provided by the user; it's not a
// temporary directory we created ourselves.
return;
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Erasing temporary extraction directory "
<< extracted_dir_path()
<< " ...";
string cmd = "rm -rf " + extracted_dir_path();
if (system(cmd.c_str()))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Erasing temporary extraction directory"
<< " FAILED\n";
}
else
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Erasing temporary extraction directory"
<< " DONE\n";
}
}
/// Erase the content of all the temporary extraction directories.
///
/// @param opts the options passed to the current program.
void
erase_extraction_directories(const options &opts) const
{
erase_extraction_directory(opts);
if (!debug_info_packages().empty())
debug_info_packages().front()->erase_extraction_directory(opts);
if (devel_package())
devel_package()->erase_extraction_directory(opts);
if (kabi_stablelist_package())
kabi_stablelist_package()->erase_extraction_directory(opts);
}
}; // end class package.
/// The abstraction of a set of packages.
///
/// The abipkgdiff tool is meant to compare the ABI of a set of
/// packages against the ABI of another set of packages.
///
/// A set of packages keeps track of its individual constituant
/// packages. This consituent packages all share the same extraction
/// directory as well a few other properties.
///
/// Please note that the package_set class inherit the package class
/// just because that makes it easier to re-use several of the
/// properties and behaviours of a package, even if a package set is
/// not a package but rather an aggregation of packages. This is more
/// of an implementation hack than anything else.
class package_set : public package
{
set<string> package_paths_;
set<package_sptr> packages_;
public:
/// Constructor of the @ref package_set type.
///
/// @param paths the paths of the constituent packages of this set.
///
/// @param dir the extraction directory name for this package set.
///
/// @param pkg_kind the kind of the constituent packages of this
/// set. This is thus the kind of this package set.
package_set(const set<string>& paths, const string& dir,
package::kind pkg_kind = package::KIND_MAIN)
: package(/*path=*/"", dir, pkg_kind),
package_paths_(paths)
{
for (auto& p : paths)
{
package_sptr pkg(new package(p, dir));
packages_.insert(pkg);
}
if (!packages_.empty())
{
package_sptr first_package = *packages().begin();
if (package_sptr c = get_core_kernel_package(this))
// So this is a set of kernel packages. Let's consider that
// the path to the set is the path to the core kernel
// package (the one that contains the vmlinuz binary).
// Otherwise, we just pick one random package in the set and
// use its path as the path to the set.
first_package = c;
type(first_package->type());
path(first_package->path());
if (type() == abigail::tools_utils::FILE_TYPE_DIR)
extracted_dir_path(first_package->extracted_dir_path());
type((*packages_.begin())->type());
path((*packages_.begin())->path());
}
}
/// Getter of the paths of the constituent packages of this set.
const set<string>&
package_paths() const
{return package_paths_;}
/// Getter of the constituent packages of this set.
const set<package_sptr>&
packages() const
{return packages_;}
}; // end class package_set
/// This converts of a @ref package type into a @ref package_set type
/// iff the a given pointer to @ref package points to an instance of
/// @ref package_set.
///
/// @param pkg the package to consider.
///
/// @return a pointer to the instance of @ref package_set that @p pkg
/// points to. Otherwise, returns nil.
static package_set*
is_package_set(const package* pkg)
{
package_set* result = dynamic_cast<package_set*>(const_cast<package*>(pkg));
return result;
}
/// Arguments passed to the comparison tasks.
struct compare_args
{
const elf_file elf1;
const string& debug_dir1;
const suppressions_type private_types_suppr1;
const elf_file elf2;
const string& debug_dir2;
const suppressions_type private_types_suppr2;
const options& opts;
/// Constructor for compare_args, which is used to pass
/// information to the comparison threads.
///
/// @param elf1 the first elf file to consider.
///
/// @param debug_dir1 the directory where the debug info file for @p
/// elf1 is stored.
///
/// @param elf2 the second elf file to consider.
///
/// @param debug_dir2 the directory where the debug info file for @p
/// elf2 is stored.
///
/// @param opts the options the current program has been called with.
compare_args(const elf_file &elf1, const string& debug_dir1,
const suppressions_type& priv_types_suppr1,
const elf_file &elf2, const string& debug_dir2,
const suppressions_type& priv_types_suppr2,
const options& opts)
: elf1(elf1), debug_dir1(debug_dir1),
private_types_suppr1(priv_types_suppr1),
elf2(elf2), debug_dir2(debug_dir2),
private_types_suppr2(priv_types_suppr2),
opts(opts)
{}
}; // end struct compare_args
/// A convenience typedef for arguments passed to the comparison workers.
typedef shared_ptr<compare_args> compare_args_sptr;
static bool
extract_package_set_and_map_its_content(const package_set_sptr &ps,
options &opts);
/// Getter for the path to the parent directory under which packages
/// extracted by the current thread are placed.
///
/// @return the path to the parent directory under which packages
/// extracted by the current thread are placed.
const string&
package::extracted_packages_parent_dir()
{
// I tried to declare this in thread-local storage, but GCC 4.4.7
// won't let me. So for now, I am just making it static. I'll deal
// with this later when I have to.
//static __thread string p;
static string p;
if (p.empty())
{
const char *cachedir = getenv("XDG_CACHE_HOME");
if (cachedir != NULL)
p = cachedir;
else
{
const char* s = getenv("HOME");
if (s != NULL)
p = s;
if (p.empty())
{
s = getenv("TMPDIR");
if (s != NULL)
p = s;
else
p = "/tmp";
}
p += "/.cache/libabigail";
}
// Create the cache directory if it doesn't exist
ABG_ASSERT(ensure_dir_path_created(p));
string libabigail_tmp_dir_template = p;
libabigail_tmp_dir_template += "/abipkgdiff-tmp-dir-XXXXXX";
if (!mkdtemp(const_cast<char*>(libabigail_tmp_dir_template.c_str())))
abort();
p = libabigail_tmp_dir_template;
}
return p;
}
/// A convenience typedef for shared_ptr of package.
typedef shared_ptr<package> package_sptr;
/// Show the usage of this program.
///
/// @param prog_name the name of the program.
///
/// @param out the output stream to emit the usage to .
static void
display_usage(const string& prog_name, ostream& out)
{
emit_prefix(prog_name, out)
<< "usage: " << prog_name << " [options] <package1> <package2>\n"
<< " where options can be:\n"
<< " --debug-info-pkg1|--d1 <path> path of debug-info package of package1\n"
<< " --debug-info-pkg2|--d2 <path> path of debug-info package of package2\n"
<< " --devel-pkg1|--devel1 <path> path of devel package of pakage1\n"
<< " --devel-pkg2|--devel2 <path> path of devel package of pakage1\n"
<< " --drop-private-types drop private types from "
"internal representation\n"
<< " --no-default-suppression don't load any default "
"suppression specifications\n"
<< " --suppressions|--suppr <path> specify supression specification path\n"
<< " --linux-kernel-abi-whitelist|-w path to a "
"linux kernel abi whitelist\n"
<< " --wp <path> path to a linux kernel abi whitelist package\n"
<< " --keep-tmp-files don't erase created temporary files\n"
<< " --dso-only compare shared libraries only\n"
<< " --private-dso compare DSOs that are private "
"to the package as well\n"
<< " --leaf-changes-only|-l only show leaf changes, "
"so no change impact analysis (implies --redundant)\n"
<< " --impacted-interfaces|-i display interfaces impacted by leaf changes\n"
<< " --full-impact|-f when comparing kernel packages, show the "
"full impact analysis report rather than the default leaf changes reports\n"
<< " --non-reachable-types|-t consider types non reachable"
" from public interfaces\n"
<< " --exported-interfaces-only analyze exported interfaces only\n"
<< " --allow-non-exported-interfaces analyze interfaces that "
"might not be exported\n"
<< " --no-linkage-name do not display linkage names of "
"added/removed/changed\n"
<< " --redundant display redundant changes\n"
<< " --harmless display the harmless changes\n"
<< " --no-show-locs do not show location information\n"
<< " --ignore-soname do not take the SONAMEs into account\n"
<< " --show-bytes show size and offsets in bytes\n"
<< " --show-bits show size and offsets in bits\n"
<< " --show-hex show size and offset in hexadecimal\n"
<< " --show-dec show size and offset in decimal\n"
<< " --no-show-relative-offset-changes do not show relative"
" offset changes\n"
<< " --no-added-syms do not display added functions or variables\n"
<< " --no-unreferenced-symbols do not display changes "
"about symbols not referenced by debug info\n"
<< " --no-added-binaries do not display added binaries\n"
<< " --no-abignore do not look for *.abignore files\n"
<< " --no-parallel do not execute in parallel\n"
<< " --fail-no-dbg fail if no debug info was found\n"
<< " --show-identical-binaries show the names of identical binaries\n"
<< " --no-leverage-dwarf-factorization do not use DWZ optimisations to "
"speed-up the analysis of the binary\n"
<< " --no-assume-odr-for-cplusplus do not assume the ODR to speed-up the"
"analysis of the binary\n"
<< " --verbose emit verbose progress messages\n"
<< " --verbose-diff emit verbose diff progress messages\n"
<< " --self-check perform a sanity check by comparing "
"binaries inside the input package against their ABIXML representation\n"
#ifdef WITH_CTF
<< " --ctf use CTF instead of DWARF in ELF files\n"
#endif
#ifdef WITH_BTF
<< " --btf use BTF instead of DWARF in ELF files\n"
#endif
<< " --help|-h display this help message\n"
<< " --version|-v display program version information"
" and exit\n";
}
#ifdef WITH_RPM
/// Extract an RPM package.
///
/// @param package_path the path to the package to extract.
///
/// @param extracted_package_dir_path the path where to extract the
/// package to.
///
/// @param opts the options passed to the current program.
///
/// @return true upon successful completion, false otherwise.
static bool
extract_rpm(const string& package_path,
const string& extracted_package_dir_path,
const options &opts)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting package "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " ...\n";
string cmd = "test -d " + extracted_package_dir_path
+ " || mkdir -p " + extracted_package_dir_path + " ; cd " +
extracted_package_dir_path + " && rpm2cpio " + package_path +
" | cpio -dium --quiet";
if (system(cmd.c_str()))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting package "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " FAILED\n";
return false;
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting package "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " DONE\n";
return true;
}
#endif // WITH_RPM
#ifdef WITH_DEB
/// Extract a Debian binary package.
///
/// @param package_path the path to the package to extract.
///
/// @param extracted_package_dir_path the path where to extract the
/// package to.
///
/// @param opts the options passed to the current program.
///
/// @return true upon successful completion, false otherwise.
static bool
extract_deb(const string& package_path,
const string& extracted_package_dir_path,
const options &opts)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting package "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " ...\n";
string cmd = "mkdir -p " + extracted_package_dir_path + " && dpkg -x " +
package_path + " " + extracted_package_dir_path;
if (system(cmd.c_str()))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting package "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " FAILED\n";
return false;
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting package "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " DONE\n";
return true;
}
#endif // WITH_DEB
#ifdef WITH_TAR
/// Extract a GNU Tar archive.
///
/// @param package_path the path to the archive to extract.
///
/// @param extracted_package_dir_path the path where to extract the
/// archive to.
///
/// @param opts the options passed to the current program.
///
/// @return true upon successful completion, false otherwise.
static bool
extract_tar(const string& package_path,
const string& extracted_package_dir_path,
const options &opts)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting tar archive "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " ...";
string cmd = "test -d " +
extracted_package_dir_path +
" && rm -rf " + extracted_package_dir_path;
if (system(cmd.c_str()))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr) << "command " << cmd << " FAILED\n";
}
cmd = "mkdir -p " + extracted_package_dir_path + " && cd " +
extracted_package_dir_path + " && tar -xf " + package_path;
if (system(cmd.c_str()))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting tar archive "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " FAILED\n";
return false;
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Extracting tar archive "
<< package_path
<< " to "
<< extracted_package_dir_path
<< " DONE\n";
return true;
}
#endif // WITH_TAR
/// Erase the temporary directories created for the extraction of two
/// sets of packages.
///
/// @param first_ps the first set of packages to consider.
///
/// @param second_ps the second set of packagfes to consider.
///
/// @param opts the options passed to the current program.
///
/// @param second_package the second package to consider.
static void
erase_created_temporary_directories(const package_set_sptr& first_ps,
const package_set_sptr& second_ps,
const options &opts)
{
first_ps->erase_extraction_directories(opts);
second_ps->erase_extraction_directories(opts);
}
/// Erase the root of all the temporary directories created by the
/// current thread.
static void
erase_created_temporary_directories_parent(const options &opts)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Erasing temporary extraction parent directory "
<< package::extracted_packages_parent_dir()
<< " ...";
string cmd = "rm -rf " + package::extracted_packages_parent_dir();
if (system(cmd.c_str()))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Erasing temporary extraction parent directory "
<< package::extracted_packages_parent_dir()
<< "FAILED\n";
}
else
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Erasing temporary extraction parent directory "
<< package::extracted_packages_parent_dir()
<< "DONE\n";
}
}
/// Extract the content of a package.
///
/// @param package the package we are looking at.
///
/// @param opts the options passed to the current program.
static bool
extract_package(const package_sptr& package, const options &opts)
{
switch(package->type())
{
case abigail::tools_utils::FILE_TYPE_RPM:
#ifdef WITH_RPM
if (!extract_rpm(package->path(), package->extracted_dir_path(), opts))
{
emit_prefix("abipkgdiff", cerr)
<< "Error while extracting package " << package->path() << "\n";
return false;
}
return true;
#else
emit_prefix("abipkgdiff", cerr)
<< "Support for rpm hasn't been enabled. Please consider "
"enabling it at package configure time\n";
return false;
#endif // WITH_RPM
break;
case abigail::tools_utils::FILE_TYPE_DEB:
#ifdef WITH_DEB
if (!extract_deb(package->path(), package->extracted_dir_path(), opts))
{
emit_prefix("abipkgdiff", cerr)
<< "Error while extracting package" << package->path() << "\n";
return false;
}
return true;
#else
emit_prefix("abipkgdiff", cerr)
<< "Support for deb hasn't been enabled. Please consider "
"enabling it at package configure time\n";
return false;
#endif // WITH_DEB
break;
case abigail::tools_utils::FILE_TYPE_DIR:
// The input package is just a directory that contains binaries,
// there is nothing to extract.
break;
case abigail::tools_utils::FILE_TYPE_TAR:
#ifdef WITH_TAR
if (!extract_tar(package->path(), package->extracted_dir_path(), opts))
{
emit_prefix("abipkgdiff", cerr)
<< "Error while extracting GNU tar archive "
<< package->path() << "\n";
return false;
}
return true;
#else
emit_prefix("abipkgdiff", cerr)
<< "Support for GNU tar hasn't been enabled. Please consider "
"enabling it at package configure time\n";
return false;
#endif // WITH_TAR
break;
default:
return false;
}
return true;
}
/// Check that the suppression specification files supplied are
/// present. If not, emit an error on stderr.
///
/// @param opts the options instance to use.
///
/// @return true if all suppression specification files are present,
/// false otherwise.
static bool
maybe_check_suppression_files(const options& opts)
{
for (vector<string>::const_iterator i = opts.suppression_paths.begin();
i != opts.suppression_paths.end();
++i)
if (!check_file(*i, cerr, opts.prog_name))
return false;
for (vector<string>::const_iterator i =
opts.kabi_stablelist_paths.begin();
i != opts.kabi_stablelist_paths.end();
++i)
if (!check_file(*i, cerr, "abidiff"))
return false;
return true;
}
/// Update the diff context from the @ref options data structure.
///
/// @param ctxt the diff context to update.
///
/// @param opts the instance of @ref options to consider.
static void
set_diff_context_from_opts(diff_context_sptr ctxt,
const options& opts)
{
ctxt->default_output_stream(&cout);
ctxt->error_output_stream(&cerr);
// See comment in abidiff.cc's set_diff_context_from_opts.
ctxt->show_redundant_changes(opts.show_redundant_changes
|| opts.leaf_changes_only);
ctxt->show_leaf_changes_only(opts.leaf_changes_only);
ctxt->show_impacted_interfaces(opts.show_impacted_interfaces);
ctxt->show_unreachable_types(opts.show_all_types);
ctxt->show_hex_values(opts.show_hexadecimal_values);
ctxt->show_offsets_sizes_in_bits(opts.show_offsets_sizes_in_bits);
ctxt->show_relative_offset_changes(opts.show_relative_offset_changes);
ctxt->show_locs(opts.show_locs);
// Intentional logic flip of ignore_soname
ctxt->show_soname_change(!opts.ignore_soname);
ctxt->show_linkage_names(opts.show_linkage_names);
ctxt->show_added_fns(opts.show_added_syms);
ctxt->show_added_vars(opts.show_added_syms);
ctxt->show_added_symbols_unreferenced_by_debug_info
(opts.show_added_syms);
ctxt->show_symbols_unreferenced_by_debug_info
(opts.show_symbols_not_referenced_by_debug_info);
ctxt->do_log(opts.verbose_diff);
if (!opts.show_harmless_changes)
ctxt->switch_categories_off(get_default_harmless_categories_bitmap());
suppressions_type supprs;
for (vector<string>::const_iterator i = opts.suppression_paths.begin();
i != opts.suppression_paths.end();
++i)
read_suppressions(*i, supprs);
ctxt->add_suppressions(supprs);
}
/// Set a bunch of tunable buttons on the ELF-based reader from the
/// command-line options.
///
/// @param rdr the reader to tune.
///
/// @param opts the command line options.
static void
set_generic_options(abigail::elf_based_reader& rdr, const options& opts)
{
if (!opts.kabi_suppressions.empty())
rdr.add_suppressions(opts.kabi_suppressions);
rdr.options().leverage_dwarf_factorization =
opts.leverage_dwarf_factorization;
rdr.options().assume_odr_for_cplusplus =
opts.assume_odr_for_cplusplus;
rdr.options().do_log = opts.verbose;
}
/// Emit an error message on standard error about alternate debug info
/// not being found.
///
/// @param reader the ELF based reader being used.
///
/// @param elf_file the ELF file being looked at.
///
/// @param opts the options passed to the tool.
///
/// @param is_old_package if this is true, then we are looking at the
/// first (the old) package of the comparison. Otherwise, we are
/// looking at the second (the newest) package of the comparison.
static void
emit_alt_debug_info_not_found_error(abigail::elf_based_reader& reader,
const elf_file& elf_file,
const options& opts,
ostream& out,
bool is_old_package)
{
string fname;
tools_utils::base_name(elf_file.path, fname);
const vector<string>& debug_pkgs_list =
is_old_package
? opts.debug_packages1
: opts.debug_packages2;
if (debug_pkgs_list.empty())
emit_prefix("abipkgdiff", out)
<< "Could not find alternate debug info found for file '" << fname << "'"
<< "Maybe look into properly setting up debuginfod service "
<< "to fetch debug info?\n";
emit_prefix("abipkgdiff", out)
<< "While reading elf file '" << fname << "'"
<< ", could not find alternate debug info in provided "
<< "debug info package(s) "
<< get_pretty_printed_list_of_packages(debug_pkgs_list)
<< "\n";
string alt_di_path;
#ifdef WITH_CTF
if (opts.use_ctf)
;
else
#endif
#ifdef WITH_BTF
if (opts.use_btf)
;
else
#endif
reader.refers_to_alt_debug_info(alt_di_path);
if (!alt_di_path.empty())
{
emit_prefix("abipkgdiff", out)
<< "The alternate debug info file being looked for is: "
<< alt_di_path << "\n";
}
else
emit_prefix("abipkgdiff", out) << "\n";
emit_prefix("abipkgdiff", out)
<< "You must provide the additional "
<< "debug info package that contains that alternate "
<< "debug info file, using an additional --d1/--d2 switch\n";
}
/// Compare the ABI two elf files, using their associated debug info.
///
/// The result of the comparison is emitted to standard output.
///
/// @param elf1 the first elf file to consider.
///
/// @param debug_dir1 the directory where the debug info file for @p
/// elf1 is stored.
/// The result of the comparison is saved to a global corpus map.
///
/// @param elf2 the second eld file to consider.
/// @args the list of argument sets used for comparison
///
/// @param debug_dir2 the directory where the debug info file for @p
/// elf2 is stored.
///
/// @param opts the options the current program has been called with.
///
/// @param env the environment encapsulating the entire comparison.
///
/// @param diff the shared pointer to be set to the result of the comparison.
///
/// @param detailed_error_status is this pointer is non-null and if
/// the function returns ABIDIFF_ERROR, then the function sets the
/// pointed-to parameter to the abigail::fe_iface::status value
/// that gives details about the rror.
///
/// @return the status of the comparison.
static abidiff_status
compare(const elf_file& elf1,
const string& debug_dir1,
const suppressions_type& priv_types_supprs1,
const elf_file& elf2,
const string& debug_dir2,
const suppressions_type& priv_types_supprs2,
const options& opts,
abigail::ir::environment& env,
corpus_diff_sptr& diff,
diff_context_sptr& ctxt,
ostream& out,
abigail::fe_iface::status* detailed_error_status = 0)
{
vector<string> di_dirs1, di_dirs2;
if (!debug_dir1.empty())
di_dirs1.push_back(debug_dir1);
if (!debug_dir2.empty())
di_dirs2.push_back(debug_dir2);
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Comparing the ABIs of file "
<< elf1.path
<< " and "
<< elf2.path
<< "...\n";
abigail::fe_iface::status c1_status = abigail::fe_iface::STATUS_OK,
c2_status = abigail::fe_iface::STATUS_OK;
ctxt.reset(new diff_context);
set_diff_context_from_opts(ctxt, opts);
suppressions_type& supprs = ctxt->suppressions();
bool files_suppressed = (file_is_suppressed(elf1.path, supprs)
||file_is_suppressed(elf2.path, supprs));
if (files_suppressed)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< " input file "
<< elf1.path << " or " << elf2.path
<< " has been suppressed by a suppression specification.\n"
<< " Not reading any of them\n";
return abigail::tools_utils::ABIDIFF_OK;
}
// Add the first private type suppressions set to the set of
// suppressions.
for (suppressions_type::const_iterator i = priv_types_supprs1.begin();
i != priv_types_supprs1.end();
++i)
supprs.push_back(*i);
// Add the second private type suppressions set to the set of
// suppressions.
for (suppressions_type::const_iterator i = priv_types_supprs2.begin();
i != priv_types_supprs2.end();
++i)
supprs.push_back(*i);
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Reading file "
<< elf1.path
<< " ...\n";
abigail::elf_based_reader_sptr reader;
corpus_sptr corpus1;
{
corpus::origin requested_fe_kind = corpus::DWARF_ORIGIN;
#ifdef WITH_CTF
if (opts.use_ctf)
requested_fe_kind = corpus::CTF_ORIGIN;
#endif
#ifdef WITH_BTF
if (opts.use_btf)
requested_fe_kind = corpus::BTF_ORIGIN;
#endif
abigail::elf_based_reader_sptr reader =
create_best_elf_based_reader(elf1.path,
di_dirs1,
env, requested_fe_kind,
opts.show_all_types);
ABG_ASSERT(reader);
reader->add_suppressions(supprs);
set_generic_options(*reader, opts);
corpus1 = reader->read_corpus(c1_status);
bool bail_out = false;
if (!(c1_status & abigail::fe_iface::STATUS_OK))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Could not read file '"
<< elf1.path
<< "' properly\n";
if (detailed_error_status)
*detailed_error_status = c1_status;
bail_out = true;
}
if (c1_status & abigail::fe_iface::STATUS_ALT_DEBUG_INFO_NOT_FOUND)
{
emit_alt_debug_info_not_found_error(*reader, elf1, opts, out,
/*is_old_package=*/true);
if (detailed_error_status)
*detailed_error_status = c1_status;
bail_out = true;
}
if (opts.fail_if_no_debug_info)
{
bool debug_info_error = false;
if (c1_status & abigail::fe_iface::STATUS_DEBUG_INFO_NOT_FOUND)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "while reading file" << elf1.path << "\n";
emit_prefix("abipkgdiff", cerr) << "Could not find debug info file";
if (!debug_dir1.empty())
cerr << " under " << debug_dir1 << "\n";
else
cerr << "\n";
if (detailed_error_status)
*detailed_error_status = c1_status;
debug_info_error = true;
}
if (debug_info_error)
bail_out = true;
}
if (bail_out)
return abigail::tools_utils::ABIDIFF_ERROR;
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "DONE reading file "
<< elf1.path
<< "\n";
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Reading file "
<< elf2.path
<< " ...\n";
corpus_sptr corpus2;
{
corpus::origin requested_fe_kind = corpus::DWARF_ORIGIN;
#ifdef WITH_CTF
if (opts.use_ctf)
requested_fe_kind = corpus::CTF_ORIGIN;
#endif
#ifdef WITH_BTF
if (opts.use_btf)
requested_fe_kind = corpus::BTF_ORIGIN;
#endif
abigail::elf_based_reader_sptr reader =
create_best_elf_based_reader(elf2.path,
di_dirs2,
env, requested_fe_kind,
opts.show_all_types);
ABG_ASSERT(reader);
reader->add_suppressions(priv_types_supprs2);
set_generic_options(*reader, opts);
corpus2 = reader->read_corpus(c2_status);
bool bail_out = false;
if (!(c2_status & abigail::fe_iface::STATUS_OK))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Could not find the read file '"
<< elf2.path
<< "' properly\n";
if (detailed_error_status)
*detailed_error_status = c2_status;
bail_out = true;
}
if (c2_status & abigail::fe_iface::STATUS_ALT_DEBUG_INFO_NOT_FOUND)
{
emit_alt_debug_info_not_found_error(*reader, elf2, opts, out,
/*is_old_package=*/false);
if (detailed_error_status)
*detailed_error_status = c2_status;
bail_out = true;
}
if (opts.fail_if_no_debug_info)
{
bool debug_info_error = false;
if (c2_status & abigail::fe_iface::STATUS_DEBUG_INFO_NOT_FOUND)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "while reading file" << elf2.path << "\n";
emit_prefix("abipkgdiff", cerr) << "Could not find debug info file";
if (!debug_dir2.empty())
cerr << " under " << debug_dir2 << "\n";
else
cerr << "\n";
if (detailed_error_status)
*detailed_error_status = c2_status;
debug_info_error = true;
}
if (debug_info_error)
bail_out = true;
}
if (bail_out)
return abigail::tools_utils::ABIDIFF_ERROR;
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< " DONE reading file " << elf2.path << "\n";
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< " Comparing the ABIs of: \n"
<< " " << elf1.path << "\n"
<< " " << elf2.path << "\n";
diff = compute_diff(corpus1, corpus2, ctxt);
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Comparing the ABIs of file "
<< elf1.path
<< " and "
<< elf2.path
<< " is DONE\n";
abidiff_status s = abigail::tools_utils::ABIDIFF_OK;
if (diff->has_net_changes())
s |= abigail::tools_utils::ABIDIFF_ABI_CHANGE;
if (diff->has_incompatible_changes())
s |= abigail::tools_utils::ABIDIFF_ABI_INCOMPATIBLE_CHANGE;
return s;
}
/// Compare an ELF file to its ABIXML representation.
///
/// @param elf the ELF file to compare.
///
/// @param debug_dir the debug directory of the ELF file.
///
/// @param priv_types_supprs type suppression specification that
/// suppress private types.
///
/// @param opts the options passed the user.
///
/// @param env the environment to use for the comparison.
///
/// @param diff the diff object resulting from the comparison of @p
/// elf against its ABIXML representation.
///
/// @param ctxt the resulting diff context used for the comparison
/// that yielded @p diff.
///
/// @param detailed_error_status the detailed error satus returned by
/// this function.
///
/// @return the status of the self comparison.
static abidiff_status
compare_to_self(const elf_file& elf,
const string& debug_dir,
const suppressions_type& priv_types_supprs,
const options& opts,
abigail::ir::environment& env,
corpus_diff_sptr& diff,
diff_context_sptr& ctxt,
ostream& out,
abigail::fe_iface::status* detailed_error_status = 0)
{
vector<string> di_dirs;
if (!debug_dir.empty())
di_dirs.push_back(debug_dir);
abigail::fe_iface::status c_status = abigail::fe_iface::STATUS_OK;
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Comparing the ABI of file '"
<< elf.path
<< "' against itself ...\n";
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Reading file "
<< elf.path
<< " ...\n";
ctxt.reset(new diff_context);
set_diff_context_from_opts(ctxt, opts);
suppressions_type& supprs = ctxt->suppressions();
// Add the opaque type suppressions set to the set of suppressions.
for (auto& suppr : priv_types_supprs)
supprs.push_back(suppr);
corpus_sptr corp;
abigail::elf_based_reader_sptr reader;
{
corpus::origin requested_fe_kind = corpus::DWARF_ORIGIN;
#ifdef WITH_CTF
if (opts.use_ctf)
requested_fe_kind = corpus::CTF_ORIGIN;
#endif
#ifdef WITH_BTF
if (opts.use_btf)
requested_fe_kind = corpus::BTF_ORIGIN;
#endif
abigail::elf_based_reader_sptr reader =
create_best_elf_based_reader(elf.path,
di_dirs,
env, requested_fe_kind,
opts.show_all_types);
ABG_ASSERT(reader);
reader->add_suppressions(supprs);
corp = reader->read_corpus(c_status);
if (!(c_status & abigail::fe_iface::STATUS_OK))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Could not read file '"
<< elf.path
<< "' properly\n";
if (detailed_error_status)
*detailed_error_status = c_status;
return abigail::tools_utils::ABIDIFF_ERROR;
}
else if (c_status & abigail::fe_iface::STATUS_ALT_DEBUG_INFO_NOT_FOUND)
{
emit_alt_debug_info_not_found_error(*reader, elf, opts, out,
/*is_old_package=*/true);
if (detailed_error_status)
*detailed_error_status = c_status;
return abigail::tools_utils::ABIDIFF_ERROR;
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Read file '"
<< elf.path
<< "' OK\n";
ABG_ASSERT(corp);
}
corpus_sptr reread_corp;
string abi_file_path;
{
if (!opts.pkg_set1->create_abi_file_path(elf.path, abi_file_path))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Could not create the directory tree to store the abi for '"
<< elf.path
<< "'\n";
return abigail::tools_utils::ABIDIFF_ERROR;
}
ofstream of(abi_file_path.c_str(), std::ios_base::trunc);
{
const abigail::xml_writer::write_context_sptr c =
abigail::xml_writer::create_write_context(env, of);
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Writting ABIXML file '"
<< abi_file_path
<< "' ...\n";
if (!write_corpus(*c, corp, 0))
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Could not write the ABIXML file to '"
<< abi_file_path << "'\n";
return abigail::tools_utils::ABIDIFF_ERROR;
}
of.flush();
of.close();
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Wrote ABIXML file '"
<< abi_file_path
<< "' OK\n";
}
{
abigail::fe_iface_sptr rdr = abixml::create_reader(abi_file_path, env);
if (!rdr)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Could not create read context for ABIXML file '"
<< abi_file_path << "'\n";
return abigail::tools_utils::ABIDIFF_ERROR;
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Reading ABIXML file '"
<< abi_file_path
<< "' ...\n";
abigail::fe_iface::status sts;
reread_corp = rdr->read_corpus(sts);
if (!reread_corp)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Could not read temporary ABIXML file '"
<< abi_file_path << "'\n";
return abigail::tools_utils::ABIDIFF_ERROR;
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Read file '"
<< abi_file_path
<< "' OK\n";
}
}
ctxt.reset(new diff_context);
set_diff_context_from_opts(ctxt, opts);
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Comparing the ABIs of: \n"
<< " '" << corp->get_path() << "' against \n"
<< " '" << abi_file_path << "'...\n";
diff = compute_diff(corp, reread_corp, ctxt);
if (opts.verbose)
emit_prefix("abipkgdfiff", cerr)
<< "Comparing the ABIs: of \n"
<< " '" << corp->get_path() << "' against \n"
<< " '" << abi_file_path << "':"
<< "DONE\n";
abidiff_status s = abigail::tools_utils::ABIDIFF_OK;
if (diff->has_changes())
s |= abigail::tools_utils::ABIDIFF_ABI_CHANGE;
if (diff->has_incompatible_changes())
s |= abigail::tools_utils::ABIDIFF_ABI_INCOMPATIBLE_CHANGE;
if (opts.verbose)
emit_prefix("abipkgdfiff", cerr)
<< "Comparison against self "
<< (s == abigail::tools_utils::ABIDIFF_OK ? "SUCCEEDED" : "FAILED")
<< '\n';
return s;
}
/// If devel packages were associated to the main package we are
/// looking at, use the names of the header files (extracted from the
/// package) to generate suppression specification to filter out types
/// that are not defined in those header files.
///
/// Filtering out types not defined in publi headers amounts to filter
/// out types that are deemed private to the package we are looking
/// at.
///
/// If the function succeeds, it returns a non-empty vector of
/// suppression specifications.
///
/// @param ps the main package set we are looking at.
///
/// @param opts the options of the current program.
///
/// @return a vector of suppression_sptr. If no suppressions
/// specification were constructed, the returned vector is empty.
static suppressions_type
create_private_types_suppressions(const package_set_sptr& ps,
const options &opts)
{
suppressions_type supprs;
package_sptr devel_pkg = ps->devel_package();
if (!devel_pkg
|| !file_exists(devel_pkg->extracted_dir_path())
|| !is_dir(devel_pkg->extracted_dir_path()))
return supprs;
string headers_path = devel_pkg->extracted_dir_path();
if (devel_pkg->type() == abigail::tools_utils::FILE_TYPE_RPM
||devel_pkg->type() == abigail::tools_utils::FILE_TYPE_DEB)
// For RPM and DEB packages, header files are under the
// /usr/include sub-directories.
headers_path += "/usr/include";
if (!is_dir(headers_path))
return supprs;
suppression_sptr suppr =
gen_suppr_spec_from_headers(headers_path);
if (suppr)
{
if (opts.drop_private_types)
suppr->set_drops_artifact_from_ir(true);
supprs.push_back(suppr);
}
return supprs;
}
/// If the user wants to avoid comparing DSOs that are private to this
/// package set, then we build the set of public DSOs as advertised in
/// the "provides" property of the packages of the set.
///
/// Note that at the moment this function only works for RPMs. It
/// doesn't yet support other packaging formats.
///
/// @param ps the package set to consider.
///
/// @param opts the options of this program.
///
/// @return true iff the set of public DSOs was built.
static bool
maybe_create_public_dso_sonames_set(const package_set_sptr& ps,
const options &opts)
{
if (opts.compare_private_dsos || !ps->public_dso_sonames().empty())
return false;
if (ps->type() == abigail::tools_utils::FILE_TYPE_RPM)
for (auto& p : ps->packages())
get_dsos_provided_by_rpm(p->path(), ps->public_dso_sonames());
// We don't support this yet for non-RPM packages.
return false;
}
/// Test if we should only compare the public DSOs of a given package set.
///
/// @param ps the package set to consider.
///
/// @param opts the options of this program
static bool
must_compare_public_dso_only(const package_set_sptr& ps, options& opts)
{
if (ps->type() == abigail::tools_utils::FILE_TYPE_RPM
&& !opts.compare_private_dsos)
return true;
return false;
}
/// While walking a file directory, check if a directory entry is a
/// kabi stablelist of a particular architecture.
///
/// If it is, then save its file path in a vector of stablelists.
///
/// @param entry the directory entry to consider.
///
/// @param arch the architecture to consider.
///
/// @param stablelists out parameter. If @p entry is the stablelist
/// we are looking for, add its path to this output parameter.
static void
maybe_collect_kabi_stablelists(const FTSENT *entry,
const string arch,
vector<string> &stablelists)
{
if (entry == NULL
|| (entry->fts_info != FTS_F && entry->fts_info != FTS_SL)
|| entry->fts_info == FTS_ERR
|| entry->fts_info == FTS_NS)
return;
string path = entry->fts_path;
maybe_get_symlink_target_file_path(path, path);
vector<string> stablelist_prefixes;
stablelist_prefixes.push_back("kabi_whitelist_");
stablelist_prefixes.push_back("kabi_stablelist_");
string kabi_stablelist_name;
for (auto prefix : stablelist_prefixes)
{
kabi_stablelist_name = prefix + arch;
if (string_ends_with(path, kabi_stablelist_name))
stablelists.push_back(path);
}
}
/// Get the kabi stablelist for a particular architecture under a given
/// directory.
///
/// @param dir the directory to look at.
///
/// @param arch the architecture to consider.
///
/// @param stablelist_paths the vector where to add the stablelists
/// found. Note that a stablelist is added to this parameter iff the
/// function returns true.
///
/// @return true iff the function found a stablelist at least.
static bool
get_kabi_stablelists_from_arch_under_dir(const string& dir,
const string& arch,
vector<string>& stablelist_paths)
{
bool is_ok = false;
char* paths[] = {const_cast<char*>(dir.c_str()), 0};
FTS *file_hierarchy = fts_open(paths, FTS_LOGICAL|FTS_NOCHDIR, NULL);
if (!file_hierarchy)
return is_ok;
FTSENT *entry;
while ((entry = fts_read(file_hierarchy)))
maybe_collect_kabi_stablelists(entry, arch, stablelist_paths);
fts_close(file_hierarchy);
return true;
}
/// Test if a given package (or a package set) is a kernel package or
/// not.
///
/// A kernal package is a package that contains the vmlinuz binary.
///
/// In the case of a package set, this function walks the constituent
/// packages of the set and returns true if it finds one package that
/// is a kernel package.
///
/// @param package the package (or package set) to consider.
///
/// @return true iff @p package is a kernel package.
static bool
is_kernel_package(const package* package)
{
if (package_set* set = is_package_set(package))
{
for (auto& pkg : set->packages())
if (is_kernel_package(pkg))
return true;
}
if (file_is_kernel_package(package->path(), package->type()))
return true;
return false;
}
/// Test if a given package (or a package set) is a kernel package or
/// not.
///
/// A kernal package is a package that contains the vmlinuz binary.
///
/// In the case of a package set, this function walks all the packages
/// of the set and returns true if it finds one package that is a
/// kernel package.
///
/// @param package the package (or package set) to consider.
///
/// @return true iff @p package is a kernel package.
static bool
is_kernel_package(const package_sptr& package)
{return is_kernel_package(package.get());}
/// Get the core kernel package of a set of kernel package.
///
/// The core kernel package is the package that contains the vmlinuz
/// binary.
///
/// @param ps the package set to consider.
///
/// @return the core kernel package or nil if none was found.
static package_sptr
get_core_kernel_package(const package_set* ps)
{
if (!is_kernel_package(ps))
return package_sptr();
for (auto& p : ps->packages())
if (is_kernel_package(p))
return p;
return package_sptr();
}
/// Get the core kernel package of a set of kernel package.
///
/// The core kernel package is the package that contains the vmlinuz
/// binary.
///
/// @param ps the package set to consider.
///
/// @return the core kernel package or nil if none was found.
static package_sptr
get_core_kernel_package(const package_set_sptr& ps)
{return get_core_kernel_package(ps.get());}
/// Find a kabi stablelist in a "KABI stablelist RPM" associated to a
/// set of Linux Kernel RPM packages.
///
/// Note that the KABI stablelist RPM package set must have been
/// extracted somewhere already.
///
/// This function then looks for the stablelist under the /lib/modules
/// directory inside the extracted content of the KABI stablelist
/// package. If it finds it, then it saves its file path in the
/// options::kabi_stablelist_paths data member.
///
/// @param ps the linux kernel package set to consider.
///
/// @param opts the options the program was invoked with.
static bool
maybe_handle_kabi_stablelist_pkg(const package_set_sptr& ps, options &opts)
{
if (opts.kabi_stablelist_packages.empty()
|| !opts.kabi_stablelist_paths.empty()
|| !ps->kabi_stablelist_package())
return false;
if (ps->type() != abigail::tools_utils::FILE_TYPE_RPM)
return false;
bool is_linux_kernel_package = is_kernel_package(ps);
if (!is_linux_kernel_package)
return false;
package_sptr kabi_wl_pkg = ps->kabi_stablelist_package();
assert(kabi_wl_pkg);
if (!file_exists(kabi_wl_pkg->extracted_dir_path())
|| !is_dir(kabi_wl_pkg->extracted_dir_path()))
return false;
string base_name = ps->base_name();
string rpm_arch;
get_rpm_arch(base_name, rpm_arch);
if (rpm_arch.empty())
return false;
string kabi_wl_path = kabi_wl_pkg->extracted_dir_path();
kabi_wl_path += "/lib/modules";
vector<string> stablelist_paths;
get_kabi_stablelists_from_arch_under_dir(kabi_wl_path, rpm_arch,
stablelist_paths);
if (!stablelist_paths.empty())
{
std::sort(stablelist_paths.begin(), stablelist_paths.end());
opts.kabi_stablelist_paths.push_back(stablelist_paths.back());
}
return true;
}
/// The task that performs the extraction of the content of several
/// packages into a temporary directory.
///
/// If this task has several packages to extract, then it extracts
/// them in sequence.
///
/// Note that several instances of tasks can perform their jobs (i.e
/// extract packages in sequence) in parallel.
class pkg_extraction_task : public task
{
pkg_extraction_task();
public:
vector<package_sptr> pkgs;
const options &opts;
bool is_ok;
pkg_extraction_task(const package_sptr &p, const options &o)
: opts(o), is_ok(true)
{pkgs.push_back(p);}
pkg_extraction_task(const vector<package_sptr> &packages, const options &o)
: pkgs(packages), opts(o), is_ok(true)
{}
/// The job performed by the current task, which is to extract its
/// packages in sequence. This job is to be performed in parallel
/// with other jobs of other tasks.
virtual void
perform()
{
for (vector<package_sptr>::const_iterator p = pkgs.begin();
p != pkgs.end();
++p)
is_ok &= extract_package(*p, opts);
}
}; //end class pkg_extraction_task
/// A convenience typedef for a shared pointer to @f pkg_extraction_task.
typedef shared_ptr<pkg_extraction_task> pkg_extraction_task_sptr;
/// The worker task which job is to prepares a package set.
///
/// Preparing a package set means:
///
/// 1/ Extract the packages making up the set as well as its
/// ancillary packages.
///
/// 2/ Analyze the extracted content, map that content so that we
/// determine what the ELF files to be analyzed are.
class pkg_set_prepare_task : public abigail::workers::task
{
pkg_set_prepare_task();
public:
package_set_sptr pkg_set;
options &opts;
bool is_ok;
pkg_set_prepare_task(const package_set_sptr &ps, options &o)
: pkg_set(ps), opts(o), is_ok(false)
{}
/// The job performed by this task.
virtual void
perform()
{
is_ok = pkg_set && extract_package_set_and_map_its_content(pkg_set, opts);
}
}; //end class pkg_set_prepare_task
/// A convenience typedef for a shared_ptr to @ref pkg_set_prepare_task
typedef shared_ptr<pkg_set_prepare_task> pkg_set_prepare_task_sptr;
/// The worker task which job is to compare two ELF binaries
class compare_task : public abigail::workers::task
{
public:
compare_args_sptr args;
abidiff_status status;
ostringstream out;
string pretty_output;
compare_task()
: status(abigail::tools_utils::ABIDIFF_OK)
{}
compare_task(const compare_args_sptr& a)
: args(a),
status(abigail::tools_utils::ABIDIFF_OK)
{}
void
maybe_emit_pretty_error_message_to_output(const corpus_diff_sptr& diff,
abigail::fe_iface::status detailed_status)
{
// If there is an ABI change, tell the user about it.
if ((status & abigail::tools_utils::ABIDIFF_ABI_CHANGE)
||( diff && diff->has_net_changes()))
{
diff->report(out, /*prefix=*/" ");
string name = args->elf1.name;
pretty_output +=
string("================ changes of '") + name + "'===============\n"
+ out.str()
+ "================ end of changes of '"
+ name + "'===============\n\n";
}
else
{
if (args->opts.show_identical_binaries)
{
out << "No ABI change detected";
if (diff && diff->first_corpus() && diff->second_corpus())
{
string path = diff->first_corpus()->get_path();
args->opts.pkg_set1->convert_path_to_relative(path, path);
out << " for " << path;
}
out << "\n";
pretty_output += out.str();
}
}
// If an error happened while comparing the two binaries, tell the
// user about it.
if (status & abigail::tools_utils::ABIDIFF_ERROR)
{
string diagnostic =
abigail::status_to_diagnostic_string(detailed_status);
if (diagnostic.empty())
diagnostic =
"Unknown error. Please run the tool again with --verbose\n";
string name = args->elf1.name;
std::stringstream o;
emit_prefix("abipkgdiff", o)
<< "==== Error happened during processing of '"
<< name
<< "' ====\n";
emit_prefix("abipkgdiff", o)
<< diagnostic
<< ":\n"
<< out.str();
emit_prefix("abipkgdiff", o)
<< "==== End of error for '"
<< name
<< "' ====\n\n";
pretty_output += o.str();
}
}
/// The job performed by the task.
///
/// This compares two ELF files, gets the resulting test report and
/// stores it in an output stream.
virtual void
perform()
{
abigail::ir::environment env;
diff_context_sptr ctxt;
corpus_diff_sptr diff;
abigail::fe_iface::status detailed_status =
abigail::fe_iface::STATUS_UNKNOWN;
if (args->opts.exported_interfaces_only.has_value())
env.analyze_exported_interfaces_only
(*args->opts.exported_interfaces_only);
status |= compare(args->elf1, args->debug_dir1, args->private_types_suppr1,
args->elf2, args->debug_dir2, args->private_types_suppr2,
args->opts, env, diff, ctxt, out, &detailed_status);
maybe_emit_pretty_error_message_to_output(diff, detailed_status);
}
}; // end class compare_task
/// Convenience typedef for a shared_ptr of @ref compare_task.
typedef shared_ptr<compare_task> compare_task_sptr;
/// The worker task which job is to compare an ELF binary to its ABI
/// representation.
class self_compare_task : public compare_task
{
public:
self_compare_task(const compare_args_sptr& a)
: compare_task(a)
{}
/// The job performed by the task.
///
/// This compares an ELF file to its ABIXML representation and
/// expects the result to be the empty set.
virtual void
perform()
{
abigail::ir::environment env;
diff_context_sptr ctxt;
corpus_diff_sptr diff;
if (args->opts.exported_interfaces_only.has_value())
env.analyze_exported_interfaces_only
(*args->opts.exported_interfaces_only);
abigail::fe_iface::status detailed_status =
abigail::fe_iface::STATUS_UNKNOWN;
status |= compare_to_self(args->elf1, args->debug_dir1,
args->private_types_suppr1,
args->opts, env, diff, ctxt, out,
&detailed_status);
string name = args->elf1.name;
if (status == abigail::tools_utils::ABIDIFF_OK)
pretty_output += "==== SELF CHECK SUCCEEDED for '"+ name + "' ====\n";
else
maybe_emit_pretty_error_message_to_output(diff, detailed_status);
}
}; // end class self_compare
/// Convenience typedef for a shared_ptr of @ref compare_task.
typedef shared_ptr<self_compare_task> self_compare_task_sptr;
/// This function is a sub-routine of get_interesting_files_under.
///
/// It's called during the walking of the directory tree containing
/// the extracted content of a package or package set. It's called
/// with an entry of that directory tree.
///
/// Depending on the kind of file this function is called on, it
/// updates the vector of paths of the directory and the set of
/// suppression paths found.
///
/// @param entry the directory entry to analyze.
///
/// @param opts the options of the current program.
///
/// @param file_name_to_look_for if this parameter is set, the
/// function only looks for a file name which name is the same as the
/// value of this parameter.
///
/// @param parent_dir_name the name of the directory that the file
/// name denoted by @p entry should belong to. If it doesn't (because
/// it's a symlink that resolves to a file outside of that directory)
/// then the vector of paths of is not updated.
///
/// @param paths out parameter. This is the set of meaningful paths
/// of the current directory tree being analyzed. These paths are
/// those that are going to be involved in ABI comparison.
static void
maybe_update_package_content(const FTSENT* entry,
options& opts,
const string& file_name_to_look_for,
const string& parent_dir_name,
unordered_set<string>& paths)
{
if (entry == NULL
|| (entry->fts_info != FTS_F && entry->fts_info != FTS_SL)
|| entry->fts_info == FTS_ERR
|| entry->fts_info == FTS_NS)
return;
string path = entry->fts_path;
maybe_get_symlink_target_file_path(path, path);
string parent_dir = parent_dir_name;
maybe_get_symlink_target_file_path(parent_dir, parent_dir);
if (!parent_dir_name.empty())
{
string s;
if (!string_suffix(path, parent_dir, s))
return;
}
if (!file_name_to_look_for.empty())
{
string name;
abigail::tools_utils::base_name(path, name);
if (name == file_name_to_look_for)
paths.insert(path);
return;
}
if (guess_file_type(path) == abigail::tools_utils::FILE_TYPE_ELF)
{
if (opts.ignore_soname)
// We want to look at a symlink to a shared library,
// independantly from SONAME considerations. That is, if a
// libfoo.so is symbolic link to libfoo.so.5, we want to keep
// libfoo.so.
path = entry->fts_path;
paths.insert(path);
}
else if (opts.abignore && string_ends_with(path, ".abignore"))
opts.suppression_paths.push_back(path);
}
/// Walk a given directory to collect files that are "interesting" to
/// analyze. By default, "interesting" means interesting from either
/// a kernel package or a userspace binary analysis point of view.
///
/// @param dir the directory to walk.
///
/// @param file_name_to_look_for if this parameter is set, only a file
/// with this name is going to be collected.
///
/// @param interesting_files out parameter. This parameter is
/// populated with the interesting files found by the function iff the
/// function returns true.
///
/// @return true iff the function completed successfully.
static bool
get_interesting_files_under(const string dir,
const string& file_name_to_look_for,
options& opts,
vector<string>& interesting_files)
{
bool is_ok = false;
string root;
real_path(dir, root);
if (root.empty())
root = dir;
char* paths[] = {const_cast<char*>(root.c_str()), 0};
FTS *file_hierarchy = fts_open(paths, FTS_LOGICAL|FTS_NOCHDIR, NULL);
if (!file_hierarchy)
return is_ok;
FTSENT *entry;
unordered_set<string> files;
while ((entry = fts_read(file_hierarchy)))
maybe_update_package_content(entry, opts,
file_name_to_look_for,
dir, files);
for (unordered_set<string>::const_iterator i = files.begin();
i != files.end();
++i)
interesting_files.push_back(*i);
fts_close(file_hierarchy);
is_ok = true;
return is_ok;
}
/// Walk the directory where a package set has been extracted to in
/// order to collect files that are "interesting" to analyze. By
/// default, "interesting" means interesting from either a kernel
/// package or a userspace binary analysis point of view.
///
/// @param ps the set of packages to consider. This function will
/// look into the directory where the package set has been extracted
/// to.
///
/// @param file_name_to_look_for if this parameter is set, only a file
/// with this name is going to be collected.
///
/// @param interesting_files out parameter. This parameter is
/// populated with the interesting files found by the function iff the
/// function returns true.
///
/// @return true iff the function completed successfully.
static bool
get_interesting_files_under(const package_set_sptr ps,
const string& file_name_to_look_for,
options& opts,
vector<string>& interesting_files)
{
if (!ps)
return false;
for (auto& p : ps->packages())
get_interesting_files_under(p->extracted_dir_path(),
file_name_to_look_for,
opts, interesting_files);
return true;
}
/// Return a string representing a list of packages that can be
/// printed out to the user.
///
/// @param packages a vector of package names
///
/// @return a string representing the list of packages @p packages.
static string
get_pretty_printed_list_of_packages(const vector<string>& packages)
{
if (packages.empty())
return string();
bool need_comma = false;
std::stringstream o;
for (auto p : packages)
{
string filename;
tools_utils::base_name(p, filename);
if (need_comma)
o << ", ";
else
need_comma = true;
o << "'" << filename << "'";
}
return o.str();
}
/// Create maps of the content of a given package.
///
/// The maps contain relevant metadata about the content of the files.
/// These maps are used afterwards during the comparison of the
/// content of the package set. Note that the maps are stored in the
/// object that represents that package set.
///
/// @param ps the package set to consider.
///
/// @param opts the options the current program has been called with.
///
/// @param true upon successful completion, false otherwise.
static bool
create_maps_of_package_set_content(const package_set_sptr& ps,
options& opts)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Analyzing the content of package set"
<< ps->path()
<< " extracted to "
<< ps->extracted_dir_path()
<< " ...\n";
bool is_ok = true;
vector<string> elf_file_paths;
// if package (set) is a linux kernel package set and its associated
// debug info package looks like a kernel debuginfo package, then
// try to go find the vmlinux file in that debug info file.
bool is_linux_kernel_package = is_kernel_package(ps);
if (is_linux_kernel_package)
{
// For a linux kernel package, no analysis is done. It'll be
// done later at comparison time by
// compare_prepared_linux_kernel_packages
is_ok = true;
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< " Analysis of linux package set " << ps->path() << " DONE\n";
return is_ok;
}
is_ok &= get_interesting_files_under(ps, /*file_name_to_look_for=*/"",
opts, elf_file_paths);
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Found " << elf_file_paths.size() << " files in "
<< ps->extracted_dir_path() << "\n";
// determine if all files have the same prefix. Compute that prefix
// and stick it into the package! That prefix is going to be used
// later by the package::convert_path_to_unique_suffix method.
ps->load_elf_file_paths(opts);
maybe_create_public_dso_sonames_set(ps, opts);
for (vector<string>::const_iterator file = elf_file_paths.begin();
file != elf_file_paths.end();
++file)
{
elf_file_sptr e (new elf_file(*file));
string resolved_e_path;
// The path 'e->path' might contain symlinks. Let's resolve
// them so we can see if 'e->path' has already been seen before,
// for instance.
real_path(e->path, resolved_e_path);
if (opts.compare_dso_only)
{
if (e->type != abigail::elf::ELF_TYPE_DSO)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "skipping non-DSO file " << e->path << "\n";
continue;
}
}
else
{
if (e->type != abigail::elf::ELF_TYPE_DSO
&& e->type != abigail::elf::ELF_TYPE_EXEC
&& e->type != abigail::elf::ELF_TYPE_PI_EXEC)
{
if (is_linux_kernel_package)
{
if (e->type == abigail::elf::ELF_TYPE_RELOCATABLE)
{
// This is a Linux Kernel module.
;
}
}
else if (opts.verbose)
{
emit_prefix("abipkgdiff", cerr)
<< "skipping non-DSO non-executable file "
<< e->path
<< "\n";
continue;
}
}
}
if (e->soname.empty() || opts.ignore_soname)
{
if (e->type == abigail::elf::ELF_TYPE_DSO
&& e->soname.empty()
&& must_compare_public_dso_only(ps, opts))
{
// We are instructed to compare public DSOs only. Yet
// this DSO does not have a soname. so it can not be a
// public DSO. Let's skip it.
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "DSO " << e->path
<< " does not have a soname so it's private. Skipping it\n";
continue;
}
// Several binaries at different paths can have the same
// base name. So, unless we want to compare binaries
// regardless of their SONAME, let's consider the full
// (resolved) path of the binary inside the extracted
// directory. A resolved path is a path where symlinks are
// resolved to their target file.
string key = e->name;
if (!opts.ignore_soname)
ps->convert_path_to_unique_suffix(resolved_e_path, key);
if (ps->path_elf_file_sptr_map().find(key)
!= ps->path_elf_file_sptr_map().end())
// 'key' has already been seen before. So we won't map it
// twice.
continue;
ps->path_elf_file_sptr_map()[key] = e;
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "mapped binary with key '" << key << "'"
<< "\n";
}
else
{
// Several binaries at different paths can have the same
// soname. So let's *also* consider the full path of the
// binary inside the extracted directory, not just the
// soname.
string key = string("/@soname:") + e->soname;
if (must_compare_public_dso_only(ps, opts))
{
if (ps->public_dso_sonames().find(e->soname)
== ps->public_dso_sonames().end())
{
// We are instructed to compare public DSOs only and
// this one seems to be private. So skip it.
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "DSO " << e->path << " of soname " << key
<< " seems to be private. Skipping it\n";
continue;
}
}
if (ps->path_elf_file_sptr_map().find(key)
!= ps->path_elf_file_sptr_map().end())
// 'key' has already been seen before. So we won't do itl
// twice.
continue;
ps->path_elf_file_sptr_map()[key] = e;
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "mapped binary with key '" << key << "'"
<< "\n";
}
}
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< " Analysis of " << ps->path() << " DONE\n";
is_ok = true;
return is_ok;
}
/// Extract the content of a package set (and its ancillary packages)
/// and map its content.
///
/// First, the content of the package set and its ancillary packages
/// are extracted, in parallel.
///
/// Then, after that extraction is done, the content of the package
/// set is walked and analyzed.
///
/// @param ps the package set to extract and to analyze.
///
/// @param opts the options of the current program.
///
/// @return true iff the extraction and analyzing went well.
static bool
extract_package_set_and_map_its_content(const package_set_sptr &ps,
options &opts)
{
assert(ps);
// We are going to extract the the main package and the devel
// package sequentially because both cannot be extracted in
// parallel, as they are being extracted into the same directory.
vector<package_sptr> main_and_devel_pkgs_extraction;
// But then, the main-and-devel, debug package and kabi-stablelist
// packages are going to be extracted in parallel.
pkg_extraction_task_sptr main_and_devel_pkg_extraction;
pkg_extraction_task_sptr dbg_extraction;
pkg_extraction_task_sptr kabi_stablelist_extraction;
size_t NUM_EXTRACTIONS = 1;
for (auto& package : ps->packages())
main_and_devel_pkgs_extraction.push_back(package);
if (ps->devel_package())
main_and_devel_pkgs_extraction.push_back(ps->devel_package());
main_and_devel_pkg_extraction.reset(new pkg_extraction_task
(main_and_devel_pkgs_extraction,
opts));
++NUM_EXTRACTIONS;
if (!ps->debug_info_packages().empty())
{
dbg_extraction.reset(new pkg_extraction_task(ps->debug_info_packages(),
opts));
++NUM_EXTRACTIONS;
}
if (package_sptr kabi_wl_pkg = ps->kabi_stablelist_package())
{
kabi_stablelist_extraction.reset(new pkg_extraction_task(kabi_wl_pkg,
opts));
++NUM_EXTRACTIONS;
}
size_t num_workers = (opts.parallel
? std::min(opts.num_workers, NUM_EXTRACTIONS)
: 1);
abigail::workers::queue extraction_queue(num_workers);
// Perform the extraction of the NUM_WORKERS packages in parallel.
extraction_queue.schedule_task(main_and_devel_pkg_extraction);
extraction_queue.schedule_task(dbg_extraction);
extraction_queue.schedule_task(kabi_stablelist_extraction);
// Wait for the extraction to be done.
extraction_queue.wait_for_workers_to_complete();
// Analyze and map the content of the extracted package.
bool is_ok = false;
if (main_and_devel_pkg_extraction->is_ok)
is_ok = create_maps_of_package_set_content(ps, opts);
if (is_ok)
maybe_handle_kabi_stablelist_pkg(ps, opts);
return is_ok;
}
/// Extract the two package sets (and their ancillary packages) and
/// analyze their content, so that we later know what files from the
/// first package set to compare against what files from the second
/// package set.
///
/// Note that preparing the first package set and its ancillary
/// packages happens in parallel with preparing the second package set
/// and its ancillary packages. The function then waits for the two
/// preparations to complete before returning.
///
/// @param first_ps the first package set to consider.
///
/// @param second_ps the second package set to consider.
///
/// @param opts the options of the current program.
///
/// @return true iff the preparation went well.
static bool
prepare_package_sets(const package_set_sptr &first_ps,
const package_set_sptr &second_ps,
options &opts)
{
pkg_set_prepare_task_sptr first_ps_prepare;
pkg_set_prepare_task_sptr second_ps_prepare;
size_t NUM_PREPARATIONS = 2;
first_ps_prepare.reset(new pkg_set_prepare_task(first_ps, opts));
second_ps_prepare.reset(new pkg_set_prepare_task(second_ps, opts));
size_t num_workers = (opts.parallel
? std::min(opts.num_workers, NUM_PREPARATIONS)
: 1);
abigail::workers::queue preparation_queue(num_workers);
preparation_queue.schedule_task(first_ps_prepare);
preparation_queue.schedule_task(second_ps_prepare);
preparation_queue.wait_for_workers_to_complete();
return first_ps_prepare->is_ok && second_ps_prepare->is_ok;
}
/// Prepare one package set for the sake of comparing it to its ABIXML
/// representation.
///
/// The preparation entails unpacking the content of the package set
/// into a temporary directory and mapping its content.
///
/// @param ps the package set to prepare.
///
/// @param opts the options provided by the user.
///
/// @return true iff the preparation succeeded.
static bool
prepare_package_set(const package_set_sptr& ps, options &opts)
{return extract_package_set_and_map_its_content(ps, opts);}
/// Compare the added sizes of an ELF pair (specified by a comparison
/// task that compares two ELF files) against the added sizes of a
/// second ELF pair.
///
/// Larger filesize strongly raises the possibility of larger debug-info,
/// hence longer diff time. For a package containing several relatively
/// large and small ELFs, it is often more efficient to start working on
/// the larger ones first. This function is used to order the pairs by
/// size, starting from the largest.
///
/// @param t1 the first comparison task that compares a pair of ELF
/// files.
///
/// @param t2 the second comparison task that compares a pair of ELF
/// files.
///
/// @return true if @p task1 is greater than @p task2.
bool
elf_size_is_greater(const task_sptr &task1,
const task_sptr &task2)
{
compare_task_sptr t1 = dynamic_pointer_cast<compare_task>(task1);
compare_task_sptr t2 = dynamic_pointer_cast<compare_task>(task2);
ABG_ASSERT(t1->args && t2->args);
off_t s1 = t1->args->elf1.size + t1->args->elf2.size;
off_t s2 = t2->args->elf1.size + t2->args->elf2.size;
if (s1 != s2)
return s1 > s2;
// The sizes of the compared binaries are the same. So sort them
// lexicographically.
return t1->args->elf1.name < t2->args->elf1.name;
}
/// This type is used to notify the calling thread that the comparison
/// of two ELF files is done.
class comparison_done_notify : public abigail::workers::queue::task_done_notify
{
comparison_done_notify();
public:
abi_diff& diff;
abidiff_status status;
comparison_done_notify(abi_diff &d)
: diff(d),
status(abigail::tools_utils::ABIDIFF_OK)
{}
/// This operator is invoked by the worker queue whenever a
/// comparison task is done.
///
/// The operator collects the status of the job of the task and also
/// updates the the count of binaries that have ABI changes.
///
/// @param task_done the task that is done.
virtual void
operator()(const task_sptr& task_done)
{
compare_task_sptr comp_task = dynamic_pointer_cast<compare_task>(task_done);
assert(comp_task);
status |= comp_task->status;
if (status != abigail::tools_utils::ABIDIFF_OK)
{
string name = comp_task->args->elf1.name;
if (status & abigail::tools_utils::ABIDIFF_ABI_CHANGE)
diff.changed_binaries.push_back(name);
}
}
}; // end struct comparison_done_notify
/// Erase the temporary directories that might have been created while
/// handling two package sets, unless the user asked to keep the
/// temporary directories around.
///
/// @param first_ps the first package set to consider.
///
/// @param second_ps the second package set to consider.
///
/// @param opts the options passed to the program.
static void
maybe_erase_temp_dirs(const package_set_sptr& first_ps,
const package_set_sptr& second_ps,
options& opts)
{
if (opts.keep_tmp_files)
return;
erase_created_temporary_directories(first_ps, second_ps, opts);
erase_created_temporary_directories_parent(opts);
}
/// Compare the ABI of two prepared package sets that contain
/// userspace binaries.
///
/// A prepared package set is a package set which content has been
/// extracted and mapped.
///
/// @param first_ps the first package set to consider.
///
/// @param second_ps the second package set to consider.
///
/// @param options the options the current program has been called
/// with.
///
/// @param diff out parameter. If this function returns true, then
/// this parameter is set to the result of the comparison.
///
/// @param opts the options of the current program.
///
/// @return the status of the comparison.
static abidiff_status
compare_prepared_userspace_package_sets(const package_set_sptr& first_ps,
const package_set_sptr& second_ps,
abi_diff& diff, options& opts)
{
abidiff_status status = abigail::tools_utils::ABIDIFF_OK;
abigail::workers::queue::tasks_type compare_tasks;
string pkg_name = first_ps->base_name();
// Setting debug-info path of libraries
string debug_dir1, debug_dir2, relative_debug_path = "/usr/lib/debug/";
if (!first_ps->debug_info_packages().empty()
&& !second_ps->debug_info_packages().empty())
{
debug_dir1 =
first_ps->debug_info_packages().front()->extracted_dir_path() +
relative_debug_path;
debug_dir2 =
second_ps->debug_info_packages().front()->extracted_dir_path() +
relative_debug_path;
}
for (map<string, elf_file_sptr>::iterator it =
first_ps->path_elf_file_sptr_map().begin();
it != first_ps->path_elf_file_sptr_map().end();
++it)
{
map<string, elf_file_sptr>::iterator iter =
second_ps->path_elf_file_sptr_map().find(it->first);
if (iter != second_ps->path_elf_file_sptr_map().end()
&& (iter->second->type == abigail::elf::ELF_TYPE_DSO
|| iter->second->type == abigail::elf::ELF_TYPE_EXEC
|| iter->second->type == abigail::elf::ELF_TYPE_PI_EXEC
|| iter->second->type == abigail::elf::ELF_TYPE_RELOCATABLE))
{
if (iter->second->type != abigail::elf::ELF_TYPE_RELOCATABLE)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Going to compare files '"
<< it->first << "' and '" << iter->first << "'\n";
compare_args_sptr args
(new compare_args(*it->second,
debug_dir1,
create_private_types_suppressions
(first_ps, opts),
*iter->second,
debug_dir2,
create_private_types_suppressions
(second_ps, opts), opts));
compare_task_sptr t(new compare_task(args));
compare_tasks.push_back(t);
}
second_ps->path_elf_file_sptr_map().erase(iter);
}
else if (iter == second_ps->path_elf_file_sptr_map().end())
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Detected removed file: '"
<< it->first << "'\n";
diff.removed_binaries.push_back(it->second);
status |= abigail::tools_utils::ABIDIFF_ABI_INCOMPATIBLE_CHANGE;
status |= abigail::tools_utils::ABIDIFF_ABI_CHANGE;
}
}
comparison_done_notify notifier(diff);
if (!compare_tasks.empty())
{
// Larger elfs are processed first, since it's usually safe to assume
// their debug-info is larger as well, but the results are still
// in a map ordered by looked up in elf.name order.
std::sort(compare_tasks.begin(),
compare_tasks.end(),
elf_size_is_greater);
// There's no reason to spawn more workers than there are ELF pairs
// to be compared.
size_t num_workers = (opts.parallel
? std::min(opts.num_workers, compare_tasks.size())
: 1);
assert(num_workers >= 1);
abigail::workers::queue comparison_queue(num_workers, notifier);
// Compare all the binaries, in parallel and then wait for the
// comparisons to complete.
comparison_queue.schedule_tasks(compare_tasks);
comparison_queue.wait_for_workers_to_complete();
// Get the set of comparison tasks that were perform and sort them.
queue::tasks_type& done_tasks = comparison_queue.get_completed_tasks();
std::sort(done_tasks.begin(), done_tasks.end(), elf_size_is_greater);
// Print the reports of the comparison to standard output.
for (queue::tasks_type::const_iterator i = done_tasks.begin();
i != done_tasks.end();
++i)
{
compare_task_sptr t = dynamic_pointer_cast<compare_task>(*i);
cout << t->pretty_output;
}
}
// Update the count of added binaries.
for (map<string, elf_file_sptr>::iterator it =
second_ps->path_elf_file_sptr_map().begin();
it != second_ps->path_elf_file_sptr_map().end();
++it)
diff.added_binaries.push_back(it->second);
// Print information about removed binaries on standard output.
if (diff.removed_binaries.size())
{
cout << "Removed binaries:\n";
for (vector<elf_file_sptr>::iterator it = diff.removed_binaries.begin();
it != diff.removed_binaries.end(); ++it)
{
string relative_path;
first_ps->convert_path_to_relative((*it)->path, relative_path);
cout << " [D] " << relative_path << ", ";
string soname;
get_soname_of_elf_file((*it)->path, soname);
if (!soname.empty())
cout << "SONAME: " << soname;
else
cout << "no SONAME";
cout << "\n";
}
}
// Print information about added binaries on standard output.
if (opts.show_added_binaries && diff.added_binaries.size())
{
cout << "Added binaries:\n";
for (vector<elf_file_sptr>::iterator it = diff.added_binaries.begin();
it != diff.added_binaries.end(); ++it)
{
string relative_path;
second_ps->convert_path_to_relative((*it)->path, relative_path);
cout << " [A] " << relative_path << ", ";
string soname;
get_soname_of_elf_file((*it)->path, soname);
if (!soname.empty())
cout << "SONAME: " << soname;
else
cout << "no SONAME";
cout << "\n";
}
}
// Erase temporary directory tree we might have left behind.
maybe_erase_temp_dirs(first_ps, second_ps, opts);
status = notifier.status;
return status;
}
/// In the context of the unpacked content of a given package set,
/// compare the binaries inside the package set against their ABIXML
/// representation. This should yield the empty set.
///
/// @param ps (unpacked) package set.
///
/// @param diff the representation of the changes between the binaries
/// and their ABIXML. This should obviously be the empty set.
///
/// @param diff a textual representation of the diff.
///
/// @param opts the options provided by the user.
static abidiff_status
self_compare_prepared_userspace_package_set(const package_set_sptr& ps,
abi_diff& diff,
options& opts)
{
abidiff_status status = abigail::tools_utils::ABIDIFF_OK;
abigail::workers::queue::tasks_type self_compare_tasks;
string pkg_name = ps->base_name();
// Setting debug-info path of libraries
string debug_dir, relative_debug_path = "/usr/lib/debug/";
if (!ps->debug_info_packages().empty())
debug_dir =
ps->debug_info_packages().front()->extracted_dir_path() +
relative_debug_path;
for (map<string, elf_file_sptr>::iterator it =
ps->path_elf_file_sptr_map().begin();
it != ps->path_elf_file_sptr_map().end();
++it)
{
if (it != ps->path_elf_file_sptr_map().end()
&& (it->second->type == abigail::elf::ELF_TYPE_DSO
|| it->second->type == abigail::elf::ELF_TYPE_EXEC
|| it->second->type == abigail::elf::ELF_TYPE_PI_EXEC
|| it->second->type == abigail::elf::ELF_TYPE_RELOCATABLE))
{
if (it->second->type != abigail::elf::ELF_TYPE_RELOCATABLE)
{
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Going to self-compare file '"
<< it->first << "'\n";
compare_args_sptr args
(new compare_args(*it->second,
debug_dir,
create_private_types_suppressions
(ps, opts),
*it->second,
debug_dir,
create_private_types_suppressions
(ps, opts),
opts));
self_compare_task_sptr t(new self_compare_task(args));
self_compare_tasks.push_back(t);
}
}
}
if (self_compare_tasks.empty())
{
maybe_erase_temp_dirs(ps, ps, opts);
return abigail::tools_utils::ABIDIFF_OK;
}
// Larger elfs are processed first, since it's usually safe to assume
// their debug-info is larger as well, but the results are still
// in a map ordered by looked up in elf.name order.
std::sort(self_compare_tasks.begin(),
self_compare_tasks.end(),
elf_size_is_greater);
// There's no reason to spawn more workers than there are ELF pairs
// to be compared.
size_t num_workers = (opts.parallel
? std::min(opts.num_workers, self_compare_tasks.size())
: 1);
assert(num_workers >= 1);
comparison_done_notify notifier(diff);
abigail::workers::queue comparison_queue(num_workers, notifier);
// Compare all the binaries, in parallel and then wait for the
// comparisons to complete.
comparison_queue.schedule_tasks(self_compare_tasks);
comparison_queue.wait_for_workers_to_complete();
// Get the set of comparison tasks that were perform and sort them.
queue::tasks_type& done_tasks = comparison_queue.get_completed_tasks();
std::sort(done_tasks.begin(), done_tasks.end(), elf_size_is_greater);
// Print the reports of the comparison to standard output.
for (queue::tasks_type::const_iterator i = done_tasks.begin();
i != done_tasks.end();
++i)
{
self_compare_task_sptr t = dynamic_pointer_cast<self_compare_task>(*i);
if (t)
cout << t->pretty_output;
}
// Erase temporary directory tree we might have left behind.
maybe_erase_temp_dirs(ps, ps, opts);
status = notifier.status;
return status;
}
/// Compare the ABI of two prepared package sets that contain linux
/// kernel binaries.
///
/// A prepared package set is a package set which content has been
/// extracted and mapped.
///
/// @param first_ps the first package set to consider.
///
/// @param second_ps the second package set to consider.
///
/// @param options the options the current program has been called
/// with.
///
/// @param diff out parameter. If this function returns true, then
/// this parameter is set to the result of the comparison.
///
/// @param opts the options of the current program.
///
/// @return the status of the comparison.
static abidiff_status
compare_prepared_linux_kernel_package_sets(const package_set_sptr& first_ps,
const package_set_sptr& second_ps,
options& opts)
{
abidiff_status status = abigail::tools_utils::ABIDIFF_OK;
string pkg_name = first_ps->base_name();
package_sptr first_core_kernel_package, second_core_kernel_package;
if (is_kernel_package(first_ps))
if (package_sptr p = get_core_kernel_package(first_ps))
first_core_kernel_package = p;
if (is_kernel_package(second_ps))
if (package_sptr p = get_core_kernel_package(second_ps))
second_core_kernel_package = p;
// Setting debug-info path of binaries
string debug_dir1, debug_dir2, relative_debug_path = "/usr/lib/debug/";
if (!first_ps->debug_info_packages().empty()
&& !second_ps->debug_info_packages().empty())
{
debug_dir1 =
first_ps->debug_info_packages().front()->extracted_dir_path() +
relative_debug_path;
debug_dir2 =
second_ps->debug_info_packages().front()->extracted_dir_path() +
relative_debug_path;
}
string vmlinux_path1, vmlinux_path2;
if (!get_vmlinux_path_from_kernel_dist(debug_dir1, vmlinux_path1))
{
emit_prefix("abipkgdiff", cerr)
<< "Could not find vmlinux in debuginfo package of '"
<< first_core_kernel_package->path()
<< "\n";
return abigail::tools_utils::ABIDIFF_ERROR;
}
if (!get_vmlinux_path_from_kernel_dist(debug_dir2, vmlinux_path2))
{
emit_prefix("abipkgdiff", cerr)
<< "Could not find vmlinux in debuginfo package of '"
<< second_core_kernel_package->path()
<< "\n";
return abigail::tools_utils::ABIDIFF_ERROR;
}
string dist_root1 = first_ps->extracted_dir_path();
string dist_root2 = second_ps->extracted_dir_path();
abigail::ir::environment env;
if (opts.exported_interfaces_only.has_value())
env.analyze_exported_interfaces_only
(*opts.exported_interfaces_only);
suppressions_type supprs;
corpus_group_sptr corpus1, corpus2;
corpus::origin requested_fe_kind = corpus::DWARF_ORIGIN;
#ifdef WITH_CTF
if (opts.use_ctf)
requested_fe_kind = corpus::CTF_ORIGIN;
#endif
#ifdef WITH_BTF
if (opts.use_btf)
requested_fe_kind = corpus::BTF_ORIGIN;
#endif
timer t;
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Going to build first corpus group from kernel dist under "
<< dist_root1
<< "...\n";
t.start();
corpus1 = build_corpus_group_from_kernel_dist_under(dist_root1,
debug_dir1,
vmlinux_path1,
opts.suppression_paths,
opts.kabi_stablelist_paths,
supprs, opts.verbose,
env, requested_fe_kind);
t.stop();
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Built first corpus group from kernel dist under "
<< dist_root1
<< "in: " << t << "\n";
if (!corpus1)
return abigail::tools_utils::ABIDIFF_ERROR;
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Going to build second corpus group from kernel dist under "
<< dist_root2
<< "...\n";
t.start();
corpus2 = build_corpus_group_from_kernel_dist_under(dist_root2,
debug_dir2,
vmlinux_path2,
opts.suppression_paths,
opts.kabi_stablelist_paths,
supprs, opts.verbose,
env, requested_fe_kind);
t.stop();
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "Built second corpus group from kernel dist under "
<< dist_root2
<< "in: " << t << "\n";
if (!corpus2)
return abigail::tools_utils::ABIDIFF_ERROR;
diff_context_sptr diff_ctxt(new diff_context);
set_diff_context_from_opts(diff_ctxt, opts);
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "diffing the two kernel corpora ...\n";
t.start();
corpus_diff_sptr diff = compute_diff(corpus1, corpus2, diff_ctxt);
t.stop();
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "diffed the two kernel corpora in: " << t << "\n";
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "evaluating the set of net changes of the diff ...\n";
t.start();
bool has_net_changes = diff->has_net_changes();
t.stop();
if (opts.verbose)
emit_prefix("abipkgdiff", cerr)
<< "evaluated set of net changes of the diff in:" << t << "\n";
if (has_net_changes)
status |= abigail::tools_utils::ABIDIFF_ABI_CHANGE;
if (diff->has_incompatible_changes())
status |= abigail::tools_utils::ABIDIFF_ABI_INCOMPATIBLE_CHANGE;
if (status & abigail::tools_utils::ABIDIFF_ABI_CHANGE)
{
cout << "== Kernel ABI changes between packages '"
<< first_core_kernel_package->base_name() << "' and '"
<< second_core_kernel_package->base_name() << "' are: ===\n";
diff->report(cout);
cout << "== End of kernel ABI changes between packages '"
<< first_core_kernel_package->base_name()
<< "' and '"
<< second_core_kernel_package->base_name() << "' ===\n\n";
}
return status;
}
/// Compare the ABI of two prepared package sets.
///
/// A prepared package set is a package set which content has been
/// extracted and mapped.
///
/// @param first_ps the first package set to consider.
///
/// @param second_ps the second package set to consider.
///
/// @param options the options the current program has been called
/// with.
///
/// @param diff out parameter. If this function returns true, then
/// this parameter is set to the result of the comparison.
///
/// @param opts the options of the current program.
///
/// @return the status of the comparison.
static abidiff_status
compare_prepared_package_set(const package_set_sptr& first_ps,
const package_set_sptr& second_ps,
abi_diff& diff, options& opts)
{
abidiff_status status = abigail::tools_utils::ABIDIFF_OK;
if (is_kernel_package(first_ps))
{
opts.show_symbols_not_referenced_by_debug_info = false;
status = compare_prepared_linux_kernel_package_sets(first_ps,
second_ps,
opts);
}
else
status = compare_prepared_userspace_package_sets(first_ps,
second_ps,
diff, opts);
return status;
}
/// Compare binaries in a package set against their ABIXML
/// representations.
///
/// @param ps the package set to consider.
///
/// @param diff the textual representation of the resulting
/// comparison.
///
/// @param opts the options provided by the user
///
/// @return the status of the comparison.
static abidiff_status
self_compare_prepared_package_set(const package_set_sptr& ps,
abi_diff& diff,
options& opts)
{
abidiff_status status = abigail::tools_utils::ABIDIFF_OK;
status = self_compare_prepared_userspace_package_set(ps, diff, opts);
return status;
}
/// Compare the ABI of two package sets.
///
/// @param first_ps the first package set to consider.
///
/// @param second_ps the second package set to consider.
///
/// @param options the options the current program has been called
/// with.
///
/// @param diff out parameter. If this function returns true, then
/// this parameter is set to the result of the comparison.
///
/// @param opts the options of the current program.
///
/// @return the status of the comparison.
static abidiff_status
compare(const package_set_sptr& first_ps,
const package_set_sptr& second_ps,
abi_diff& diff, options& opts)
{
// Prepare (extract and analyze the contents) the package sets and
// their ancillary packages.
//
// Note that the package set preparations happens in parallel.
if (!prepare_package_sets(first_ps, second_ps, opts))
{
maybe_erase_temp_dirs(first_ps, second_ps, opts);
return abigail::tools_utils::ABIDIFF_ERROR;
}
return compare_prepared_package_set(first_ps, second_ps, diff, opts);
}
/// Compare binaries in a package set against their ABIXML
/// representations.
///
/// @param ps the package set to consider.
///
/// @param opts the options provided by the user
///
/// @return the status of the comparison.
static abidiff_status
compare_to_self(const package_set_sptr& ps, options& opts)
{
if (!prepare_package_set(ps, opts))
return abigail::tools_utils::ABIDIFF_ERROR;
abi_diff diff;
return self_compare_prepared_package_set(ps, diff, opts);
}
/// Compare the ABI of two package sets.
///
/// @param first_ps the first package set to consider.
///
/// @param second_ps the second package set to consider.
///
/// @param opts the options the current program has been called with.
///
/// @return the status of the comparison.
static abidiff_status
compare(const package_set_sptr& first_ps,
const package_set_sptr& second_ps,
options& opts)
{
abi_diff diff;
return compare(first_ps, second_ps, diff, opts);
}
/// Parse the command line of the current program.
///
/// @param argc the number of arguments in the @p argv parameter.
///
/// @param argv the array of arguemnts passed to the function. The
/// first argument is the name of this program.
///
/// @param opts the resulting options.
///
/// @return true upon successful parsing.
static bool
parse_command_line(int argc, char* argv[], options& opts)
{
if (argc < 2)
return false;
for (int i = 1; i < argc; ++i)
{
if (argv[i][0] != '-')
{
if (opts.package_set_paths1.empty())
{
string path = make_path_absolute(argv[i]).get();
opts.package_set_paths1.insert(path);
opts.nonexistent_file = !file_exists(path);
}
else if (opts.package_set_paths2.empty())
{
string path = make_path_absolute(argv[i]).get();
opts.package_set_paths2.insert(path);
opts.nonexistent_file = !file_exists(path);
}
else
{
opts.wrong_arg = argv[i];
return false;
}
if (opts.nonexistent_file)
{
opts.wrong_arg = argv[i];
return true;
}
}
else if (!strcmp(argv[i], "--set1")
|| !strcmp(argv[i], "--set2"))
{
bool is_set1 = !strcmp(argv[i], "--set1");
set<string>& set =
is_set1 ? opts.package_set_paths1 : opts.package_set_paths2;
for (int j = i + 1; j < argc; ++j)
{
if (argv[j][0] == '-')
{
i = j - 1;
break;
}
const char* p = argv[j];
string pkg_path = make_path_absolute(p).get();
if (!opts.nonexistent_file)
opts.nonexistent_file = !file_exists(pkg_path);
if (opts.nonexistent_file && opts.wrong_arg.empty())
opts.wrong_arg = pkg_path;
set.insert(pkg_path);
i = j;
}
if (!opts.wrong_arg.empty())
return false;
}
else if (!strcmp(argv[i], "--debug-info-pkg1")
|| !strcmp(argv[i], "--d1"))
{
int j = i + 1;
if (j >= argc)
{
opts.missing_operand = true;
opts.wrong_option = argv[i];
return true;
}
opts.debug_packages1.push_back
(abigail::tools_utils::make_path_absolute(argv[j]).get());
++i;
}
else if (!strcmp(argv[i], "--debug-info-pkg2")
|| !strcmp(argv[i], "--d2"))
{
int j = i + 1;
if (j >= argc)
{
opts.missing_operand = true;
opts.wrong_option = argv[i];
return true;
}
opts.debug_packages2.push_back
(abigail::tools_utils::make_path_absolute(argv[j]).get());
++i;
}
else if (!strcmp(argv[i], "--devel-pkg1")
|| !strcmp(argv[i], "--devel1"))
{
int j = i + 1;
if (j >= argc)
{
opts.missing_operand = true;
opts.wrong_option = argv[i];
return true;
}
opts.devel_package1 =
abigail::tools_utils::make_path_absolute(argv[j]).get();
++i;
}
else if (!strcmp(argv[i], "--devel-pkg2")
|| !strcmp(argv[i], "--devel2"))
{
int j = i + 1;
if (j >= argc)
{
opts.missing_operand = true;
opts.wrong_option = argv[i];
return true;
}
opts.devel_package2 =
abigail::tools_utils::make_path_absolute(argv[j]).get();
++i;
}
else if (!strcmp(argv[i], "--drop-private-types"))
opts.drop_private_types = true;
else if (!strcmp(argv[i], "--no-default-suppression"))
opts.no_default_suppression = true;
else if (!strcmp(argv[i], "--keep-tmp-files"))
opts.keep_tmp_files = true;
else if (!strcmp(argv[i], "--dso-only"))
opts.compare_dso_only = true;
else if (!strcmp(argv[i], "--private-dso"))
opts.compare_private_dsos = true;
else if (!strcmp(argv[i], "--leaf-changes-only")
||!strcmp(argv[i], "-l"))
opts.leaf_changes_only = true;
else if (!strcmp(argv[i], "--impacted-interfaces")
||!strcmp(argv[i], "-i"))
opts.show_impacted_interfaces = true;
else if (!strcmp(argv[i], "--non-reachable-types")
||!strcmp(argv[i], "-t"))
opts.show_all_types = true;
else if (!strcmp(argv[i], "--full-impact")
||!strcmp(argv[i], "-f"))
opts.show_full_impact_report = true;
else if (!strcmp(argv[i], "--exported-interfaces-only"))
opts.exported_interfaces_only = true;
else if (!strcmp(argv[i], "--allow-non-exported-interfaces"))
opts.exported_interfaces_only = false;
else if (!strcmp(argv[i], "--no-linkage-name"))
opts.show_linkage_names = false;
else if (!strcmp(argv[i], "--redundant"))
opts.show_redundant_changes = true;
else if (!strcmp(argv[i], "--harmless"))
opts.show_harmless_changes = true;
else if (!strcmp(argv[i], "--no-show-locs"))
opts.show_locs = false;
else if (!strcmp(argv[i], "--show-bytes"))
opts.show_offsets_sizes_in_bits = false;
else if (!strcmp(argv[i], "--show-bits"))
opts.show_offsets_sizes_in_bits = true;
else if (!strcmp(argv[i], "--show-hex"))
opts.show_hexadecimal_values = true;
else if (!strcmp(argv[i], "--show-dec"))
opts.show_hexadecimal_values = false;
else if (!strcmp(argv[i], "--no-show-relative-offset-changes"))
opts.show_relative_offset_changes = false;
else if (!strcmp(argv[i], "--no-added-syms"))
opts.show_added_syms = false;
else if (!strcmp(argv[i], "--no-unreferenced-symbols"))
opts.show_symbols_not_referenced_by_debug_info = false;
else if (!strcmp(argv[i], "--no-added-binaries"))
opts.show_added_binaries = false;
else if (!strcmp(argv[i], "--fail-no-dbg"))
opts.fail_if_no_debug_info = true;
else if (!strcmp(argv[i], "--no-leverage-dwarf-factorization"))
opts.leverage_dwarf_factorization = false;
else if (!strcmp(argv[i], "--no-assume-odr-for-cplusplus"))
opts.assume_odr_for_cplusplus = false;
else if (!strcmp(argv[i], "--verbose"))
opts.verbose = true;
else if (!strcmp(argv[i], "--verbose-diff"))
{
opts.verbose_diff = true;
opts.verbose = true;
}
else if (!strcmp(argv[i], "--no-abignore"))
opts.abignore = false;
else if (!strcmp(argv[i], "--no-parallel"))
opts.parallel = false;
else if (!strcmp(argv[i], "--show-identical-binaries"))
opts.show_identical_binaries = true;
else if (!strcmp(argv[i], "--self-check"))
opts.self_check = true;
else if (!strcmp(argv[i], "--suppressions")
|| !strcmp(argv[i], "--suppr"))
{
int j = i + 1;
if (j >= argc)
return false;
opts.suppression_paths.push_back(argv[j]);
++i;
}
else if (!strcmp(argv[i], "--linux-kernel-abi-whitelist")
|| !strcmp(argv[i], "-w"))
{
int j = i + 1;
if (j >= argc)
{
opts.missing_operand = true;
opts.wrong_option = argv[i];
return true;
}
if (guess_file_type(argv[j]) == abigail::tools_utils::FILE_TYPE_RPM)
// The kernel abi stablelist is actually a stablelist
// *package*. Take that into account.
opts.kabi_stablelist_packages.push_back
(make_path_absolute(argv[j]).get());
else
// We assume the kernel abi stablelist is a white list
// file.
opts.kabi_stablelist_paths.push_back(argv[j]);
++i;
}
else if (!strcmp(argv[i], "--wp"))
{
int j = i + 1;
if (j >= argc)
{
opts.missing_operand = true;
opts.wrong_option = argv[i];
return true;
}
opts.kabi_stablelist_packages.push_back
(make_path_absolute(argv[j]).get());
++i;
}
#ifdef WITH_CTF
else if (!strcmp(argv[i], "--ctf"))
opts.use_ctf = true;
#endif
#ifdef WITH_BTF
else if (!strcmp(argv[i], "--btf"))
opts.use_btf = true;
#endif
else if (!strcmp(argv[i], "--ignore-soname"))
{
opts.ignore_soname = true;
opts.show_identical_binaries = true;
}
else if (!strcmp(argv[i], "--help")
|| !strcmp(argv[i], "-h"))
{
opts.display_usage = true;
return true;
}
else if (!strcmp(argv[i], "--version")
|| !strcmp(argv[i], "-v"))
{
opts.display_version = true;
return true;
}
else
{
if (strlen(argv[i]) >= 2 && argv[i][0] == '-' && argv[i][1] == '-')
opts.wrong_option = argv[i];
return false;
}
}
return true;
}
int
main(int argc, char* argv[])
{
abigail::tools_utils::initialize();
options opts(argv[0]);
if (!parse_command_line(argc, argv, opts))
{
if (!opts.wrong_option.empty())
emit_prefix("abipkgdiff", cerr)
<< "unrecognized option: " << opts.wrong_option
<< "\ntry the --help option for more information\n";
if (!opts.wrong_arg.empty())
emit_prefix("abipkgdiff", cerr)
<< "unrecognized argument: " << opts.wrong_arg
<< "\ntry the --help option for more information\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
if (opts.missing_operand)
{
emit_prefix("abipkgdiff", cerr)
<< "missing operand\n"
"try the --help option for more information\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
if (opts.nonexistent_file)
{
string input_file;
base_name(opts.wrong_arg, input_file);
emit_prefix("abipkgdiff", cerr)
<< "The input file " << input_file << " doesn't exist\n"
"try the --help option for more information\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
if (opts.kabi_stablelist_packages.size() > 2)
{
emit_prefix("abipkgdiff", cerr)
<< "no more than 2 Linux kernel white list packages can be provided\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
if (opts.display_usage)
{
display_usage(argv[0], cout);
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
if (opts.display_version)
{
emit_prefix(argv[0], cout)
<< abigail::tools_utils::get_library_version_string()
<< "\n";
return 0;
}
if (!opts.no_default_suppression && opts.suppression_paths.empty())
{
// Load the default system and user suppressions.
string default_system_suppr_file =
get_default_system_suppression_file_path();
if (file_exists(default_system_suppr_file))
opts.suppression_paths.push_back(default_system_suppr_file);
string default_user_suppr_file =
get_default_user_suppression_file_path();
if (file_exists(default_user_suppr_file))
opts.suppression_paths.push_back(default_user_suppr_file);
}
if (!maybe_check_suppression_files(opts))
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
bool need_just_one_input_package = opts.self_check;
if (need_just_one_input_package)
{
bool bail_out = false;
if (!opts.package_set_paths2.empty())
{
// We don't need the second package, we'll ignore it later
// down below.
;
}
if (opts.package_set_paths1.empty())
{
// We need at least one package to work with!
emit_prefix("abipkgdiff", cerr)
<< "missing input package\n";
if (bail_out)
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
}
else if(opts.package_set_paths1.empty() && opts.package_set_paths2.empty())
{
emit_prefix("abipkgdiff", cerr)
<< "please enter two packages to compare" << "\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
package_set_sptr first_package_set(new package_set(opts.package_set_paths1,
"package_set1"));
package_set_sptr second_package_set(new package_set(opts.package_set_paths2,
"package_set2"));
opts.pkg_set1 = first_package_set;
opts.pkg_set2 = second_package_set;
for (vector<string>::const_iterator p = opts.debug_packages1.begin();
p != opts.debug_packages1.end();
++p)
first_package_set->debug_info_packages().push_back
(package_sptr(new package(*p,
"debug_package1",
/*pkg_kind=*/package::KIND_DEBUG_INFO)));
for (vector<string>::const_iterator p = opts.debug_packages2.begin();
p != opts.debug_packages2.end();
++p)
second_package_set->debug_info_packages().push_back
(package_sptr(new package(*p,
"debug_package2",
/*pkg_kind=*/package::KIND_DEBUG_INFO)));
if (!opts.devel_package1.empty())
first_package_set->devel_package
(package_sptr(new package(opts.devel_package1,
"package_set1",
/*pkg_kind=*/package::KIND_DEVEL)));
;
if (!opts.devel_package2.empty())
second_package_set->devel_package
(package_sptr(new package(opts.devel_package2,
"package_set2",
/*pkg_kind=*/package::KIND_DEVEL)));
if (!opts.kabi_stablelist_packages.empty())
{
first_package_set->kabi_stablelist_package
(package_sptr(new package
(opts.kabi_stablelist_packages[0],
"kabi_stablelist_package1",
/*pkg_kind=*/package::KIND_KABI_STABLELISTS)));
if (opts.kabi_stablelist_packages.size() >= 2)
second_package_set->kabi_stablelist_package
(package_sptr(new package
(opts.kabi_stablelist_packages[1],
"kabi_stablelist_package2",
/*pkg_kind=*/package::KIND_KABI_STABLELISTS)));
}
string package_name;
switch (first_package_set->type())
{
case abigail::tools_utils::FILE_TYPE_RPM:
if (!second_package_set->path().empty()
&& second_package_set->type() != abigail::tools_utils::FILE_TYPE_RPM)
{
base_name(*opts.package_set_paths2.begin(), package_name);
emit_prefix("abipkgdiff", cerr)
<< package_name << " should be an RPM file\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
if (is_kernel_package(first_package_set)
|| is_kernel_package(second_package_set))
{
if (is_kernel_package(first_package_set)
!= is_kernel_package(second_package_set))
{
emit_prefix("abipkgdiff", cerr)
<< "a Linux kernel package can only be compared to another "
"Linux kernel package\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
if (first_package_set->debug_info_packages().empty()
|| (!second_package_set->path().empty()
&& second_package_set->debug_info_packages().empty()))
{
emit_prefix("abipkgdiff", cerr)
<< "a Linux Kernel package must be accompanied with its "
"debug info package\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
// We are looking at kernel packages. If the user provided
// the --full-impact option then it means we want to display
// the default libabigail report format where a full impact
// analysis is done for each ABI change.
//
// Otherwise, let's just emit the leaf change report.
if (opts.show_full_impact_report)
opts.leaf_changes_only = false;
else
opts.leaf_changes_only = true;
}
break;
case abigail::tools_utils::FILE_TYPE_DEB:
if (!second_package_set->package_paths().empty()
&& second_package_set->type() != abigail::tools_utils::FILE_TYPE_DEB)
{
base_name(*opts.package_set_paths2.begin(), package_name);
emit_prefix("abipkgdiff", cerr)
<< package_name << " should be a DEB file\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
break;
case abigail::tools_utils::FILE_TYPE_DIR:
if (!second_package_set->package_paths().empty()
&& second_package_set->type() != abigail::tools_utils::FILE_TYPE_DIR)
{
base_name(*opts.package_set_paths2.begin(), package_name);
emit_prefix("abipkgdiff", cerr)
<< package_name << " should be a directory\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
break;
case abigail::tools_utils::FILE_TYPE_TAR:
if (!second_package_set->package_paths().empty()
&& second_package_set->type() != abigail::tools_utils::FILE_TYPE_TAR)
{
base_name(*opts.package_set_paths2.begin(), package_name);
emit_prefix("abipkgdiff", cerr)
<< package_name << " should be a GNU tar archive\n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
break;
default:
base_name(*opts.package_set_paths1.begin(), package_name);
emit_prefix("abipkgdiff", cerr)
<< package_name << " should be a valid package file \n";
return (abigail::tools_utils::ABIDIFF_USAGE_ERROR
| abigail::tools_utils::ABIDIFF_ERROR);
}
if (opts.self_check)
return compare_to_self(first_package_set, opts);
return compare(first_package_set, second_package_set, opts);
}
|