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
|
package main
import (
"fmt"
"os"
"os/exec"
"path/filepath"
"runtime"
"syscall"
"unsafe"
)
// scenarios maps scenario names to their execution functions.
var scenarios = map[string]func() error{
"crash": crash,
"open-basic": openBasic,
"open-creat": openCreat,
"open-by-handle-at": openByHandleAt,
"open-enoent": openEnoent,
"open-rdonly-write": openRdonlyWrite,
"open-pid-filter": openPidFilter,
"readwrite-basic": readwriteBasic,
"readwrite-pread": readwritePread,
"readwrite-pwrite": readwritePwrite,
"readwrite-readv": readwriteReadv,
"readwrite-writev": readwriteWritev,
"readwrite-wronly-read": readwriteWronlyRead,
"readwrite-rdonly-write": readwriteRdonlyWrite,
"readwrite-pread-invalid": readwritePreadInvalid,
"readwrite-pwrite-invalid": readwritePwriteInvalid,
"close-basic": closeBasic,
"close-range": closeRange,
"close-invalid-fd": closeInvalidFd,
"close-double-close": closeDoubleClose,
"close-range-empty": closeRangeEmpty,
"dup-basic": dupBasic,
"dup-dup2": dupDup2,
"dup-dup3": dupDup3,
"dup-invalid-fd": dupInvalidFd,
"dup2-same-fd": dup2SameFd,
"dup3-invalid-flags": dup3InvalidFlags,
"fcntl-dupfd": fcntlDupfd,
"fcntl-setfl": fcntlSetfl,
"fcntl-dupfd-cloexec": fcntlDupfdCloexec,
"fcntl-invalid-fd": fcntlInvalidFd,
"fcntl-dupfd-max": fcntlDupfdMax,
"rename-basic": renameBasic,
"rename-renameat": renameRenameat,
"rename-renameat2": renameRenameat2,
"rename-enoent": renameEnoent,
"rename-noreplace": renameNoreplace,
"link-basic": linkBasic,
"link-linkat": linkLinkat,
"link-symlinkat": linkSymlinkat,
"link-readlinkat": linkReadlinkat,
"unlink-basic": unlinkBasic,
"unlink-unlinkat": unlinkUnlinkat,
"unlink-rmdir": unlinkRmdir,
"dir-basic": dirBasic,
"dir-mkdirat": dirMkdirat,
"dir-chdir": dirChdir,
"dir-getdents": dirGetdents,
"stat-basic": statBasic,
"stat-fstat": statFstat,
"stat-lstat": statLstat,
"stat-newfstatat": statNewfstatat,
"stat-statx": statStatx,
"stat-access": statAccess,
"stat-faccessat": statFaccessat,
"sync-basic": syncBasic,
"sync-fdatasync": syncFdatasync,
"sync-sync": syncSync,
"sync-sync-file-range": syncSyncFileRange,
"truncate-basic": truncateBasic,
"truncate-ftruncate": truncateFtruncate,
"iouring-setup": iouringSetup,
"iouring-enter": iouringEnter,
"iouring-register": iouringRegister,
}
func makeTempDir(prefix string) (string, func(), error) {
dir, err := os.MkdirTemp("", fmt.Sprintf("ioworkload-%s-", prefix))
if err != nil {
return "", nil, fmt.Errorf("create temp dir: %w", err)
}
cleanup := func() { os.RemoveAll(dir) }
return dir, cleanup, nil
}
// openBasic opens a file with O_RDWR|O_CREAT, then closes it.
func openBasic() error {
dir, cleanup, err := makeTempDir("open-basic")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "testfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
return syscall.Close(fd)
}
// openCreat creates a file via raw SYS_CREAT.
// Go's syscall.Creat wraps Open which delegates to openat on amd64,
// so we use the raw syscall to actually exercise the creat tracepoint.
func openCreat() error {
dir, cleanup, err := makeTempDir("open-creat")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "creatfile.txt")
pathBytes, err := syscall.BytePtrFromString(path)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
fd, _, errno := syscall.Syscall(syscall.SYS_CREAT, uintptr(unsafe.Pointer(pathBytes)), 0o644, 0)
runtime.KeepAlive(pathBytes)
if errno != 0 {
return fmt.Errorf("creat: %w", errno)
}
return syscall.Close(int(fd))
}
// openEnoent attempts to open a nonexistent file path. The openat syscall
// returns ENOENT, but ior should still capture the enter_openat tracepoint
// because the filename is read on entry before the syscall executes.
func openEnoent() error {
dir, cleanup, err := makeTempDir("open-enoent")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "nonexistent", "enoentfile.txt")
_, err = syscall.Open(path, syscall.O_RDONLY, 0)
if err == nil {
return fmt.Errorf("expected ENOENT, but open succeeded")
}
return nil
}
// openRdonlyWrite opens a file O_RDONLY, then attempts to write to it.
// The write fails with EBADF, but ior should capture both the openat
// tracepoint and the write tracepoint.
func openRdonlyWrite() error {
dir, cleanup, err := makeTempDir("open-rdonly-write")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "rdonlyfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("create file: %w", err)
}
syscall.Close(fd)
fd, err = syscall.Open(path, syscall.O_RDONLY, 0)
if err != nil {
return fmt.Errorf("open rdonly: %w", err)
}
defer syscall.Close(fd)
_, err = syscall.Write(fd, []byte("should fail"))
if err == nil {
return fmt.Errorf("expected write to rdonly fd to fail")
}
return nil
}
// openPidFilter spawns a child process that performs file I/O. Since ior
// filters by the workload PID, the child's I/O should NOT appear in results.
// The parent also performs its own open so the test can verify positive and
// negative expectations simultaneously.
func openPidFilter() error {
dir, cleanup, err := makeTempDir("open-pid-filter")
if err != nil {
return err
}
defer cleanup()
// Parent opens a file (should be captured by ior).
parentPath := filepath.Join(dir, "parentfile.txt")
fd, err := syscall.Open(parentPath, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("parent open: %w", err)
}
syscall.Close(fd)
// Spawn a child process that creates a file with a distinctive name.
childPath := filepath.Join(dir, "childfile.txt")
cmd := exec.Command("touch", childPath)
if err := cmd.Run(); err != nil {
return fmt.Errorf("child touch: %w", err)
}
return nil
}
// readwriteBasic opens a file, writes data, seeks to start, reads it back.
func readwriteBasic() error {
dir, cleanup, err := makeTempDir("readwrite-basic")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "rwfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
data := []byte("hello from ioworkload")
if _, err := syscall.Write(fd, data); err != nil {
return fmt.Errorf("write: %w", err)
}
if _, err := syscall.Seek(fd, 0, 0); err != nil {
return fmt.Errorf("seek: %w", err)
}
buf := make([]byte, len(data))
if _, err := syscall.Read(fd, buf); err != nil {
return fmt.Errorf("read: %w", err)
}
return nil
}
// readwritePread opens a file, writes data, then reads it back via pread64.
func readwritePread() error {
dir, cleanup, err := makeTempDir("readwrite-pread")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "preadfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
data := []byte("pread test data")
if _, err := syscall.Write(fd, data); err != nil {
return fmt.Errorf("write: %w", err)
}
buf := make([]byte, len(data))
if _, err := syscall.Pread(fd, buf, 0); err != nil {
return fmt.Errorf("pread: %w", err)
}
return nil
}
// readwritePwrite opens a file and writes data via pwrite64.
func readwritePwrite() error {
dir, cleanup, err := makeTempDir("readwrite-pwrite")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "pwritefile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
if _, err := syscall.Pwrite(fd, []byte("pwrite test data"), 0); err != nil {
return fmt.Errorf("pwrite: %w", err)
}
return nil
}
// readwriteReadv opens a file, writes data, then reads it back via readv.
func readwriteReadv() error {
dir, cleanup, err := makeTempDir("readwrite-readv")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "readvfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
data := []byte("readv test data here")
if _, err := syscall.Write(fd, data); err != nil {
return fmt.Errorf("write: %w", err)
}
if _, err := syscall.Seek(fd, 0, 0); err != nil {
return fmt.Errorf("seek: %w", err)
}
buf1 := make([]byte, 5)
buf2 := make([]byte, 15)
iovs := []syscall.Iovec{
{Base: &buf1[0], Len: uint64(len(buf1))},
{Base: &buf2[0], Len: uint64(len(buf2))},
}
_, _, errno := syscall.Syscall(syscall.SYS_READV, uintptr(fd), uintptr(unsafe.Pointer(&iovs[0])), uintptr(len(iovs)))
runtime.KeepAlive(buf1)
runtime.KeepAlive(buf2)
if errno != 0 {
return fmt.Errorf("readv: %w", errno)
}
return nil
}
// readwriteWritev opens a file and writes data via writev.
func readwriteWritev() error {
dir, cleanup, err := makeTempDir("readwrite-writev")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "writevfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
buf1 := []byte("writev ")
buf2 := []byte("test data")
iovs := []syscall.Iovec{
{Base: &buf1[0], Len: uint64(len(buf1))},
{Base: &buf2[0], Len: uint64(len(buf2))},
}
_, _, errno := syscall.Syscall(syscall.SYS_WRITEV, uintptr(fd), uintptr(unsafe.Pointer(&iovs[0])), uintptr(len(iovs)))
runtime.KeepAlive(buf1)
runtime.KeepAlive(buf2)
if errno != 0 {
return fmt.Errorf("writev: %w", errno)
}
return nil
}
// readwriteWronlyRead opens a file O_WRONLY, then attempts to read from it.
// The read fails with EBADF, but ior should capture the enter_read tracepoint
// because arguments are read on syscall entry before the kernel returns an error.
func readwriteWronlyRead() error {
dir, cleanup, err := makeTempDir("readwrite-wronly-read")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "wronlyfile.txt")
fd, err := syscall.Open(path, syscall.O_WRONLY|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
buf := make([]byte, 16)
_, err = syscall.Read(fd, buf)
if err == nil {
return fmt.Errorf("expected read from wronly fd to fail")
}
return nil
}
// readwriteRdonlyWrite opens a file O_RDONLY, then attempts to write to it.
// The write fails with EBADF, but ior should capture the enter_write tracepoint
// because arguments are read on syscall entry before the kernel returns an error.
func readwriteRdonlyWrite() error {
dir, cleanup, err := makeTempDir("readwrite-rdonly-write")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "rdonlywritefile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("create file: %w", err)
}
syscall.Close(fd)
fd, err = syscall.Open(path, syscall.O_RDONLY, 0)
if err != nil {
return fmt.Errorf("open rdonly: %w", err)
}
defer syscall.Close(fd)
_, err = syscall.Write(fd, []byte("should fail"))
if err == nil {
return fmt.Errorf("expected write to rdonly fd to fail")
}
return nil
}
// readwritePreadInvalid calls pread64 with a negative offset (-1).
// The syscall fails with EINVAL, but ior should capture the enter_pread64
// tracepoint because arguments are read on syscall entry.
func readwritePreadInvalid() error {
dir, cleanup, err := makeTempDir("readwrite-pread-invalid")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "preadinvalid.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
if _, err := syscall.Write(fd, []byte("some data")); err != nil {
return fmt.Errorf("write: %w", err)
}
buf := make([]byte, 16)
_, err = syscall.Pread(fd, buf, -1)
if err == nil {
return fmt.Errorf("expected pread with negative offset to fail")
}
return nil
}
// readwritePwriteInvalid calls pwrite64 with a negative offset (-1).
// The syscall fails with EINVAL, but ior should capture the enter_pwrite64
// tracepoint because arguments are read on syscall entry.
func readwritePwriteInvalid() error {
dir, cleanup, err := makeTempDir("readwrite-pwrite-invalid")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "pwriteinvalid.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
_, err = syscall.Pwrite(fd, []byte("should fail"), -1)
if err == nil {
return fmt.Errorf("expected pwrite with negative offset to fail")
}
return nil
}
// closeBasic opens multiple files and closes them.
func closeBasic() error {
dir, cleanup, err := makeTempDir("close-basic")
if err != nil {
return err
}
defer cleanup()
var fds []int
for i := range 3 {
path := filepath.Join(dir, fmt.Sprintf("closefile-%d.txt", i))
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open %d: %w", i, err)
}
fds = append(fds, fd)
}
for _, fd := range fds {
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close fd %d: %w", fd, err)
}
}
return nil
}
// closeRange opens multiple files and closes a range of them via close_range(2).
func closeRange() error {
dir, cleanup, err := makeTempDir("close-range")
if err != nil {
return err
}
defer cleanup()
var fds []int
for i := range 3 {
path := filepath.Join(dir, fmt.Sprintf("closerangefile-%d.txt", i))
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open %d: %w", i, err)
}
fds = append(fds, fd)
}
if fds[2]-fds[0] != 2 {
return fmt.Errorf("fds not contiguous: %v", fds)
}
first := uintptr(fds[0])
last := uintptr(fds[len(fds)-1])
_, _, errno := syscall.Syscall(sysCloseRange, first, last, 0)
if errno != 0 {
return fmt.Errorf("close_range: %w", errno)
}
return nil
}
const sysCloseRange = 436
// closeInvalidFd attempts to close a very high fd number that is not open.
// The close fails with EBADF, but ior should capture the enter_close tracepoint
// because arguments are read on syscall entry before the kernel returns an error.
func closeInvalidFd() error {
err := syscall.Close(99999)
if err == nil {
return fmt.Errorf("expected close of invalid fd to fail")
}
return nil
}
// closeDoubleClose opens a file, closes it normally, then closes the same fd again.
// The second close fails with EBADF, but ior should capture both enter_close
// tracepoints because arguments are read on syscall entry.
func closeDoubleClose() error {
dir, cleanup, err := makeTempDir("close-double-close")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "doubleclosefile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("first close: %w", err)
}
err = syscall.Close(fd)
if err == nil {
return fmt.Errorf("expected second close of same fd to fail")
}
return nil
}
// closeRangeEmpty calls close_range(2) with a range of very high fd numbers
// (9000–9999) where no fds are open. The syscall succeeds (empty range is valid),
// and ior should capture the enter_close_range tracepoint.
func closeRangeEmpty() error {
_, _, errno := syscall.Syscall(sysCloseRange, 9000, 9999, 0)
if errno != 0 {
return fmt.Errorf("close_range: %w", errno)
}
return nil
}
// dupBasic opens a file, dups the fd, writes via the dup, closes both.
func dupBasic() error {
dir, cleanup, err := makeTempDir("dup-basic")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "dupfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
newFd, err := syscall.Dup(fd)
if err != nil {
return fmt.Errorf("dup: %w", err)
}
defer syscall.Close(newFd)
if _, err := syscall.Write(newFd, []byte("via dup")); err != nil {
return fmt.Errorf("write via dup: %w", err)
}
return nil
}
// dupDup2 opens a file and duplicates the fd onto a specific target fd via dup2.
func dupDup2() error {
dir, cleanup, err := makeTempDir("dup-dup2")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "dup2file.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
// Use a high fd number to avoid collisions.
targetFd := 500
if err := syscall.Dup2(fd, targetFd); err != nil {
return fmt.Errorf("dup2: %w", err)
}
defer syscall.Close(targetFd)
if _, err := syscall.Write(targetFd, []byte("via dup2")); err != nil {
return fmt.Errorf("write via dup2: %w", err)
}
return nil
}
// dupDup3 opens a file and duplicates the fd onto a specific target fd via dup3
// with O_CLOEXEC flag.
func dupDup3() error {
dir, cleanup, err := makeTempDir("dup-dup3")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "dup3file.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
// Use a high fd number to avoid collisions.
targetFd := 501
if err := syscall.Dup3(fd, targetFd, syscall.O_CLOEXEC); err != nil {
return fmt.Errorf("dup3: %w", err)
}
defer syscall.Close(targetFd)
if _, err := syscall.Write(targetFd, []byte("via dup3")); err != nil {
return fmt.Errorf("write via dup3: %w", err)
}
return nil
}
// dupInvalidFd attempts to dup a very high invalid fd number.
// The syscall fails with EBADF, but ior should capture the enter_dup
// tracepoint because arguments are read on syscall entry.
func dupInvalidFd() error {
_, err := syscall.Dup(99999)
if err == nil {
return fmt.Errorf("expected dup of invalid fd to fail")
}
return nil
}
// dup2SameFd calls dup2 with the same fd for both oldfd and newfd.
// Per POSIX, dup2(fd, fd) is a no-op that returns fd without closing
// and reopening. ior should capture the enter_dup2 tracepoint.
func dup2SameFd() error {
dir, cleanup, err := makeTempDir("dup2-same-fd")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "dup2samefile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
if err := syscall.Dup2(fd, fd); err != nil {
return fmt.Errorf("dup2 same fd: %w", err)
}
return nil
}
// dup3InvalidFlags calls dup3 with an invalid flags value.
// dup3 only accepts O_CLOEXEC; any other flag causes EINVAL.
// ior should capture the enter_dup3 tracepoint.
func dup3InvalidFlags() error {
dir, cleanup, err := makeTempDir("dup3-invalid-flags")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "dup3flagsfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
targetFd := 502
_, _, errno := syscall.Syscall(syscall.SYS_DUP3, uintptr(fd), uintptr(targetFd), 0xBAD)
if errno == 0 {
syscall.Close(targetFd)
return fmt.Errorf("expected dup3 with invalid flags to fail")
}
return nil
}
// fcntlDupfd uses fcntl F_DUPFD to duplicate a file descriptor.
func fcntlDupfd() error {
dir, cleanup, err := makeTempDir("fcntl-dupfd")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "fcntlfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
newFd, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_DUPFD, 0)
if errno != 0 {
return fmt.Errorf("fcntl F_DUPFD: %w", errno)
}
defer syscall.Close(int(newFd))
if _, err := syscall.Write(int(newFd), []byte("via fcntl")); err != nil {
return fmt.Errorf("write via fcntl dup: %w", err)
}
return nil
}
// fcntlSetfl uses fcntl F_GETFL/F_SETFL to read and modify file status flags.
func fcntlSetfl() error {
dir, cleanup, err := makeTempDir("fcntl-setfl")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "fcntlsetflfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
flags, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_GETFL, 0)
if errno != 0 {
return fmt.Errorf("fcntl F_GETFL: %w", errno)
}
_, _, errno = syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_SETFL, flags|syscall.O_APPEND)
if errno != 0 {
return fmt.Errorf("fcntl F_SETFL: %w", errno)
}
if _, err := syscall.Write(fd, []byte("appended via fcntl setfl")); err != nil {
return fmt.Errorf("write: %w", err)
}
return nil
}
// fcntlDupfdCloexec uses fcntl F_DUPFD_CLOEXEC to duplicate a file descriptor
// with the close-on-exec flag set.
func fcntlDupfdCloexec() error {
dir, cleanup, err := makeTempDir("fcntl-dupfd-cloexec")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "fcntlcloexecfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
newFd, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_DUPFD_CLOEXEC, 0)
if errno != 0 {
return fmt.Errorf("fcntl F_DUPFD_CLOEXEC: %w", errno)
}
defer syscall.Close(int(newFd))
if _, err := syscall.Write(int(newFd), []byte("via fcntl dupfd cloexec")); err != nil {
return fmt.Errorf("write via fcntl dup cloexec: %w", err)
}
return nil
}
// fcntlInvalidFd calls fcntl F_GETFL on an invalid fd (99999).
// The syscall fails with EBADF, but ior should capture the enter_fcntl
// tracepoint because it is recorded on syscall entry.
func fcntlInvalidFd() error {
_, _, errno := syscall.Syscall(syscall.SYS_FCNTL, 99999, syscall.F_GETFL, 0)
if errno == 0 {
return fmt.Errorf("expected fcntl on invalid fd to fail")
}
return nil
}
// fcntlDupfdMax opens a file and calls fcntl F_DUPFD with a minfd value
// that exceeds the process RLIMIT_NOFILE. The kernel rejects this with
// EINVAL, but ior should capture the enter_fcntl tracepoint.
func fcntlDupfdMax() error {
dir, cleanup, err := makeTempDir("fcntl-dupfd-max")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "fcntldupfdmaxfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
// Use a minfd far beyond any realistic RLIMIT_NOFILE.
_, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_DUPFD, 1<<30)
if errno == 0 {
return fmt.Errorf("expected fcntl F_DUPFD with extreme minfd to fail")
}
return nil
}
// renameBasic creates a file and renames it via rename(2).
// Uses raw SYS_RENAME because Go's syscall.Rename wraps renameat on amd64.
func renameBasic() error {
dir, cleanup, err := makeTempDir("rename-basic")
if err != nil {
return err
}
defer cleanup()
oldPath := filepath.Join(dir, "oldname.txt")
newPath := filepath.Join(dir, "newname.txt")
fd, err := syscall.Open(oldPath, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
oldBytes, err := syscall.BytePtrFromString(oldPath)
if err != nil {
return fmt.Errorf("old path bytes: %w", err)
}
newBytes, err := syscall.BytePtrFromString(newPath)
if err != nil {
return fmt.Errorf("new path bytes: %w", err)
}
_, _, errno := syscall.Syscall(
syscall.SYS_RENAME,
uintptr(unsafe.Pointer(oldBytes)),
uintptr(unsafe.Pointer(newBytes)),
0,
)
runtime.KeepAlive(oldBytes)
runtime.KeepAlive(newBytes)
if errno != 0 {
return fmt.Errorf("rename: %w", errno)
}
return nil
}
// renameRenameat creates a file and renames it via renameat(2).
func renameRenameat() error {
dir, cleanup, err := makeTempDir("rename-renameat")
if err != nil {
return err
}
defer cleanup()
oldName := "renameat-old.txt"
newName := "renameat-new.txt"
path := filepath.Join(dir, oldName)
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
dirFD, err := syscall.Open(dir, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return fmt.Errorf("open dir: %w", err)
}
defer syscall.Close(dirFD)
oldBytes, err := syscall.BytePtrFromString(oldName)
if err != nil {
return fmt.Errorf("old name bytes: %w", err)
}
newBytes, err := syscall.BytePtrFromString(newName)
if err != nil {
return fmt.Errorf("new name bytes: %w", err)
}
_, _, errno := syscall.Syscall6(
syscall.SYS_RENAMEAT,
uintptr(dirFD),
uintptr(unsafe.Pointer(oldBytes)),
uintptr(dirFD),
uintptr(unsafe.Pointer(newBytes)),
0, 0,
)
runtime.KeepAlive(oldBytes)
runtime.KeepAlive(newBytes)
if errno != 0 {
return fmt.Errorf("renameat: %w", errno)
}
return nil
}
const sysRenameat2 = 316 // SYS_RENAMEAT2 on amd64
// renameRenameat2 creates a file and renames it via renameat2(2) with no flags.
func renameRenameat2() error {
dir, cleanup, err := makeTempDir("rename-renameat2")
if err != nil {
return err
}
defer cleanup()
oldName := "renameat2-old.txt"
newName := "renameat2-new.txt"
path := filepath.Join(dir, oldName)
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
dirFD, err := syscall.Open(dir, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return fmt.Errorf("open dir: %w", err)
}
defer syscall.Close(dirFD)
oldBytes, err := syscall.BytePtrFromString(oldName)
if err != nil {
return fmt.Errorf("old name bytes: %w", err)
}
newBytes, err := syscall.BytePtrFromString(newName)
if err != nil {
return fmt.Errorf("new name bytes: %w", err)
}
_, _, errno := syscall.Syscall6(
sysRenameat2,
uintptr(dirFD),
uintptr(unsafe.Pointer(oldBytes)),
uintptr(dirFD),
uintptr(unsafe.Pointer(newBytes)),
0, // flags=0: plain rename
0,
)
runtime.KeepAlive(oldBytes)
runtime.KeepAlive(newBytes)
if errno != 0 {
return fmt.Errorf("renameat2: %w", errno)
}
return nil
}
// renameEnoent attempts to rename a nonexistent file via raw SYS_RENAME.
// The syscall fails with ENOENT, but ior captures the tracepoint on entry.
func renameEnoent() error {
dir, cleanup, err := makeTempDir("rename-enoent")
if err != nil {
return err
}
defer cleanup()
oldPath := filepath.Join(dir, "rename-enoent-missing.txt")
newPath := filepath.Join(dir, "rename-enoent-new.txt")
oldBytes, err := syscall.BytePtrFromString(oldPath)
if err != nil {
return fmt.Errorf("old path bytes: %w", err)
}
newBytes, err := syscall.BytePtrFromString(newPath)
if err != nil {
return fmt.Errorf("new path bytes: %w", err)
}
_, _, errno := syscall.Syscall(
syscall.SYS_RENAME,
uintptr(unsafe.Pointer(oldBytes)),
uintptr(unsafe.Pointer(newBytes)),
0,
)
runtime.KeepAlive(oldBytes)
runtime.KeepAlive(newBytes)
if errno == 0 {
return fmt.Errorf("expected ENOENT, but rename succeeded")
}
return nil
}
const renameNoreplaceFlag = 1 // RENAME_NOREPLACE
// renameNoreplace creates two files, then attempts renameat2 with
// RENAME_NOREPLACE. Because the target already exists, the syscall fails
// with EEXIST, but ior captures the tracepoint on entry.
func renameNoreplace() error {
dir, cleanup, err := makeTempDir("rename-noreplace")
if err != nil {
return err
}
defer cleanup()
srcName := "noreplace-src.txt"
dstName := "noreplace-dst.txt"
for _, name := range []string{srcName, dstName} {
path := filepath.Join(dir, name)
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("create %s: %w", name, err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close %s: %w", name, err)
}
}
dirFD, err := syscall.Open(dir, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return fmt.Errorf("open dir: %w", err)
}
defer syscall.Close(dirFD)
srcBytes, err := syscall.BytePtrFromString(srcName)
if err != nil {
return fmt.Errorf("src name bytes: %w", err)
}
dstBytes, err := syscall.BytePtrFromString(dstName)
if err != nil {
return fmt.Errorf("dst name bytes: %w", err)
}
_, _, errno := syscall.Syscall6(
sysRenameat2,
uintptr(dirFD),
uintptr(unsafe.Pointer(srcBytes)),
uintptr(dirFD),
uintptr(unsafe.Pointer(dstBytes)),
renameNoreplaceFlag,
0,
)
runtime.KeepAlive(srcBytes)
runtime.KeepAlive(dstBytes)
if errno == 0 {
return fmt.Errorf("expected EEXIST, but renameat2 NOREPLACE succeeded")
}
return nil
}
// linkBasic creates a file, hard links it via link(2), symlinks it via
// symlink(2), and reads the symlink via readlink(2).
// Uses raw SYS_LINK, SYS_SYMLINK, SYS_READLINK because Go's syscall wrappers
// delegate to linkat/symlinkat/readlinkat on amd64.
func linkBasic() error {
dir, cleanup, err := makeTempDir("link-basic")
if err != nil {
return err
}
defer cleanup()
origPath := filepath.Join(dir, "original.txt")
fd, err := syscall.Open(origPath, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
// Hard link via raw SYS_LINK.
hardPath := filepath.Join(dir, "hardlink.txt")
origBytes, err := syscall.BytePtrFromString(origPath)
if err != nil {
return fmt.Errorf("orig path bytes: %w", err)
}
hardBytes, err := syscall.BytePtrFromString(hardPath)
if err != nil {
return fmt.Errorf("hard path bytes: %w", err)
}
_, _, errno := syscall.Syscall(
syscall.SYS_LINK,
uintptr(unsafe.Pointer(origBytes)),
uintptr(unsafe.Pointer(hardBytes)),
0,
)
runtime.KeepAlive(origBytes)
runtime.KeepAlive(hardBytes)
if errno != 0 {
return fmt.Errorf("link: %w", errno)
}
// Symlink via raw SYS_SYMLINK.
symPath := filepath.Join(dir, "symlink.txt")
targetBytes, err := syscall.BytePtrFromString(origPath)
if err != nil {
return fmt.Errorf("target path bytes: %w", err)
}
symBytes, err := syscall.BytePtrFromString(symPath)
if err != nil {
return fmt.Errorf("sym path bytes: %w", err)
}
_, _, errno = syscall.Syscall(
syscall.SYS_SYMLINK,
uintptr(unsafe.Pointer(targetBytes)),
uintptr(unsafe.Pointer(symBytes)),
0,
)
runtime.KeepAlive(targetBytes)
runtime.KeepAlive(symBytes)
if errno != 0 {
return fmt.Errorf("symlink: %w", errno)
}
// Readlink via raw SYS_READLINK.
symBytes2, err := syscall.BytePtrFromString(symPath)
if err != nil {
return fmt.Errorf("sym path bytes: %w", err)
}
buf := make([]byte, 256)
_, _, errno = syscall.Syscall(
syscall.SYS_READLINK,
uintptr(unsafe.Pointer(symBytes2)),
uintptr(unsafe.Pointer(&buf[0])),
uintptr(len(buf)),
)
runtime.KeepAlive(symBytes2)
runtime.KeepAlive(buf)
if errno != 0 {
return fmt.Errorf("readlink: %w", errno)
}
return nil
}
// linkLinkat creates a file and hard links it via linkat(2).
func linkLinkat() error {
dir, cleanup, err := makeTempDir("link-linkat")
if err != nil {
return err
}
defer cleanup()
origName := "linkat-original.txt"
origPath := filepath.Join(dir, origName)
fd, err := syscall.Open(origPath, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
dirFD, err := syscall.Open(dir, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return fmt.Errorf("open dir: %w", err)
}
defer syscall.Close(dirFD)
hardName := "linkat-hard.txt"
oldBytes, err := syscall.BytePtrFromString(origName)
if err != nil {
return fmt.Errorf("old name bytes: %w", err)
}
newBytes, err := syscall.BytePtrFromString(hardName)
if err != nil {
return fmt.Errorf("new name bytes: %w", err)
}
_, _, errno := syscall.Syscall6(
syscall.SYS_LINKAT,
uintptr(dirFD),
uintptr(unsafe.Pointer(oldBytes)),
uintptr(dirFD),
uintptr(unsafe.Pointer(newBytes)),
0, // flags
0,
)
runtime.KeepAlive(oldBytes)
runtime.KeepAlive(newBytes)
if errno != 0 {
return fmt.Errorf("linkat: %w", errno)
}
return nil
}
// linkSymlinkat creates a symlink via symlinkat(2).
func linkSymlinkat() error {
dir, cleanup, err := makeTempDir("link-symlinkat")
if err != nil {
return err
}
defer cleanup()
origPath := filepath.Join(dir, "symlinkat-original.txt")
fd, err := syscall.Open(origPath, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
dirFD, err := syscall.Open(dir, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return fmt.Errorf("open dir: %w", err)
}
defer syscall.Close(dirFD)
targetBytes, err := syscall.BytePtrFromString(origPath)
if err != nil {
return fmt.Errorf("target bytes: %w", err)
}
linkName := "symlinkat-link.txt"
linkBytes, err := syscall.BytePtrFromString(linkName)
if err != nil {
return fmt.Errorf("link name bytes: %w", err)
}
_, _, errno := syscall.Syscall(
syscall.SYS_SYMLINKAT,
uintptr(unsafe.Pointer(targetBytes)),
uintptr(dirFD),
uintptr(unsafe.Pointer(linkBytes)),
)
runtime.KeepAlive(targetBytes)
runtime.KeepAlive(linkBytes)
if errno != 0 {
return fmt.Errorf("symlinkat: %w", errno)
}
return nil
}
// linkReadlinkat creates a symlink, then reads it via readlinkat(2).
func linkReadlinkat() error {
dir, cleanup, err := makeTempDir("link-readlinkat")
if err != nil {
return err
}
defer cleanup()
origPath := filepath.Join(dir, "readlinkat-original.txt")
fd, err := syscall.Open(origPath, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
// Create symlink using raw SYS_SYMLINK so we don't mix tracepoints.
linkPath := filepath.Join(dir, "readlinkat-link.txt")
targetBytes, err := syscall.BytePtrFromString(origPath)
if err != nil {
return fmt.Errorf("target bytes: %w", err)
}
linkPathBytes, err := syscall.BytePtrFromString(linkPath)
if err != nil {
return fmt.Errorf("link path bytes: %w", err)
}
_, _, errno := syscall.Syscall(
syscall.SYS_SYMLINK,
uintptr(unsafe.Pointer(targetBytes)),
uintptr(unsafe.Pointer(linkPathBytes)),
0,
)
runtime.KeepAlive(targetBytes)
runtime.KeepAlive(linkPathBytes)
if errno != 0 {
return fmt.Errorf("symlink: %w", errno)
}
// Read via readlinkat(2).
dirFD, err := syscall.Open(dir, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return fmt.Errorf("open dir: %w", err)
}
defer syscall.Close(dirFD)
linkName := "readlinkat-link.txt"
nameBytes, err := syscall.BytePtrFromString(linkName)
if err != nil {
return fmt.Errorf("link name bytes: %w", err)
}
buf := make([]byte, 256)
_, _, errno = syscall.Syscall6(
syscall.SYS_READLINKAT,
uintptr(dirFD),
uintptr(unsafe.Pointer(nameBytes)),
uintptr(unsafe.Pointer(&buf[0])),
uintptr(len(buf)),
0, 0,
)
runtime.KeepAlive(nameBytes)
runtime.KeepAlive(buf)
if errno != 0 {
return fmt.Errorf("readlinkat: %w", errno)
}
return nil
}
// unlinkBasic creates a file and unlinks it via raw SYS_UNLINK.
// We use the raw syscall because Go's syscall.Unlink wraps unlinkat on amd64.
func unlinkBasic() error {
dir, cleanup, err := makeTempDir("unlink-basic")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "unlinkme.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
pathBytes, err := syscall.BytePtrFromString(path)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
_, _, errno := syscall.Syscall(syscall.SYS_UNLINK, uintptr(unsafe.Pointer(pathBytes)), 0, 0)
runtime.KeepAlive(pathBytes)
if errno != 0 {
return fmt.Errorf("unlink: %w", errno)
}
return nil
}
// unlinkUnlinkat creates a file and unlinks it via unlinkat(2).
func unlinkUnlinkat() error {
dir, cleanup, err := makeTempDir("unlink-unlinkat")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "unlinkat-file.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
dirFD, err := syscall.Open(dir, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return fmt.Errorf("open dir: %w", err)
}
defer syscall.Close(dirFD)
nameBytes, err := syscall.BytePtrFromString("unlinkat-file.txt")
if err != nil {
return fmt.Errorf("name bytes: %w", err)
}
_, _, errno := syscall.Syscall(syscall.SYS_UNLINKAT, uintptr(dirFD), uintptr(unsafe.Pointer(nameBytes)), 0)
runtime.KeepAlive(nameBytes)
if errno != 0 {
return fmt.Errorf("unlinkat: %w", errno)
}
return nil
}
// unlinkRmdir creates a directory and removes it via raw SYS_RMDIR.
// We use the raw syscall because Go's syscall.Rmdir wraps unlinkat on amd64.
func unlinkRmdir() error {
dir, cleanup, err := makeTempDir("unlink-rmdir")
if err != nil {
return err
}
defer cleanup()
subDir := filepath.Join(dir, "rmdir-me")
if err := syscall.Mkdir(subDir, 0o755); err != nil {
return fmt.Errorf("mkdir: %w", err)
}
pathBytes, err := syscall.BytePtrFromString(subDir)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
_, _, errno := syscall.Syscall(syscall.SYS_RMDIR, uintptr(unsafe.Pointer(pathBytes)), 0, 0)
runtime.KeepAlive(pathBytes)
if errno != 0 {
return fmt.Errorf("rmdir: %w", errno)
}
return nil
}
// dirBasic creates a directory via raw SYS_MKDIR, checks access, then removes it
// via raw SYS_RMDIR. We use raw syscalls because Go's syscall.Mkdir wraps mkdirat
// and syscall.Rmdir wraps unlinkat on amd64.
func dirBasic() error {
dir, cleanup, err := makeTempDir("dir-basic")
if err != nil {
return err
}
defer cleanup()
subDir := filepath.Join(dir, "subdir")
pathBytes, err := syscall.BytePtrFromString(subDir)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
_, _, errno := syscall.Syscall(syscall.SYS_MKDIR, uintptr(unsafe.Pointer(pathBytes)), 0o755, 0)
runtime.KeepAlive(pathBytes)
if errno != 0 {
return fmt.Errorf("mkdir: %w", errno)
}
if err := syscall.Access(subDir, syscall.F_OK); err != nil {
return fmt.Errorf("access: %w", err)
}
pathBytes2, err := syscall.BytePtrFromString(subDir)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
_, _, errno = syscall.Syscall(syscall.SYS_RMDIR, uintptr(unsafe.Pointer(pathBytes2)), 0, 0)
runtime.KeepAlive(pathBytes2)
if errno != 0 {
return fmt.Errorf("rmdir: %w", errno)
}
return nil
}
// dirMkdirat creates a directory via mkdirat(2) using Go's syscall.Mkdir
// which wraps mkdirat with AT_FDCWD on amd64.
func dirMkdirat() error {
dir, cleanup, err := makeTempDir("dir-mkdirat")
if err != nil {
return err
}
defer cleanup()
subDir := filepath.Join(dir, "mkdirat-subdir")
if err := syscall.Mkdir(subDir, 0o755); err != nil {
return fmt.Errorf("mkdirat: %w", err)
}
return nil
}
// dirChdir creates a temp directory, then changes to it via chdir(2).
// Restores the original working directory afterward.
func dirChdir() error {
origDir, err := os.Getwd()
if err != nil {
return fmt.Errorf("getwd: %w", err)
}
dir, cleanup, err := makeTempDir("dir-chdir")
if err != nil {
return err
}
defer cleanup()
defer syscall.Chdir(origDir)
if err := syscall.Chdir(dir); err != nil {
return fmt.Errorf("chdir: %w", err)
}
return nil
}
// dirGetdents opens a directory and reads its entries via getdents64(2).
func dirGetdents() error {
dir, cleanup, err := makeTempDir("dir-getdents")
if err != nil {
return err
}
defer cleanup()
// Create a file so getdents has something to return.
filePath := filepath.Join(dir, "getdents-file.txt")
fd, err := syscall.Open(filePath, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open file: %w", err)
}
syscall.Close(fd)
dirFD, err := syscall.Open(dir, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return fmt.Errorf("open dir: %w", err)
}
defer syscall.Close(dirFD)
buf := make([]byte, 4096)
_, _, errno := syscall.Syscall(syscall.SYS_GETDENTS64, uintptr(dirFD), uintptr(unsafe.Pointer(&buf[0])), uintptr(len(buf)))
runtime.KeepAlive(buf)
if errno != 0 {
return fmt.Errorf("getdents64: %w", errno)
}
return nil
}
// statBasic creates a file and stats it via raw SYS_STAT (newstat).
// We use the raw syscall because Go's syscall.Stat wraps newfstatat on amd64.
func statBasic() error {
dir, cleanup, err := makeTempDir("stat-basic")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "statfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
syscall.Close(fd)
var stat syscall.Stat_t
pathBytes, err := syscall.BytePtrFromString(path)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
_, _, errno := syscall.Syscall(syscall.SYS_STAT, uintptr(unsafe.Pointer(pathBytes)), uintptr(unsafe.Pointer(&stat)), 0)
runtime.KeepAlive(pathBytes)
runtime.KeepAlive(&stat)
if errno != 0 {
return fmt.Errorf("stat: %w", errno)
}
return nil
}
// statFstat creates a file and stats it via raw SYS_FSTAT (newfstat).
// This is an fd_event, so ior resolves the path via its fd lookup table.
func statFstat() error {
dir, cleanup, err := makeTempDir("stat-fstat")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "fstatfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
var stat syscall.Stat_t
_, _, errno := syscall.Syscall(syscall.SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(&stat)), 0)
runtime.KeepAlive(&stat)
if errno != 0 {
return fmt.Errorf("fstat: %w", errno)
}
return nil
}
// statLstat creates a file and stats it via raw SYS_LSTAT (newlstat).
// We use the raw syscall because Go's syscall.Lstat wraps newfstatat on amd64.
func statLstat() error {
dir, cleanup, err := makeTempDir("stat-lstat")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "lstatfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
syscall.Close(fd)
var stat syscall.Stat_t
pathBytes, err := syscall.BytePtrFromString(path)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
_, _, errno := syscall.Syscall(syscall.SYS_LSTAT, uintptr(unsafe.Pointer(pathBytes)), uintptr(unsafe.Pointer(&stat)), 0)
runtime.KeepAlive(pathBytes)
runtime.KeepAlive(&stat)
if errno != 0 {
return fmt.Errorf("lstat: %w", errno)
}
return nil
}
// statNewfstatat creates a file and stats it via Go's syscall.Stat, which
// wraps SYS_NEWFSTATAT (fstatat with AT_FDCWD) on amd64.
func statNewfstatat() error {
dir, cleanup, err := makeTempDir("stat-newfstatat")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "fstatatfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
syscall.Close(fd)
var stat syscall.Stat_t
if err := syscall.Stat(path, &stat); err != nil {
return fmt.Errorf("newfstatat: %w", err)
}
return nil
}
const (
sysStatx = 332
rOK = 0x4 // R_OK
statxBasicMask = 0x07ff // STATX_BASIC_STATS
)
const atFDCwd = -100 // AT_FDCWD
// statStatx creates a file and stats it via raw statx(2) syscall.
func statStatx() error {
dir, cleanup, err := makeTempDir("stat-statx")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "statxfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
syscall.Close(fd)
pathBytes, err := syscall.BytePtrFromString(path)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
var buf [256]byte // statx struct is ~256 bytes
_, _, errno := syscall.Syscall6(
sysStatx,
^uintptr(99), // AT_FDCWD (-100)
uintptr(unsafe.Pointer(pathBytes)),
0,
statxBasicMask,
uintptr(unsafe.Pointer(&buf[0])),
0,
)
runtime.KeepAlive(pathBytes)
runtime.KeepAlive(buf)
if errno != 0 {
return fmt.Errorf("statx: %w", errno)
}
return nil
}
// statAccess creates a file and checks access via raw SYS_ACCESS.
// We use the raw syscall because Go's syscall.Access wraps faccessat on amd64.
func statAccess() error {
dir, cleanup, err := makeTempDir("stat-access")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "accessfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
syscall.Close(fd)
pathBytes, err := syscall.BytePtrFromString(path)
if err != nil {
return fmt.Errorf("path bytes: %w", err)
}
_, _, errno := syscall.Syscall(syscall.SYS_ACCESS, uintptr(unsafe.Pointer(pathBytes)), rOK, 0)
runtime.KeepAlive(pathBytes)
if errno != 0 {
return fmt.Errorf("access: %w", errno)
}
return nil
}
// statFaccessat creates a file and checks access via faccessat(2).
// Go's syscall.Faccessat wraps SYS_FACCESSAT.
func statFaccessat() error {
dir, cleanup, err := makeTempDir("stat-faccessat")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "faccessatfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
syscall.Close(fd)
if err := syscall.Faccessat(atFDCwd, path, uint32(rOK), 0); err != nil {
return fmt.Errorf("faccessat: %w", err)
}
return nil
}
// syncBasic opens a file, writes data, and fsyncs it.
func syncBasic() error {
dir, cleanup, err := makeTempDir("sync-basic")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "syncfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
if _, err := syscall.Write(fd, []byte("sync me")); err != nil {
return fmt.Errorf("write: %w", err)
}
return syscall.Fsync(fd)
}
// syncFdatasync opens a file, writes data, and fdatasyncs it.
func syncFdatasync() error {
dir, cleanup, err := makeTempDir("sync-fdatasync")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "fdatasyncfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
if _, err := syscall.Write(fd, []byte("fdatasync me")); err != nil {
return fmt.Errorf("write: %w", err)
}
return syscall.Fdatasync(fd)
}
// syncSync calls sync(2) to flush all filesystem caches.
// sync is a null_event with no file arguments.
func syncSync() error {
syscall.Sync()
return nil
}
// syncSyncFileRange opens a file, writes data, then calls sync_file_range(2).
func syncSyncFileRange() error {
dir, cleanup, err := makeTempDir("sync-sync-file-range")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "syncrangefile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
data := []byte("sync file range data")
if _, err := syscall.Write(fd, data); err != nil {
return fmt.Errorf("write: %w", err)
}
return syscall.SyncFileRange(fd, 0, int64(len(data)), 0)
}
// truncateBasic opens a file, writes data, then truncates it via
// syscall.Truncate which uses SYS_TRUNCATE directly on amd64 (path-based).
func truncateBasic() error {
dir, cleanup, err := makeTempDir("truncate-basic")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "truncfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if _, err := syscall.Write(fd, []byte("truncate this content")); err != nil {
syscall.Close(fd)
return fmt.Errorf("write: %w", err)
}
syscall.Close(fd)
return syscall.Truncate(path, 5)
}
// truncateFtruncate opens a file, writes data, then truncates it via
// syscall.Ftruncate which uses SYS_FTRUNCATE directly on amd64 (fd-based).
func truncateFtruncate() error {
dir, cleanup, err := makeTempDir("truncate-ftruncate")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "ftruncfile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
defer syscall.Close(fd)
if _, err := syscall.Write(fd, []byte("ftruncate this content")); err != nil {
return fmt.Errorf("write: %w", err)
}
return syscall.Ftruncate(fd, 5)
}
// openByHandleAt creates a file, resolves its handle via name_to_handle_at,
// then opens it via open_by_handle_at. Requires root (CAP_DAC_READ_SEARCH).
// LockOSThread prevents goroutine migration between the two syscalls so that
// ior sees the same TID for both and can correlate the path.
func openByHandleAt() error {
runtime.LockOSThread()
defer runtime.UnlockOSThread()
dir, cleanup, err := makeTempDir("open-by-handle-at")
if err != nil {
return err
}
defer cleanup()
path := filepath.Join(dir, "handlefile.txt")
fd, err := syscall.Open(path, syscall.O_RDWR|syscall.O_CREAT, 0o644)
if err != nil {
return fmt.Errorf("open: %w", err)
}
if err := syscall.Close(fd); err != nil {
return fmt.Errorf("close: %w", err)
}
handle, mountFD, err := nameToHandleAt(dir, "handlefile.txt")
if err != nil {
return fmt.Errorf("name_to_handle_at: %w", err)
}
defer syscall.Close(mountFD)
fd2, err := openByHandleAtSyscall(mountFD, handle, syscall.O_RDONLY)
if err != nil {
return fmt.Errorf("open_by_handle_at: %w", err)
}
return syscall.Close(fd2)
}
// fileHandle matches the kernel's struct file_handle layout.
type fileHandle struct {
Size uint32
Type int32
// Handle bytes follow immediately after.
}
const (
sysNameToHandleAt = 303
sysOpenByHandleAt = 304
)
// nameToHandleAt calls name_to_handle_at(2) and returns the file handle
// and the directory fd. The caller can pass this dirFD as the mount_fd
// argument to open_by_handle_at since any fd on the same filesystem works.
func nameToHandleAt(dirPath, name string) ([]byte, int, error) {
dirFD, err := syscall.Open(dirPath, syscall.O_RDONLY|syscall.O_DIRECTORY, 0)
if err != nil {
return nil, 0, fmt.Errorf("open dir: %w", err)
}
nameBytes, err := syscall.BytePtrFromString(name)
if err != nil {
syscall.Close(dirFD)
return nil, 0, fmt.Errorf("name bytes: %w", err)
}
// Start with a buffer large enough for most handles.
buf := make([]byte, unsafe.Sizeof(fileHandle{})+128)
fh := (*fileHandle)(unsafe.Pointer(&buf[0]))
fh.Size = uint32(len(buf) - int(unsafe.Sizeof(fileHandle{})))
var mountID int32
_, _, errno := syscall.Syscall6(
sysNameToHandleAt,
uintptr(dirFD),
uintptr(unsafe.Pointer(nameBytes)),
uintptr(unsafe.Pointer(fh)),
uintptr(unsafe.Pointer(&mountID)),
0, 0,
)
if errno != 0 {
syscall.Close(dirFD)
return nil, 0, fmt.Errorf("syscall: %w", errno)
}
handleLen := int(unsafe.Sizeof(fileHandle{})) + int(fh.Size)
handle := make([]byte, handleLen)
copy(handle, buf[:handleLen])
return handle, dirFD, nil
}
// openByHandleAtSyscall calls open_by_handle_at(2).
func openByHandleAtSyscall(mountFD int, handle []byte, flags int) (int, error) {
fd, _, errno := syscall.Syscall(
sysOpenByHandleAt,
uintptr(mountFD),
uintptr(unsafe.Pointer(&handle[0])),
uintptr(flags),
)
if errno != 0 {
return 0, fmt.Errorf("syscall: %w", errno)
}
return int(fd), nil
}
const (
sysIoUringSetup = 425
sysIoUringEnter = 426
sysIoUringRegister = 427
// io_uring_params struct size: 10 x uint32 + io_sqring_offsets(40) + io_cqring_offsets(40) = 120 bytes.
ioUringParamsSize = 120
ioringRegisterProbe = 8 // IORING_REGISTER_PROBE
)
// iouringSetup creates an io_uring instance via io_uring_setup(2) and closes the fd.
func iouringSetup() error {
fd, err := ioUringSetupRing(1)
if err != nil {
return err
}
return syscall.Close(fd)
}
// iouringEnter creates an io_uring instance, then calls io_uring_enter(2)
// with zero submissions/completions to exercise the enter tracepoint.
func iouringEnter() error {
fd, err := ioUringSetupRing(1)
if err != nil {
return err
}
defer syscall.Close(fd)
_, _, errno := syscall.Syscall6(
sysIoUringEnter,
uintptr(fd),
0, // to_submit
0, // min_complete
0, // flags
0, // sig
0, // sz
)
if errno != 0 {
return fmt.Errorf("io_uring_enter: %w", errno)
}
return nil
}
// iouringRegister creates an io_uring instance, then calls io_uring_register(2)
// with IORING_REGISTER_PROBE to exercise the register tracepoint.
func iouringRegister() error {
fd, err := ioUringSetupRing(1)
if err != nil {
return err
}
defer syscall.Close(fd)
// io_uring_probe header is 16 bytes; we don't need probe_op entries.
var probeBuf [16]byte
_, _, errno := syscall.Syscall6(
sysIoUringRegister,
uintptr(fd),
ioringRegisterProbe,
uintptr(unsafe.Pointer(&probeBuf[0])),
0, // nr_args (0 ops requested)
0, 0,
)
runtime.KeepAlive(probeBuf)
if errno != 0 {
return fmt.Errorf("io_uring_register: %w", errno)
}
return nil
}
// ioUringSetupRing calls io_uring_setup(2) and returns the ring fd.
func ioUringSetupRing(entries uint32) (int, error) {
var params [ioUringParamsSize]byte
fd, _, errno := syscall.Syscall(
sysIoUringSetup,
uintptr(entries),
uintptr(unsafe.Pointer(¶ms[0])),
0,
)
runtime.KeepAlive(params)
if errno != 0 {
return 0, fmt.Errorf("io_uring_setup: %w", errno)
}
return int(fd), nil
}
// crash simulates a workload that fails with a non-zero exit code.
// Used to verify the test harness handles workload failures gracefully.
func crash() error {
return fmt.Errorf("intentional crash for testing")
}
|