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
|
/*
* 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 2020 Joyent, Inc.
*/
/*
* To perform a merge of two CTF containers, we first diff the two containers
* types. For every type that's in the src container, but not in the dst
* container, we note it and add it to dst container. If there are any objects
* or functions associated with src, we go through and update the types that
* they refer to such that they all refer to types in the dst container.
*
* The bulk of the logic for the merge, after we've run the diff, occurs in
* ctf_merge_common().
*
* In terms of exported APIs, we don't really export a simple merge two
* containers, as the general way this is used, in something like ctfmerge(1),
* is to add all the containers and then let us figure out the best way to merge
* it.
*/
#include <libctf_impl.h>
#include <sys/debug.h>
#include <sys/list.h>
#include <stddef.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <mergeq.h>
#include <errno.h>
typedef struct ctf_merge_tinfo {
uint16_t cmt_map; /* Map to the type in out */
boolean_t cmt_fixup;
boolean_t cmt_forward;
boolean_t cmt_missing;
} ctf_merge_tinfo_t;
/*
* State required for doing an individual merge of two containers.
*/
typedef struct ctf_merge_types {
ctf_file_t *cm_out; /* Output CTF file */
ctf_file_t *cm_src; /* Input CTF file */
ctf_merge_tinfo_t *cm_tmap; /* Type state information */
boolean_t cm_dedup; /* Are we doing a dedup? */
boolean_t cm_unique; /* are we doing a uniquify? */
} ctf_merge_types_t;
typedef struct ctf_merge_objmap {
list_node_t cmo_node;
const char *cmo_name; /* Symbol name */
const char *cmo_file; /* Symbol file */
ulong_t cmo_idx; /* Symbol ID */
Elf64_Sym cmo_sym; /* Symbol Entry */
ctf_id_t cmo_tid; /* Type ID */
} ctf_merge_objmap_t;
typedef struct ctf_merge_funcmap {
list_node_t cmf_node;
const char *cmf_name; /* Symbol name */
const char *cmf_file; /* Symbol file */
ulong_t cmf_idx; /* Symbol ID */
Elf64_Sym cmf_sym; /* Symbol Entry */
ctf_id_t cmf_rtid; /* Type ID */
uint_t cmf_flags; /* ctf_funcinfo_t ctc_flags */
uint_t cmf_argc; /* Number of arguments */
ctf_id_t cmf_args[]; /* Types of arguments */
} ctf_merge_funcmap_t;
typedef struct ctf_merge_input {
list_node_t cmi_node;
ctf_file_t *cmi_input;
list_t cmi_omap;
list_t cmi_fmap;
boolean_t cmi_created;
} ctf_merge_input_t;
struct ctf_merge_handle {
list_t cmh_inputs; /* Input list */
uint_t cmh_ninputs; /* Number of inputs */
uint_t cmh_nthreads; /* Number of threads to use */
ctf_file_t *cmh_unique; /* ctf to uniquify against */
boolean_t cmh_msyms; /* Should we merge symbols/funcs? */
int cmh_ofd; /* FD for output file */
int cmh_flags; /* Flags that control merge behavior */
char *cmh_label; /* Optional label */
char *cmh_pname; /* Parent name */
};
typedef struct ctf_merge_symbol_arg {
list_t *cmsa_objmap;
list_t *cmsa_funcmap;
ctf_file_t *cmsa_out;
boolean_t cmsa_dedup;
} ctf_merge_symbol_arg_t;
static int ctf_merge_add_type(ctf_merge_types_t *, ctf_id_t);
static ctf_id_t
ctf_merge_gettype(ctf_merge_types_t *cmp, ctf_id_t id)
{
if (cmp->cm_dedup == B_FALSE) {
VERIFY(cmp->cm_tmap[id].cmt_map != 0);
return (cmp->cm_tmap[id].cmt_map);
}
while (cmp->cm_tmap[id].cmt_missing == B_FALSE) {
VERIFY(cmp->cm_tmap[id].cmt_map != 0);
id = cmp->cm_tmap[id].cmt_map;
}
VERIFY(cmp->cm_tmap[id].cmt_map != 0);
return (cmp->cm_tmap[id].cmt_map);
}
static void
ctf_merge_diffcb(ctf_file_t *ifp, ctf_id_t iid, boolean_t same, ctf_file_t *ofp,
ctf_id_t oid, void *arg)
{
ctf_merge_types_t *cmp = arg;
ctf_merge_tinfo_t *cmt = cmp->cm_tmap;
uint_t kind;
if (same == B_TRUE) {
if (ctf_type_kind(ifp, iid) == CTF_K_FORWARD &&
(kind = ctf_type_kind(ofp, oid)) != CTF_K_FORWARD) {
VERIFY(cmt[oid].cmt_map == 0);
/*
* If we're uniquifying types, it's possible for the
* container that we're uniquifying against to have a
* forward which exists in the container being reduced.
* For example, genunix has the machcpu structure as a
* forward which is actually in unix and we uniquify
* unix against genunix. In such cases, we explicitly do
* not do any mapping of the forward information, lest
* we risk losing the real definition. Instead, mark
* that it's missing.
*/
if (cmp->cm_unique == B_TRUE) {
cmt[oid].cmt_missing = B_TRUE;
return;
}
cmt[oid].cmt_map = iid;
cmt[oid].cmt_forward = B_TRUE;
ctf_dprintf("merge diff forward mapped %ld->%ld (%u)\n",
oid, iid, kind);
return;
}
/*
* We could have multiple things that a given type ends up
* matching in the world of forwards and pointers to forwards.
* For now just take the first one...
*/
if (cmt[oid].cmt_map != 0)
return;
cmt[oid].cmt_map = iid;
ctf_dprintf("merge diff mapped %d->%d\n", oid, iid);
} else if (ifp == cmp->cm_src) {
VERIFY(cmt[iid].cmt_map == 0);
cmt[iid].cmt_missing = B_TRUE;
ctf_dprintf("merge diff said %d is missing\n", iid);
}
}
static int
ctf_merge_add_number(ctf_merge_types_t *cmp, ctf_id_t id)
{
int ret, flags;
const ctf_type_t *tp;
const char *name;
ctf_encoding_t en;
if (ctf_type_encoding(cmp->cm_src, id, &en) != 0)
return (CTF_ERR);
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
name = ctf_strraw(cmp->cm_src, tp->ctt_name);
if (CTF_INFO_ISROOT(tp->ctt_info) != 0)
flags = CTF_ADD_ROOT;
else
flags = CTF_ADD_NONROOT;
ret = ctf_add_encoded(cmp->cm_out, flags, name, &en,
ctf_type_kind(cmp->cm_src, id));
if (ret == CTF_ERR)
return (ret);
VERIFY(cmp->cm_tmap[id].cmt_map == 0);
cmp->cm_tmap[id].cmt_map = ret;
return (0);
}
static int
ctf_merge_add_array(ctf_merge_types_t *cmp, ctf_id_t id)
{
int ret, flags;
const ctf_type_t *tp;
ctf_arinfo_t ar;
if (ctf_array_info(cmp->cm_src, id, &ar) == CTF_ERR)
return (CTF_ERR);
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
if (CTF_INFO_ISROOT(tp->ctt_info) != 0)
flags = CTF_ADD_ROOT;
else
flags = CTF_ADD_NONROOT;
if (cmp->cm_tmap[ar.ctr_contents].cmt_map == 0) {
ret = ctf_merge_add_type(cmp, ar.ctr_contents);
if (ret != 0)
return (ret);
ASSERT(cmp->cm_tmap[ar.ctr_contents].cmt_map != 0);
}
ar.ctr_contents = ctf_merge_gettype(cmp, ar.ctr_contents);
if (cmp->cm_tmap[ar.ctr_index].cmt_map == 0) {
ret = ctf_merge_add_type(cmp, ar.ctr_index);
if (ret != 0)
return (ret);
ASSERT(cmp->cm_tmap[ar.ctr_index].cmt_map != 0);
}
ar.ctr_index = ctf_merge_gettype(cmp, ar.ctr_index);
ret = ctf_add_array(cmp->cm_out, flags, &ar);
if (ret == CTF_ERR)
return (ret);
VERIFY(cmp->cm_tmap[id].cmt_map == 0);
cmp->cm_tmap[id].cmt_map = ret;
return (0);
}
static int
ctf_merge_add_reftype(ctf_merge_types_t *cmp, ctf_id_t id)
{
int ret, flags;
const ctf_type_t *tp;
ctf_id_t reftype;
const char *name;
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
name = ctf_strraw(cmp->cm_src, tp->ctt_name);
if (CTF_INFO_ISROOT(tp->ctt_info) != 0)
flags = CTF_ADD_ROOT;
else
flags = CTF_ADD_NONROOT;
reftype = ctf_type_reference(cmp->cm_src, id);
if (reftype == CTF_ERR)
return (ctf_set_errno(cmp->cm_out, ctf_errno(cmp->cm_src)));
if (cmp->cm_tmap[reftype].cmt_map == 0) {
ret = ctf_merge_add_type(cmp, reftype);
if (ret != 0)
return (ret);
ASSERT(cmp->cm_tmap[reftype].cmt_map != 0);
}
reftype = ctf_merge_gettype(cmp, reftype);
ret = ctf_add_reftype(cmp->cm_out, flags, name, reftype,
ctf_type_kind(cmp->cm_src, id));
if (ret == CTF_ERR)
return (ret);
VERIFY(cmp->cm_tmap[id].cmt_map == 0);
cmp->cm_tmap[id].cmt_map = ret;
return (0);
}
static int
ctf_merge_add_typedef(ctf_merge_types_t *cmp, ctf_id_t id)
{
int ret, flags;
const ctf_type_t *tp;
const char *name;
ctf_id_t reftype;
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
name = ctf_strraw(cmp->cm_src, tp->ctt_name);
if (CTF_INFO_ISROOT(tp->ctt_info) != 0)
flags = CTF_ADD_ROOT;
else
flags = CTF_ADD_NONROOT;
reftype = ctf_type_reference(cmp->cm_src, id);
if (reftype == CTF_ERR)
return (ctf_set_errno(cmp->cm_out, ctf_errno(cmp->cm_src)));
if (cmp->cm_tmap[reftype].cmt_map == 0) {
ret = ctf_merge_add_type(cmp, reftype);
if (ret != 0)
return (ret);
ASSERT(cmp->cm_tmap[reftype].cmt_map != 0);
}
reftype = ctf_merge_gettype(cmp, reftype);
ret = ctf_add_typedef(cmp->cm_out, flags, name, reftype);
if (ret == CTF_ERR)
return (ret);
VERIFY(cmp->cm_tmap[id].cmt_map == 0);
cmp->cm_tmap[id].cmt_map = ret;
return (0);
}
typedef struct ctf_merge_enum {
ctf_file_t *cme_fp;
ctf_id_t cme_id;
} ctf_merge_enum_t;
static int
ctf_merge_add_enumerator(const char *name, int value, void *arg)
{
ctf_merge_enum_t *cmep = arg;
return (ctf_add_enumerator(cmep->cme_fp, cmep->cme_id, name, value) ==
CTF_ERR);
}
static int
ctf_merge_add_enum(ctf_merge_types_t *cmp, ctf_id_t id)
{
int flags;
const ctf_type_t *tp;
const char *name;
ctf_id_t enumid;
ctf_merge_enum_t cme;
size_t size;
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
if (CTF_INFO_ISROOT(tp->ctt_info) != 0)
flags = CTF_ADD_ROOT;
else
flags = CTF_ADD_NONROOT;
name = ctf_strraw(cmp->cm_src, tp->ctt_name);
size = ctf_get_ctt_size(cmp->cm_src, tp, NULL, NULL);
enumid = ctf_add_enum(cmp->cm_out, flags, name, size);
if (enumid == CTF_ERR)
return (enumid);
cme.cme_fp = cmp->cm_out;
cme.cme_id = enumid;
if (ctf_enum_iter(cmp->cm_src, id, ctf_merge_add_enumerator,
&cme) != 0)
return (CTF_ERR);
VERIFY(cmp->cm_tmap[id].cmt_map == 0);
cmp->cm_tmap[id].cmt_map = enumid;
return (0);
}
static int
ctf_merge_add_func(ctf_merge_types_t *cmp, ctf_id_t id)
{
int ret, flags, i;
const ctf_type_t *tp;
ctf_funcinfo_t ctc;
ctf_id_t *argv;
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
if (CTF_INFO_ISROOT(tp->ctt_info) != 0)
flags = CTF_ADD_ROOT;
else
flags = CTF_ADD_NONROOT;
if (ctf_func_info_by_id(cmp->cm_src, id, &ctc) == CTF_ERR)
return (ctf_set_errno(cmp->cm_out, ctf_errno(cmp->cm_src)));
argv = ctf_alloc(sizeof (ctf_id_t) * ctc.ctc_argc);
if (argv == NULL)
return (ctf_set_errno(cmp->cm_out, ENOMEM));
if (ctf_func_args_by_id(cmp->cm_src, id, ctc.ctc_argc, argv) ==
CTF_ERR) {
ctf_free(argv, sizeof (ctf_id_t) * ctc.ctc_argc);
return (ctf_set_errno(cmp->cm_out, ctf_errno(cmp->cm_src)));
}
if (cmp->cm_tmap[ctc.ctc_return].cmt_map == 0) {
ret = ctf_merge_add_type(cmp, ctc.ctc_return);
if (ret != 0)
return (ret);
ASSERT(cmp->cm_tmap[ctc.ctc_return].cmt_map != 0);
}
ctc.ctc_return = ctf_merge_gettype(cmp, ctc.ctc_return);
for (i = 0; i < ctc.ctc_argc; i++) {
if (cmp->cm_tmap[argv[i]].cmt_map == 0) {
ret = ctf_merge_add_type(cmp, argv[i]);
if (ret != 0)
return (ret);
ASSERT(cmp->cm_tmap[argv[i]].cmt_map != 0);
}
argv[i] = ctf_merge_gettype(cmp, argv[i]);
}
ret = ctf_add_funcptr(cmp->cm_out, flags, &ctc, argv);
ctf_free(argv, sizeof (ctf_id_t) * ctc.ctc_argc);
if (ret == CTF_ERR)
return (ret);
VERIFY(cmp->cm_tmap[id].cmt_map == 0);
cmp->cm_tmap[id].cmt_map = ret;
return (0);
}
static int
ctf_merge_add_forward(ctf_merge_types_t *cmp, ctf_id_t id, uint_t kind)
{
int ret, flags;
const ctf_type_t *tp;
const char *name;
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
name = ctf_strraw(cmp->cm_src, tp->ctt_name);
if (CTF_INFO_ISROOT(tp->ctt_info) != 0)
flags = CTF_ADD_ROOT;
else
flags = CTF_ADD_NONROOT;
ret = ctf_add_forward(cmp->cm_out, flags, name, kind);
if (ret == CTF_ERR)
return (CTF_ERR);
VERIFY(cmp->cm_tmap[id].cmt_map == 0);
cmp->cm_tmap[id].cmt_map = ret;
return (0);
}
typedef struct ctf_merge_su {
ctf_merge_types_t *cms_cm;
ctf_id_t cms_id;
} ctf_merge_su_t;
static int
ctf_merge_add_member(const char *name, ctf_id_t type, ulong_t offset, void *arg)
{
ctf_merge_su_t *cms = arg;
VERIFY(cms->cms_cm->cm_tmap[type].cmt_map != 0);
type = cms->cms_cm->cm_tmap[type].cmt_map;
ctf_dprintf("Trying to add member %s to %d\n", name, cms->cms_id);
return (ctf_add_member(cms->cms_cm->cm_out, cms->cms_id, name,
type, offset) == CTF_ERR);
}
/*
* During the first pass, we always add the generic structure and union but none
* of its members as they might not all have been mapped yet. Instead we just
* mark all structures and unions as needing to be fixed up.
*/
static int
ctf_merge_add_sou(ctf_merge_types_t *cmp, ctf_id_t id, boolean_t forward)
{
int flags, kind;
const ctf_type_t *tp;
const char *name;
ctf_id_t suid;
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
name = ctf_strraw(cmp->cm_src, tp->ctt_name);
if (CTF_INFO_ISROOT(tp->ctt_info) != 0)
flags = CTF_ADD_ROOT;
else
flags = CTF_ADD_NONROOT;
kind = ctf_type_kind(cmp->cm_src, id);
if (kind == CTF_K_STRUCT)
suid = ctf_add_struct(cmp->cm_out, flags, name);
else
suid = ctf_add_union(cmp->cm_out, flags, name);
ctf_dprintf("added sou \"%s\" as (%d) %d->%d\n", name, kind, id, suid);
if (suid == CTF_ERR)
return (suid);
if (forward == B_FALSE) {
VERIFY(cmp->cm_tmap[id].cmt_map == 0);
cmp->cm_tmap[id].cmt_map = suid;
} else {
/*
* If this is a forward reference then its mapping should
* already exist.
*/
if (cmp->cm_tmap[id].cmt_map != suid) {
ctf_dprintf(
"mismatch sou \"%s\" as (%d) %d->%d (exp %d)\n",
name, kind, id, suid, cmp->cm_tmap[id].cmt_map);
ctf_hash_dump("src structs",
&cmp->cm_src->ctf_structs, cmp->cm_src);
ctf_hash_dump("src unions",
&cmp->cm_src->ctf_unions, cmp->cm_src);
ctf_hash_dump("out structs",
&cmp->cm_out->ctf_structs, cmp->cm_out);
ctf_hash_dump("out unions",
&cmp->cm_out->ctf_unions, cmp->cm_out);
}
VERIFY(cmp->cm_tmap[id].cmt_map == suid);
}
cmp->cm_tmap[id].cmt_fixup = B_TRUE;
return (0);
}
static int
ctf_merge_add_type(ctf_merge_types_t *cmp, ctf_id_t id)
{
int kind, ret;
/*
* We may end up evaluating a type more than once as we may deal with it
* as we recursively evaluate some kind of reference and then we may see
* it normally.
*/
if (cmp->cm_tmap[id].cmt_map != 0)
return (0);
kind = ctf_type_kind(cmp->cm_src, id);
switch (kind) {
case CTF_K_INTEGER:
case CTF_K_FLOAT:
ret = ctf_merge_add_number(cmp, id);
break;
case CTF_K_ARRAY:
ret = ctf_merge_add_array(cmp, id);
break;
case CTF_K_POINTER:
case CTF_K_VOLATILE:
case CTF_K_CONST:
case CTF_K_RESTRICT:
ret = ctf_merge_add_reftype(cmp, id);
break;
case CTF_K_TYPEDEF:
ret = ctf_merge_add_typedef(cmp, id);
break;
case CTF_K_ENUM:
ret = ctf_merge_add_enum(cmp, id);
break;
case CTF_K_FUNCTION:
ret = ctf_merge_add_func(cmp, id);
break;
case CTF_K_FORWARD: {
const ctf_type_t *tp;
uint_t kind;
tp = LCTF_INDEX_TO_TYPEPTR(cmp->cm_src, id);
/*
* For forward declarations, ctt_type is the CTF_K_*
* kind for the tag. Older versions of the CTF tools may
* not have filled this in so if ctt_type is unknown or
* invalid, treat it as a struct. This mirrors the logic in
* ctf_bufopen().
*/
kind = tp->ctt_type;
if (kind == CTF_K_UNKNOWN || kind >= CTF_K_MAX)
kind = CTF_K_STRUCT;
ret = ctf_merge_add_forward(cmp, id, kind);
break;
}
case CTF_K_STRUCT:
case CTF_K_UNION:
ret = ctf_merge_add_sou(cmp, id, B_FALSE);
break;
case CTF_K_UNKNOWN:
/*
* We don't add unknown types, and we later assert that nothing
* should reference them.
*/
return (0);
default:
abort();
}
return (ret);
}
static int
ctf_merge_fixup_sou(ctf_merge_types_t *cmp, ctf_id_t id)
{
ctf_dtdef_t *dtd;
ctf_merge_su_t cms;
ctf_id_t mapid;
ssize_t size;
mapid = cmp->cm_tmap[id].cmt_map;
VERIFY(mapid != 0);
dtd = ctf_dtd_lookup(cmp->cm_out, mapid);
VERIFY(dtd != NULL);
ctf_dprintf("Trying to fix up sou %d\n", id);
cms.cms_cm = cmp;
cms.cms_id = mapid;
if (ctf_member_iter(cmp->cm_src, id, ctf_merge_add_member, &cms) != 0)
return (CTF_ERR);
if ((size = ctf_type_size(cmp->cm_src, id)) == CTF_ERR)
return (CTF_ERR);
if (ctf_set_size(cmp->cm_out, mapid, size) == CTF_ERR)
return (CTF_ERR);
return (0);
}
static int
ctf_merge_fixup_type(ctf_merge_types_t *cmp, ctf_id_t id)
{
int kind, ret;
kind = ctf_type_kind(cmp->cm_src, id);
switch (kind) {
case CTF_K_STRUCT:
case CTF_K_UNION:
ret = ctf_merge_fixup_sou(cmp, id);
break;
default:
VERIFY(0);
ret = CTF_ERR;
}
return (ret);
}
/*
* Now that we've successfully merged everything, we're going to remap the type
* table.
*
* Remember we have two containers: ->cm_src is what we're working from, and
* ->cm_out is where we are building the de-duplicated CTF.
*
* The index of this table is always the type IDs in ->cm_src.
*
* When we built this table originally in ctf_diff_self(), if we found a novel
* type, we marked it as .cmt_missing to indicate it needs adding to ->cm_out.
* Otherwise, .cmt_map indicated the ->cm_src type ID that this type duplicates.
*
* Then, in ctf_merge_common(), we walked through and added all "cmt_missing"
* types to ->cm_out with ctf_merge_add_type(). These routines update cmt_map
* to be the *new* type ID in ->cm_out. In this function, you can read
* "cmt_missing" as meaning "added to ->cm_out, and cmt_map updated".
*
* So at this point, we need to mop up all types where .cmt_missing == B_FALSE,
* making sure *their* .cmt_map values also point to the ->cm_out container.
*/
static void
ctf_merge_dedup_remap(ctf_merge_types_t *cmp)
{
int i;
for (i = 1; i < cmp->cm_src->ctf_typemax + 1; i++) {
ctf_id_t tid;
if (cmp->cm_tmap[i].cmt_missing == B_TRUE) {
VERIFY(cmp->cm_tmap[i].cmt_map != 0);
continue;
}
tid = i;
while (cmp->cm_tmap[tid].cmt_missing == B_FALSE) {
VERIFY(cmp->cm_tmap[tid].cmt_map != 0);
tid = cmp->cm_tmap[tid].cmt_map;
}
VERIFY(cmp->cm_tmap[tid].cmt_map != 0);
cmp->cm_tmap[i].cmt_map = cmp->cm_tmap[tid].cmt_map;
}
}
/*
* We're going to do three passes over the containers.
*
* Pass 1 checks for forward references in the output container that we know
* exist in the source container.
*
* Pass 2 adds all the missing types from the source container. As part of this
* we may be adding a type as a forward reference that doesn't exist yet.
* Any types that we encounter in this form, we need to add to a third pass.
*
* Pass 3 is the fixup pass. Here we go through and find all the types that were
* missing in the first.
*
* Importantly, we *must* call ctf_update between the second and third pass,
* otherwise several of the libctf functions will not properly find the data in
* the container. If we're doing a dedup we also fix up the type mapping.
*/
static int
ctf_merge_common(ctf_merge_types_t *cmp)
{
int ret, i;
ctf_phase_dump(cmp->cm_src, "merge-common-src", NULL);
ctf_phase_dump(cmp->cm_out, "merge-common-dest", NULL);
/* Pass 1 */
for (i = 1; i <= cmp->cm_src->ctf_typemax; i++) {
if (cmp->cm_tmap[i].cmt_forward == B_TRUE) {
ctf_dprintf("Forward %d\n", i);
ret = ctf_merge_add_sou(cmp, i, B_TRUE);
if (ret != 0) {
return (ret);
}
}
}
/* Pass 2 */
for (i = 1; i <= cmp->cm_src->ctf_typemax; i++) {
if (cmp->cm_tmap[i].cmt_missing == B_TRUE) {
ret = ctf_merge_add_type(cmp, i);
if (ret != 0) {
ctf_dprintf("Failed to merge type %d\n", i);
return (ret);
}
}
}
ret = ctf_update(cmp->cm_out);
if (ret != 0)
return (ret);
if (cmp->cm_dedup == B_TRUE) {
ctf_merge_dedup_remap(cmp);
}
ctf_dprintf("Beginning merge pass 3\n");
/* Pass 3 */
for (i = 1; i <= cmp->cm_src->ctf_typemax; i++) {
if (cmp->cm_tmap[i].cmt_fixup == B_TRUE) {
ret = ctf_merge_fixup_type(cmp, i);
if (ret != 0)
return (ret);
}
}
return (0);
}
/*
* Uniquification is slightly different from a stock merge. For starters, we
* don't need to replace any forward references in the output. In this case
* though, the types that already exist are in a parent container to the empty
* output container.
*/
static int
ctf_merge_uniquify_types(ctf_merge_types_t *cmp)
{
int i, ret;
for (i = 1; i <= cmp->cm_src->ctf_typemax; i++) {
if (cmp->cm_tmap[i].cmt_missing == B_FALSE)
continue;
ret = ctf_merge_add_type(cmp, i);
if (ret != 0)
return (ret);
}
ret = ctf_update(cmp->cm_out);
if (ret != 0)
return (ret);
for (i = 1; i <= cmp->cm_src->ctf_typemax; i++) {
if (cmp->cm_tmap[i].cmt_fixup == B_FALSE)
continue;
ret = ctf_merge_fixup_type(cmp, i);
if (ret != 0)
return (ret);
}
return (0);
}
static int
ctf_merge_types_init(ctf_merge_types_t *cmp)
{
cmp->cm_tmap = ctf_alloc(sizeof (ctf_merge_tinfo_t) *
(cmp->cm_src->ctf_typemax + 1));
if (cmp->cm_tmap == NULL)
return (ctf_set_errno(cmp->cm_out, ENOMEM));
bzero(cmp->cm_tmap, sizeof (ctf_merge_tinfo_t) *
(cmp->cm_src->ctf_typemax + 1));
return (0);
}
static void
ctf_merge_types_fini(ctf_merge_types_t *cmp)
{
ctf_free(cmp->cm_tmap, sizeof (ctf_merge_tinfo_t) *
(cmp->cm_src->ctf_typemax + 1));
}
/*
* After performing a pass, we need to go through the object and function type
* maps and potentially fix them up based on the new maps that we have.
*/
static void
ctf_merge_fixup_symmaps(ctf_merge_types_t *cmp, ctf_merge_input_t *cmi)
{
ctf_merge_objmap_t *cmo;
ctf_merge_funcmap_t *cmf;
for (cmo = list_head(&cmi->cmi_omap); cmo != NULL;
cmo = list_next(&cmi->cmi_omap, cmo)) {
VERIFY3S(cmo->cmo_tid, !=, 0);
VERIFY(cmp->cm_tmap[cmo->cmo_tid].cmt_map != 0);
cmo->cmo_tid = cmp->cm_tmap[cmo->cmo_tid].cmt_map;
}
for (cmf = list_head(&cmi->cmi_fmap); cmf != NULL;
cmf = list_next(&cmi->cmi_fmap, cmf)) {
int i;
VERIFY(cmp->cm_tmap[cmf->cmf_rtid].cmt_map != 0);
cmf->cmf_rtid = cmp->cm_tmap[cmf->cmf_rtid].cmt_map;
for (i = 0; i < cmf->cmf_argc; i++) {
VERIFY(cmp->cm_tmap[cmf->cmf_args[i]].cmt_map != 0);
cmf->cmf_args[i] =
cmp->cm_tmap[cmf->cmf_args[i]].cmt_map;
}
}
}
/*
* Merge the types contained inside of two input files. The second input file is
* always going to be the destination. We're guaranteed that it's always
* writeable.
*/
static int
ctf_merge_types(void *arg, void *arg2, void **outp, void *unsued)
{
int ret;
ctf_merge_types_t cm;
ctf_diff_t *cdp;
ctf_merge_input_t *scmi = arg;
ctf_merge_input_t *dcmi = arg2;
ctf_file_t *out = dcmi->cmi_input;
ctf_file_t *source = scmi->cmi_input;
ctf_dprintf("merging %p->%p\n", source, out);
if (!(out->ctf_flags & LCTF_RDWR))
return (ctf_set_errno(out, ECTF_RDONLY));
if (ctf_getmodel(out) != ctf_getmodel(source))
return (ctf_set_errno(out, ECTF_DMODEL));
if ((ret = ctf_diff_init(out, source, &cdp)) != 0)
return (ret);
cm.cm_out = out;
cm.cm_src = source;
cm.cm_dedup = B_FALSE;
cm.cm_unique = B_FALSE;
ret = ctf_merge_types_init(&cm);
if (ret != 0) {
ctf_diff_fini(cdp);
return (ctf_set_errno(out, ret));
}
ret = ctf_diff_types(cdp, ctf_merge_diffcb, &cm);
if (ret != 0)
goto cleanup;
ret = ctf_merge_common(&cm);
ctf_dprintf("merge common returned with %d\n", ret);
if (ret == 0) {
ret = ctf_update(out);
ctf_dprintf("update returned with %d\n", ret);
} else {
goto cleanup;
}
/*
* Now we need to fix up the object and function maps.
*/
ctf_merge_fixup_symmaps(&cm, scmi);
/*
* Now that we've fixed things up, we need to give our function and
* object maps to the destination, such that it can continue to update
* them going forward.
*/
list_move_tail(&dcmi->cmi_fmap, &scmi->cmi_fmap);
list_move_tail(&dcmi->cmi_omap, &scmi->cmi_omap);
cleanup:
if (ret == 0)
*outp = dcmi;
ctf_merge_types_fini(&cm);
ctf_diff_fini(cdp);
if (ret != 0)
return (ctf_errno(out));
ctf_phase_bump();
return (0);
}
static int
ctf_uniquify_types(ctf_merge_t *cmh, ctf_file_t *src, ctf_file_t **outp)
{
int err, ret;
ctf_file_t *out;
ctf_merge_types_t cm;
ctf_diff_t *cdp;
ctf_merge_input_t *cmi;
ctf_file_t *parent = cmh->cmh_unique;
*outp = NULL;
out = ctf_fdcreate(cmh->cmh_ofd, &err);
if (out == NULL)
return (ctf_set_errno(src, err));
out->ctf_parname = cmh->cmh_pname;
if (ctf_setmodel(out, ctf_getmodel(parent)) != 0) {
(void) ctf_set_errno(src, ctf_errno(out));
ctf_close(out);
return (CTF_ERR);
}
if (ctf_import(out, parent) != 0) {
(void) ctf_set_errno(src, ctf_errno(out));
ctf_close(out);
return (CTF_ERR);
}
if ((ret = ctf_diff_init(parent, src, &cdp)) != 0) {
ctf_close(out);
return (ctf_set_errno(src, ctf_errno(parent)));
}
cm.cm_out = parent;
cm.cm_src = src;
cm.cm_dedup = B_FALSE;
cm.cm_unique = B_TRUE;
ret = ctf_merge_types_init(&cm);
if (ret != 0) {
ctf_close(out);
ctf_diff_fini(cdp);
return (ctf_set_errno(src, ret));
}
ret = ctf_diff_types(cdp, ctf_merge_diffcb, &cm);
if (ret == 0) {
cm.cm_out = out;
ret = ctf_merge_uniquify_types(&cm);
if (ret == 0)
ret = ctf_update(out);
}
if (ret != 0) {
ctf_merge_types_fini(&cm);
ctf_diff_fini(cdp);
return (ctf_set_errno(src, ctf_errno(cm.cm_out)));
}
for (cmi = list_head(&cmh->cmh_inputs); cmi != NULL;
cmi = list_next(&cmh->cmh_inputs, cmi)) {
ctf_merge_fixup_symmaps(&cm, cmi);
}
ctf_merge_types_fini(&cm);
ctf_diff_fini(cdp);
*outp = out;
return (0);
}
static void
ctf_merge_fini_input(ctf_merge_input_t *cmi)
{
ctf_merge_objmap_t *cmo;
ctf_merge_funcmap_t *cmf;
while ((cmo = list_remove_head(&cmi->cmi_omap)) != NULL)
ctf_free(cmo, sizeof (ctf_merge_objmap_t));
while ((cmf = list_remove_head(&cmi->cmi_fmap)) != NULL)
ctf_free(cmf, sizeof (ctf_merge_funcmap_t) +
sizeof (ctf_id_t) * cmf->cmf_argc);
if (cmi->cmi_created == B_TRUE && cmi->cmi_input != NULL)
ctf_close(cmi->cmi_input);
ctf_free(cmi, sizeof (ctf_merge_input_t));
}
void
ctf_merge_fini(ctf_merge_t *cmh)
{
ctf_merge_input_t *cmi;
ctf_strfree(cmh->cmh_label);
ctf_strfree(cmh->cmh_pname);
while ((cmi = list_remove_head(&cmh->cmh_inputs)) != NULL)
ctf_merge_fini_input(cmi);
ctf_free(cmh, sizeof (ctf_merge_t));
}
ctf_merge_t *
ctf_merge_init(int fd, int *errp)
{
int err;
ctf_merge_t *out;
struct stat st;
if (errp == NULL)
errp = &err;
if (fd != -1 && fstat(fd, &st) != 0) {
*errp = EINVAL;
return (NULL);
}
out = ctf_alloc(sizeof (ctf_merge_t));
if (out == NULL) {
*errp = ENOMEM;
return (NULL);
}
if (fd == -1) {
out->cmh_msyms = B_FALSE;
} else {
out->cmh_msyms = B_TRUE;
}
list_create(&out->cmh_inputs, sizeof (ctf_merge_input_t),
offsetof(ctf_merge_input_t, cmi_node));
out->cmh_ninputs = 0;
out->cmh_nthreads = 1;
out->cmh_unique = NULL;
out->cmh_ofd = fd;
out->cmh_flags = 0;
out->cmh_label = NULL;
out->cmh_pname = NULL;
return (out);
}
int
ctf_merge_label(ctf_merge_t *cmh, const char *label)
{
char *dup;
if (label == NULL)
return (EINVAL);
dup = ctf_strdup(label);
if (dup == NULL)
return (EAGAIN);
ctf_strfree(cmh->cmh_label);
cmh->cmh_label = dup;
return (0);
}
static int
ctf_merge_add_function(ctf_merge_input_t *cmi, ctf_funcinfo_t *fip, ulong_t idx,
const char *file, const char *name, const Elf64_Sym *symp)
{
ctf_merge_funcmap_t *fmap;
fmap = ctf_alloc(sizeof (ctf_merge_funcmap_t) +
sizeof (ctf_id_t) * fip->ctc_argc);
if (fmap == NULL)
return (ENOMEM);
fmap->cmf_idx = idx;
fmap->cmf_sym = *symp;
fmap->cmf_rtid = fip->ctc_return;
fmap->cmf_flags = fip->ctc_flags;
fmap->cmf_argc = fip->ctc_argc;
fmap->cmf_name = name;
if (ELF64_ST_BIND(symp->st_info) == STB_LOCAL) {
fmap->cmf_file = file;
} else {
fmap->cmf_file = NULL;
}
if (ctf_func_args(cmi->cmi_input, idx, fmap->cmf_argc,
fmap->cmf_args) != 0) {
ctf_free(fmap, sizeof (ctf_merge_funcmap_t) +
sizeof (ctf_id_t) * fip->ctc_argc);
return (ctf_errno(cmi->cmi_input));
}
ctf_dprintf("added initial function %s, %lu, %s %u\n", name, idx,
fmap->cmf_file != NULL ? fmap->cmf_file : "global",
ELF64_ST_BIND(symp->st_info));
list_insert_tail(&cmi->cmi_fmap, fmap);
return (0);
}
static int
ctf_merge_add_object(ctf_merge_input_t *cmi, ctf_id_t id, ulong_t idx,
const char *file, const char *name, const Elf64_Sym *symp)
{
ctf_merge_objmap_t *cmo;
cmo = ctf_alloc(sizeof (ctf_merge_objmap_t));
if (cmo == NULL)
return (ENOMEM);
cmo->cmo_name = name;
if (ELF64_ST_BIND(symp->st_info) == STB_LOCAL) {
cmo->cmo_file = file;
} else {
cmo->cmo_file = NULL;
}
cmo->cmo_idx = idx;
cmo->cmo_tid = id;
cmo->cmo_sym = *symp;
list_insert_tail(&cmi->cmi_omap, cmo);
ctf_dprintf("added initial object %s, %lu, %ld, %s\n", name, idx, id,
cmo->cmo_file != NULL ? cmo->cmo_file : "global");
return (0);
}
static int
ctf_merge_add_symbol(const Elf64_Sym *symp, ulong_t idx, const char *file,
const char *name, boolean_t primary, void *arg)
{
ctf_merge_input_t *cmi = arg;
ctf_file_t *fp = cmi->cmi_input;
ushort_t *data, funcbase;
uint_t type;
ctf_funcinfo_t fi;
/*
* See if there is type information for this. If there is no
* type information for this entry or no translation, then we
* will find the value zero. This indicates no type ID for
* objects and encodes unknown information for functions.
*/
if (fp->ctf_sxlate[idx] == -1u)
return (0);
data = (ushort_t *)((uintptr_t)fp->ctf_buf + fp->ctf_sxlate[idx]);
if (*data == 0)
return (0);
type = ELF64_ST_TYPE(symp->st_info);
switch (type) {
case STT_FUNC:
funcbase = *data;
if (LCTF_INFO_KIND(fp, funcbase) != CTF_K_FUNCTION)
return (0);
data++;
fi.ctc_return = *data;
data++;
fi.ctc_argc = LCTF_INFO_VLEN(fp, funcbase);
fi.ctc_flags = 0;
if (fi.ctc_argc != 0 && data[fi.ctc_argc - 1] == 0) {
fi.ctc_flags |= CTF_FUNC_VARARG;
fi.ctc_argc--;
}
return (ctf_merge_add_function(cmi, &fi, idx, file, name,
symp));
case STT_OBJECT:
return (ctf_merge_add_object(cmi, *data, idx, file, name,
symp));
default:
return (0);
}
}
/*
* Whenever we create an entry to merge, we then go and add a second empty
* ctf_file_t which we use for the purposes of our merging. It's not the best,
* but it's the best that we've got at the moment.
*/
int
ctf_merge_add(ctf_merge_t *cmh, ctf_file_t *input)
{
int ret;
ctf_merge_input_t *cmi;
ctf_file_t *empty;
ctf_dprintf("adding input %p\n", input);
if (input->ctf_flags & LCTF_CHILD)
return (ECTF_MCHILD);
cmi = ctf_alloc(sizeof (ctf_merge_input_t));
if (cmi == NULL)
return (ENOMEM);
cmi->cmi_created = B_FALSE;
cmi->cmi_input = input;
list_create(&cmi->cmi_fmap, sizeof (ctf_merge_funcmap_t),
offsetof(ctf_merge_funcmap_t, cmf_node));
list_create(&cmi->cmi_omap, sizeof (ctf_merge_funcmap_t),
offsetof(ctf_merge_objmap_t, cmo_node));
if (cmh->cmh_msyms == B_TRUE) {
if ((ret = ctf_symtab_iter(input, ctf_merge_add_symbol,
cmi)) != 0) {
ctf_merge_fini_input(cmi);
return (ret);
}
}
list_insert_tail(&cmh->cmh_inputs, cmi);
cmh->cmh_ninputs++;
/* And now the empty one to merge into this */
cmi = ctf_alloc(sizeof (ctf_merge_input_t));
if (cmi == NULL)
return (ENOMEM);
list_create(&cmi->cmi_fmap, sizeof (ctf_merge_funcmap_t),
offsetof(ctf_merge_funcmap_t, cmf_node));
list_create(&cmi->cmi_omap, sizeof (ctf_merge_funcmap_t),
offsetof(ctf_merge_objmap_t, cmo_node));
empty = ctf_fdcreate(cmh->cmh_ofd, &ret);
if (empty == NULL)
return (ret);
cmi->cmi_input = empty;
cmi->cmi_created = B_TRUE;
if (ctf_setmodel(empty, ctf_getmodel(input)) == CTF_ERR) {
return (ctf_errno(empty));
}
list_insert_tail(&cmh->cmh_inputs, cmi);
cmh->cmh_ninputs++;
ctf_dprintf("added containers %p and %p\n", input, empty);
return (0);
}
int
ctf_merge_uniquify(ctf_merge_t *cmh, ctf_file_t *u, const char *pname)
{
char *dup;
if (u->ctf_flags & LCTF_CHILD)
return (ECTF_MCHILD);
if (pname == NULL)
return (EINVAL);
dup = ctf_strdup(pname);
if (dup == NULL)
return (EINVAL);
ctf_strfree(cmh->cmh_pname);
cmh->cmh_pname = dup;
cmh->cmh_unique = u;
return (0);
}
/*
* Symbol matching rules: the purpose of this is to verify that the type
* information that we have for a given symbol actually matches the output
* symbol. This is unfortunately complicated by several different factors:
*
* 1. When merging multiple .o's into a single item, the symbol table index will
* not match.
*
* 2. Visibility of a symbol may not be identical to the object file or the
* DWARF information due to symbol reduction via a mapfile.
*
* As such, we have to employ the following rules:
*
* 1. A global symbol table entry always matches a global CTF symbol with the
* same name.
*
* 2. A local symbol table entry always matches a local CTF symbol if they have
* the same name and they belong to the same file.
*
* 3. A weak symbol matches a non-weak symbol. This happens if we find that the
* types match, the values match, the sizes match, and the section indexes
* match. This happens when we do a conversion in one pass, it almost never
* happens when we're merging multiple object files. If we match a CTF global
* symbol, that's a fixed match, otherwise it's a fuzzy match.
*
* 4. A local symbol table entry matches a global CTF entry if the
* other pieces fail, but they have the same name. This is considered a fuzzy
* match and is not used unless we have no other options.
*
* 5. A weak symbol table entry matches a weak CTF entry if the other pieces
* fail, but they have the same name. This is considered a fuzzy match and is
* not used unless we have no other options. When merging independent .o files,
* this is often the only recourse we have to matching weak symbols.
*
* In the end, this would all be much simpler if we were able to do this as part
* of libld which would be able to do all the symbol transformations.
*/
static boolean_t
ctf_merge_symbol_match(const char *ctf_file, const char *ctf_name,
const Elf64_Sym *ctf_symp, const char *symtab_file, const char *symtab_name,
const Elf64_Sym *symtab_symp, boolean_t *is_fuzzy)
{
*is_fuzzy = B_FALSE;
uint_t symtab_bind, ctf_bind;
symtab_bind = ELF64_ST_BIND(symtab_symp->st_info);
ctf_bind = ELF64_ST_BIND(ctf_symp->st_info);
ctf_dprintf("comparing merge match for %s/%s/%u->%s/%s/%u\n",
symtab_file, symtab_name, symtab_bind,
ctf_file, ctf_name, ctf_bind);
if (strcmp(ctf_name, symtab_name) != 0) {
return (B_FALSE);
}
if (symtab_bind == STB_GLOBAL && ctf_bind == STB_GLOBAL) {
return (B_TRUE);
} else if (symtab_bind == STB_GLOBAL) {
return (B_FALSE);
}
if (ctf_bind == STB_LOCAL && ctf_bind == symtab_bind &&
ctf_file != NULL && symtab_file != NULL &&
strcmp(ctf_file, symtab_file) == 0) {
return (B_TRUE);
}
if (symtab_bind == STB_WEAK && ctf_bind != STB_WEAK &&
ELF64_ST_TYPE(symtab_symp->st_info) ==
ELF64_ST_TYPE(ctf_symp->st_info) &&
symtab_symp->st_value == ctf_symp->st_value &&
symtab_symp->st_size == ctf_symp->st_size &&
symtab_symp->st_shndx == ctf_symp->st_shndx) {
if (ctf_bind == STB_GLOBAL) {
return (B_TRUE);
}
if (ctf_bind == STB_LOCAL && ctf_file != NULL &&
symtab_file != NULL && strcmp(ctf_file, symtab_file) == 0) {
*is_fuzzy = B_TRUE;
return (B_TRUE);
}
}
if (ctf_bind == STB_GLOBAL ||
(ctf_bind == STB_WEAK && symtab_bind == STB_WEAK)) {
*is_fuzzy = B_TRUE;
return (B_TRUE);
}
return (B_FALSE);
}
/*
* For each symbol, try and find a match. We will attempt to find an exact
* match; however, we will settle for a fuzzy match in general. There is one
* case where we will not opt to use a fuzzy match, which is when performing the
* deduplication of a container. In such a case we are trying to reduce common
* types and a fuzzy match would be inappropriate as if we're in the context of
* a single container, the conversion process should have identified any exact
* or fuzzy matches that were required.
*/
static int
ctf_merge_symbols(const Elf64_Sym *symp, ulong_t idx, const char *file,
const char *name, boolean_t primary, void *arg)
{
int err;
uint_t type, bind;
ctf_merge_symbol_arg_t *csa = arg;
ctf_file_t *fp = csa->cmsa_out;
type = ELF64_ST_TYPE(symp->st_info);
bind = ELF64_ST_BIND(symp->st_info);
ctf_dprintf("Trying to find match for %s/%s/%u\n", file, name,
ELF64_ST_BIND(symp->st_info));
if (type == STT_OBJECT) {
ctf_merge_objmap_t *cmo, *match = NULL;
for (cmo = list_head(csa->cmsa_objmap); cmo != NULL;
cmo = list_next(csa->cmsa_objmap, cmo)) {
boolean_t is_fuzzy = B_FALSE;
if (ctf_merge_symbol_match(cmo->cmo_file, cmo->cmo_name,
&cmo->cmo_sym, file, name, symp, &is_fuzzy)) {
if (is_fuzzy && csa->cmsa_dedup &&
bind != STB_WEAK) {
continue;
}
match = cmo;
if (is_fuzzy) {
continue;
}
break;
}
}
if (match == NULL) {
return (0);
}
if ((err = ctf_add_object(fp, idx, match->cmo_tid)) != 0) {
ctf_dprintf("Failed to add symbol %s->%d: %s\n", name,
match->cmo_tid, ctf_errmsg(ctf_errno(fp)));
return (ctf_errno(fp));
}
ctf_dprintf("mapped object into output %s/%s->%ld\n", file,
name, match->cmo_tid);
} else {
ctf_merge_funcmap_t *cmf, *match = NULL;
ctf_funcinfo_t fi;
for (cmf = list_head(csa->cmsa_funcmap); cmf != NULL;
cmf = list_next(csa->cmsa_funcmap, cmf)) {
boolean_t is_fuzzy = B_FALSE;
if (ctf_merge_symbol_match(cmf->cmf_file, cmf->cmf_name,
&cmf->cmf_sym, file, name, symp, &is_fuzzy)) {
if (is_fuzzy && csa->cmsa_dedup &&
bind != STB_WEAK) {
continue;
}
match = cmf;
if (is_fuzzy) {
continue;
}
break;
}
}
if (match == NULL) {
return (0);
}
fi.ctc_return = match->cmf_rtid;
fi.ctc_argc = match->cmf_argc;
fi.ctc_flags = match->cmf_flags;
if ((err = ctf_add_function(fp, idx, &fi, match->cmf_args)) !=
0) {
ctf_dprintf("Failed to add function %s: %s\n", name,
ctf_errmsg(ctf_errno(fp)));
return (ctf_errno(fp));
}
ctf_dprintf("mapped function into output %s/%s\n", file,
name);
}
return (0);
}
int
ctf_merge_merge(ctf_merge_t *cmh, ctf_file_t **outp)
{
int err, merr;
ctf_merge_input_t *cmi;
ctf_id_t ltype;
mergeq_t *mqp;
ctf_merge_input_t *final;
ctf_file_t *out;
ctf_dprintf("Beginning ctf_merge_merge()\n");
if (cmh->cmh_label != NULL && cmh->cmh_unique != NULL) {
const char *label = ctf_label_topmost(cmh->cmh_unique);
if (label == NULL)
return (ECTF_NOLABEL);
if (strcmp(label, cmh->cmh_label) != 0)
return (ECTF_LCONFLICT);
}
if (mergeq_init(&mqp, cmh->cmh_nthreads) == -1) {
return (errno);
}
VERIFY(cmh->cmh_ninputs % 2 == 0);
for (cmi = list_head(&cmh->cmh_inputs); cmi != NULL;
cmi = list_next(&cmh->cmh_inputs, cmi)) {
if (mergeq_add(mqp, cmi) == -1) {
err = errno;
mergeq_fini(mqp);
}
}
err = mergeq_merge(mqp, ctf_merge_types, NULL, (void **)&final, &merr);
mergeq_fini(mqp);
if (err == MERGEQ_ERROR) {
return (errno);
} else if (err == MERGEQ_UERROR) {
return (merr);
}
/*
* Disassociate the generated ctf_file_t from the original input. That
* way when the input gets cleaned up, we don't accidentally kill the
* final reference to the ctf_file_t. If it gets uniquified then we'll
* kill it.
*/
VERIFY(final->cmi_input != NULL);
out = final->cmi_input;
final->cmi_input = NULL;
ctf_dprintf("preparing to uniquify against: %p\n", cmh->cmh_unique);
if (cmh->cmh_unique != NULL) {
ctf_file_t *u;
err = ctf_uniquify_types(cmh, out, &u);
if (err != 0) {
err = ctf_errno(out);
ctf_close(out);
return (err);
}
ctf_close(out);
out = u;
}
ltype = out->ctf_typemax;
if ((out->ctf_flags & LCTF_CHILD) && ltype != 0)
ltype += CTF_CHILD_START;
ctf_dprintf("trying to add the label\n");
if (cmh->cmh_label != NULL &&
ctf_add_label(out, cmh->cmh_label, ltype, 0) != 0) {
ctf_close(out);
return (ctf_errno(out));
}
ctf_dprintf("merging symbols and the like\n");
if (cmh->cmh_msyms == B_TRUE) {
ctf_merge_symbol_arg_t arg;
arg.cmsa_objmap = &final->cmi_omap;
arg.cmsa_funcmap = &final->cmi_fmap;
arg.cmsa_out = out;
arg.cmsa_dedup = B_FALSE;
err = ctf_symtab_iter(out, ctf_merge_symbols, &arg);
if (err != 0) {
ctf_close(out);
return (err);
}
}
err = ctf_update(out);
if (err != 0) {
err = ctf_errno(out);
ctf_close(out);
return (err);
}
*outp = out;
return (0);
}
/*
* When we get told that something is unique, eg. same is B_FALSE, then that
* tells us that we need to add it to the output. If same is B_TRUE, then we'll
* want to record it in the mapping table so that we know how to redirect types
* to the extant ones.
*/
static void
ctf_dedup_cb(ctf_file_t *ifp, ctf_id_t iid, boolean_t same, ctf_file_t *ofp,
ctf_id_t oid, void *arg)
{
ctf_merge_types_t *cmp = arg;
ctf_merge_tinfo_t *cmt = cmp->cm_tmap;
if (same == B_TRUE) {
/*
* The output id here may itself map to something else.
* Therefore, we need to basically walk a chain and see what it
* points to until it itself points to a base type, eg. -1.
* Otherwise we'll dedup to something which no longer exists.
*/
while (cmt[oid].cmt_missing == B_FALSE)
oid = cmt[oid].cmt_map;
cmt[iid].cmt_map = oid;
ctf_dprintf("dedup %d->%d \n", iid, oid);
} else {
VERIFY(cmt[iid].cmt_map == 0);
cmt[iid].cmt_missing = B_TRUE;
ctf_dprintf("dedup %d is missing\n", iid);
}
}
/*
* Dedup a CTF container.
*
* DWARF and other encoding formats that we use to create CTF data may create
* multiple copies of a given type. However, after doing a conversion, and
* before doing a merge, we'd prefer, if possible, to have every input container
* to be unique.
*
* Doing a deduplication is like a normal merge. However, when we diff the types
* in the container, rather than doing a normal diff, we instead want to diff
* against any already processed types. eg, for a given type i in a container,
* we want to diff it from 0 to i - 1.
*/
int
ctf_merge_dedup(ctf_merge_t *cmp, ctf_file_t **outp)
{
int ret;
ctf_diff_t *cdp = NULL;
ctf_merge_input_t *cmi, *cmc;
ctf_file_t *ifp, *ofp;
ctf_merge_types_t cm;
if (cmp == NULL || outp == NULL)
return (EINVAL);
ctf_dprintf("encountered %d inputs\n", cmp->cmh_ninputs);
if (cmp->cmh_ninputs != 2)
return (EINVAL);
ctf_dprintf("passed argument sanity check\n");
cmi = list_head(&cmp->cmh_inputs);
VERIFY(cmi != NULL);
cmc = list_next(&cmp->cmh_inputs, cmi);
VERIFY(cmc != NULL);
ifp = cmi->cmi_input;
ofp = cmc->cmi_input;
VERIFY(ifp != NULL);
VERIFY(ofp != NULL);
cm.cm_src = ifp;
cm.cm_out = ofp;
cm.cm_dedup = B_TRUE;
cm.cm_unique = B_FALSE;
if ((ret = ctf_merge_types_init(&cm)) != 0) {
return (ret);
}
if ((ret = ctf_diff_init(ifp, ifp, &cdp)) != 0)
goto err;
ctf_dprintf("Successfully initialized dedup\n");
if ((ret = ctf_diff_self(cdp, ctf_dedup_cb, &cm)) != 0)
goto err;
ctf_dprintf("Successfully diffed types\n");
ret = ctf_merge_common(&cm);
ctf_dprintf("deduping types result: %d\n", ret);
if (ret == 0)
ret = ctf_update(cm.cm_out);
if (ret != 0)
goto err;
ctf_dprintf("Successfully deduped types\n");
ctf_phase_dump(cm.cm_out, "dedup-pre-syms", NULL);
/*
* Now we need to fix up the object and function maps.
*/
ctf_merge_fixup_symmaps(&cm, cmi);
if (cmp->cmh_msyms == B_TRUE) {
ctf_merge_symbol_arg_t arg;
arg.cmsa_objmap = &cmi->cmi_omap;
arg.cmsa_funcmap = &cmi->cmi_fmap;
arg.cmsa_out = cm.cm_out;
arg.cmsa_dedup = B_TRUE;
ret = ctf_symtab_iter(cm.cm_out, ctf_merge_symbols, &arg);
if (ret != 0) {
ctf_dprintf("failed to dedup symbols: %s\n",
ctf_errmsg(ret));
goto err;
}
}
ret = ctf_update(cm.cm_out);
if (ret == 0) {
cmc->cmi_input = NULL;
*outp = cm.cm_out;
}
ctf_phase_dump(cm.cm_out, "dedup-post-syms", NULL);
err:
ctf_merge_types_fini(&cm);
ctf_diff_fini(cdp);
return (ret);
}
int
ctf_merge_set_nthreads(ctf_merge_t *cmp, const uint_t nthrs)
{
if (nthrs == 0)
return (EINVAL);
cmp->cmh_nthreads = nthrs;
return (0);
}
|