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
|
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# Copyright 2019 Joyent, Inc.
#
include ../Makefile.tools
SUBDIRS = stabs ctfstrip libctf ctfdiff ctfdump ctfmerge ctfconvert
.PARALLEL: $(SUBDIRS)
all : TARGET= all
install : TARGET= install
clean : TARGET= clean
clobber : TARGET= clobber
lint : TARGET= lint
.KEEP_STATE:
# Hammerhead: stabs also needs libctf
stabs: libctf
ctfmerge: libctf
ctfdiff: libctf
ctfdump: libctf
ctfconvert: libctf
all clean clobber install lint: dwarf .WAIT $(SUBDIRS)
dwarf $(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
FRC:
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# Copyright (c) 2018, Joyent, Inc.
# Hammerhead: amd64-only - changed from ../../../ to ../../ since we no longer
# have arch subdirectories
include ../../Makefile.tools
#
# A `make install' from the tools directory needs to work, even if the rest of
# the tree hasn't been built. As such, we need to tell the ctf builds how
# to find the ctf specific headers located outside the tools subtree. We also
# want to tell them how to get to the common tools source files.
#
# For additonal details on the ordering of includes via -I, see the comments
# in $(SRC)/tools/ctf/common/ctf_headers.h.
#
HDRDIRS= \
-nostdinc \
-I../common \
-I$(SRC) \
-I/usr/include \
-I$(SRC)/uts/common \
-I$(SRC)/common/ctf \
-I$(NATIVE_ADJUNCT)/include
CPPFLAGS += $(HDRDIRS)
CFLAGS += $(CCVERBOSE)
CERRWARN += -Wno-parentheses
SMOFF += all_func_returns
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2002 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
# Hammerhead: amd64-only - changed paths since we no longer have arch subdirectories
%.o: ../common/%.c
$(COMPILE.c) $<
%.ln: ../common/%.c
$(LINT.c) -c $<
include ../../Makefile.targ
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
* Copyright 2018 Joyent, Inc.
*/
#ifndef _CTF_HEADERS_H
#define _CTF_HEADERS_H
/*
* Because the ON tools are executed on the system where they are built,
* the tools need to include the headers installed on the build system,
* rather than those in the ON source tree. However, some of the headers
* required by the tools are part of the ON source tree, but not delivered
* as part of illumos. These include the following:
*
* $(SRC)/lib/libctf/common/libctf.h
* $(SRC)/lib/libctf/common/libctf_impl.h
* $(SRC)/uts/common/sys/ctf_api.h
* $(SRC)/uts/common/sys/ctf.h
*
* These headers get installed in the proto area in the build environment
* under $(ROOT)/usr/include and $(ROOT)/usr/include/sys. Though these
* headers are not part of the release, in releases including and prior to
* Solaris 9, they did get installed on the build system via bfu. Therefore,
* we can not simply force the order of inclusion with -I/usr/include first
* in Makefile.ctf because we might actually get downlevel versions of the
* ctf headers. Depending on the order of the -I includes, we can also have
* a problem with mismatched headers when building the ctf tools with some
* headers getting pulled in from /usr/include and others from
* $(SRC)/uts/common/sys.
*
* To address the problem, we have done two things:
* 1) Created this header with a specific order of inclusion for the
* ctf headers. Because the <libctf.h> header includes <sys/ctf_api.h>
* which in turn includes <sys/ctf.h> we need to include these in
* reverse order to guarantee that we get the correct versions of
* the headers.
* 2) In $(SRC)/tools/ctf/Makefile.ctf, we order the -I includes such
* that we first search the directories where the ctf headers
* live, followed by /usr/include, followed by $(SRC)/uts/common.
* This last -I include is needed in order to prevent a build failure
* when <sys/ctf_api.h> is included via a nested #include rather than
* an explicit path #include.
*
* We'll also include the local ccompile.h - older build systems often lack
* useful definitions like __unused. Finally, we'll also define ARRAY_SIZE:
* unfortunately, older systems sysmacros.h only have this defined for the
* kernel, and we can't easily pick it up otherwise.
*/
#include <uts/common/sys/ccompile.h>
#include <uts/common/sys/ctf.h>
#include <uts/common/sys/ctf_api.h>
#include <common/ctf/ctf_impl.h>
#include <lib/libctf/common/libctf.h>
#include <lib/libctf/common/libctf_impl.h>
#if !defined(ARRAY_SIZE)
#define ARRAY_SIZE(x) (sizeof (x) / sizeof (x[0]))
#endif
#endif /* _CTF_HEADERS_H */
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2001-2002 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Routines for memory management
*/
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
static void
memory_bailout(void)
{
(void) fprintf(stderr, "Out of memory\n");
exit(1);
}
void *
xmalloc(size_t size)
{
void *mem;
if ((mem = malloc(size)) == NULL)
memory_bailout();
return (mem);
}
void *
xcalloc(size_t size)
{
void *mem;
mem = xmalloc(size);
bzero(mem, size);
return (mem);
}
char *
xstrdup(const char *str)
{
char *newstr;
if ((newstr = strdup(str)) == NULL)
memory_bailout();
return (newstr);
}
char *
xstrndup(char *str, size_t len)
{
char *newstr;
if ((newstr = malloc(len + 1)) == NULL)
memory_bailout();
(void) strncpy(newstr, str, len);
newstr[len] = '\0';
return (newstr);
}
void *
xrealloc(void *ptr, size_t size)
{
void *mem;
if ((mem = realloc(ptr, size)) == NULL)
memory_bailout();
return (mem);
}
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2001-2002 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _MEMORY_H
#define _MEMORY_H
/*
* Routines for memory management
*/
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
void *xmalloc(size_t);
void *xcalloc(size_t);
char *xstrdup(const char *);
char *xstrndup(char *, size_t);
void *xrealloc(void *, size_t);
#ifdef __cplusplus
}
#endif
#endif /* _MEMORY_H */
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include <sys/types.h>
#include <string.h>
#include "symbol.h"
int
ignore_symbol(GElf_Sym *sym, const char *name)
{
uchar_t type = GELF_ST_TYPE(sym->st_info);
/*
* As an optimization, we do not output function or data object
* records for undefined or anonymous symbols.
*/
if (sym->st_shndx == SHN_UNDEF || sym->st_name == 0)
return (1);
/*
* _START_ and _END_ are added to the symbol table by the
* linker, and will never have associated type information.
*/
if (strcmp(name, "_START_") == 0 || strcmp(name, "_END_") == 0)
return (1);
/*
* Do not output records for absolute-valued object symbols
* that have value zero. The compiler insists on generating
* things like this for __fsr_init_value settings, etc.
*/
if (type == STT_OBJECT && sym->st_shndx == SHN_ABS &&
sym->st_value == 0)
return (1);
return (0);
}
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _SYMBOL_H
#define _SYMBOL_H
#include <gelf.h>
#ifdef __cplusplus
extern "C" {
#endif
int ignore_symbol(GElf_Sym *sym, const char *name);
#ifdef __cplusplus
}
#endif
#endif /* _SYMBOL_H */
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 1998-2001 by Sun Microsystems, Inc.
* All rights reserved.
*/
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <errno.h>
#include "utils.h"
/*LINTLIBRARY*/
static const char *pname;
#pragma init(getpname)
const char *
getpname(void)
{
const char *p, *q;
if (pname != NULL)
return (pname);
if ((p = getexecname()) != NULL)
q = strrchr(p, '/');
else
q = NULL;
if (q == NULL)
pname = p;
else
pname = q + 1;
return (pname);
}
void
vwarn(const char *format, va_list alist)
{
int err = errno;
if (pname != NULL)
(void) fprintf(stderr, "%s: ", pname);
(void) vfprintf(stderr, format, alist);
if (strchr(format, '\n') == NULL)
(void) fprintf(stderr, ": %s\n", strerror(err));
}
/*PRINTFLIKE1*/
void
warn(const char *format, ...)
{
va_list alist;
va_start(alist, format);
vwarn(format, alist);
va_end(alist);
}
void
vdie(const char *format, va_list alist)
{
vwarn(format, alist);
exit(E_ERROR);
}
/*PRINTFLIKE1*/
void
die(const char *format, ...)
{
va_list alist;
va_start(alist, format);
vdie(format, alist);
va_end(alist);
}
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 1998-2001 by Sun Microsystems, Inc.
* All rights reserved.
*/
#ifndef _UTILS_H
#define _UTILS_H
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
#define E_SUCCESS 0 /* Exit status for success */
#define E_ERROR 1 /* Exit status for error */
#define E_USAGE 2 /* Exit status for usage error */
extern void vwarn(const char *, va_list);
extern void warn(const char *, ...);
extern void vdie(const char *, va_list);
extern void die(const char *, ...);
extern const char *getpname(void);
#ifdef __cplusplus
}
#endif
#endif /* _UTILS_H */
# Hammerhead: amd64-only - build directly, no arch subdirectories
# This file combines the parent Makefile with amd64/Makefile functionality
include ./Makefile.com
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
PROG = ctfconvert
SRCS = ctfconvert.c
include ../Makefile.ctf
CFLAGS += $(CCVERBOSE)
LDLIBS += -lctf -lelf
NATIVE_LIBS += libelf.so libc.so
LDFLAGS = \
-L$(ROOTONBLDLIBMACH) \
'-R$$ORIGIN/../../lib/$(MACH)' \
$(BDIRECT) $(ZLAZYLOAD)
CPPFLAGS += -include ../common/ctf_headers.h
OBJS = $(SRCS:%.c=%.o)
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
%.o: $(SRC)/cmd/ctfconvert/%.c
$(COMPILE.c) $<
$(ROOTONBLDMACHPROG): $(PROG)
install: $(ROOTONBLDMACHPROG)
clean:
$(RM) $(OBJS) $(LINTFILES)
include $(SRC)/tools/Makefile.targ
# Hammerhead: amd64-only - build directly, no arch subdirectories
# This file combines the parent Makefile with amd64/Makefile functionality
include ./Makefile.com
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
PROG = ctfdiff
SRCS = ctfdiff.c
include ../Makefile.ctf
CFLAGS += $(CCVERBOSE)
LDLIBS += -lctf
NATIVE_LIBS += libc.so
LDFLAGS = \
-L$(ROOTONBLDLIBMACH) \
'-R$$ORIGIN/../../lib/$(MACH)' \
$(BDIRECT)
CPPFLAGS += -include ../common/ctf_headers.h
OBJS = $(SRCS:%.c=%.o)
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
%.o: $(SRC)/cmd/ctfdiff/%.c
$(COMPILE.c) $<
$(ROOTONBLDMACHPROG): $(PROG)
install: $(ROOTONBLDMACHPROG)
clean:
$(RM) $(OBJS) $(LINTFILES)
include $(SRC)/tools/Makefile.targ
# Hammerhead: amd64-only - build directly, no arch subdirectories
# This file combines the parent Makefile with amd64/Makefile functionality
include ./Makefile.com
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
# Copyright 2018 Joyent, Inc.
PROG = ctfdump
SRCS = ctfdump.c
include ../Makefile.ctf
CSTD = $(CSTD_GNU99)
CFLAGS += $(CCVERBOSE)
LDLIBS += -lctf
NATIVE_LIBS += libctf.so libc.so
LDFLAGS = \
-L$(ROOTONBLDLIBMACH) \
'-R$$ORIGIN/../../lib/$(MACH)' \
$(BDIRECT)
CPPFLAGS += -include ../common/ctf_headers.h
OBJS = $(SRCS:%.c=%.o)
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
%.o: $(SRC)/cmd/ctfdump/%.c
$(COMPILE.c) $<
$(ROOTONBLDMACHPROG): $(PROG)
install: $(ROOTONBLDMACHPROG)
clean:
$(RM) $(OBJS)
include $(SRC)/tools/Makefile.targ
# Hammerhead: amd64-only - build directly, no arch subdirectories
# This file combines the parent Makefile with amd64/Makefile functionality
include ./Makefile.com
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
PROG = ctfmerge
SRCS = ctfmerge.c
include ../Makefile.ctf
CFLAGS += $(CCVERBOSE)
LDLIBS += -lctf -lelf
LDFLAGS += \
-L$(ROOTONBLDLIBMACH) \
'-R$$ORIGIN/../../lib/$(MACH)' \
NATIVE_LIBS += libelf.so
CPPFLAGS += -include ../common/ctf_headers.h
CERRWARN += -Wno-unused-variable
CERRWARN += $(CNOWARN_UNINIT)
OBJS = $(SRCS:%.c=%.o)
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
%.o: $(SRC)/cmd/ctfmerge/%.c
$(COMPILE.c) $<
$(ROOTONBLDMACHPROG): $(PROG)
install: $(ROOTONBLDMACHPROG)
clean:
$(RM) $(OBJS) $(LINTFILES)
include $(SRC)/tools/Makefile.targ
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
.KEEP_STATE:
PROG = ctfstrip
SRCS = \
ctfstrip.c
CFLAGS += $(CCVERBOSE)
include $(SRC)/tools/Makefile.tools
CERRWARN += -Wno-unused-variable
OBJS = $(SRCS:%.c=%.o)
LINTFILES = $(SRCS:%.c=%.ln)
LINTFLAGS = -mnux -L$(ROOT)/usr/lib
.NOTPARALLEL:
.PARALLEL: $(OBJS) $(LINTFILES)
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
$(ROOTONBLDMACHPROG): $(PROG)
install: $(ROOTONBLDMACHPROG)
clean:
$(RM) $(OBJS) $(LINTFILES)
lint: $(LINTFILES)
$(LINT) $(LINTFLAGS) $(LINTFILES) $(LDLIBS)
include $(SRC)/tools/Makefile.targ
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2011 Jason King. All rights reserved.
* Copyright (c) 2018, Joyent, Inc.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <err.h>
#include <spawn.h>
#define MCS "/usr/bin/mcs"
#define ELFLEN 4
static const char elf_signature[] = "\177ELF";
static posix_spawnattr_t attr;
static const char *cmd[] = { MCS, "-d", "-n", ".SUNW_ctf", NULL, NULL };
extern char **environ;
static boolean_t check_file(const char *, mode_t *);
static boolean_t fix_file(const char *, mode_t);
static void usage(const char *);
int
main(int argc, const char **argv)
{
const char **p;
int rc = 0;
mode_t mode;
if (argc < 2)
usage(argv[0]);
rc = posix_spawnattr_init(&attr);
if (rc != 0) {
errx(EXIT_FAILURE, "Spawn attribute initialization failed: %s",
strerror(rc));
}
for (p = argv + 1; *p != NULL; p++) {
if (!check_file(*p, &mode))
continue;
if (!fix_file(*p, mode))
rc = 1;
}
return (rc);
}
static boolean_t
check_file(const char *filename, mode_t *mode)
{
char elfbuf[4];
struct stat sb;
int fd;
fd = open(filename, O_RDONLY);
if (fd == -1) {
warn("Unable to open %s", filename);
return (B_FALSE);
}
if (fstat(fd, &sb) == -1) {
warn("stat(2) failed on %s", filename);
(void) close(fd);
return (B_FALSE);
}
if (!S_ISREG(sb.st_mode)) {
warnx("%s is not a regular file", filename);
(void) close(fd);
return (B_FALSE);
}
if (sb.st_size < ELFLEN) {
warnx("%s is not an ELF file", filename);
(void) close(fd);
return (B_FALSE);
}
if (read(fd, elfbuf, ELFLEN) != ELFLEN) {
warn("Error reading %s", filename);
(void) close(fd);
return (B_FALSE);
}
if (strncmp(elfbuf, elf_signature, ELFLEN) != 0) {
warnx("%s is not an ELF file", filename);
(void) close(fd);
return (B_FALSE);
}
*mode = sb.st_mode & S_IAMB;
(void) close(fd);
return (B_TRUE);
}
static boolean_t
fix_file(const char *filename, mode_t mode)
{
pid_t pid;
int i, rc;
int stat = 0;
if ((mode & S_IWUSR) == 0) {
if (chmod(filename, mode | S_IWUSR) == -1) {
warn("failed to make %s writable", filename);
return (B_FALSE);
}
}
cmd[4] = filename;
if ((rc = posix_spawn(&pid, MCS, NULL, &attr,
(char *const *)cmd, environ)) != 0) {
warnx("could not exec mcs: %s", strerror(rc));
return (B_FALSE);
}
(void) waitpid(pid, &stat, 0);
if (!WIFEXITED(stat) || WEXITSTATUS(stat) != 0) {
warnx("Removing CTF information from %s failed", filename);
return (B_FALSE);
}
if ((mode & S_IWUSR) == 0) {
if (chmod(filename, mode) == -1) {
warn("could not reset permissions of %s", filename);
return (B_FALSE);
}
}
return (B_TRUE);
}
static void
usage(const char *name)
{
(void) fprintf(stderr, "Usage: %s file...\n", name);
exit(EXIT_FAILURE);
}
# Hammerhead: amd64-only - build directly, no arch subdirectories
# This file combines the parent Makefile with amd64/Makefile functionality
include ./Makefile.com
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# Copyright 2011, Richard Lowe.
#
# Copyright (c) 2018, Joyent, Inc.
include ../Makefile.ctf
LIBRARY= libdwarf.a
VERS= .1
OBJECTS=dwarf_abbrev.o \
dwarf_alloc.o \
dwarf_arange.o \
dwarf_debuglink.o \
dwarf_die_deliv.o \
dwarf_dnames.o \
dwarf_dsc.o \
dwarf_elf_access.o \
dwarf_elf_load_headers.o \
dwarf_elf_rel_detector.o \
dwarf_elfread.o \
dwarf_error.o \
dwarf_form.o \
dwarf_frame.o \
dwarf_frame2.o \
dwarf_funcs.o \
dwarf_gdbindex.o \
dwarf_generic_init.o \
dwarf_global.o \
dwarf_groups.o \
dwarf_harmless.o \
dwarf_init_finish.o \
dwarf_leb.o \
dwarf_line.o \
dwarf_loc.o \
dwarf_locationop_read.o \
dwarf_loclists.o \
dwarf_machoread.o \
dwarf_macro.o \
dwarf_macro5.o \
dwarf_names.o \
dwarf_object_detector.o \
dwarf_object_read_common.o \
dwarf_original_elf_init.o \
dwarf_peread.o \
dwarf_print_lines.o \
dwarf_pubtypes.o \
dwarf_query.o \
dwarf_ranges.o \
dwarf_rnglists.o \
dwarf_str_offsets.o \
dwarf_stringsection.o \
dwarf_stubs.o \
dwarf_tied.o \
dwarf_tsearchhash.o \
dwarf_types.o \
dwarf_util.o \
dwarf_vars.o \
dwarf_weaks.o \
dwarf_xu_index.o \
dwarfstring.o \
dwgetopt.o \
gennames.o \
malloc_check.o \
pro_alloc.o \
pro_arange.o \
pro_die.o \
pro_dnames.o \
pro_encode_nm.o \
pro_error.o \
pro_expr.o \
pro_finish.o \
pro_forms.o \
pro_frame.o \
pro_funcs.o \
pro_init.o \
pro_line.o \
pro_log_extra_flag_strings.o \
pro_macinfo.o \
pro_pubnames.o \
pro_reloc_stream.o \
pro_reloc_symbolic.o \
pro_reloc.o \
pro_section.o \
pro_types.o \
pro_vars.o \
pro_weaks.o
include $(SRC)/lib/Makefile.lib
include $(SRC)/tools/Makefile.tools
FILEMODE = 0755
SRCDIR = $(SRC)/lib/libdwarf/common/
SRCS = $(PICS:%.o=$(SRCDIR)/%.c)
CPPFLAGS += -I$(SRCDIR) -DELF_TARGET_ALL=1
CERRWARN += -Wno-unused
CERRWARN += -Wno-implicit-function-declaration
# libdwarf not clean
SMATCH=off
DYNFLAGS += '-R$$ORIGIN/../../lib/$(MACH)'
LDLIBS = -lelf -lc -lz
NATIVE_LIBS += libelf.so libc.so
# Hammerhead: Disable mapfiles for tools build since illumos mapfile format
# ($mapfile_version 2) is incompatible with GNU ld. Without mapfiles, all
# symbols default to global which is what we need for the tools.
MAPFILES =
.KEEP_STATE:
.PARALLEL:
all: $(DYNLIB)
install: all $(ROOTONBLDLIBMACH)/libdwarf.so.1 $(ROOTONBLDLIBMACH)/libdwarf.so
$(ROOTONBLDLIBMACH)/%: %
$(INS.file)
$(ROOTONBLDLIBMACH)/$(LIBLINKS): $(ROOTONBLDLIBMACH)/$(LIBLINKS)$(VERS)
$(INS.liblink)
FRC:
# We can't provide CTF information for libdwarf, as the CTF tools themselves
# depond upon it, and so aren't built yet.
$(DYNLIB) : CTFMERGE_POST= :
CTFCONVERT_O= :
include $(SRC)/lib/Makefile.targ
#!/bin/sh
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2003 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
echo_file usr/src/uts/common/sys/ctf.h
echo_file usr/src/uts/common/sys/ctf_api.h
echo_file usr/src/lib/libctf/common/libctf.h
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# Hammerhead: amd64-only - build directly, no arch subdirectories
# This file combines the parent Makefile with amd64/Makefile functionality
include ./Makefile.com
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2018 Joyent, Inc.
#
include $(SRC)/lib/libctf/Makefile.shared.com
include ../Makefile.ctf
CSTD = $(CSTD_GNU99)
CPPFLAGS += -I$(SRC)/lib/libctf/common/ \
-I$(SRC)/lib/libdwarf/common/ \
-I$(SRC)/lib/mergeq \
-include ../common/ctf_headers.h \
-DCTF_OLD_VERSIONS \
-DCTF_TOOLS_BUILD
LDLIBS += -lc -lelf -L$(ROOTONBLDLIBMACH) -ldwarf -lavl
NATIVE_LIBS += libelf.so libavl.so libc.so
DYNFLAGS += '-R$$ORIGIN/../../lib/$(MACH)'
# As a bootstrapping issue, we can't use the real mapfile because we build
# early in tools and thus don't have support for assertions.
MAPFILES=
.KEEP_STATE:
all: $(LIBS)
install: all $(ROOTONBLDLIBMACH)/libctf.so.1 $(ROOTONBLDLIBMACH)/libctf.so
$(ROOTONBLDLIBMACH)/%: %
$(INS.file)
$(ROOTONBLDLIBMACH)/$(LIBLINKS): $(ROOTONBLDLIBMACH)/$(LIBLINKS)$(VERS)
$(INS.liblink)
#
# Just like with libdwarf, we can't actually add ctf to ourselves,
# because we're part of the tools for creating CTF.
#
$(DYNLIB) : CTFMERGE_POST= :
CTFCONVERT_O= :
include $(SRC)/lib/Makefile.targ
include $(SRC)/lib/libctf/Makefile.shared.targ
# Hammerhead: amd64-only - build directly, no arch subdirectories
# This file combines the parent Makefile with amd64/Makefile functionality
include ./Makefile.com
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
.KEEP_STATE:
PROG = ctfstabs
SRCS = \
ctfstabs.c \
forth.c \
fth_enum.c \
fth_struct.c \
genassym.c \
memory.c \
utils.c
include ../Makefile.ctf
# Hammerhead: Use illumos libctf from tools proto area, not GNU binutils libctf
LDLIBS += -L$(ROOTONBLDLIBMACH) -lctf
NATIVE_LIBS += libctf.so
OBJS = $(SRCS:%.c=%.o) list.o
CERRWARN += $(CNOWARN_UNINIT)
CERRWARN += -Wno-unused
.NOTPARALLEL:
.PARALLEL: $(OBJS)
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
# Hammerhead: stabs-specific sources in common/
%.o: common/%.c
$(COMPILE.c) $<
# Shared CTF sources from ctf/common/
%.o: ../common/%.c
$(COMPILE.c) $<
%.o: $(SRC)/common/list/%.c
$(COMPILE.c) $<
$(ROOTONBLDMACHPROG): $(PROG)
install: $(ROOTONBLDMACHPROG)
clean:
$(RM) $(OBJS) $(LINTFILES)
include ../Makefile.ctf.targ
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* This program has two modes.
*
* In the first, or genassym, mode, it generates a header file containing
* #define'd values for offsets and other information about requested
* structures and arrays. This header file can then be used by assembly
* source files to access those structures without having to hard-code the
* offsets. The offsets and values in the header file are derived from the
* CTF data in a provided object file.
*
* The second mode creates forthdebug macros for specified structures and
* members from an object file. The macros are created using the CTF data in
* the object file.
*
* Forthdebug macros and offsets header files are generated using the same
* tool for historical reasons.
*
* The input and output files, and their interaction with the tool are
* shown below:
*
* --------------- ----------- cc -c -g ------------------
* |#includes | -----> |#includes| ------------> |object file with|
* |mode-specific| ----------- ctfconvert | CTF data |
* | directives| ------------------
* --------------- |
* | | obj_file
* | V
* | ------------ ----------
* \-------------> |directives| ---------------> |ctfstabs|
* ------------ input_template ----------
* |
* V
* ---------------
* Mode-specific input and output formats are |mode-specific|
* described in forth.c and genassym.c | output |
* ---------------
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <libgen.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "ctf_headers.h"
#include "utils.h"
#include "memory.h"
#include "ctfstabs.h"
#define WORD_LEN 256
static int lineno;
FILE *out;
ctf_file_t *ctf;
static void
usage(void)
{
(void) fprintf(stderr, "Usage: %s -t genassym [-m model] "
"[-i input_template] [-o output] obj_file\n", getpname());
(void) fprintf(stderr, " %s -t forth [-m model] "
"[-i input_template] [-o output] obj_file\n", getpname());
exit(2);
}
/*PRINTFLIKE1*/
int
parse_warn(char *format, ...)
{
va_list alist;
(void) fprintf(stderr, "%s: Line %d: ", getpname(), lineno);
va_start(alist, format);
(void) vfprintf(stderr, format, alist);
va_end(alist);
(void) fprintf(stderr, "\n");
return (-1);
}
#define READLINE_BUF_INCR 2
/*
* Read a line of input into a statically-allocated buffer. If the line
* is larger than the buffer, the buffer will be dynamically resized.
* Subsequent calls will overwrite the buffer.
*/
static char *
readline(FILE *fp)
{
static char *buf, *bptr;
static int buflen;
if (buflen == 0) {
buf = xmalloc(READLINE_BUF_INCR);
buflen = READLINE_BUF_INCR;
}
bptr = buf;
for (;;) {
size_t len, off;
if (fgets(bptr, buflen - (size_t)(bptr - buf), fp) == NULL)
return (NULL);
len = strlen(bptr);
if (bptr[len - 1] == '\n')
return (buf);
off = (size_t)((bptr + len) - buf);
buflen += READLINE_BUF_INCR;
buf = xrealloc(buf, buflen);
bptr = buf + off;
}
}
/*
* We're only given a type name. Even if it's a struct or a union, we
* still only get the struct or union name. We therefore iterate through
* the possible prefixes, trying to find the right type.
*/
ctf_id_t
find_type(char *name)
{
char fullname[WORD_LEN];
ctf_id_t id;
if ((id = ctf_lookup_by_name(ctf, name)) != CTF_ERR)
return (id);
(void) snprintf(fullname, WORD_LEN, "struct %s", name);
if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR)
return (id);
(void) snprintf(fullname, WORD_LEN, "union %s", name);
if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR)
return (id);
(void) snprintf(fullname, WORD_LEN, "enum %s", name);
if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR)
return (id);
return (CTF_ERR);
}
static int
process_ifile(FILE *tmpl, proc_ops_t *ops)
{
char *line;
int skipping;
size_t len;
int err = 0;
for (lineno = skipping = 0; (line = readline(tmpl)) != NULL; lineno++) {
len = strlen(line) - 1;
line[len] = '\0';
if (len == 0)
skipping = 0;
if (skipping == 1)
continue;
if (ops->po_line(line) < 0) {
(void) parse_warn("Error found: skipping to the next "
"blank line");
err++;
skipping = 1;
continue;
}
}
return (err > 0 ? -1 : 0);
}
static char *
get_model(ctf_file_t *ctf)
{
ssize_t lsz;
ctf_id_t lid;
/* Neither of these should fail */
if ((lid = ctf_lookup_by_name(ctf, "long")) == CTF_ERR ||
(lsz = ctf_type_size(ctf, lid)) == CTF_ERR)
die("Couldn't get size of long in object file");
if (lsz == 8)
return ("lp64");
else if (lsz == 4)
return ("ilp32");
else
die("Unexpected size of long: %d bytes\n", lsz);
return (NULL);
}
int
main(int argc, char **argv)
{
char *model = NULL, *objfile = NULL, *outfile = NULL, *tmplfile = NULL;
proc_ops_t *ops = &ga_ops;
FILE *tmpl;
int ctferr, c;
while ((c = getopt(argc, argv, "i:m:o:t:")) != EOF) {
switch (c) {
case 'i':
tmplfile = optarg;
break;
case 'm':
model = optarg;
break;
case 't':
if (strcmp(optarg, "genassym") == 0)
ops = &ga_ops;
else if (strcmp(optarg, "forth") == 0)
ops = &fth_ops;
else
usage();
break;
case 'o':
outfile = optarg;
break;
default:
usage();
}
}
if (argc - optind != 1)
usage();
objfile = argv[optind];
if (tmplfile == NULL || strcmp(tmplfile, "-") == 0)
tmpl = stdin;
else if ((tmpl = fopen(tmplfile, "r")) == NULL)
die("Couldn't open template file %s", tmplfile);
/*
* this can fail if ENOENT or if there's no CTF data in the file.
*/
if ((ctf = ctf_open(objfile, &ctferr)) == NULL) {
die("Couldn't open object file %s: %s\n", objfile,
ctf_errmsg(ctferr));
}
if (model == NULL)
model = get_model(ctf);
else if (strcmp(model, get_model(ctf)) != 0)
die("Model argument %s doesn't match the object file\n", model);
if (outfile == NULL || strcmp(outfile, "-") == 0)
out = stdout;
else if ((out = fopen(outfile, "w")) == NULL)
die("Couldn't open output file %s for writing", outfile);
if ((ops->po_init != NULL && ops->po_init(model) < 0) ||
(process_ifile(tmpl, ops) < 0) ||
(ops->po_fini != NULL && ops->po_fini() < 0)) {
(void) fclose(out);
(void) unlink(outfile);
return (1);
}
return (0);
}
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _CTFSTABS_H
#define _CTFSTABS_H
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
#include "ctf_headers.h"
/*
* The file-reading portion of ctfstabs communicates with the type-specific
* backends (genassym and forth) via the proc_ops_t, one of which is supplied
* by each backend.
*/
typedef struct proc_ops {
/*
* Called prior to reading the input template. A return of -1 signals
* an error, and will halt processing.
*/
int (*po_init)(char *);
/*
* Called for each line in the input file. If an error is returned,
* also signalled by a return of -1, input lines will be skipped, and
* this method will not be called, until a blank line is encountered.
*/
int (*po_line)(char *);
/*
* Called after all input lines have been processed.
*/
int (*po_fini)(void);
} proc_ops_t;
extern proc_ops_t ga_ops;
extern proc_ops_t fth_ops;
extern FILE *out; /* the output file */
extern ctf_file_t *ctf; /* the input object file */
extern int parse_warn(char *, ...);
extern ctf_id_t find_type(char *);
#ifdef __cplusplus
}
#endif
#endif /* _CTFSTABS_H */
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* In this mode, we generate forthdebug macros as requested by the input
* template, the format of which is given below.
*
* These templates have the following elements:
*
* 1. Macro creation
*
* Given the name of a structure, union, or enum type, a forthdebug macro
* is created that will dump the members of the type. The type can be
* specified as a standalone structure, union, or enum, or it can be
* described relative to another structure or union as "type.member".
*
* By default, all struct members, union members, or enum values, as
* appropriate, will be printed. An alternate form allows specific members
* of struct or union types to be printed. Both forms must be followed by a
* blank line. In the specific-member case, an optional format specifier can
* be provided that will be used to dump the contents of the member.
* Builtins `d' and `x' can be used to dump the member in decimal or
* hexadecimal, respectively. Alternatively, a custom formatter can be
* specified.
*
* 2. Model-specific sections
*
* `model_start' / `model_end' pairs function as an #ifdef for the ctfstabs
* tool. They take, as an argument, either `ilp32' or `lp64'. If a 64-bit
* macro is being generated (if a 64-bit object file is being used), lines
* between `lp64' model pairs will be processed, but lines between `ilp32'
* pairs will be omitted. The reverse is true for 32-bit macros.
*
* 3. Literal sections
*
* Portions of the input template file enclosed within `forth_start' /
* `forth_end' pairs and between `verbatim_begin' / `verbatim_end' pairs
* will be copied as-is to the output file.
*
* 4. Comments
*
* Lines beginning with backslashes are ignored.
*
* Example:
*
* \ dump the `foo' structure
* foo
*
* \ dump the `a' and `b' members of the `bar' structure. dump member `b'
* \ in hexadecimal
* bar
* a
* b x
*
* \ dump the `big' member of the `baz' structure in 64-bit macros, and
* \ the `small' member in 32-bit macros.
* baz
* model_start lp64
* big
* model_end
* model_start ilp32
* small
* model_end
*
* \ copy `literal 1' and `literal 2' to the output file
* verbatim_begin
* literal 1
* verbatim_end
* forth_start
* literal 2
* forth_end
*
* For a more complex example, see common.fdbg.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "ctf_headers.h"
#include "ctfstabs.h"
#include "forth.h"
#include "utils.h"
#include "memory.h"
char *fth_curtype; /* name of the type being processed */
static fth_type_ops_t *fth_type_ops; /* see forth.h */
static char *fth_model; /* the current macro type - for model_start */
static int fth_ignoring; /* in a non-matching model_start/end pair */
static int fth_copying; /* in a verbatim_* or forth_* pair */
static int
fth_init(char *model)
{
fth_model = model;
return (0);
}
/*ARGSUSED*/
static int
fth_null_header(ctf_id_t tid)
{
return (0);
}
/*ARGSUSED*/
static int
fth_null_members(char *memfilter, char *format)
{
return (0);
}
static int
fth_null_trailer(void)
{
return (0);
}
static fth_type_ops_t fth_null_ops = {
fth_null_header,
fth_null_members,
fth_null_trailer
};
/*ARGSUSED2*/
static int
find_member_cb(const char *memname, ctf_id_t tid, ulong_t off, void *arg)
{
char *memtofind = arg;
if (strcmp(memname, memtofind) == 0)
return (tid);
return (0);
}
/* find the tid of a specified member */
static ctf_id_t
find_member(ctf_id_t tid, char *memname)
{
return (ctf_member_iter(ctf, tid, find_member_cb, memname));
}
/*
* Begin a macro.
*
* Once we figure out the type of the thing that we're supposed to dump (struct,
* union, or enum), we select the proper type-specific ops-vector for dumping.
*/
static int
fth_section_init(char *fullname)
{
ctf_id_t ltid = 0, tid;
char *curtype, *lpart, *part, *npart;
int lkind = 0, kind;
curtype = xstrdup(fullname);
lpart = NULL;
part = strtok(fullname, ".");
/*
* First figure out what sort of type we're looking at. Life would be
* simple if we were only going to get type names, but it's not - we
* could also get `type.member'. In that case, we need to figure out
* (and dump) the type of `member' instead.
*/
for (;;) {
if (lpart == NULL) {
/* First part - the struct name */
if ((tid = find_type(part)) == CTF_ERR ||
(tid = ctf_type_resolve(ctf, tid)) == CTF_ERR ||
(kind = ctf_type_kind(ctf, tid)) == CTF_ERR) {
free(curtype);
return (parse_warn("Couldn't find %s: %s",
part, ctf_errmsg(ctf_errno(ctf))));
}
} else {
/* Second (or more) part - the member name */
if (lkind != CTF_K_STRUCT && lkind != CTF_K_UNION) {
free(curtype);
return (parse_warn("%s isn't a struct/union",
lpart));
}
if ((tid = find_member(ltid, part)) <= 0) {
free(curtype);
return (parse_warn("%s isn't a member of %s",
part, lpart));
}
if ((kind = ctf_type_kind(ctf, tid)) == CTF_ERR) {
free(curtype);
return (parse_warn("Can't get kind for %s",
part));
}
}
/*
* Stop if there aren't any more parts. We use `npart' here
* because we don't want to clobber part - we need it later.
*/
if ((npart = strtok(NULL, ".")) == NULL)
break;
lpart = part;
ltid = tid;
lkind = kind;
part = npart;
}
/*
* Pick the right ops vector for dumping.
*/
switch (kind) {
case CTF_K_STRUCT:
case CTF_K_UNION:
fth_type_ops = &fth_struct_ops;
break;
case CTF_K_ENUM:
fth_type_ops = &fth_enum_ops;
break;
default:
fth_type_ops = &fth_null_ops;
free(curtype);
return (parse_warn("%s isn't a struct, union, or enum", part));
}
fth_curtype = curtype;
return (fth_type_ops->fto_header(tid));
}
static int
fth_section_add_member(char *name, char *format)
{
if (fth_curtype == NULL)
return (fth_section_init(name));
if (fth_type_ops->fto_members(name, format) < 0)
return (-1);
return (0);
}
static int
fth_section_end(void)
{
if (fth_curtype == NULL)
return (0);
if (fth_type_ops->fto_trailer() < 0)
return (-1);
free(fth_curtype);
fth_curtype = NULL;
return (0);
}
static int
fth_process_line(char *line)
{
char *format = NULL;
char *word, *name, *c;
int nblank = 0;
int n;
if (strlen(line) == 0) {
if (fth_section_end() < 0)
return (-1);
if (fth_copying == 1 || nblank++ == 1)
(void) fprintf(out, "\n");
return (0);
} else
nblank = 0;
/* skip comments */
if (line[0] == '\\')
return (0);
if (strcmp(line, "model_end") == 0) {
fth_ignoring = 0;
return (0);
}
if (fth_ignoring == 1)
return (0);
word = "model_start ";
if (strncmp(line, word, strlen(word)) == 0) {
for (c = line + strlen(word); isspace(*c); c++);
if (strlen(c) == strlen(fth_model) &&
strncmp(c, fth_model, strlen(fth_model)) == 0)
/* EMPTY - match */;
else
fth_ignoring = 1;
return (0);
}
if (strcmp(line, "verbatim_end") == 0 ||
strcmp(line, "forth_end") == 0) {
char *start = (strcmp(line, "verbatim_end") == 0 ?
"verbatim_begin" : "forth_start");
if (fth_copying == 0) {
(void) parse_warn("Found %s without matching %s",
line, start);
if (fth_curtype != NULL)
(void) fth_section_end();
return (-1);
}
fth_copying = 0;
return (0);
}
if (fth_copying == 1) {
(void) fprintf(out, "%s\n", line);
return (0);
}
if (strcmp(line, "verbatim_begin") == 0 ||
strcmp(line, "forth_start") == 0) {
if (fth_curtype != NULL) {
(void) parse_warn("Expected blank line between %s "
"macro and %s", fth_curtype, line);
return (fth_section_end());
}
fth_copying = 1;
return (0);
}
for (n = 1, word = strtok(line, " \t"); word != NULL;
word = strtok(NULL, " \t"), n++) {
if (n == 1)
name = word;
else if (n == 2)
format = word;
else
(void) parse_warn("Too many words");
}
return (fth_section_add_member(name, format));
}
static int
fth_fini(void)
{
return (fth_section_end());
}
proc_ops_t fth_ops = {
fth_init,
fth_process_line,
fth_fini
};
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2002 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _FORTH_H
#define _FORTH_H
#ifdef __cplusplus
extern "C" {
#endif
#include "ctfstabs.h"
/*
* The macros emitted for structs/unions and enums differ, but their
* formatting in the input file and construction method is roughly the same.
* If any of the ops return -1, the remainder of the type being processed is
* skipped, and an error is signaled to the main portion of ctfstabs.
*/
typedef struct fth_type_ops {
/*
* Called to start a definition.
*/
int (*fto_header)(ctf_id_t);
/*
* When a specific-member request for a struct or union type is
* encountered, this op will be invoked for each requested member.
*/
int (*fto_members)(char *, char *);
/*
* Invoked when the current open definition is to be finished.
*/
int (*fto_trailer)(void);
} fth_type_ops_t;
/* forth.c */
extern char *fth_curtype;
/* fth_struct.c */
extern fth_type_ops_t fth_enum_ops;
extern fth_type_ops_t fth_struct_ops;
#ifdef __cplusplus
}
#endif
#endif /* _FORTH_H */
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2002 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Used to dump enums in forth mode.
*
* Enums are simple - there is no member-specific mode for them. We get
* the header op at the start, and we save the type id for dumping later.
* If we get the members op, we've been invoked in member-specific mode,
* which is a syntax error for an enum. When we ge the trailer op, we
* dump all of the members and the trailer thus concluding the enum.
*/
#include "forth.h"
static ctf_id_t fth_enum_curtid;
static int fth_enum_curnmems;
static int
fth_enum_header(ctf_id_t tid)
{
fth_enum_curtid = tid;
(void) fprintf(out, "\n");
return (0);
}
/*ARGSUSED*/
static int
fth_enum_members(char *memfilter, char *format)
{
return (parse_warn("Member-specific mode cannot be used for "
" enums"));
}
/*ARGSUSED2*/
static int
fth_enum_cb(const char *name, int value, void *arg)
{
(void) fprintf(out, "here ,\" %s\" %x\n", name, value);
fth_enum_curnmems++;
return (0);
}
static int
fth_enum_trailer(void)
{
if (ctf_enum_iter(ctf, fth_enum_curtid, fth_enum_cb, NULL) != 0)
return (-1);
(void) fprintf(out, "%x c-enum .%s\n", fth_enum_curnmems, fth_curtype);
fth_enum_curnmems = 0;
return (0);
}
fth_type_ops_t fth_enum_ops = {
fth_enum_header,
fth_enum_members,
fth_enum_trailer
};
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Copyright 2020 OmniOS Community Edition (OmniOSce) Association.
*/
/*
* Used to dump structures and unions in forth mode.
*
* structures and unions are a bit more complicated than enums. To make things
* just that much more interesting, we have to dump the members in reverse
* order, which is nice. But wait! It gets better! For compatibility reasons,
* we need to dump the members in reverse-offset order, even if member-specific
* mode was used to request the members in something other than that order.
*
* The header op prints the macro header and saves the type being printed.
*
* In member-specific mode, the member op will be invoked for each structure
* or union member. The member op adds the member name, format, type ID,
* and offset to a list, sorted in reverse order by offset.
*
* The trailer op is called when the structure or enum is complete. If no
* members were specifically requested, then the trailer iterates through all
* of the members of the structure, pretending they were. Each member is thus
* added, in reverse-offset order, to the list used in specific-member mode.
* Either way, we then proceed through the list, dumping each member out with
* fth_print_member. Structure and union members are printed out differently,
* depending on member type, as follows:
*
* Integer:
* Normal integers: ' <format> <offset> <type>-field <name>
* <format> defaults to ".d" for enums, ".x" for others
* <offset> is the member offset, in bytes.
* <type> is "byte", "short", "long", or "ext" for 8-, 16-, 32-, and
* 64-bit integers, respectively.
* <name> is the name of the member being printed
*
* Bitfields: ' <format> <shift> <mask> <offset> bits-field <name>
* <format> defaults to ".x"
* <shift> is the number of times to right-shift the masked value
* <mask> use to extract the bit-field value from the read value
* <offset> is the member offset, in bytes
* <name> is the name of the member being printed
*
* Float: Ignored
*
* Pointer: ' <format> <offset> ptr-field <name>
* <format> defaults to .x
* <offset> is in bytes
* <name> is the name of the member being printed
*
* Array:
* Arrays have a content-type-specific prefix, followed by an array
* suffix. The resulting line looks like this if the array contents
* type is an integer, a pointer, or an enum:
*
* ' <fldc> ' <fmt> <sz> <elsz> <off> array-field <name>
*
* The following is printed for array contents that are arrays:
*
* ' noop ' .x <sz> <elsz> <off> array-field <name>
*
* The following is printed for array contents that are structs:
*
* ' noop ' <fmt> <sz> <elsz> <off> array-field <name>
*
* <fldc> is "c@", "w@", "l@", or "x@", depending on whether array
* elements are 8, 16, 32 or 64 bits wide.
* <fmt> defaults to ".x"
* <sz> is the size of the array, in bytes
* <elsz> is the size of the array elements
* <off> is the member offset, in bytes
* <name> is the nam eof the member being printed
*
* Struct/Union: ' <format> <offset> struct-field <name>
* <format> defaults to ".x"
* <offset> is the member offset, in bytes
* <name> is the name of the member being printed
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/list.h>
#include "ctf_headers.h"
#include "forth.h"
#include "memory.h"
static ctf_id_t fth_str_curtid;
static list_t fth_str_curmems;
/*
* Node type for the member-storage list (fth_str_curmems) built by
* fth_struct_members()
*/
typedef struct fth_str_mem {
list_node_t fsm_node;
char *fsm_memname;
char *fsm_format;
ctf_id_t fsm_tid;
ulong_t fsm_off;
} fth_str_mem_t;
typedef struct fth_struct_members_data {
char *fsmd_strname;
char *fsmd_memfilter;
char *fsmd_format;
int fsmd_matched;
} fth_struct_members_data_t;
static int fth_print_member(fth_str_mem_t *, int);
/* Comparison routined used to insert members into the fth_str_curmems list */
static int
fth_struct_memcmp(void *m1, void *m2)
{
fth_str_mem_t *mem1 = m1, *mem2 = m2;
if (mem1->fsm_off < mem2->fsm_off)
return (1);
else if (mem1->fsm_off > mem2->fsm_off)
return (-1);
else
return (0);
}
static void
fth_slist_add(fth_str_mem_t *mem)
{
fth_str_mem_t *l;
for (l = list_head(&fth_str_curmems); l != NULL;
l = list_next(&fth_str_curmems, l)) {
if (fth_struct_memcmp(l, mem) > 0) {
list_insert_before(&fth_str_curmems, l, mem);
return;
}
}
list_insert_tail(&fth_str_curmems, mem);
}
static void
fth_free_str_mem(fth_str_mem_t *mem)
{
free(mem->fsm_memname);
if (mem->fsm_format)
free(mem->fsm_format);
free(mem);
}
static int
fth_struct_header(ctf_id_t tid)
{
ssize_t sz;
fth_str_curtid = tid;
list_create(&fth_str_curmems, sizeof (fth_str_mem_t),
offsetof(fth_str_mem_t, fsm_node));
if ((sz = ctf_type_size(ctf, fth_str_curtid)) == CTF_ERR)
return (parse_warn("Can't get size for %s", fth_curtype));
(void) fprintf(out, "\n");
(void) fprintf(out, "vocabulary %s-words\n", fth_curtype);
(void) fprintf(out, "h# %x constant %s-sz\n", sz, fth_curtype);
(void) fprintf(out, "%x ' %s-words c-struct .%s\n", sz, fth_curtype,
fth_curtype);
(void) fprintf(out, "also %s-words definitions\n\n", fth_curtype);
return (0);
}
/* Print the array prefix for integer and pointer members */
static int
fth_print_level(uint_t bits, char *format)
{
if ((bits & (bits - 1)) != 0 ||(bits % 8) != 0 || bits > 64) {
return (parse_warn("Unexpected bit size %d in %s",
bits, fth_curtype));
}
(void) fprintf(out, "' %c@ ' %s", " cw l x"[bits / 8], format);
return (0);
}
/*
* Return the format to be used to print the member. If one of the builtin
* formats "d" or "x" were specified, return ".d" or ".x", respectively.
* Otherwise, use the user-provided format as is, or use the default if none
* was provided.
*/
static char *
fth_convert_format(char *format, char *def)
{
static char dot[3] = ".";
if (format == NULL)
return (def);
else if (strlen(format) == 1) {
dot[1] = *format;
return (dot);
} else
return (format);
}
static int
fth_print_integer(const char *memname, ulong_t off, uint_t bits, char *format,
int level)
{
format = fth_convert_format(format, ".x");
if (bits > 64) {
return (parse_warn("%s.%s is too large (>8 bytes)",
fth_curtype, memname));
}
if (level != 0)
return (fth_print_level(bits, format));
if ((bits % NBBY) != 0 || (bits & (bits - 1)) != 0) {
/* bit field */
uint_t offset, shift, mask;
offset = (off / 32) * 4;
shift = 32 - ((off % 32) + bits);
mask = ((1 << bits) - 1) << shift;
(void) fprintf(out, "' %s %x %x %x bits-field %s\n",
format, shift, mask, offset, memname);
} else {
char *type[] = {
NULL, "byte", "short", NULL, "long",
NULL, NULL, NULL, "ext"
};
(void) fprintf(out, "' %s %lx %s-field %s\n", format, off / 8,
type[bits / 8], memname);
}
return (0);
}
static int
fth_print_pointer(const char *memname, ulong_t off, uint_t bits, char *format,
int level)
{
format = fth_convert_format(format, ".x");
if (level != 0)
return (fth_print_level(bits, format));
(void) fprintf(out, "' %s %lx ptr-field %s\n", format, off / 8,
memname);
return (0);
}
static int
fth_print_struct(char *memname, ulong_t off, char *format,
int level)
{
format = fth_convert_format(format, ".x");
if (level != 0)
(void) fprintf(out, "' noop ' %s", format);
else {
(void) fprintf(out, "' %s %lx struct-field %s\n", format,
off / 8, memname);
}
return (0);
}
static int
fth_print_enum(char *memname, ulong_t off, char *format,
int level)
{
format = fth_convert_format(format, ".d");
if (level != 0)
(void) fprintf(out, "' l@ ' %s", format);
else {
(void) fprintf(out, "' %s %lx long-field %s\n", format, off / 8,
memname);
}
return (0);
}
static int
fth_print_array(char *memname, ctf_id_t tid, ulong_t off, ssize_t sz,
char *format, int level)
{
if (level != 0)
(void) fprintf(out, "' noop ' .x");
else {
fth_str_mem_t mem;
ctf_arinfo_t ar;
/*
* print the prefix for the array contents type, then print
* the array macro
*/
if (ctf_array_info(ctf, tid, &ar) == CTF_ERR) {
return (parse_warn("Can't read array in %s.%s",
fth_curtype, memname));
}
mem.fsm_memname = memname;
mem.fsm_format = format;
mem.fsm_tid = ar.ctr_contents;
mem.fsm_off = off;
if (fth_print_member(&mem, level + 1) < 0)
return (-1);
(void) fprintf(out, " %x %x %lx array-field %s\n", sz,
(sz / ar.ctr_nelems), off / 8, memname);
}
return (0);
}
/* dump a structure or union member */
static int
fth_print_member(fth_str_mem_t *mem, int level)
{
ctf_encoding_t e;
ctf_id_t tid;
int kind;
ssize_t sz;
if ((tid = ctf_type_resolve(ctf, mem->fsm_tid)) == CTF_ERR) {
return (parse_warn("Can't resolve %s.%s", fth_curtype,
mem->fsm_memname));
}
if ((kind = ctf_type_kind(ctf, tid)) == CTF_ERR) {
return (parse_warn("Can't get kind for %s.%s",
fth_curtype, mem->fsm_memname));
}
if ((sz = ctf_type_size(ctf, tid)) == CTF_ERR) {
return (parse_warn("Can't get size for %s.%s",
fth_curtype, mem->fsm_memname));
}
switch (kind) {
case CTF_K_INTEGER:
if (ctf_type_encoding(ctf, tid, &e) == CTF_ERR)
return (parse_warn("Can't get encoding for %ld", tid));
return (fth_print_integer(mem->fsm_memname, mem->fsm_off,
e.cte_bits, mem->fsm_format, level));
case CTF_K_FLOAT:
(void) parse_warn("Ignoring floating point member %s.%s",
fth_curtype, mem->fsm_memname);
return (0);
case CTF_K_POINTER:
return (fth_print_pointer(mem->fsm_memname, mem->fsm_off,
sz * 8, mem->fsm_format, level));
case CTF_K_ARRAY:
return (fth_print_array(mem->fsm_memname, tid, mem->fsm_off, sz,
mem->fsm_format, level));
case CTF_K_STRUCT:
case CTF_K_UNION:
return (fth_print_struct(mem->fsm_memname, mem->fsm_off,
mem->fsm_format, level));
case CTF_K_ENUM:
return (fth_print_enum(mem->fsm_memname, mem->fsm_off,
mem->fsm_format, level));
case CTF_K_FORWARD:
return (parse_warn("Type %ld in %s.%s is undefined", tid,
fth_curtype, mem->fsm_memname));
default:
return (parse_warn("Unexpected kind %d for %s.%s", kind,
fth_curtype, mem->fsm_memname));
}
}
/*
* Add a member to list of members to be printed (fth_str_curmems). If
* fsmd_memfilter is non-null, only add this member if its name matches that
* in the filter.
*/
static int
fth_struct_members_cb(const char *memname, ctf_id_t tid, ulong_t off, void *arg)
{
fth_struct_members_data_t *fsmd = arg;
fth_str_mem_t *mem;
if (fsmd->fsmd_memfilter != NULL && strcmp(fsmd->fsmd_memfilter,
memname) != 0)
return (0);
fsmd->fsmd_matched = 1;
mem = xcalloc(sizeof (fth_str_mem_t));
mem->fsm_memname = xstrdup(memname);
if (fsmd->fsmd_format)
mem->fsm_format = xstrdup(fsmd->fsmd_format);
mem->fsm_tid = tid;
mem->fsm_off = off;
fth_slist_add(mem);
return (0);
}
/*
* If memfilter is non-null, iterate through the members of this type, causing
* every member to be added to the list. Otherwise, use the iterator and
* the callback to add only the specified member.
*/
static int
fth_struct_members(char *memfilter, char *format)
{
fth_struct_members_data_t fsmd;
fsmd.fsmd_strname = fth_curtype;
fsmd.fsmd_memfilter = memfilter;
fsmd.fsmd_format = format;
fsmd.fsmd_matched = 0;
if (ctf_member_iter(ctf, fth_str_curtid, fth_struct_members_cb,
&fsmd) != 0)
return (-1);
if (memfilter != NULL && fsmd.fsmd_matched == 0) {
return (parse_warn("Invalid member %s.%s", fth_curtype,
memfilter));
}
return (0);
}
static int
fth_struct_trailer(void)
{
fth_str_mem_t *mem;
if (list_is_empty(&fth_str_curmems)) {
if (fth_struct_members(NULL, NULL) < 0)
return (-1);
}
while ((mem = list_remove_head(&fth_str_curmems)) != NULL) {
if (fth_print_member(mem, 0) < 0)
return (-1);
fth_free_str_mem(mem);
}
list_destroy(&fth_str_curmems);
(void) fprintf(out, "\n");
(void) fprintf(out, "kdbg-words definitions\n");
(void) fprintf(out, "previous\n");
(void) fprintf(out, "\n");
(void) fprintf(out, "\\ end %s section\n", fth_curtype);
(void) fprintf(out, "\n");
return (0);
}
fth_type_ops_t fth_struct_ops = {
fth_struct_header,
fth_struct_members,
fth_struct_trailer
};
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* In this mode, we generate header files containg various #defines which can
* be used to access members of various structures, and to walk through arrays.
* The input template specifies the structures and members for whom #defines
* are to be generated.
*
* The template has the following elements
*
* 1. Given the name of a structure or union, #defines can be generated that
* describe the type. If requested, #defines that give the size and the
* log2 (shift) of the structure will be generated. The latter can only
* be requested for structures whose size is a power of two.
*
* Per-member #defines are also generated. The value of these defines will
* be the offsets necessary to access the members they describe. By
* default, the name of the #define will be the name of the member, in upper
* case, but a user-supplied version can be used instead. If the member is
* an array, an extra #define will be generated that will give the increment
* needed to access individual array elements. The name of the increment
* #define will be identical to that of the member #define, but with an
* "_INCR" suffix.
*
* 2. Literal cpp directives
*
* Lines beginning with "\#" are copied directly to the output file.
*
* 3. Comments
*
* Lines beginning with backslashes (excluding the literal cpp directives
* described above) are ignored.
*
* Example input:
*
* \ Dump the `foo' structure, creating a size #define called FOO_SIZE, and a
* \ shift #define called FOO_SHIFT. `foo' has one member called `mem'.
* foo FOO_SIZE FOO_SHIFT
*
* \ Dump the `a' and `b' members of the `bar' structure. the offset
* \ #defines for these members should be `FRED' and `BOB', respectively.
* \ Both members are of type `char'
* bar
* a FRED
* b BOB
*
* Example output:
*
* #define FOO_SIZE 0x4
* #define FOO_SHIFT 0x2
* #define FRED 0x0
* #define FRED_INCR 0x1
* #define BOB 0x4
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/types.h>
#include "ctf_headers.h"
#include "utils.h"
#include "ctfstabs.h"
static int
ga_parse_tokens(char *line, int max, char ***wret)
{
char *c = line;
char *word;
int n;
while (isspace(*c))
c++;
for (n = 1, word = strtok(line, " \t"); word != NULL;
word = strtok(NULL, " \t"), n++) {
if (n > max)
return (-1);
*(wret[n - 1]) = word;
}
return (n - 1);
}
static int
ga_parse_common(char *line, int min, int max, char **w1, char **w2, char **w3)
{
char **wret[3];
int nread;
wret[0] = w1;
wret[1] = w2;
wret[2] = w3;
if ((nread = ga_parse_tokens(line, max, wret)) < min)
return (-1);
if (nread < 3 && wret[2] != NULL)
*wret[2] = (char *)NULL;
if (nread < 2 && wret[1] != NULL)
*wret[1] = (char *)NULL;
if (nread < 1 && wret[0] != NULL)
*wret[0] = (char *)NULL;
return (nread);
}
/*
* Valid format: typename [sizedefname [shiftdefname]]
*/
static int
ga_parse_name(char *line, char **cnp, char **szdp, char **shdp)
{
return (ga_parse_common(line, 1, 3, cnp, szdp, shdp));
}
/*
* Valid format: memname [offdefname]
*/
static int
ga_parse_member(char *line, char **mnp, char **offp)
{
return (ga_parse_common(line, 1, 2, mnp, offp, NULL));
}
/*
* Used to begin a new structure/union block, and to print the optional size
* and optional shift constants.
*/
static int
ga_process_name(char *line)
{
char *curname, *sizedef, *shdef;
ctf_id_t curtype;
ssize_t sz, shift;
if (ga_parse_name(line, &curname, &sizedef, &shdef) < 0)
return (parse_warn("Couldn't parse name"));
if ((curtype = find_type(curname)) == CTF_ERR)
return (parse_warn("Couldn't find type %s", curname));
if (sizedef != NULL) {
if ((sz = ctf_type_size(ctf, curtype)) < 0) {
return (parse_warn("Couldn't get size for type %s",
curname));
} else if (sz == 0) {
return (parse_warn("Invalid type size 0 for %s",
curname));
}
(void) fprintf(out, "#define\t%s\t0x%x\n", sizedef, sz);
}
if (shdef != NULL) {
ssize_t tsz;
for (shift = -1, tsz = sz; tsz > 0; tsz >>= 1, shift++)
;
if (shift < 0 || 1 << shift != sz) {
return (parse_warn("Can't make shift #define: %s size "
"(%d) isn't a power of 2", curname, sz));
}
(void) fprintf(out, "#define\t%s\t0x%x\n", shdef, shift);
}
return (curtype);
}
/*
* ga_process_member() and ga_member_cb() are used to print the offset and
* possibly array increment values for a given structure member. A specific
* member is requested via ga_process_member(), and ga_member_cb() is used
* to iterate through the members of the current structure type, looking for
* that member. This is not the most efficient way to do things, but the
* lists involved are generally short.
*/
typedef struct ga_member_cb_data {
char *gmcb_memname;
char *gmcb_submem;
char *gmcb_offdef;
size_t gmcb_off;
} ga_member_cb_data_t;
static int ga_member_find(ctf_id_t, ga_member_cb_data_t *);
static int
ga_member_cb(const char *name, ctf_id_t type, ulong_t off, void *arg)
{
ga_member_cb_data_t *md = arg;
ctf_arinfo_t arinfo;
char *label;
if (strcmp(name, md->gmcb_memname) != 0)
return (0);
md->gmcb_off += off / 8; /* off is in bits */
if (md->gmcb_submem != NULL) {
/*
* The user requested foo.bar. We've found foo, and now need to
* recurse down to bar.
*/
ga_member_cb_data_t smd;
smd.gmcb_memname = md->gmcb_submem;
smd.gmcb_submem = NULL;
smd.gmcb_offdef = md->gmcb_offdef;
smd.gmcb_off = md->gmcb_off;
return (ga_member_find(type, &smd));
}
if (md->gmcb_offdef == NULL) {
int i;
label = md->gmcb_memname;
for (i = 0; i < strlen(label); i++)
label[i] = toupper(label[i]);
} else
label = md->gmcb_offdef;
/* offsets are in bits - we need bytes */
(void) fprintf(out, "#define\t%s\t0x%lx\n", label,
(ulong_t)md->gmcb_off);
if ((type = ctf_type_resolve(ctf, type)) == CTF_ERR)
return (parse_warn("Couldn't resolve type %s", name));
if (ctf_array_info(ctf, type, &arinfo) == 0) {
ssize_t sz;
if ((sz = ctf_type_size(ctf, arinfo.ctr_contents)) < 0)
return (parse_warn("Couldn't get array elem size"));
(void) fprintf(out, "#define\t%s_INCR\t0x%x\n", label, sz);
}
return (1);
}
static int
ga_member_find(ctf_id_t curtype, ga_member_cb_data_t *md)
{
char *c;
int rc;
if ((c = strchr(md->gmcb_memname, '.')) != NULL)
*c++ = '\0';
md->gmcb_submem = c;
if ((rc = ctf_member_iter(ctf, curtype, ga_member_cb, md)) == 0) {
return (parse_warn("Couldn't find member named %s",
md->gmcb_memname));
} else if (rc != 1)
return (parse_warn("Can't parse"));
return (1);
}
static int
ga_process_member(ctf_id_t curtype, char *line)
{
ga_member_cb_data_t md = { 0 };
if (ga_parse_member(line, &md.gmcb_memname, &md.gmcb_offdef) < 0)
return (parse_warn("Couldn't parse member"));
return (ga_member_find(curtype, &md));
}
static int
ga_process_line(char *line)
{
static int curtype = -1;
static int blanks = 0;
if (strlen(line) == 0) {
blanks++;
return (1);
} else if (blanks) {
if (!isspace(line[0]))
curtype = -1;
blanks = 0;
}
if (line[0] == '\\') {
if (line[1] == '#') {
/* dump, verbatim, lines that begin with "\#" */
(void) fprintf(out, "%s\n", line + 1);
}
return (1);
} else if (line[0] == '#') {
/*
* This is a comment of some sort; is it a line number
* comment? Those look like '# 53 "filename.c"'. GCC
* sometimes inserts them and removes all other vertical
* whitespace, so they should be treated as a "type
* terminator" like a blank line is.
*/
if (isdigit(line[2])) {
/* line number, terminate type */
curtype = -1;
}
return (1);
}
if (curtype == -1)
return ((curtype = ga_process_name(line)));
else
return (ga_process_member(curtype, line));
}
proc_ops_t ga_ops = {
NULL,
ga_process_line,
NULL
};
|