kache 0.16.0

Zero-copy, content-addressed build cache for Rust, C/C++ and more, with S3 and shared-filesystem remotes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
use anyhow::{Context, Result};
use std::fs;
use std::path::{Path, PathBuf};
#[cfg(windows)]
use std::sync::OnceLock;
use std::sync::atomic::{AtomicBool, Ordering};

/// Process-global: restore via hardlink on a non-CoW Windows volume (NTFS)
/// instead of the default copy (#429). Set once from `config.windows_hardlink`
/// at wrapper entry; read on the Windows restore path. Off everywhere else.
static WINDOWS_HARDLINK_RESTORE: AtomicBool = AtomicBool::new(false);

/// Process-global: marker file used to dedup the no-CoW advisory across the
/// hundreds of wrapper processes a single build spawns (#508). Set at wrapper
/// entry; if unset the advisory falls back to once-per-process.
#[cfg(windows)]
static COW_WARN_MARKER: OnceLock<PathBuf> = OnceLock::new();

/// Set the Windows hardlink-restore opt-in (from `Config::windows_hardlink`).
/// Call once per process before restoring. No effect off Windows.
pub fn set_windows_hardlink_restore(enabled: bool) {
    WINDOWS_HARDLINK_RESTORE.store(enabled, Ordering::Relaxed);
}

/// Is the `[cache] windows_hardlink` opt-in active for this process?
/// The store's insert-side blob hardlinking keys off the same flag as
/// restore: without it, a hardlink would propagate the blob's read-only
/// attribute to the build's own output (shared MFT record, #429).
#[cfg(windows)]
pub(crate) fn windows_hardlink_enabled() -> bool {
    WINDOWS_HARDLINK_RESTORE.load(Ordering::Relaxed)
}

/// Set the cross-process dedup marker for the no-CoW advisory. Call once per
/// process before restoring. No effect off Windows.
#[cfg_attr(not(windows), allow(unused_variables))]
pub fn set_cow_warn_marker(path: std::path::PathBuf) {
    #[cfg(windows)]
    let _ = COW_WARN_MARKER.set(path);
}

/// Process-global: surface storage-*layout* advisories ("no CoW",
/// "cross-volume") on copy-restores (#551). On by default; set once from
/// `Config::storage_layout_advice` at wrapper entry. Muting this never mutes
/// fault reports (`UnexpectedOnCowVolume`) — advice and faults have different
/// severities and different audiences.
static STORAGE_LAYOUT_ADVICE: AtomicBool = AtomicBool::new(true);

/// Set the storage-layout advisory toggle (from `Config::storage_layout_advice`).
/// Call once per process before restoring.
pub fn set_storage_layout_advice(enabled: bool) {
    STORAGE_LAYOUT_ADVICE.store(enabled, Ordering::Relaxed);
}

/// Is `[cache] storage_layout_advice` active for this process?
#[cfg(windows)]
fn storage_layout_advice_enabled() -> bool {
    STORAGE_LAYOUT_ADVICE.load(Ordering::Relaxed)
}

/// Strategy for restoring a cached file to a build output path.
///
/// `Hardlink` and `Copy` first try reflink (CoW: zero-copy *with* an
/// independent inode), then use the strategy-specific fallback:
///
/// - `Hardlink`: on Unix, fall back to a hardlink (zero-copy via shared inode)
///   only while the blob has no existing consumer. Later restores use private
///   copies so their required mtime stamp cannot mutate a still-linked artifact
///   another process is reading (#794). This is for immutable artifacts like
///   `.rlib` / `.rmeta` where the build won't modify the content in place.
/// - `Copy`: fall back to a plain byte copy (independent file). For
///   executables, dylibs, and proc-macros that may be mutated post-build
///   (codesigning, stripping, etc.).
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum LinkStrategy {
    Hardlink,
    Copy,
}

/// Link a cached file to the target output path.
///
/// Both strategies try reflink first, then use their strategy-specific fallback.
pub fn link_to_target(store_path: &Path, target_path: &Path, strategy: LinkStrategy) -> Result<()> {
    let do_link = || -> Result<()> {
        // Remove existing file at target (link/clone calls fail if dst exists).
        clear_target(target_path)?;

        // Logical size of the artifact, attributed to whichever restoration
        // mechanism runs below. Best-effort — a metadata failure here must
        // not fail the restore.
        let bytes = fs::metadata(store_path).map(|m| m.len()).unwrap_or(0);

        // Try reflink first. CoW gives us zero-copy *and* mutations don't
        // propagate to the cache blob — strictly better than hardlink when
        // available (APFS, btrfs, XFS-with-reflink).
        // Keep the failure reason: on Windows it separates "this volume can't
        // block-clone" from "this one file couldn't be cloned" (#508).
        let reflink_err = match try_reflink(store_path, target_path) {
            Ok(()) => {
                match strategy {
                    LinkStrategy::Hardlink => {}
                    // Reflink preserves source mode (read-only for stored
                    // blobs). Independent restores need consumer-facing
                    // permissions without discarding umask-shaped read bits.
                    LinkStrategy::Copy => set_executable_permissions(target_path)?,
                }
                tracing::debug!(
                    "reflinked {} -> {}",
                    store_path.display(),
                    target_path.display()
                );
                crate::opcounts::record_reflinked(bytes);
                return Ok(());
            }
            Err(e) => e,
        };
        #[cfg(not(windows))]
        let _ = &reflink_err;

        // Reflink unsupported on this filesystem — strategy-specific fallback.
        match strategy {
            // Windows has no reflink on NTFS, so the Hardlink strategy would
            // hardlink the read-only store blob. NTFS stores FILE_ATTRIBUTE_READONLY
            // in the shared MFT record, so EVERY hardlink to a read-only blob is
            // itself read-only — and Windows refuses to delete or rewrite a
            // read-only file (WinError 5). A consumer that owns its output and
            // deletes/rewrites it — e.g. mozbuild's configure `ar_supports_response_files`
            // conftest (#429) — then breaks. There is no way on NTFS to give a
            // hardlink a different read-only state than its blob, so restore via an
            // independent COPY instead: the output is writable and deletable while
            // the store blob stays read-only (integrity preserved). This mirrors
            // `write_restored`, already the proven-safe independent-file path, and
            // costs only working-tree↔store block sharing (LRU is index-based, not
            // mtime-based, so eviction is unaffected). gnu/clang restores keep
            // hardlinking — reflink/hardlink there are writable or CoW-isolated.
            #[cfg(windows)]
            LinkStrategy::Hardlink => {
                if WINDOWS_HARDLINK_RESTORE.load(Ordering::Relaxed) {
                    // Opt-in (#429 / `[cache] windows_hardlink`): the caller accepts
                    // that this build never deletes/rewrites a restored object, so
                    // trade the read-only-output risk for working-tree dedup.
                    hardlink_or_copy(store_path, target_path, bytes)
                } else {
                    copy_file(store_path, target_path, false)?;
                    warn_no_cow_restore_once(store_path, target_path, bytes, &reflink_err, true);
                    crate::opcounts::record_copied(bytes);
                    Ok(())
                }
            }
            #[cfg(not(windows))]
            LinkStrategy::Hardlink => hardlink_or_copy(store_path, target_path, bytes),
            LinkStrategy::Copy => {
                // Copying here is by design (executables/dylibs may be mutated after
                // the build), so no storage-layout advice — but a large artifact that
                // failed to block-clone on a CoW volume is still a real fault and is
                // reported rather than swallowed.
                copy_file(store_path, target_path, true)?;
                #[cfg(windows)]
                warn_no_cow_restore_once(store_path, target_path, bytes, &reflink_err, false);
                crate::opcounts::record_copied(bytes);
                Ok(())
            }
        }
    };

    let mut err = match do_link() {
        Ok(()) => return Ok(()),
        Err(e) => e,
    };

    if err.chain().any(|e| {
        e.downcast_ref::<std::io::Error>()
            .is_some_and(|io| io.kind() == std::io::ErrorKind::NotFound)
    }) && let Some(parent) = target_path.parent()
    {
        fs::create_dir_all(parent)
            .with_context(|| format!("creating parent dir for {}", target_path.display()))?;
        if let Err(e) = do_link() {
            err = e;
        } else {
            return Ok(());
        }
    }

    Err(err)
}

/// Hardlink fallback for the `Hardlink` strategy when reflink is unavailable.
/// On Unix, keep at most one target output linked to the store blob; later
/// consumers get a private copy so their restore-time mtime stamp cannot
/// affect a still-linked active reader in another target tree (#794). Falls
/// back to a plain copy on hardlink failure (including cross-filesystem
/// restores).
///
/// On Windows this runs only under the legacy `[cache] windows_hardlink`
/// opt-in. That explicit tradeoff retains unrestricted hardlink sharing; it is
/// unsafe for concurrent builds sharing a store as well as for consumers that
/// delete or rewrite restored outputs (#429, #794). The default copies.
fn hardlink_or_copy(store_path: &Path, target_path: &Path, bytes: u64) -> Result<()> {
    hardlink_or_copy_with_prelink_hook(store_path, target_path, bytes, || {})
}

fn hardlink_or_copy_with_prelink_hook(
    store_path: &Path,
    target_path: &Path,
    bytes: u64,
    prelink_hook: impl FnOnce(),
) -> Result<()> {
    // A restore is stamped after this function returns. On Unix that stamp is
    // inode metadata, so it is safe to hardlink only when the blob has no
    // existing target consumer. Metadata failure is handled conservatively:
    // a copy preserves isolation and lets the ordinary read report any real
    // source failure.
    #[cfg(unix)]
    match fs::metadata(store_path) {
        Ok(meta) => {
            use std::os::unix::fs::MetadataExt;
            if meta.nlink() != 1 {
                tracing::debug!(
                    links = meta.nlink(),
                    "blob already has a hardlink consumer, restoring by copy: {} -> {}",
                    store_path.display(),
                    target_path.display()
                );
                return copy_hardlink_fallback(store_path, target_path, bytes);
            }
        }
        Err(error) => {
            tracing::debug!(
                %error,
                "could not verify exclusive blob, restoring by copy: {} -> {}",
                store_path.display(),
                target_path.display()
            );
            return copy_hardlink_fallback(store_path, target_path, bytes);
        }
    }

    // Test-only callers use this seam to hold simultaneous restorers after
    // both prechecks, proving the post-link validation rather than merely the
    // sequential fast path. Production passes a no-op closure.
    prelink_hook();

    if let Err(e) = fs::hard_link(store_path, target_path) {
        tracing::debug!(
            "hardlink failed ({}), falling back to copy: {} -> {}",
            e,
            store_path.display(),
            target_path.display()
        );
        return copy_hardlink_fallback(store_path, target_path, bytes);
    }

    // Two restorers may both observe nlink == 1 before either creates its
    // link. Only a contender that observes exactly blob + itself may retain
    // the link. Others unlink before returning, so no contender can reach its
    // mtime stamp while sharing an inode with an existing consumer.
    #[cfg(unix)]
    {
        use std::os::unix::fs::MetadataExt;
        match fs::metadata(store_path) {
            Ok(meta) if meta.nlink() == 2 => {}
            Ok(meta) => {
                tracing::debug!(
                    links = meta.nlink(),
                    "hardlink was not exclusive, restoring by copy: {} -> {}",
                    store_path.display(),
                    target_path.display()
                );
                fs::remove_file(target_path).with_context(|| {
                    format!(
                        "removing non-exclusive hardlink at {}",
                        target_path.display()
                    )
                })?;
                return copy_hardlink_fallback(store_path, target_path, bytes);
            }
            Err(source_error) => {
                verify_orphaned_hardlink(target_path, fs::metadata(target_path), source_error)?
            }
        }
    }

    tracing::debug!(
        "hardlinked {} -> {}",
        store_path.display(),
        target_path.display()
    );
    crate::opcounts::record_hardlinked(bytes);
    Ok(())
}

fn copy_hardlink_fallback(store_path: &Path, target_path: &Path, bytes: u64) -> Result<()> {
    copy_file(store_path, target_path, false)?;
    crate::opcounts::record_copied(bytes);
    Ok(())
}

/// Validate a completed hardlink whose store blob could not be re-stat'ed.
///
/// Between creating the link and verifying it, the blob name may vanish (a
/// concurrent eviction or another restorer's cleanup). Only when this target
/// became the inode's sole remaining name is the restore provably private and
/// safe to keep; otherwise exclusivity cannot be shown and the failure
/// surfaces. Extracted from its caller so tests can inject both observations
/// instead of racing the validation window (#794).
#[cfg(unix)]
fn verify_orphaned_hardlink(
    target_path: &Path,
    target_meta: std::io::Result<fs::Metadata>,
    source_error: std::io::Error,
) -> Result<()> {
    use std::os::unix::fs::MetadataExt;
    match target_meta {
        // The blob was unlinked after hardlink creation, leaving this
        // target as the inode's sole name. It is already private and
        // safe to stamp, so retain the successful restore.
        Ok(meta) if meta.nlink() == 1 => {
            tracing::debug!(
                %source_error,
                "blob disappeared after hardlink; retained private target {}",
                target_path.display()
            );
            Ok(())
        }
        Ok(meta) => Err(source_error).with_context(|| {
            format!(
                "verifying exclusive hardlink {} (target still has {} links)",
                target_path.display(),
                meta.nlink()
            )
        }),
        Err(target_error) => Err(target_error)
            .with_context(|| format!("verifying hardlink target {}", target_path.display())),
    }
}

/// Why a Windows cache hit was restored by COPY instead of a block-clone.
///
/// A failed `FSCTL_DUPLICATE_EXTENTS_TO_FILE` does NOT imply the volume lacks
/// copy-on-write, and conflating the two is what made kache cry wolf at every
/// Dev Drive user (#508). The three causes need three different responses:
///
/// - **`CrossVolume`**: cache blob and build output are on different volumes.
///   Block-cloning cannot span volumes (nor can hardlinks), so even two ReFS Dev
///   Drives copy. Fix: co-locate cache + build on one volume — not a filesystem
///   problem, so this is worth saying (#490).
/// - **`NoCow`**: the volume genuinely has no block-cloning (NTFS). Fix: move
///   both onto a ReFS Dev Drive, or opt into `[cache] windows_hardlink`. Worth
///   saying — this is the case that really does double disk usage.
/// - **`SubClusterOnCowVolume`**: the volume DOES block-clone, and this file is
///   smaller than one cluster, so it has no cluster-aligned range (ReFS clones
///   whole clusters; cloning past EOF is undefined). Every `.d` under ~4 KB hits
///   this on a healthy Dev Drive: all 670 warnings in #508 were sub-cluster `.d`
///   files while the `.rlib`/`.rmeta` beside them block-cloned fine. Saying
///   nothing is right — the volume is healthy and there is no advice to give.
/// - **`UnknownCow`**: the capability probe itself failed, so we do NOT know
///   whether this volume block-clones. Still worth saying — a copy-restore is
///   happening either way — but say it *honestly*: asserting "no copy-on-write"
///   from a failed probe would repeat the very mistake #508 is about.
/// - **`SubClusterOnCowVolume`**: the volume DOES block-clone, and this file is
///   smaller than one cluster, so it has no cluster-aligned range (ReFS clones
///   whole clusters; cloning past EOF is undefined). Every `.d` under ~4 KB hits
///   this on a healthy Dev Drive: all 670 warnings in #508 were sub-cluster `.d`
///   files while the `.rlib`/`.rmeta` beside them block-cloned fine. Saying
///   nothing is right — the volume is healthy and there is no advice to give.
/// - **`UnexpectedOnCowVolume`**: the volume block-clones and the file was big
///   enough to clone, yet the clone still failed. That is NOT benign — a filter
///   driver, an integrity-stream mismatch, or a kache bug could silently demote
///   every large artifact to a copy. Surface it (with the OS error) rather than
///   hiding it behind the #508 fix.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(not(windows), allow(dead_code))]
enum CopyRestoreCause {
    CrossVolume,
    NoCow,
    UnknownCow,
    SubClusterOnCowVolume,
    UnexpectedOnCowVolume,
}

impl CopyRestoreCause {
    /// Which dedup bucket this advisory belongs to.
    ///
    /// A storage-*layout* advisory ("no CoW", "cross-volume") must NOT be able
    /// to mute a *fault* ("the clone failed unexpectedly") — they have different
    /// severities and different audiences, so they get separate markers. Sharing
    /// one bucket would let a benign cross-volume note swallow the report of a
    /// filter driver silently demoting every large artifact to a copy.
    #[cfg_attr(not(windows), allow(dead_code))]
    fn warn_bucket(self) -> &'static str {
        match self {
            CopyRestoreCause::UnexpectedOnCowVolume => "cow-fault",
            _ => "cow",
        }
    }

    /// Is this cause storage-layout *advice* (mutable via the `Copy` strategy
    /// or `[cache] storage_layout_advice = false`, #551) rather than a fault
    /// report? Exhaustive on purpose: a future variant must decide explicitly
    /// which side it is on — a fault must never be muteable by an advice knob.
    #[cfg_attr(not(windows), allow(dead_code))]
    fn is_layout_advisory(self) -> bool {
        match self {
            CopyRestoreCause::CrossVolume
            | CopyRestoreCause::NoCow
            | CopyRestoreCause::UnknownCow => true,
            CopyRestoreCause::SubClusterOnCowVolume | CopyRestoreCause::UnexpectedOnCowVolume => {
                false
            }
        }
    }
}

/// Classify a copy-restore from the two volume roots, the build volume's
/// block-cloning capability, and whether the file was too small to clone. Pure —
/// kept platform-independent so the decision table is unit-testable off Windows.
///
/// Unknowns are never resolved *toward silence*: a failed capability probe warns
/// as `UnknownCow` (hedged) rather than asserting NTFS, and an unknown size
/// resolves to "unexpected" rather than assuming the benign sub-cluster case.
#[cfg_attr(not(windows), allow(dead_code))]
fn classify_copy_restore(
    cache_vol: Option<&str>,
    build_vol: Option<&str>,
    build_vol_has_cow: Option<bool>,
    file_is_sub_cluster: Option<bool>,
) -> CopyRestoreCause {
    // If we can't resolve a volume for either side, don't assert cross-volume.
    if let (Some(cache), Some(build)) = (cache_vol, build_vol)
        && !cache.eq_ignore_ascii_case(build)
    {
        return CopyRestoreCause::CrossVolume;
    }
    match build_vol_has_cow {
        // Same volume, and it block-clones — the other files in this same build
        // reflink fine. Expected only when the file had no clonable range.
        Some(true) => {
            if file_is_sub_cluster == Some(true) {
                CopyRestoreCause::SubClusterOnCowVolume
            } else {
                CopyRestoreCause::UnexpectedOnCowVolume
            }
        }
        Some(false) => CopyRestoreCause::NoCow,
        None => CopyRestoreCause::UnknownCow,
    }
}

/// Tell the user their cache hits are being restored by COPY — but only when
/// that is actually a problem, and at most once per warn-session window per
/// [bucket](CopyRestoreCause::warn_bucket) across all wrapper processes (#508).
///
/// Both gates matter: a sub-cluster file on a working Dev Drive says nothing at
/// all, and the real advisories dedup through a marker file rather than a
/// per-process `Once` — each rustc is its own process, which is why a single
/// build used to emit the same warning hundreds of times.
///
/// `bytes` is the blob's size and `reflink_err` the clone failure, so a file
/// that was big enough to clone but failed anyway can still be surfaced instead
/// of being swallowed along with the benign sub-cluster case.
///
/// `layout_advice` gates the *configuration* advisories ("no CoW", "cross
/// volume"). The `Copy` strategy (executables, dylibs) always intended to copy,
/// so it passes `false`: it must not start nagging about storage layout. But it
/// still routes through here, because a LARGE artifact that fails to clone on a
/// CoW volume is a genuine fault that must not pass silently just because the
/// restore strategy happened to be `Copy`.
///
/// `[cache] storage_layout_advice = false` (#551) mutes the same advisories
/// process-wide — the user saying their layout is intentional (e.g. an
/// NTFS-only machine that can never host a ReFS Dev Drive). Like the `Copy`
/// strategy, it can never mute a fault.
#[cfg(windows)]
fn warn_no_cow_restore_once(
    store_path: &Path,
    target_path: &Path,
    bytes: u64,
    reflink_err: &anyhow::Error,
    layout_advice: bool,
) {
    let cache_vol = windows_volume_root(store_path);
    let build_vol = windows_volume_root(target_path);
    // A file with no cluster-aligned range can't be block-cloned on ANY volume.
    // If the cluster size can't be read, leave it unknown rather than guessing.
    let sub_cluster = windows_cluster_size(target_path)
        .ok()
        .map(|cluster| bytes > 0 && bytes < cluster);
    let cause = classify_copy_restore(
        cache_vol.as_deref(),
        build_vol.as_deref(),
        windows_volume_supports_block_clone(target_path),
        sub_cluster,
    );

    let message = match cause {
        CopyRestoreCause::SubClusterOnCowVolume => {
            // Not a filesystem problem: the volume block-clones, this file is
            // just smaller than a cluster. Debug-log it and stay quiet.
            tracing::debug!(
                "copy-restored {} — {} bytes is smaller than one cluster, so it has \
                 no cluster-aligned range to block-clone; volume {} does support \
                 copy-on-write",
                target_path.display(),
                bytes,
                build_vol.as_deref().unwrap_or("?"),
            );
            return;
        }
        CopyRestoreCause::UnexpectedOnCowVolume => format!(
            "kache: this volume ({vol}) supports copy-on-write and this file is \
             large enough to block-clone, but the clone FAILED — so the cache hit \
             was restored by COPY and does not share storage blocks with the cache. This \
             is unexpected; please report it with the error below.\n         \
             error:           {err:#}\n         affected output: {target} \
             ({bytes} bytes)",
            vol = build_vol.as_deref().unwrap_or("?"),
            err = reflink_err,
            target = target_path.display(),
            bytes = bytes,
        ),
        CopyRestoreCause::CrossVolume => format!(
            "kache: cache hits are restored by COPY because the cache and build \
             tree are on different volumes ({cache_vol} vs {build_vol}), and \
             copy-on-write block-cloning cannot span volumes — so they do not \
             share storage blocks, roughly doubling disk for cached content. Put the \
             cache and build dir on the SAME volume (ideally a ReFS Dev Drive) \
             for zero-copy dedup. If this layout is intentional, silence this \
             advice with `[cache] storage_layout_advice = false` (clone faults \
             are still reported).\n         cache blob:   {store}\n         \
             build output: {target}",
            cache_vol = cache_vol.as_deref().unwrap_or("?"),
            build_vol = build_vol.as_deref().unwrap_or("?"),
            store = store_path.display(),
            target = target_path.display(),
        ),
        CopyRestoreCause::NoCow => format!(
            "kache: this volume ({vol}) has no copy-on-write, so cache hits are \
             restored by COPY — the cache and build tree do not share storage blocks, \
             roughly doubling disk for cached content. For zero-copy dedup put \
             the cache + build dir on a ReFS Dev Drive, or set \
             `[cache] windows_hardlink = true` (only if your build never \
             deletes or rewrites an object output). If this layout is \
             intentional, silence this advice with \
             `[cache] storage_layout_advice = false` (clone faults are still \
             reported).\n         affected output: {target}",
            vol = build_vol.as_deref().unwrap_or("NTFS"),
            target = target_path.display(),
        ),
        // Probe failed: we do NOT know what this volume supports. Say exactly
        // that — claiming "no copy-on-write" here would be the same unfounded
        // assertion that produced #508 in the first place.
        CopyRestoreCause::UnknownCow => format!(
            "kache: cache hits are restored by COPY, so the cache and build tree \
             do not share storage blocks. kache could not determine whether this volume \
             ({vol}) supports copy-on-write — the capability probe failed. For \
             zero-copy dedup the cache + build dir must be on the same ReFS Dev \
             Drive. If this layout is intentional, silence this advice with \
             `[cache] storage_layout_advice = false` (clone faults are still \
             reported).\n         probe error:     {err:#}\n         affected output: \
             {target}",
            vol = build_vol.as_deref().unwrap_or("?"),
            err = reflink_err,
            target = target_path.display(),
        ),
    };

    // The Copy strategy always meant to copy — it must not nag about storage
    // layout — and `[cache] storage_layout_advice = false` is the user saying
    // their layout is intentional (#551). Either way this mutes only the
    // *advice*: a genuine clone fault still reports (see `layout_advice`).
    if cause.is_layout_advisory() && (!layout_advice || !storage_layout_advice_enabled()) {
        tracing::debug!(
            "copy-restored {} ({:?}; layout advice muted: strategy={}, config={})",
            target_path.display(),
            cause,
            !layout_advice,
            !storage_layout_advice_enabled(),
        );
        return;
    }

    match COW_WARN_MARKER.get() {
        Some(base) => {
            // Separate bucket per severity: a layout advisory must never mute a
            // fault report (and vice versa).
            let marker = bucket_marker(base, cause.warn_bucket());
            let _warned = crate::wrapper::warn_once_per_session(
                &marker,
                crate::wrapper::WARN_SESSION_SECS,
                &message,
            );
        }
        // No marker configured (unit tests, non-wrapper entrypoints): fall back
        // to once-per-process rather than going silent.
        None => {
            use std::sync::Once;
            static WARNED: Once = Once::new();
            WARNED.call_once(|| eprintln!("{message}"));
        }
    }
}

/// Derive a per-bucket marker path from the base marker (`…/kache-cow-warn-<hash>`
/// → `…/kache-cow-warn-<hash>.<bucket>`), so advisories of different severity
/// dedup independently.
#[cfg_attr(not(windows), allow(dead_code))]
fn bucket_marker(base: &Path, bucket: &str) -> std::path::PathBuf {
    let mut name = base.as_os_str().to_os_string();
    name.push(".");
    name.push(bucket);
    std::path::PathBuf::from(name)
}

/// Does the volume holding `path` support ReFS block-cloning (copy-on-write)?
/// `None` if the capability can't be determined.
///
/// This is the question `warn_no_cow_restore_once` actually needs answered —
/// asking the volume directly, rather than inferring "no CoW" from one failed
/// clone of one file (#508).
#[cfg(windows)]
fn windows_volume_supports_block_clone(path: &Path) -> Option<bool> {
    use std::os::windows::ffi::OsStrExt;
    use windows_sys::Win32::Storage::FileSystem::GetVolumeInformationW;
    use windows_sys::Win32::System::SystemServices::FILE_SUPPORTS_BLOCK_REFCOUNTING;

    let root = windows_volume_root(path)?;
    let wide: Vec<u16> = std::ffi::OsStr::new(&root)
        .encode_wide()
        .chain(Some(0))
        .collect();
    let mut flags: u32 = 0;
    let ok = unsafe {
        GetVolumeInformationW(
            wide.as_ptr(),
            std::ptr::null_mut(),
            0,
            std::ptr::null_mut(),
            std::ptr::null_mut(),
            &mut flags,
            std::ptr::null_mut(),
            0,
        )
    };
    if ok == 0 {
        return None;
    }
    Some(flags & FILE_SUPPORTS_BLOCK_REFCOUNTING != 0)
}

/// Volume mount root (e.g. `C:\` or `D:\`) that holds `path`, or `None` if it
/// can't be resolved. `path` need not exist; its nearest existing parent volume
/// is used. Used to tell a cross-volume copy-restore from a no-CoW one (#490).
#[cfg(windows)]
fn windows_volume_root(path: &Path) -> Option<String> {
    use std::os::windows::ffi::OsStrExt;
    use windows_sys::Win32::Storage::FileSystem::GetVolumePathNameW;

    let wide: Vec<u16> = path.as_os_str().encode_wide().chain(Some(0)).collect();
    let mut root = [0u16; 260];
    let ok = unsafe { GetVolumePathNameW(wide.as_ptr(), root.as_mut_ptr(), root.len() as u32) };
    if ok == 0 {
        return None;
    }
    let len = root.iter().position(|&c| c == 0).unwrap_or(root.len());
    Some(String::from_utf16_lossy(&root[..len]))
}

/// Set 0o755 after an executable/dylib reflink. Reflink preserves the store
/// blob's read-only mode, but runtime-loaded artifacts must be executable.
fn set_executable_permissions(path: &Path) -> Result<()> {
    #[cfg(unix)]
    {
        use std::os::unix::fs::PermissionsExt;
        fs::set_permissions(path, fs::Permissions::from_mode(0o755))
            .with_context(|| format!("setting executable permissions on {}", path.display()))?;
    }
    #[cfg(not(unix))]
    {
        let meta = fs::metadata(path)?;
        let mut perms = meta.permissions();
        perms.set_readonly(false);
        fs::set_permissions(path, perms)?;
    }
    Ok(())
}

/// Try a reflink (copy-on-write) clone.
///
/// `pub(crate)` so the store-ingest path can reflink a freshly-compiled
/// artifact into the content-addressed store (sharing blocks with the
/// build's own output) and account for it, mirroring the restore side.
#[cfg(target_os = "macos")]
pub(crate) fn try_reflink(src: &Path, dst: &Path) -> Result<()> {
    use std::ffi::CString;
    use std::os::unix::ffi::OsStrExt;

    let src_c = CString::new(src.as_os_str().as_bytes())?;
    let dst_c = CString::new(dst.as_os_str().as_bytes())?;

    // clonefile(2) on macOS / APFS
    unsafe extern "C" {
        fn clonefile(src: *const libc::c_char, dst: *const libc::c_char, flags: u32)
        -> libc::c_int;
    }

    let ret = unsafe { clonefile(src_c.as_ptr(), dst_c.as_ptr(), 0) };
    if ret == 0 {
        Ok(())
    } else {
        Err(std::io::Error::last_os_error().into())
    }
}

#[cfg(target_os = "linux")]
pub(crate) fn try_reflink(src: &Path, dst: &Path) -> Result<()> {
    use std::os::unix::io::AsRawFd;

    let src_file = fs::File::open(src)?;
    let dst_file = fs::File::create(dst)?;

    // FICLONE ioctl on Linux (btrfs, XFS with reflink)
    const FICLONE: libc::c_ulong = 0x40049409;

    // Cast needed: ioctl `request` is c_ulong on glibc but c_int on musl
    let ret = unsafe { libc::ioctl(dst_file.as_raw_fd(), FICLONE as _, src_file.as_raw_fd()) };
    if ret == 0 {
        Ok(())
    } else {
        // Clean up the created file on failure
        let _ = fs::remove_file(dst);
        Err(std::io::Error::last_os_error().into())
    }
}

/// Windows: ReFS block-clone (copy-on-write) via FSCTL_DUPLICATE_EXTENTS_TO_FILE.
///
/// On a ReFS volume (e.g. a Windows 11 Dev Drive) this gives an INDEPENDENT,
/// WRITABLE destination that still shares blocks with the source — so a restored
/// object dedups against the store blob AND a consumer can freely delete/rewrite
/// it (unlike a hardlink, which would be read-only — #429). NTFS has no
/// block-cloning, so this returns `Err` and the caller falls back to copy.
///
/// Correctness (per the ReFS block-cloning contract): clone only the
/// cluster-aligned PREFIX `[0, clone_len)` — cloning past the source's
/// end-of-file / valid-data-length is undefined — then byte-copy the sub-cluster
/// tail. On ANY error the caller deletes the partial dst, so a failed clone never
/// leaves a wrong file. The fresh dst is created writable and does NOT inherit
/// the store blob's read-only attribute (independent file).
#[cfg(windows)]
pub(crate) fn try_reflink(src: &Path, dst: &Path) -> Result<()> {
    let r = reflink_windows(src, dst);
    if r.is_err() {
        // Clear read-only defensively, then remove any partial dst so the
        // caller's copy starts from a clean slate.
        if let Ok(meta) = fs::metadata(dst) {
            let mut perms = meta.permissions();
            perms.set_readonly(false);
            let _ = fs::set_permissions(dst, perms);
        }
        let _ = fs::remove_file(dst);
    }
    r
}

#[cfg(windows)]
fn reflink_windows(src: &Path, dst: &Path) -> Result<()> {
    use std::io::{Read, Seek, SeekFrom};
    use std::mem::size_of;
    use std::os::windows::io::AsRawHandle;
    use windows_sys::Win32::System::IO::DeviceIoControl;
    use windows_sys::Win32::System::Ioctl::{
        DUPLICATE_EXTENTS_DATA, FSCTL_DUPLICATE_EXTENTS_TO_FILE,
    };

    let mut src_file = fs::File::open(src)?;
    let len = src_file.metadata()?.len();

    // Fresh, writable destination (CREATE_ALWAYS + read/write).
    let mut dst_file = fs::OpenOptions::new()
        .read(true)
        .write(true)
        .create(true)
        .truncate(true)
        .open(dst)?;

    if len == 0 {
        return Ok(()); // empty file: dst already created empty, nothing to clone
    }

    // Cluster size of the destination volume; clone ranges must be aligned to
    // it. A file smaller than one cluster has no aligned range at all, so bail
    // before the FSCTL rather than issuing a call that cannot succeed — this is
    // the common case for the many small `.d` files restored here (#508).
    let cluster = windows_cluster_size(dst)?;
    if len < cluster {
        anyhow::bail!("file smaller than one cluster; fall back to copy");
    }

    let clone_len = (len / cluster) * cluster;

    // Allocate the destination clusters and set EOF to the cloned prefix.
    dst_file.set_len(clone_len)?;

    let src_h = src_file.as_raw_handle();
    let dst_h = dst_file.as_raw_handle();
    // Each FSCTL range must be cluster-aligned and strictly < 4 GiB.
    let max_chunk = (((4u64 << 30) - 1) / cluster) * cluster;
    let mut off = 0u64;
    while off < clone_len {
        let chunk = (clone_len - off).min(max_chunk);
        let data = DUPLICATE_EXTENTS_DATA {
            FileHandle: src_h as _,
            SourceFileOffset: off as i64,
            TargetFileOffset: off as i64,
            ByteCount: chunk as i64,
        };
        let mut returned: u32 = 0;
        let ok = unsafe {
            DeviceIoControl(
                dst_h as _,
                FSCTL_DUPLICATE_EXTENTS_TO_FILE,
                &data as *const DUPLICATE_EXTENTS_DATA as *const _,
                size_of::<DUPLICATE_EXTENTS_DATA>() as u32,
                std::ptr::null_mut(),
                0,
                &mut returned,
                std::ptr::null_mut(),
            )
        };
        if ok == 0 {
            return Err(std::io::Error::last_os_error().into());
        }
        off += chunk;
    }

    // Byte-copy the sub-cluster tail, if any, then set the exact final length.
    if clone_len < len {
        src_file.seek(SeekFrom::Start(clone_len))?;
        dst_file.seek(SeekFrom::Start(clone_len))?;
        let copied = std::io::copy(&mut (&mut src_file).take(len - clone_len), &mut dst_file)?;
        anyhow::ensure!(copied == len - clone_len, "short tail copy");
    }
    dst_file.set_len(len)?;
    Ok(())
}

/// Allocation (cluster) size of the volume that holds `path`, in bytes.
/// Used to align ReFS block-clone ranges. `path` need not exist; its nearest
/// existing parent volume is resolved.
#[cfg(windows)]
fn windows_cluster_size(path: &Path) -> Result<u64> {
    use std::os::windows::ffi::OsStrExt;
    use windows_sys::Win32::Storage::FileSystem::{GetDiskFreeSpaceW, GetVolumePathNameW};

    let wide: Vec<u16> = path.as_os_str().encode_wide().chain(Some(0)).collect();
    let mut root = [0u16; 260];
    let ok = unsafe { GetVolumePathNameW(wide.as_ptr(), root.as_mut_ptr(), root.len() as u32) };
    if ok == 0 {
        return Err(std::io::Error::last_os_error().into());
    }
    let (mut spc, mut bps, mut _free, mut _total): (u32, u32, u32, u32) = (0, 0, 0, 0);
    let ok =
        unsafe { GetDiskFreeSpaceW(root.as_ptr(), &mut spc, &mut bps, &mut _free, &mut _total) };
    if ok == 0 {
        return Err(std::io::Error::last_os_error().into());
    }
    let cluster = spc as u64 * bps as u64;
    anyhow::ensure!(cluster > 0, "zero cluster size");
    Ok(cluster)
}

#[cfg(not(any(target_os = "macos", target_os = "linux", windows)))]
pub(crate) fn try_reflink(_src: &Path, _dst: &Path) -> Result<()> {
    anyhow::bail!("reflink not supported on this platform")
}

/// Regular file copy with appropriate permissions.
/// `executable`: if true, sets 0o755 (rwxr-xr-x); otherwise 0o644 (rw-r--r--).
fn copy_file(src: &Path, dst: &Path, executable: bool) -> Result<()> {
    fs::copy(src, dst)
        .with_context(|| format!("copying {} to {}", src.display(), dst.display()))?;

    #[cfg(unix)]
    {
        use std::os::unix::fs::PermissionsExt;
        let mode = if executable { 0o755 } else { 0o644 };
        fs::set_permissions(dst, fs::Permissions::from_mode(mode))?;
    }
    #[cfg(not(unix))]
    {
        let _ = executable;
        let meta = fs::metadata(dst)?;
        let mut perms = meta.permissions();
        perms.set_readonly(false);
        fs::set_permissions(dst, perms)?;
    }

    tracing::debug!("copied {} -> {}", src.display(), dst.display());
    Ok(())
}

/// A fully-written C/C++ cache artifact awaiting publication.
///
/// The staging file is created in the target directory with the same requested
/// mode as a compiler output (`0666`). The kernel therefore applies the current
/// umask and any inherited default ACL exactly where the final file will live.
/// No metadata operation is performed through the final pathname.
pub(crate) struct PreparedWritableTarget {
    staged: tempfile::NamedTempFile,
    target: PathBuf,
    bytes: u64,
}

impl PreparedWritableTarget {
    pub(crate) fn target(&self) -> &Path {
        &self.target
    }

    pub(crate) fn publish(self) -> Result<()> {
        let target = self.target;
        self.staged
            .persist_noclobber(&target)
            .map_err(|error| error.error)
            .with_context(|| {
                format!(
                    "publishing cc output without replacing {}",
                    target.display()
                )
            })?;
        crate::opcounts::record_copied(self.bytes);
        Ok(())
    }

    /// Atomically replace an existing ordinary compiler output.
    ///
    /// The caller must first establish that the target is a private, writable
    /// regular file. Special paths retain the no-clobber path above and are
    /// handled by the selected compiler instead.
    pub(crate) fn publish_replacing(self) -> Result<()> {
        let target = self.target;
        self.staged
            .persist(&target)
            .map_err(|error| error.error)
            .with_context(|| format!("publishing cc output over {}", target.display()))?;
        crate::opcounts::record_copied(self.bytes);
        Ok(())
    }
}

fn new_writable_staging_file(target: &Path) -> Result<tempfile::NamedTempFile> {
    let parent = target
        .parent()
        .filter(|path| !path.as_os_str().is_empty())
        .unwrap_or_else(|| Path::new("."));
    let mut builder = tempfile::Builder::new();
    builder.prefix(".kache-cc-restore-");
    #[cfg(unix)]
    {
        use std::os::unix::fs::PermissionsExt;
        builder.permissions(fs::Permissions::from_mode(0o666));
    }
    builder
        .tempfile_in(parent)
        .with_context(|| format!("creating cc restore staging file in {}", parent.display()))
}

/// Prepare cached file bytes without touching an existing target entry.
pub(crate) fn prepare_writable_target_from_file(
    src: &Path,
    target: &Path,
) -> Result<PreparedWritableTarget> {
    let mut source = fs::File::open(src)
        .with_context(|| format!("opening cached cc artifact {}", src.display()))?;
    let mut staged = new_writable_staging_file(target)?;
    let bytes = std::io::copy(&mut source, &mut staged).with_context(|| {
        format!(
            "copying cached cc artifact {} for {}",
            src.display(),
            target.display()
        )
    })?;
    Ok(PreparedWritableTarget {
        staged,
        target: target.to_path_buf(),
        bytes,
    })
}

/// Prepare transformed C/C++ bytes with the same absent-only guarantee.
pub(crate) fn prepare_writable_target_from_bytes(
    target: &Path,
    content: &[u8],
) -> Result<PreparedWritableTarget> {
    use std::io::Write;

    let mut staged = new_writable_staging_file(target)?;
    staged
        .write_all(content)
        .with_context(|| format!("writing staged cc output for {}", target.display()))?;
    Ok(PreparedWritableTarget {
        staged,
        target: target.to_path_buf(),
        bytes: content.len() as u64,
    })
}

/// Remove any file already at `target_path` so a fresh clone / hardlink /
/// write can take its place. A previous restore may have left a
/// read-only hardlink or reflink of a store blob here.
fn clear_target(target_path: &Path) -> Result<()> {
    if target_path.exists() || target_path.symlink_metadata().is_ok() {
        #[cfg(windows)]
        if let Ok(meta) = fs::metadata(target_path) {
            let mut perms = meta.permissions();
            perms.set_readonly(false);
            let _ = fs::set_permissions(target_path, perms);
        }
        fs::remove_file(target_path)
            .with_context(|| format!("removing existing file at {}", target_path.display()))?;
    }
    Ok(())
}

/// Materialize a restored artifact from content computed in memory.
///
/// Used when a post-restore content transform changed the bytes (dep-info
/// path expansion): the final content is written as a fresh, independent,
/// writable file. By construction it shares no inode with the store blob
/// and is not read-only — this is the "compute the final bytes, then
/// materialize" path, as opposed to linking the blob and patching it in
/// place (which fails on a read-only or inode-shared restore).
///
/// `strategy` mirrors [`link_to_target`]: `Copy` is the OS-loadable set
/// (executables, dylibs) and yields `0o755` so cargo / the OS can run or
/// load the result; `Hardlink` (dep-info `.d` and other immutable kinds)
/// yields `0o644`. Keeping the same `Copy ⟺ executable` proxy in both
/// restore primitives means the "executables stay executable" contract
/// holds no matter which path materializes the file — including a future
/// content transform applied to an executable artifact (issue #298).
pub fn write_restored(target_path: &Path, content: &[u8], strategy: LinkStrategy) -> Result<()> {
    let do_write = || -> Result<()> {
        clear_target(target_path)?;
        fs::write(target_path, content)
            .with_context(|| format!("writing restored file {}", target_path.display()))?;
        #[cfg(unix)]
        {
            use std::os::unix::fs::PermissionsExt;
            let mode = if matches!(strategy, LinkStrategy::Copy) {
                0o755
            } else {
                0o644
            };
            fs::set_permissions(target_path, fs::Permissions::from_mode(mode))
                .with_context(|| format!("setting perms on {}", target_path.display()))?;
        }
        #[cfg(not(unix))]
        let _ = strategy;
        Ok(())
    };

    let mut err = match do_write() {
        Ok(()) => return Ok(()),
        Err(e) => e,
    };

    if err.chain().any(|e| {
        e.downcast_ref::<std::io::Error>()
            .is_some_and(|io| io.kind() == std::io::ErrorKind::NotFound)
    }) && let Some(parent) = target_path.parent()
    {
        fs::create_dir_all(parent)
            .with_context(|| format!("creating parent dir for {}", target_path.display()))?;
        if let Err(e) = do_write() {
            err = e;
        } else {
            return Ok(());
        }
    }

    Err(err)
}

/// Stamp a restored file's mtime as "written now", through the same clock
/// the filesystem stamps writes with: `futimens(UTIME_NOW)` on unix, a
/// sibling write-clock sample elsewhere — never a bare `FileTime::now()`.
///
/// The stamp itself is required: cargo re-runs build scripts in a cleaned
/// tree, and its `StaleDependency` freshness rule compares those fresh run
/// outputs against our restored artifacts' mtimes — a restored file older
/// than its unit's build-script `output` is permanently dirty. So restored
/// files must read as "written now".
///
/// The clock choice is the subtle part (kunobi-ninja/kache#677, the #135
/// "flake"): `filetime::FileTime::now()` samples the precise realtime clock,
/// which on Linux runs AHEAD of the coarse clock the kernel stamps file
/// writes with (by up to a tick — the observed inversions are
/// sub-millisecond). A precise-clock touch can therefore postdate files the
/// build tool writes *after* the restore (a build script's `output`), which
/// cargo reads as `StaleDependency` — identical back-to-back builds never
/// reach a no-op. On Linux, `UTIME_NOW` resolves in the kernel through the
/// same timestamp source as writes (fs/utimes.c -> inode current-time), so
/// the restored file's mtime is >= everything written before it and <=
/// everything written after it — exactly the ordering cargo needs. That is a
/// verified kernel property on local Linux filesystems only: macOS resolves
/// `UTIME_NOW` in libsyscall via `gettimeofday` (microseconds, empirically
/// green in the e2e suite on APFS but not the same mechanism), and network /
/// FUSE filesystems make no such guarantee.
pub fn touch_mtime_write_clock(path: &Path) -> Result<()> {
    // Any failure below propagates to `restore_from_cache`'s callers, which
    // treat it as a clean miss and recompile (never a failed build) — so
    // fail-closed checks here cost a recompile, not correctness.
    #[cfg(unix)]
    {
        use std::os::fd::{AsRawFd, FromRawFd};
        use std::os::unix::ffi::OsStrExt;

        // Stamp through an fd rather than the path (kunobi-ninja/kache#682):
        // `O_NOFOLLOW` fails closed if the artifact was swapped for a symlink
        // between materialization and stamp, and `fstat` proves the object is
        // still a regular file before it is re-dated. `O_RDONLY` is
        // deliberate — restored hardlinks may be read-only (0444), and
        // `futimens`'s permission check for an OMIT/NOW pair is against the
        // inode (owner or privileged), not the fd's open mode.
        let cpath = std::ffi::CString::new(path.as_os_str().as_bytes())
            .with_context(|| format!("path contains NUL: {}", path.display()))?;
        // O_NONBLOCK: a swapped-in FIFO would otherwise block `open`
        // forever; for a regular file the flag is a no-op.
        let raw = unsafe {
            libc::open(
                cpath.as_ptr(),
                libc::O_RDONLY | libc::O_NOFOLLOW | libc::O_CLOEXEC | libc::O_NONBLOCK,
            )
        };
        if raw < 0 {
            return Err(std::io::Error::last_os_error())
                .with_context(|| format!("opening {} to touch it", path.display()));
        }
        let fd = unsafe { std::os::fd::OwnedFd::from_raw_fd(raw) };

        let mut st: libc::stat = unsafe { std::mem::zeroed() };
        if unsafe { libc::fstat(fd.as_raw_fd(), &mut st) } != 0 {
            return Err(std::io::Error::last_os_error())
                .with_context(|| format!("stat of {} before touch", path.display()));
        }
        if st.st_mode & libc::S_IFMT != libc::S_IFREG {
            anyhow::bail!(
                "refusing to touch {}: not a regular file (mode {:o})",
                path.display(),
                st.st_mode
            );
        }

        // atime is left untouched (UTIME_OMIT); mtime gets the write clock.
        let times = [
            libc::timespec {
                tv_sec: 0,
                tv_nsec: libc::UTIME_OMIT,
            },
            libc::timespec {
                tv_sec: 0,
                tv_nsec: libc::UTIME_NOW,
            },
        ];
        if unsafe { libc::futimens(fd.as_raw_fd(), times.as_ptr()) } != 0 {
            return Err(std::io::Error::last_os_error())
                .with_context(|| format!("updating mtime of {}", path.display()));
        }
    }

    // Non-unix targets have no UTIME_NOW, so sample the filesystem's write
    // clock directly: write a sibling temp file in the same directory (same
    // volume — timestamp behavior is per-filesystem), read back the mtime it
    // was stamped with, and apply that value to the target. Sampling BEFORE
    // stamping is the safe direction: the stamp can only sit slightly in the
    // past relative to later writes, never ahead of them — the #677/#681
    // inversion was the precise clock stamping AHEAD of write timestamps
    // (measured ~1.8 ms on NTFS by the first Windows CI run of the ordering
    // test below). A sampling failure PROPAGATES: falling back to
    // `FileTime::now()` would silently reintroduce the known-bad precise
    // stamp, whereas an error here degrades to a clean recompile at the
    // restore call sites.
    #[cfg(not(unix))]
    {
        let now = sample_write_clock(path)
            .with_context(|| format!("sampling write clock next to {}", path.display()))?;

        // On Windows, hardlinked files share permissions with the store
        // blob, which is read-only. Temporarily make it writable to update
        // the mtime, then restore the read-only flag.
        #[cfg(windows)]
        {
            let meta = fs::metadata(path)?;
            let was_readonly = meta.permissions().readonly();
            if was_readonly {
                let mut perms = meta.permissions();
                perms.set_readonly(false);
                fs::set_permissions(path, perms)?;
            }
            let result = filetime::set_file_mtime(path, now);
            if was_readonly {
                let mut perms = fs::metadata(path)?.permissions();
                perms.set_readonly(true);
                let _ = fs::set_permissions(path, perms);
            }
            result.with_context(|| format!("updating mtime of {}", path.display()))?;
        }

        #[cfg(not(windows))]
        filetime::set_file_mtime(path, now)
            .with_context(|| format!("updating mtime of {}", path.display()))?;
    }

    Ok(())
}

/// Sample the write clock of the filesystem holding `path`: create a sibling
/// temp file (exclusively — never truncating something that already exists),
/// write to it, close it, and read the mtime the filesystem gave that write.
/// The close between write and stat matters on Windows, where the last-write
/// time of an open handle may not be visible to a path-based stat until the
/// handle closes. Returns an error on failure (e.g. the directory is not
/// writable); the caller propagates it, degrading to a recompile.
#[cfg(not(unix))]
fn sample_write_clock(path: &Path) -> Result<filetime::FileTime> {
    use std::io::Write;
    use std::sync::atomic::{AtomicU64, Ordering};
    static COUNTER: AtomicU64 = AtomicU64::new(0);

    let dir = path
        .parent()
        .filter(|p| !p.as_os_str().is_empty())
        .unwrap_or_else(|| Path::new("."));

    // `create_new` refuses to open an existing file (and does not follow a
    // symlink/reparse point squatting on the name), so a PID-reuse leftover
    // or a planted file can never be truncated or sampled — the attempt
    // just moves to the next name. Leftovers from a crash between create
    // and remove are benign litter under a distinctive dotted name.
    let mut last_err: Option<std::io::Error> = None;
    for _ in 0..8 {
        let probe = dir.join(format!(
            ".kache-clock-{}-{}",
            std::process::id(),
            COUNTER.fetch_add(1, Ordering::Relaxed)
        ));
        let created = fs::OpenOptions::new()
            .write(true)
            .create_new(true)
            .open(&probe);
        let mut file = match created {
            Ok(f) => f,
            Err(e) if e.kind() == std::io::ErrorKind::AlreadyExists => continue,
            Err(e) => {
                last_err = Some(e);
                break;
            }
        };
        let sampled = (|| {
            file.write_all(b"t")?;
            drop(file);
            let meta = fs::metadata(&probe)?;
            Ok::<_, std::io::Error>(filetime::FileTime::from_last_modification_time(&meta))
        })();
        let _ = fs::remove_file(&probe);
        return sampled.with_context(|| format!("write-clock probe {}", probe.display()));
    }
    Err(last_err
        .map(anyhow::Error::from)
        .unwrap_or_else(|| anyhow::anyhow!("no free probe name after 8 attempts")))
    .with_context(|| format!("creating write-clock probe in {}", dir.display()))
}

const DEPINFO_ROOT_SENTINEL: &str = "__kache_root__/";
const DEPINFO_CWD_SENTINEL: &str = "__kache_cwd__/";
const DEPINFO_WORKSPACE_SENTINEL: &str = "__kache_workspace__/";
const DEPINFO_TARGET_SENTINEL: &str = "__kache_target_rule__/";

/// rustc's `# env-dep:NAME=value` records carry their own escape grammar:
/// backslash is written `\\` (and newline/CR as `\n`/`\r`), and cargo's
/// parser hard-rejects every other backslash sequence with
/// "unknown escape character". A path prefix can only contribute the
/// backslash case.
const DEPINFO_ENV_DEP_PREFIX: &str = "# env-dep:";

fn escape_depinfo_env_value(prefix: &str) -> String {
    prefix.replace('\\', "\\\\")
}

fn escape_depinfo_make_path(prefix: &str) -> String {
    prefix.replace(' ', "\\ ")
}

/// Pure dep-info path rewrite: relativize absolute project paths to a
/// kache-only sentinel, or expand that sentinel back to absolute paths.
/// No I/O.
///
/// This is the in-memory half of the transform. The restore side calls
/// it directly — it computes the final `.d` content from the store blob
/// and materializes the result with [`write_restored`], so it never
/// rewrites a restored, possibly read-only, possibly inode-shared file in
/// place. The Rust store side calls the two-root variant while creating a
/// private store snapshot; C/C++ keeps using this one-root form.
pub fn rewrite_depinfo_content(content: &str, project_dir: &Path, mode: DepInfoMode) -> String {
    rewrite_depinfo_content_with_sentinel(content, project_dir, DEPINFO_ROOT_SENTINEL, mode)
}

/// Rust dep-info carries two independently relocatable path families: target
/// outputs and sources below Cargo's invocation directory. Re-root both with
/// distinct sentinels so a cached `.d` never leaves Cargo watching a live donor
/// worktree after the artifact moves (#760).
#[cfg(test)]
pub fn rewrite_rustc_depinfo_content(
    content: &str,
    target_dir: &Path,
    working_dir: &Path,
    workspace_dir: Option<&Path>,
    mode: DepInfoMode,
) -> String {
    rewrite_rustc_depinfo_content_with_configured_roots(
        content,
        target_dir,
        working_dir,
        workspace_dir,
        &[],
        mode,
    )
}

pub fn rewrite_rustc_depinfo_content_with_configured_roots(
    content: &str,
    target_dir: &Path,
    working_dir: &Path,
    workspace_dir: Option<&Path>,
    configured_roots: &[(PathBuf, String, u8)],
    mode: DepInfoMode,
) -> String {
    let mut automatic_roots = vec![(
        working_dir.to_path_buf(),
        DEPINFO_CWD_SENTINEL.to_string(),
        4_u8,
        2_u8,
    )];
    if let Some(workspace_dir) = workspace_dir {
        automatic_roots.push((
            workspace_dir.to_path_buf(),
            DEPINFO_WORKSPACE_SENTINEL.to_string(),
            4_u8,
            1_u8,
        ));
    }

    if matches!(mode, DepInfoMode::Relativize) {
        let mut roots = configured_roots
            .iter()
            .map(|(root, sentinel, priority)| {
                (root.clone(), sentinel.clone(), *priority, 0_u8, true)
            })
            .chain(
                automatic_roots
                    .iter()
                    .map(|(root, sentinel, priority, tie)| {
                        (root.clone(), sentinel.clone(), *priority, *tie, false)
                    }),
            )
            .collect::<Vec<_>>();
        roots.sort_by_key(|(root, _, priority, tie, exact)| {
            std::cmp::Reverse((
                *priority,
                u8::from(*exact),
                root.components().count(),
                root.as_os_str().len(),
                *tie,
            ))
        });
        let target_rewritten = rewrite_rustc_depinfo_targets(content, target_dir, mode);
        // Dependencies generated beneath Cargo's effective target directory
        // must move with that target even when it lives inside the workspace.
        // Otherwise the higher-ranked WORKSPACE source rule captures
        // `target_1/.../OUT_DIR/private.rs`, and a parallel target_2 consumer
        // restores the donor path (#808). Targets on the left have already
        // become DEPINFO_ROOT_SENTINEL, so this only claims source inputs.
        let target_rewritten = rewrite_depinfo_content_with_sentinel(
            &target_rewritten,
            target_dir,
            DEPINFO_TARGET_SENTINEL,
            mode,
        );
        return roots.into_iter().fold(
            target_rewritten,
            |rewritten, (root, sentinel, _, _, exact)| {
                if exact {
                    rewrite_depinfo_content_with_exact_sentinel(&rewritten, &root, &sentinel, mode)
                } else {
                    rewrite_depinfo_content_with_sentinel(&rewritten, &root, &sentinel, mode)
                }
            },
        );
    }

    // A portable owner may have multiple producer aliases, but the first entry
    // for its sentinel is the designated lexical consumer root. Expand each
    // sentinel exactly once so a longer canonical alias cannot steal restore.
    // Expand the effective target before configured roots. A configured root
    // list can contain the same target sentinel with a stale/relative lexical
    // spelling; the argv-derived target_dir is the authoritative consumer.
    let mut rewritten =
        rewrite_depinfo_content_with_sentinel(content, target_dir, DEPINFO_TARGET_SENTINEL, mode);
    let mut expanded = std::collections::HashSet::new();
    for (root, sentinel, _) in configured_roots {
        if expanded.insert(sentinel) {
            rewritten =
                rewrite_depinfo_content_with_exact_sentinel(&rewritten, root, sentinel, mode);
        }
    }
    let rewritten =
        automatic_roots
            .into_iter()
            .fold(rewritten, |rewritten, (root, sentinel, _, _)| {
                rewrite_depinfo_content_with_sentinel(&rewritten, &root, &sentinel, mode)
            });
    rewrite_rustc_depinfo_targets(&rewritten, target_dir, mode)
}

/// Rebase only Makefile target tokens (left of rustc's `: ` delimiter).
/// Dependencies on the right are source inputs and are handled separately:
/// effective-target sources first, then PathNormalizer ownership.
fn rewrite_rustc_depinfo_targets(content: &str, target_dir: &Path, mode: DepInfoMode) -> String {
    content
        .split_inclusive('\n')
        .map(|line| {
            if line.starts_with(DEPINFO_ENV_DEP_PREFIX) {
                return line.to_string();
            }
            let Some(delimiter) = line.find(": ") else {
                return line.to_string();
            };
            let (targets, dependencies) = line.split_at(delimiter);
            let rewritten = rewrite_depinfo_content_with_sentinel(
                targets,
                target_dir,
                DEPINFO_ROOT_SENTINEL,
                mode,
            );
            format!("{rewritten}{dependencies}")
        })
        .collect()
}

/// Rewrite one exact configured-rule spelling. Configured roots already carry
/// their explicitly constructed lexical/canonical/Windows aliases; adding a
/// fresh canonical alias here could let one configured symlink steal another
/// configured slot's sentinel.
fn rewrite_depinfo_content_with_exact_sentinel(
    content: &str,
    project_dir: &Path,
    sentinel: &str,
    mode: DepInfoMode,
) -> String {
    rewrite_depinfo_content_with_exact_sentinel_for_platform(
        content,
        project_dir,
        sentinel,
        mode,
        cfg!(windows),
    )
}

fn rewrite_depinfo_content_with_exact_sentinel_for_platform(
    content: &str,
    project_dir: &Path,
    sentinel: &str,
    mode: DepInfoMode,
    windows: bool,
) -> String {
    let prefixes = depinfo_prefixes_for_exact_display(&project_dir.to_string_lossy(), windows);
    rewrite_depinfo_content_with_prefixes_and_sentinel(content, &prefixes, sentinel, mode)
}

fn depinfo_prefixes_for_exact_display(raw: &str, windows: bool) -> Vec<String> {
    if windows {
        // Expand uses the first spelling. Preserve the configured spelling:
        // verbatim/native Windows paths require `\`, while slash-form paths
        // (including the platform-neutral paths used by pure tests) keep `/`.
        let (first, second) = if windows_display_prefers_backslash(raw) {
            ('\\', '/')
        } else {
            ('/', '\\')
        };
        vec![
            with_trailing_separator(raw, first),
            with_trailing_separator(raw, second),
        ]
    } else {
        vec![with_trailing_separator(raw, '/')]
    }
}

fn rewrite_depinfo_content_with_sentinel(
    content: &str,
    project_dir: &Path,
    sentinel: &str,
    mode: DepInfoMode,
) -> String {
    rewrite_depinfo_content_with_sentinel_for_platform(
        content,
        project_dir,
        sentinel,
        mode,
        cfg!(windows),
    )
}

fn rewrite_depinfo_content_with_sentinel_for_platform(
    content: &str,
    project_dir: &Path,
    sentinel: &str,
    mode: DepInfoMode,
    windows: bool,
) -> String {
    let mut roots = vec![project_dir.to_path_buf()];
    if matches!(mode, DepInfoMode::Relativize)
        && let Ok(canonical) = project_dir.canonicalize()
        && canonical != project_dir
    {
        roots.push(canonical);
    }
    let mut prefixes = Vec::new();
    for root in roots {
        prefixes.extend(depinfo_prefixes_for_display(
            &root.to_string_lossy(),
            matches!(mode, DepInfoMode::Relativize),
            windows,
        ));
    }
    let mut seen = std::collections::HashSet::new();
    prefixes.retain(|prefix| seen.insert(prefix.clone()));
    rewrite_depinfo_content_with_prefixes_and_sentinel(content, &prefixes, sentinel, mode)
}

fn depinfo_prefixes_for_display(
    raw: &str,
    retain_verbatim_alias: bool,
    windows: bool,
) -> Vec<String> {
    let stripped = raw
        .strip_prefix(r"\\?\UNC\")
        .map(|path| format!(r"\\{path}"))
        .or_else(|| raw.strip_prefix(r"\\?\").map(str::to_string))
        .unwrap_or_else(|| raw.to_string());
    let mut displays = vec![stripped.clone()];
    if retain_verbatim_alias && raw != stripped {
        displays.push(raw.to_string());
    }
    let mut prefixes = Vec::new();
    for display in displays {
        if windows {
            let prefers_backslash = windows_display_prefers_backslash(&display);
            let verbatim = display.starts_with(r"\\?\");
            let preferred = if verbatim {
                display.clone()
            } else if prefers_backslash {
                display.replace('/', "\\")
            } else {
                display.replace('\\', "/")
            };
            let alternate = if prefers_backslash {
                display.replace('\\', "/")
            } else {
                display.replace('/', "\\")
            };
            let (first, second) = if prefers_backslash {
                ('\\', '/')
            } else {
                ('/', '\\')
            };
            prefixes.push(with_trailing_separator(&preferred, first));
            prefixes.push(with_trailing_separator(&display, first));
            prefixes.push(with_trailing_separator(&display, second));
            if retain_verbatim_alias && !verbatim {
                prefixes.push(with_trailing_separator(&alternate, second));
            }
        } else {
            prefixes.push(with_trailing_separator(&display, '/'));
        }
    }
    prefixes
}

fn windows_display_prefers_backslash(display: &str) -> bool {
    let bytes = display.as_bytes();
    display.starts_with('\\')
        || (bytes.first().is_some_and(u8::is_ascii_alphabetic)
            && bytes.get(1) == Some(&b':')
            && bytes.get(2) == Some(&b'\\'))
}

fn with_trailing_separator(display: &str, separator: char) -> String {
    let mut value = display.to_string();
    if value.ends_with('/') || value.ends_with('\\') {
        value.pop();
    }
    value.push(separator);
    value
}

/// Prefix-parameterized core of the Windows [`rewrite_depinfo_content`]
/// branch, split out so the dual-spelling behavior is unit-testable on every
/// host.
///
/// `# env-dep:NAME=value` values are transformed through rustc's env-dep
/// escape grammar: a backslash-bearing prefix appears there as `\\`, so
/// Relativize matches the escaped spelling (never splitting an escape pair
/// in two) and Expand inserts the escaped spelling (never creating an escape
/// cargo rejects, kunobi-ninja/kache#730). The record's key is an environment
/// variable NAME, never a path — it is left untouched, as is a key-only
/// record without `=`.
#[cfg(test)]
fn rewrite_depinfo_content_with_prefixes(
    content: &str,
    prefixes: &[String],
    mode: DepInfoMode,
) -> String {
    rewrite_depinfo_content_with_prefixes_and_sentinel(
        content,
        prefixes,
        DEPINFO_ROOT_SENTINEL,
        mode,
    )
}

fn rewrite_depinfo_content_with_prefixes_and_sentinel(
    content: &str,
    prefixes: &[String],
    sentinel: &str,
    mode: DepInfoMode,
) -> String {
    content
        .split_inclusive('\n')
        .map(|line| {
            if let Some(record) = line.strip_prefix(DEPINFO_ENV_DEP_PREFIX) {
                let Some((key, value)) = record.split_once('=') else {
                    return line.to_string();
                };
                let value = match mode {
                    DepInfoMode::Relativize => prefixes.iter().fold(value.to_string(), |acc, p| {
                        replace_depinfo_text(
                            &acc,
                            &escape_depinfo_env_value(p),
                            sentinel,
                            cfg!(windows),
                            DepInfoTextContext::EnvValue,
                        )
                    }),
                    DepInfoMode::Expand => replace_depinfo_text(
                        value,
                        sentinel,
                        &escape_depinfo_env_value(&prefixes[0]),
                        false,
                        DepInfoTextContext::EnvValue,
                    ),
                };
                format!("{DEPINFO_ENV_DEP_PREFIX}{key}={value}")
            } else {
                match mode {
                    DepInfoMode::Relativize => prefixes.iter().fold(line.to_string(), |acc, p| {
                        let escaped = escape_depinfo_make_path(p);
                        let escaped = replace_depinfo_text(
                            &acc,
                            &escaped,
                            sentinel,
                            cfg!(windows),
                            DepInfoTextContext::MakeLine,
                        );
                        replace_depinfo_text(
                            &escaped,
                            p,
                            sentinel,
                            cfg!(windows),
                            DepInfoTextContext::MakeLine,
                        )
                    }),
                    DepInfoMode::Expand => replace_depinfo_text(
                        line,
                        sentinel,
                        &escape_depinfo_make_path(&prefixes[0]),
                        false,
                        DepInfoTextContext::MakeLine,
                    ),
                }
            }
        })
        .collect()
}

#[derive(Clone, Copy)]
enum DepInfoTextContext {
    MakeLine,
    EnvValue,
}

fn replace_depinfo_text(
    input: &str,
    needle: &str,
    replacement: &str,
    ascii_case_insensitive: bool,
    context: DepInfoTextContext,
) -> String {
    if needle.is_empty() {
        return input.to_string();
    }
    let input_bytes = input.as_bytes();
    let needle_bytes = needle.as_bytes();
    let mut output = String::with_capacity(input.len());
    let mut copied = 0;
    let mut search = 0;
    while search + needle_bytes.len() <= input_bytes.len() {
        // Every path out of this iteration must leave `search` past where it
        // started. Both do: a rejected match steps to the next char boundary,
        // and an accepted one resumes after the replacement. Checked rather
        // than assumed because the failure is not a wrong answer — the scan
        // re-matches the same offset forever while `output` keeps growing, so
        // an index slip here exhausts memory instead of returning. Debug-only,
        // so the release scan is unchanged.
        let scan_start = search;
        let offset = if ascii_case_insensitive {
            input_bytes[search..]
                .windows(needle_bytes.len())
                .position(|window| window.eq_ignore_ascii_case(needle_bytes))
        } else {
            input[search..].find(needle)
        };
        let Some(offset) = offset else {
            break;
        };
        let found = search + offset;
        let end = found + needle_bytes.len();
        // UTF-8 is self-synchronizing: a valid UTF-8 `needle` cannot match
        // across code-point boundaries. `str::find` guarantees this directly;
        // the ASCII-insensitive byte scan changes only ASCII case.
        if !depinfo_path_prefix_has_left_boundary(input, found, context) {
            search = depinfo_next_char_boundary(input, found);
            debug_assert!(scan_start < search, "rejected match must advance");
            continue;
        }
        output.push_str(&input[copied..found]);
        output.push_str(replacement);
        copied = end;
        search = copied;
        debug_assert!(scan_start < search, "replaced match must advance");
    }
    output.push_str(&input[copied..]);
    output
}

/// Byte index of the char boundary after the one starting at `start`, or the
/// end of `input` when `start` holds the last char.
///
/// This is `replace_depinfo_text`'s progress guarantee: the loop calls it to
/// step past a match it has rejected, so the result must be strictly greater
/// than `start` or the search cannot terminate. Named rather than inlined so
/// the guarantee can be asserted directly, by
/// `depinfo_next_char_boundary_always_advances_past_the_current_char`, instead
/// of only showing up as the caller looping.
///
/// The name is prefixed because `config_tui` has an unrelated
/// `next_char_boundary`, and mutation excludes match on function name.
fn depinfo_next_char_boundary(input: &str, start: usize) -> usize {
    input[start..]
        .char_indices()
        .nth(1)
        .map_or(input.len(), |(next, _)| start + next)
}

fn depinfo_path_prefix_has_left_boundary(
    input: &str,
    start: usize,
    context: DepInfoTextContext,
) -> bool {
    if start == 0 {
        return true;
    }
    if matches!(context, DepInfoTextContext::EnvValue) {
        return false;
    }
    let before = &input[..start];
    let Some((delimiter_start, delimiter)) = before.char_indices().next_back() else {
        return false;
    };
    if !delimiter.is_whitespace() && delimiter != ':' {
        return false;
    }
    before[..delimiter_start]
        .chars()
        .rev()
        .take_while(|ch| *ch == '\\')
        .count()
        .is_multiple_of(2)
}

/// Rewrite a `.d` (dep-info) file in place.
///
/// Used on the **store** side, where the file is the build's own
/// freshly-written, writable dep-info. The restore side does NOT use this
/// — it computes the rewritten content in memory via
/// [`rewrite_depinfo_content`] (or its Rust two-root variant), then materializes
/// it with [`write_restored`]. This honors "compute the final bytes, then
/// materialize" rather than patching a restored file in place.
#[cfg(test)]
pub fn rewrite_depinfo(depinfo_path: &Path, project_dir: &Path, mode: DepInfoMode) -> Result<()> {
    let content = fs::read_to_string(depinfo_path)
        .with_context(|| format!("reading dep-info file {}", depinfo_path.display()))?;

    let rewritten = rewrite_depinfo_content(&content, project_dir, mode);
    write_rewritten_depinfo(depinfo_path, rewritten)
}

#[cfg(test)]
fn write_rewritten_depinfo(depinfo_path: &Path, rewritten: String) -> Result<()> {
    // Defense-in-depth: if the file is hardlinked (nlink > 1), unlink
    // first so the in-place write can't mutate a shared inode. On the
    // store side `Store::put` never hardlinks `.d` blobs (DepInfo is
    // excluded from insert-side hardlinking precisely because of this
    // post-put in-place rewrite), so this rarely fires — but it keeps
    // `rewrite_depinfo` safe for any caller. Windows exposes no portable
    // nlink count; remove unconditionally there.
    #[cfg(unix)]
    if let Ok(meta) = fs::metadata(depinfo_path) {
        use std::os::unix::fs::MetadataExt;
        if meta.nlink() > 1 {
            let _ = fs::remove_file(depinfo_path);
        }
    }
    #[cfg(not(unix))]
    if depinfo_path.exists() {
        let _ = fs::remove_file(depinfo_path);
    }

    fs::write(depinfo_path, rewritten)?;
    Ok(())
}

#[derive(Debug, Clone, Copy)]
pub enum DepInfoMode {
    /// Replace absolute project paths with a kache sentinel for cross-project cache sharing.
    Relativize,
    /// Expand the kache sentinel back to absolute project paths after restoring.
    Expand,
}

#[cfg(test)]
mod tests {
    use super::*;

    /// The regression from #508: on a ReFS Dev Drive that DOES block-clone, a
    /// sub-cluster file (every `.d` under ~4 KB) falls back to copy — and kache
    /// used to blame the filesystem, once per rustc process, hundreds of times
    /// per build. A healthy volume must produce no advisory at all.
    #[test]
    fn sub_cluster_copy_on_a_cow_volume_is_not_a_no_cow_problem() {
        assert_eq!(
            classify_copy_restore(Some("G:\\"), Some("G:\\"), Some(true), Some(true)),
            CopyRestoreCause::SubClusterOnCowVolume,
        );
    }

    /// But silence must not extend to a file that COULD have been cloned and
    /// wasn't — that would hide a filter driver or a kache bug quietly demoting
    /// every large artifact to a copy.
    #[test]
    fn a_clonable_file_that_fails_to_clone_is_still_surfaced() {
        assert_eq!(
            classify_copy_restore(Some("G:\\"), Some("G:\\"), Some(true), Some(false)),
            CopyRestoreCause::UnexpectedOnCowVolume,
        );
        assert_eq!(
            classify_copy_restore(Some("G:\\"), Some("G:\\"), Some(true), None),
            CopyRestoreCause::UnexpectedOnCowVolume,
            "an unknown size must not be assumed benign",
        );
    }

    #[test]
    fn same_volume_without_block_cloning_is_a_real_no_cow_warning() {
        assert_eq!(
            classify_copy_restore(Some("C:\\"), Some("C:\\"), Some(false), Some(true)),
            CopyRestoreCause::NoCow,
        );
    }

    /// Cross-volume wins over capability: two Dev Drives still can't clone
    /// across the volume boundary, so the co-locate advice is the useful one.
    #[test]
    fn different_volumes_report_cross_volume_even_when_both_support_cow() {
        assert_eq!(
            classify_copy_restore(Some("C:\\"), Some("G:\\"), Some(true), Some(false)),
            CopyRestoreCause::CrossVolume,
        );
        assert_eq!(
            classify_copy_restore(Some("c:\\"), Some("C:\\"), Some(false), Some(true)),
            CopyRestoreCause::NoCow,
            "volume roots compare case-insensitively",
        );
    }

    /// A failed probe must still warn (a copy-restore IS happening) — but as
    /// "unknown", not as "no copy-on-write". Asserting NTFS from a failed probe
    /// would be the same unfounded claim that produced #508.
    #[test]
    fn a_failed_capability_probe_warns_without_claiming_no_cow() {
        assert_eq!(
            classify_copy_restore(Some("C:\\"), Some("C:\\"), None, Some(true)),
            CopyRestoreCause::UnknownCow,
        );
        assert_eq!(
            classify_copy_restore(None, None, None, None),
            CopyRestoreCause::UnknownCow,
        );
    }

    /// A benign storage-layout advisory must not be able to mute a genuine clone
    /// FAULT: they dedup in separate buckets, so one can't swallow the other.
    #[test]
    fn a_layout_advisory_cannot_mute_a_clone_fault() {
        let fault = CopyRestoreCause::UnexpectedOnCowVolume.warn_bucket();
        for benign in [
            CopyRestoreCause::NoCow,
            CopyRestoreCause::CrossVolume,
            CopyRestoreCause::UnknownCow,
        ] {
            assert_ne!(
                benign.warn_bucket(),
                fault,
                "{benign:?} must not share a dedup marker with a clone fault",
            );
        }

        let base = Path::new("/tmp/kache-cow-warn-abc123");
        assert_ne!(
            bucket_marker(base, CopyRestoreCause::NoCow.warn_bucket()),
            bucket_marker(base, fault),
        );
    }

    /// #551: `[cache] storage_layout_advice = false` mutes exactly the three
    /// layout advisories. The sub-cluster case is already silent, and the fault
    /// case must stay un-muteable — advice and faults are different severities.
    #[test]
    fn storage_layout_advice_mutes_advice_never_faults() {
        for advisory in [
            CopyRestoreCause::NoCow,
            CopyRestoreCause::CrossVolume,
            CopyRestoreCause::UnknownCow,
        ] {
            assert!(
                advisory.is_layout_advisory(),
                "{advisory:?} is layout advice and must be muteable",
            );
        }
        for non_advisory in [
            CopyRestoreCause::SubClusterOnCowVolume,
            CopyRestoreCause::UnexpectedOnCowVolume,
        ] {
            assert!(
                !non_advisory.is_layout_advisory(),
                "{non_advisory:?} must not be muteable by the advice knob",
            );
        }
    }

    #[test]
    fn test_hardlink_strategy_restores_content() {
        let dir = tempfile::tempdir().unwrap();
        let src = dir.path().join("source.rlib");
        fs::write(&src, b"rlib content").unwrap();

        let dst = dir.path().join("subdir/output.rlib");
        link_to_target(&src, &dst, LinkStrategy::Hardlink).unwrap();

        assert!(dst.exists());
        assert_eq!(fs::read(&dst).unwrap(), b"rlib content");

        // Hardlink strategy promises zero-copy when possible: reflink (CoW,
        // independent inode) on APFS/btrfs/XFS-with-reflink, or hardlink
        // (shared inode) as fallback. We don't assert which mechanism was
        // used — either satisfies the contract.
    }

    /// kunobi-ninja/kache#794: restoring the same blob into another target
    /// tree must not re-date an artifact that a linker already has open.
    /// Exercise the fallback directly so APFS reflinks cannot make the test
    /// pass without covering the hardlink path used by Linux/ext4.
    #[cfg(unix)]
    #[test]
    fn hardlink_restore_does_not_retimestamp_existing_consumer() {
        use std::fs::File;
        use std::os::unix::fs::MetadataExt;

        let dir = tempfile::tempdir().unwrap();
        let blob = dir.path().join("blob.rlib");
        let tree_a = dir.path().join("tree-a.rlib");
        let tree_b = dir.path().join("tree-b.rlib");
        fs::write(&blob, b"cached rlib").unwrap();
        let bytes = fs::metadata(&blob).unwrap().len();

        hardlink_or_copy(&blob, &tree_a, bytes).unwrap();
        let observed = filetime::FileTime::from_unix_time(1_000_000_000, 0);
        filetime::set_file_mtime(&tree_a, observed).unwrap();

        let reader = File::open(&tree_a).unwrap();
        let before = filetime::FileTime::from_last_modification_time(&reader.metadata().unwrap());
        assert_eq!(
            reader.metadata().unwrap().nlink(),
            2,
            "fixture must engage the hardlink fallback"
        );

        hardlink_or_copy(&blob, &tree_b, bytes).unwrap();
        touch_mtime_write_clock(&tree_b).unwrap();

        let after = filetime::FileTime::from_last_modification_time(&reader.metadata().unwrap());
        assert_eq!(after, before, "restoring tree B re-dated active reader A");
        assert_ne!(
            reader.metadata().unwrap().ino(),
            fs::metadata(&tree_b).unwrap().ino(),
            "simultaneous consumers must not share an inode"
        );
    }

    /// The post-link half of the #794 guard closes the precheck race: even
    /// when two restorers both observe a fresh blob, at most one may retain a
    /// shared inode before either caller reaches its mtime stamp.
    #[cfg(unix)]
    #[test]
    fn simultaneous_hardlink_restores_retain_at_most_one_consumer() {
        use std::os::unix::fs::MetadataExt;
        use std::sync::{Arc, Barrier};

        let dir = tempfile::tempdir().unwrap();
        let blob = dir.path().join("blob.rlib");
        let tree_a = dir.path().join("tree-a.rlib");
        let tree_b = dir.path().join("tree-b.rlib");
        fs::write(&blob, b"cached rlib").unwrap();
        let bytes = fs::metadata(&blob).unwrap().len();
        let barrier = Arc::new(Barrier::new(2));

        std::thread::scope(|scope| {
            let barrier_a = Arc::clone(&barrier);
            let blob_a = &blob;
            let target_a = &tree_a;
            let first = scope.spawn(move || {
                hardlink_or_copy_with_prelink_hook(blob_a, target_a, bytes, || {
                    barrier_a.wait();
                })
            });
            let barrier_b = Arc::clone(&barrier);
            let blob_b = &blob;
            let target_b = &tree_b;
            let second = scope.spawn(move || {
                hardlink_or_copy_with_prelink_hook(blob_b, target_b, bytes, || {
                    barrier_b.wait();
                })
            });
            first.join().unwrap().unwrap();
            second.join().unwrap().unwrap();
        });

        let blob_meta = fs::metadata(&blob).unwrap();
        let shared_consumers = [&tree_a, &tree_b]
            .into_iter()
            .filter(|target| fs::metadata(target).unwrap().ino() == blob_meta.ino())
            .count();
        assert!(
            shared_consumers <= 1,
            "concurrent restorers retained {shared_consumers} blob consumers"
        );
        assert!(
            blob_meta.nlink() <= 2,
            "blob plus at most one target may remain hardlinked"
        );
        assert_eq!(fs::read(&tree_a).unwrap(), b"cached rlib");
        assert_eq!(fs::read(&tree_b).unwrap(), b"cached rlib");
    }

    /// The blob-vanished recovery arm must keep the restore when the target
    /// ended up as the inode's sole name; failing there would turn a benign
    /// eviction race into a lost cache hit (#794).
    #[cfg(unix)]
    #[test]
    fn orphaned_hardlink_with_sole_target_name_is_retained() {
        let dir = tempfile::tempdir().unwrap();
        let target = dir.path().join("tree-a.rlib");
        fs::write(&target, b"cached rlib").unwrap();
        let vanished = fs::metadata(dir.path().join("no-such-blob")).unwrap_err();

        verify_orphaned_hardlink(&target, fs::metadata(&target), vanished).unwrap();
        assert_eq!(fs::read(&target).unwrap(), b"cached rlib");
    }

    /// If the blob vanished but this target still shares its inode with
    /// another name, exclusivity cannot be proven and the restore fails
    /// loudly rather than letting a shared mtime stamp reach the caller
    /// (#794).
    #[cfg(unix)]
    #[test]
    fn orphaned_hardlink_with_shared_target_errors() {
        use std::os::unix::fs::MetadataExt;

        let dir = tempfile::tempdir().unwrap();
        let target = dir.path().join("tree-a.rlib");
        fs::write(&target, b"cached rlib").unwrap();
        fs::hard_link(&target, dir.path().join("alias.rlib")).unwrap();
        assert_eq!(fs::metadata(&target).unwrap().nlink(), 2);
        let vanished = fs::metadata(dir.path().join("no-such-blob")).unwrap_err();

        let error = verify_orphaned_hardlink(&target, fs::metadata(&target), vanished)
            .expect_err("shared orphaned target must fail");
        assert!(error.to_string().contains("still has 2 links"));
    }

    /// A vanished blob plus an unreadable target leaves nothing to validate;
    /// surface the target-side error instead of retaining blindly.
    #[cfg(unix)]
    #[test]
    fn orphaned_hardlink_with_unreadable_target_errors() {
        let dir = tempfile::tempdir().unwrap();
        let target = dir.path().join("missing.rlib");
        let vanished = fs::metadata(dir.path().join("no-such-blob")).unwrap_err();

        let error = verify_orphaned_hardlink(&target, fs::metadata(&target), vanished)
            .expect_err("unreadable target must fail");
        assert!(error.to_string().contains("verifying hardlink target"));
    }

    #[cfg(windows)]
    #[test]
    fn windows_hardlink_restore_yields_writable_deletable_output() {
        // #429: on Windows a Hardlink-strategy restore must NOT leave the
        // output read-only (a hardlink to the read-only store blob would be),
        // or a consumer that owns its output — mozbuild's configure conftest —
        // cannot delete/rewrite it (WinError 5). The output must be writable
        // and deletable, while the store blob stays read-only (integrity).
        let dir = tempfile::tempdir().unwrap();
        let blob = dir.path().join("deadbeef");
        fs::write(&blob, b"obj bytes").unwrap();
        let mut p = fs::metadata(&blob).unwrap().permissions();
        p.set_readonly(true);
        fs::set_permissions(&blob, p).unwrap();

        let out = dir.path().join("conftest.o");
        link_to_target(&blob, &out, LinkStrategy::Hardlink).unwrap();

        assert_eq!(fs::read(&out).unwrap(), b"obj bytes");
        assert!(
            !fs::metadata(&out).unwrap().permissions().readonly(),
            "restored output must be writable on Windows (#429)"
        );
        // The consumer must be able to delete its own output.
        fs::remove_file(&out).expect("consumer must be able to delete its output (#429)");
        // ...without the store blob losing its read-only integrity guard.
        assert!(
            fs::metadata(&blob).unwrap().permissions().readonly(),
            "store blob must stay read-only after a restore"
        );
    }

    #[test]
    fn test_copy_strategy_isolates_writes_from_source() {
        // The Copy strategy guarantees that mutating the destination cannot
        // corrupt the cache blob. This holds whether reflink (CoW) or a
        // plain copy was used; only a hardlink would break it, and Copy
        // never falls back to hardlink.
        let dir = tempfile::tempdir().unwrap();
        let src = dir.path().join("source.bin");
        fs::write(&src, b"original").unwrap();

        let dst = dir.path().join("dest.bin");
        link_to_target(&src, &dst, LinkStrategy::Copy).unwrap();

        fs::write(&dst, b"modified").unwrap();
        assert_eq!(
            fs::read(&src).unwrap(),
            b"original",
            "Copy strategy must isolate dst writes from src"
        );
    }

    #[cfg(unix)]
    #[test]
    fn writable_copy_is_private_and_compiler_writable() {
        use std::os::unix::fs::{MetadataExt, PermissionsExt};

        let dir = tempfile::tempdir().unwrap();
        let blob = dir.path().join("blob.o");
        fs::write(&blob, b"cached object").unwrap();
        fs::set_permissions(&blob, fs::Permissions::from_mode(0o400)).unwrap();

        let output = dir.path().join("output.o");
        prepare_writable_target_from_file(&blob, &output)
            .unwrap()
            .publish()
            .unwrap();

        assert_ne!(
            fs::metadata(&output).unwrap().permissions().mode() & 0o200,
            0,
            "restore must be owner-writable regardless of blob permissions"
        );
        assert_ne!(
            fs::metadata(&blob).unwrap().ino(),
            fs::metadata(&output).unwrap().ino(),
            "writable output must never share the blob inode"
        );
        fs::write(&output, b"changed").unwrap();
        assert_eq!(fs::read(&blob).unwrap(), b"cached object");
    }

    #[cfg(windows)]
    #[test]
    fn writable_copy_is_private_and_writable_on_windows() {
        let dir = tempfile::tempdir().unwrap();
        let blob = dir.path().join("blob.obj");
        fs::write(&blob, b"cached object").unwrap();
        let mut perms = fs::metadata(&blob).unwrap().permissions();
        perms.set_readonly(true);
        fs::set_permissions(&blob, perms).unwrap();

        let output = dir.path().join("output.obj");
        prepare_writable_target_from_file(&blob, &output)
            .unwrap()
            .publish()
            .unwrap();

        assert!(!fs::metadata(&output).unwrap().permissions().readonly());
        fs::write(&output, b"changed").unwrap();
        assert_eq!(fs::read(&blob).unwrap(), b"cached object");
        assert!(fs::metadata(&blob).unwrap().permissions().readonly());

        let mut perms = fs::metadata(&blob).unwrap().permissions();
        #[allow(clippy::permissions_set_readonly_false)]
        perms.set_readonly(false);
        fs::set_permissions(&blob, perms).unwrap();
    }

    #[test]
    fn writable_materializers_never_replace_existing_target() {
        let dir = tempfile::tempdir().unwrap();
        let blob = dir.path().join("blob.o");
        let linked = dir.path().join("linked.o");
        let written = dir.path().join("written.d");
        fs::write(&blob, b"cached").unwrap();
        fs::write(&linked, b"race winner").unwrap();
        fs::write(&written, b"race winner").unwrap();

        #[cfg(windows)]
        for target in [&linked, &written] {
            let mut permissions = fs::metadata(target).unwrap().permissions();
            permissions.set_readonly(true);
            fs::set_permissions(target, permissions).unwrap();
        }

        assert!(
            prepare_writable_target_from_file(&blob, &linked)
                .unwrap()
                .publish()
                .is_err()
        );
        assert!(
            prepare_writable_target_from_bytes(&written, b"cached depinfo")
                .unwrap()
                .publish()
                .is_err()
        );
        assert_eq!(fs::read(&linked).unwrap(), b"race winner");
        assert_eq!(fs::read(&written).unwrap(), b"race winner");

        #[cfg(windows)]
        for target in [&linked, &written] {
            let mut permissions = fs::metadata(target).unwrap().permissions();
            assert!(permissions.readonly(), "refusal must not chmod the target");
            #[allow(clippy::permissions_set_readonly_false)]
            permissions.set_readonly(false);
            fs::set_permissions(target, permissions).unwrap();
        }
    }

    #[test]
    fn test_copy_strategy() {
        let dir = tempfile::tempdir().unwrap();
        let src = dir.path().join("source.bin");
        fs::write(&src, b"binary content").unwrap();

        let dst = dir.path().join("output.bin");
        link_to_target(&src, &dst, LinkStrategy::Copy).unwrap();

        assert!(dst.exists());
        assert_eq!(fs::read(&dst).unwrap(), b"binary content");

        // Should NOT be a hardlink
        #[cfg(unix)]
        {
            use std::os::unix::fs::MetadataExt;
            let src_ino = fs::metadata(&src).unwrap().ino();
            let dst_ino = fs::metadata(&dst).unwrap().ino();
            assert_ne!(src_ino, dst_ino);
        }
    }

    #[test]
    fn test_overwrite_existing() {
        let dir = tempfile::tempdir().unwrap();
        let src = dir.path().join("source.rlib");
        fs::write(&src, b"new content").unwrap();

        let dst = dir.path().join("output.rlib");
        fs::write(&dst, b"old content").unwrap();

        link_to_target(&src, &dst, LinkStrategy::Hardlink).unwrap();
        assert_eq!(fs::read(&dst).unwrap(), b"new content");
    }

    #[cfg(unix)]
    #[test]
    fn test_overwrite_readonly_hardlink_preserves_source_permissions() {
        use std::os::unix::fs::PermissionsExt;

        let dir = tempfile::tempdir().unwrap();
        let old_blob = dir.path().join("old-blob.rlib");
        let new_blob = dir.path().join("new-blob.rlib");
        let dst = dir.path().join("output.rlib");

        fs::write(&old_blob, b"old content").unwrap();
        fs::set_permissions(&old_blob, fs::Permissions::from_mode(0o444)).unwrap();
        fs::hard_link(&old_blob, &dst).unwrap();

        fs::write(&new_blob, b"new content").unwrap();
        link_to_target(&new_blob, &dst, LinkStrategy::Hardlink).unwrap();

        assert_eq!(fs::read(&dst).unwrap(), b"new content");
        assert!(
            fs::metadata(&old_blob).unwrap().permissions().readonly(),
            "replacing a restored hardlink must not make the original blob writable"
        );
    }

    /// The write-clock touch invariant (kunobi-ninja/kache#677, #135): a
    /// touched file's mtime must order between files written before and
    /// after it by the SAME clock the kernel stamps writes with. A
    /// precise-clock touch (`FileTime::now()`) can postdate a file written
    /// immediately after — that inversion is the entire #677 bug. The
    /// before-bound also proves the touch moved the mtime forward from an
    /// arbitrarily old value.
    #[test]
    fn test_touch_write_clock_orders_with_file_writes() {
        let dir = tempfile::tempdir().unwrap();
        let before = dir.path().join("before");
        let touched = dir.path().join("touched.rlib");
        let after = dir.path().join("after");

        fs::write(&before, b"b").unwrap();
        fs::write(&touched, b"content").unwrap();
        let past = filetime::FileTime::from_unix_time(1_000_000_000, 0);
        filetime::set_file_mtime(&touched, past).unwrap();

        touch_mtime_write_clock(&touched).unwrap();
        fs::write(&after, b"a").unwrap();

        let mtime =
            |p: &Path| filetime::FileTime::from_last_modification_time(&fs::metadata(p).unwrap());
        assert!(
            mtime(&before) <= mtime(&touched),
            "touch must move the mtime to now: before={:?} touched={:?}",
            mtime(&before),
            mtime(&touched)
        );
        // The after-bound is the #677 regression assertion and runs
        // everywhere. On unix the stamp goes through futimens(UTIME_NOW);
        // on Windows through a sibling write-clock sample
        // (kunobi-ninja/kache#681) — before that fix, the first Windows CI
        // run of this test measured the precise-clock stamp postdating a
        // file written ~2ms later (an ~1.8ms inversion window on NTFS).
        assert!(
            mtime(&touched) <= mtime(&after),
            "write-clock touch must not postdate a subsequent write: touched={:?} after={:?}",
            mtime(&touched),
            mtime(&after)
        );
    }

    /// The fail-closed half of kunobi-ninja/kache#682: the stamp opens with
    /// O_NOFOLLOW, so a path swapped for a symlink between materialization
    /// and touch is refused instead of re-dating whatever it points at.
    /// The error degrades to a recompile at the restore call sites.
    #[cfg(unix)]
    #[test]
    fn test_touch_refuses_symlink() {
        let dir = tempfile::tempdir().unwrap();
        let real = dir.path().join("real.rlib");
        let link = dir.path().join("swapped.rlib");
        fs::write(&real, b"content").unwrap();
        let past = filetime::FileTime::from_unix_time(1_000_000_000, 0);
        filetime::set_file_mtime(&real, past).unwrap();
        std::os::unix::fs::symlink(&real, &link).unwrap();

        assert!(
            touch_mtime_write_clock(&link).is_err(),
            "touching through a symlink must fail closed"
        );
        let real_mtime =
            filetime::FileTime::from_last_modification_time(&fs::metadata(&real).unwrap());
        assert_eq!(
            real_mtime.unix_seconds(),
            1_000_000_000,
            "the symlink target must not have been re-dated"
        );
    }

    /// A FIFO swapped in for the artifact must be refused promptly: with
    /// O_NONBLOCK the open succeeds without a writer, fstat sees S_IFIFO,
    /// and the touch bails. Without O_NONBLOCK the open would block forever
    /// waiting for a writer — so this test also pins the flag (a mutant
    /// dropping it hangs here instead of passing).
    #[cfg(unix)]
    #[test]
    fn test_touch_refuses_fifo() {
        use std::os::unix::ffi::OsStrExt;
        let dir = tempfile::tempdir().unwrap();
        let fifo = dir.path().join("swapped.rlib");
        let cpath = std::ffi::CString::new(fifo.as_os_str().as_bytes()).unwrap();
        assert_eq!(unsafe { libc::mkfifo(cpath.as_ptr(), 0o644) }, 0);

        assert!(
            touch_mtime_write_clock(&fifo).is_err(),
            "touching a FIFO must fail closed (and promptly)"
        );
    }

    #[test]
    fn test_depinfo_rewrite() {
        let dir = tempfile::tempdir().unwrap();
        let depfile = dir.path().join("test.d");
        fs::write(
            &depfile,
            "/home/user/project/target/debug/deps/libserde.rlib: /home/user/project/src/lib.rs",
        )
        .unwrap();

        rewrite_depinfo(
            &depfile,
            Path::new("/home/user/project"),
            DepInfoMode::Relativize,
        )
        .unwrap();

        let content = fs::read_to_string(&depfile).unwrap();
        assert!(content.contains("target/debug"));
        assert!(content.contains("src/lib.rs"));
        assert!(content.contains(DEPINFO_ROOT_SENTINEL));
        assert!(!content.contains("/home/user/project/"));

        // Now expand back
        rewrite_depinfo(
            &depfile,
            Path::new("/home/user/project"),
            DepInfoMode::Expand,
        )
        .unwrap();

        let content = fs::read_to_string(&depfile).unwrap();
        assert!(content.contains("/home/user/project/"));
    }

    #[test]
    fn rustc_depinfo_rewrite_rebases_target_and_worktree_separately() {
        let producer_target = Path::new("/build/worktree-a/target");
        let producer_cwd = Path::new("/build/worktree-a");
        let input = "/build/worktree-a/target/debug/deps/libdemo.rlib: \
/build/worktree-a/src/lib.rs /build/worktree-a/assets/value.txt\n";

        let stored = rewrite_rustc_depinfo_content(
            input,
            producer_target,
            producer_cwd,
            None,
            DepInfoMode::Relativize,
        );
        assert!(stored.contains("__kache_root__/debug/deps/libdemo.rlib"));
        assert!(stored.contains("__kache_cwd__/src/lib.rs"));
        assert!(stored.contains("__kache_cwd__/assets/value.txt"));
        assert!(!stored.contains("worktree-a"));

        let restored = rewrite_rustc_depinfo_content(
            &stored,
            Path::new("/build/worktree-b/target"),
            Path::new("/build/worktree-b"),
            None,
            DepInfoMode::Expand,
        );
        assert!(restored.contains("/build/worktree-b/target/debug/deps/libdemo.rlib"));
        assert!(restored.contains("/build/worktree-b/src/lib.rs"));
        assert!(restored.contains("/build/worktree-b/assets/value.txt"));
        assert!(!restored.contains("worktree-a"));
    }

    #[test]
    fn rustc_depinfo_rewrite_handles_workspace_and_make_escaped_paths() {
        let producer_workspace = Path::new("/build/work tree-a");
        let producer_target = producer_workspace.join("target");
        let producer_cwd = producer_workspace.join("crates/demo");
        let input = "/build/work\\ tree-a/target/debug/deps/libdemo.rlib: \
/build/work\\ tree-a/crates/demo/src/lib.rs \
/build/work\\ tree-a/shared/schema.txt\n\
# env-dep:SCHEMA_ROOT=/build/work tree-a/shared\n";

        let stored = rewrite_rustc_depinfo_content(
            input,
            &producer_target,
            &producer_cwd,
            Some(producer_workspace),
            DepInfoMode::Relativize,
        );
        assert!(stored.contains("__kache_root__/debug/deps/libdemo.rlib"));
        assert!(stored.contains("__kache_cwd__/src/lib.rs"));
        assert!(stored.contains("__kache_workspace__/shared/schema.txt"));
        assert!(stored.contains("# env-dep:SCHEMA_ROOT=__kache_workspace__/shared"));
        assert!(!stored.contains("work tree-a"));
        assert!(!stored.contains("work\\ tree-a"));

        let consumer_workspace = Path::new("/build/work tree-b");
        let restored = rewrite_rustc_depinfo_content(
            &stored,
            &consumer_workspace.join("target"),
            &consumer_workspace.join("crates/demo"),
            Some(consumer_workspace),
            DepInfoMode::Expand,
        );
        assert!(restored.contains("/build/work\\ tree-b/target/debug/deps/libdemo.rlib"));
        assert!(restored.contains("/build/work\\ tree-b/crates/demo/src/lib.rs"));
        assert!(restored.contains("/build/work\\ tree-b/shared/schema.txt"));
        assert!(restored.contains("# env-dep:SCHEMA_ROOT=/build/work tree-b/shared"));
        assert!(!restored.contains("work tree-a"));
        assert!(!restored.contains("work\\ tree-a"));
    }

    #[test]
    fn rustc_depinfo_rewrite_round_trips_configured_external_roots() {
        let producer = PathBuf::from("/mount-a/generated");
        let consumer = PathBuf::from("/mount-b/generated");
        let sentinel = "__kache_base_dir_0__/".to_string();
        let input = "/work-a/target/demo.d: /mount-a/generated/schema/data.json\n";

        let stored = rewrite_rustc_depinfo_content_with_configured_roots(
            input,
            Path::new("/work-a/target"),
            Path::new("/work-a/crate"),
            Some(Path::new("/work-a")),
            &[(producer, sentinel.clone(), 8)],
            DepInfoMode::Relativize,
        );
        assert!(stored.contains("__kache_base_dir_0__/schema/data.json"));
        assert!(!stored.contains("/mount-a/generated"));

        let restored = rewrite_rustc_depinfo_content_with_configured_roots(
            &stored,
            Path::new("/work-b/target"),
            Path::new("/work-b/crate"),
            Some(Path::new("/work-b")),
            &[(consumer, sentinel, 8)],
            DepInfoMode::Expand,
        );
        assert!(restored.contains("/mount-b/generated/schema/data.json"));
        assert!(!restored.contains("/mount-a/generated"));
    }

    #[test]
    fn configured_root_wins_when_it_equals_the_working_directory() {
        let root = PathBuf::from("/work/crate");
        let stored = rewrite_rustc_depinfo_content_with_configured_roots(
            "/work/target/demo.d: /work/crate/generated.rs\n",
            Path::new("/work/target"),
            &root,
            Some(Path::new("/work")),
            &[(root.clone(), "__kache_base_dir_0__/".to_string(), 8)],
            DepInfoMode::Relativize,
        );
        assert!(stored.contains("__kache_base_dir_0__/generated.rs"));
        assert!(!stored.contains(DEPINFO_CWD_SENTINEL));
    }

    #[test]
    fn configured_ancestor_precedes_more_specific_automatic_roots() {
        let configured = PathBuf::from("/sandbox");
        let stored = rewrite_rustc_depinfo_content_with_configured_roots(
            "/sandbox/worktree-a/target/demo.d: /sandbox/worktree-a/crate/generated.rs\n",
            Path::new("/sandbox/worktree-a/target"),
            Path::new("/sandbox/worktree-a/crate"),
            Some(Path::new("/sandbox/worktree-a")),
            &[(configured, "__kache_base_dir_0__/".to_string(), 8)],
            DepInfoMode::Relativize,
        );
        assert!(stored.starts_with("__kache_root__/demo.d:"), "{stored}");
        assert!(stored.contains("__kache_base_dir_0__/worktree-a/crate/generated.rs"));
        assert!(!stored.contains(DEPINFO_CWD_SENTINEL));
        assert!(!stored.contains(DEPINFO_WORKSPACE_SENTINEL));
    }

    #[test]
    fn target_generated_source_uses_target_ownership_before_workspace() {
        let stored = rewrite_rustc_depinfo_content_with_configured_roots(
            "/work/target/demo.d: /work/target/generated.rs\n",
            Path::new("/work/target"),
            Path::new("/work"),
            Some(Path::new("/work")),
            &[],
            DepInfoMode::Relativize,
        );

        assert_eq!(
            stored,
            "__kache_root__/demo.d: __kache_target_rule__/generated.rs\n"
        );
    }

    #[test]
    fn external_target_generated_source_round_trips_independently_from_output() {
        let producer_target = PathBuf::from("/external-a/target");
        let consumer_target = PathBuf::from("/external-b/target");
        let target_sentinel = "__kache_target_rule__/".to_string();
        let input = "/external-a/target/debug/deps/demo.d: \
/external-a/target/debug/build/demo/out/generated.rs\n";

        let stored = rewrite_rustc_depinfo_content_with_configured_roots(
            input,
            &producer_target,
            Path::new("/work-a/crate"),
            Some(Path::new("/work-a")),
            &[(producer_target.clone(), target_sentinel.clone(), 3)],
            DepInfoMode::Relativize,
        );
        assert_eq!(
            stored,
            "__kache_root__/debug/deps/demo.d: \
__kache_target_rule__/debug/build/demo/out/generated.rs\n"
        );

        let restored = rewrite_rustc_depinfo_content_with_configured_roots(
            &stored,
            &consumer_target,
            Path::new("/work-b/crate"),
            Some(Path::new("/work-b")),
            &[(consumer_target.clone(), target_sentinel, 3)],
            DepInfoMode::Expand,
        );
        assert_eq!(
            restored,
            "/external-b/target/debug/deps/demo.d: \
/external-b/target/debug/build/demo/out/generated.rs\n"
        );
    }

    /// kunobi-ninja/kache#808: several Cargo processes can share one local
    /// store while building the same workspace into `target_1`...`target_4`.
    /// A generated dependency beneath an in-workspace target must follow the
    /// consuming target, not the stable workspace root, or a hit restores the
    /// donor worker's `OUT_DIR/private.rs` and validate-on-hit evicts it.
    #[test]
    fn in_workspace_target_generated_source_rebases_between_parallel_workers() {
        let workspace = PathBuf::from("/work");
        let producer_target = workspace.join("target_1");
        let consumer_target = workspace.join("target_2");
        let workspace_sentinel = DEPINFO_WORKSPACE_SENTINEL.to_string();
        let target_sentinel = "__kache_target_rule__/".to_string();
        let input = "/work/target_1/debug/deps/serde_core.d: \
/work/src/lib.rs \
/work/target_1/debug/build/serde_core-fe75/out/private.rs\n";

        let stored = rewrite_rustc_depinfo_content_with_configured_roots(
            input,
            &producer_target,
            &workspace,
            Some(&workspace),
            &[
                (workspace.clone(), workspace_sentinel.clone(), 4),
                (producer_target.clone(), target_sentinel.clone(), 3),
            ],
            DepInfoMode::Relativize,
        );
        assert_eq!(
            stored,
            "__kache_root__/debug/deps/serde_core.d: \
__kache_workspace__/src/lib.rs \
__kache_target_rule__/debug/build/serde_core-fe75/out/private.rs\n"
        );

        let restored = rewrite_rustc_depinfo_content_with_configured_roots(
            &stored,
            &consumer_target,
            &workspace,
            Some(&workspace),
            &[
                (workspace.clone(), workspace_sentinel, 4),
                (consumer_target.clone(), target_sentinel, 3),
            ],
            DepInfoMode::Expand,
        );
        assert_eq!(
            restored,
            "/work/target_2/debug/deps/serde_core.d: \
/work/src/lib.rs \
/work/target_2/debug/build/serde_core-fe75/out/private.rs\n"
        );
    }

    #[test]
    fn configured_root_does_not_match_an_interior_path_component() {
        let stored = rewrite_rustc_depinfo_content_with_configured_roots(
            "out: /mnt/sandbox/file.rs /mnt/@/sandbox/punctuation.rs \
/mnt/foo\\ /sandbox/escaped-space.rs /sandbox/owned.rs\n\
# env-dep:ASSET=/mnt/sandbox/asset.txt\n",
            Path::new("/target"),
            Path::new("/work"),
            None,
            &[(
                PathBuf::from("/sandbox"),
                "__kache_base_dir_0__/".to_string(),
                8,
            )],
            DepInfoMode::Relativize,
        );

        assert!(stored.contains("/mnt/sandbox/file.rs"));
        assert!(stored.contains("/mnt/@/sandbox/punctuation.rs"));
        assert!(stored.contains("/mnt/foo\\ /sandbox/escaped-space.rs"));
        assert!(stored.contains("# env-dep:ASSET=/mnt/sandbox/asset.txt"));
        assert!(stored.contains("__kache_base_dir_0__/owned.rs"));
    }

    #[test]
    fn portable_home_root_does_not_steal_nested_workspace_paths() {
        let producer_roots = [(
            PathBuf::from("/home/alice"),
            "__kache_home__/".to_string(),
            1,
        )];
        let stored = rewrite_rustc_depinfo_content_with_configured_roots(
            "out: /home/alice/project/src/lib.rs /home/alice/shared/schema.json\n",
            Path::new("/target"),
            Path::new("/home/alice/project"),
            Some(Path::new("/home/alice/project")),
            &producer_roots,
            DepInfoMode::Relativize,
        );
        assert!(stored.contains("__kache_cwd__/src/lib.rs"), "{stored}");
        assert!(
            stored.contains("__kache_home__/shared/schema.json"),
            "{stored}"
        );

        let consumer_roots = [(
            PathBuf::from("/Users/bob"),
            "__kache_home__/".to_string(),
            1,
        )];
        let restored = rewrite_rustc_depinfo_content_with_configured_roots(
            &stored,
            Path::new("/other-target"),
            Path::new("/Users/bob/project"),
            Some(Path::new("/Users/bob/project")),
            &consumer_roots,
            DepInfoMode::Expand,
        );
        assert!(restored.contains("/Users/bob/project/src/lib.rs"));
        assert!(restored.contains("/Users/bob/shared/schema.json"));
        assert!(!restored.contains("/home/alice"));
    }

    #[test]
    fn depinfo_prefix_replacement_can_match_windows_ascii_case_aliases() {
        assert_eq!(
            replace_depinfo_text(
                r"c:\\WORKTREE\\src\\lib.rs",
                r"C:\\worktree\\",
                DEPINFO_CWD_SENTINEL,
                true,
                DepInfoTextContext::MakeLine,
            ),
            r"__kache_cwd__/src\\lib.rs"
        );
        assert_eq!(
            replace_depinfo_text(
                "unrelated",
                "C:\\worktree\\",
                DEPINFO_CWD_SENTINEL,
                true,
                DepInfoTextContext::MakeLine,
            ),
            "unrelated"
        );
        assert_eq!(
            replace_depinfo_text(
                r"c:\WORKTREE\",
                r"C:\worktree\",
                DEPINFO_CWD_SENTINEL,
                true,
                DepInfoTextContext::MakeLine,
            ),
            DEPINFO_CWD_SENTINEL,
            "a case-insensitive match ending exactly at EOF must be replaced"
        );
        assert_eq!(
            replace_depinfo_text(
                r"keep c:\WORKTREE\src\lib.rs and C:\worktree\asset.txt",
                r"C:\worktree\",
                DEPINFO_CWD_SENTINEL,
                true,
                DepInfoTextContext::MakeLine,
            ),
            r"keep __kache_cwd__/src\lib.rs and __kache_cwd__/asset.txt"
        );
    }

    /// `replace_depinfo_text`'s search loop terminates only because this step
    /// strictly advances. Asserted here rather than left to the loop, where a
    /// slip shows up as a hang instead of a failure.
    #[test]
    fn depinfo_next_char_boundary_always_advances_past_the_current_char() {
        // Single-byte, mid-string: the plain case the loop hits most.
        assert_eq!(depinfo_next_char_boundary("abcd", 1), 2);
        // Multi-byte: advancing lands on the next boundary, not the next byte.
        assert_eq!(depinfo_next_char_boundary("aéb", 1), 3);
        // Last char: clamps to the end rather than reporting no progress.
        assert_eq!(depinfo_next_char_boundary("abc", 2), 3);
        assert_eq!(depinfo_next_char_boundary("aé", 1), 3);

        // The property the loop actually depends on, over every boundary of a
        // mixed-width string.
        let input = "a/é/b/日/c";
        for (start, _) in input.char_indices() {
            assert!(
                depinfo_next_char_boundary(input, start) > start,
                "must advance past byte {start} of {input:?}"
            );
        }
    }

    #[test]
    fn windows_depinfo_prefixes_retain_drive_and_unc_verbatim_aliases() {
        let drive = depinfo_prefixes_for_display(r"\\?\C:\Work", true, true);
        assert!(drive.contains(&r"C:\Work\".to_string()));
        assert!(drive.contains(&r"\\?\C:\Work\".to_string()));
        assert!(drive.contains(&r"C:\Work/".to_string()));
        assert!(drive.contains(&r"\\?\C:\Work/".to_string()));

        let unc = depinfo_prefixes_for_display(r"\\?\UNC\server\share\root", true, true);
        assert!(unc.contains(&r"\\server\share\root\".to_string()));
        assert!(unc.contains(&r"\\?\UNC\server\share\root\".to_string()));

        let expand = depinfo_prefixes_for_display(r"\\?\C:\Work", false, true);
        assert!(!expand.iter().any(|prefix| prefix.starts_with(r"\\?\")));
        assert!(expand.iter().all(|prefix| prefix.starts_with(r"C:\Work")));
    }

    /// The opposite-separator alias is contributed by the stripped display
    /// only. A verbatim `\\?\` display is backslash-only to Windows, so
    /// slash-expanding it would invent a spelling no dep-info ever carries.
    #[test]
    fn windows_depinfo_alternate_alias_is_expanded_only_for_non_verbatim_displays() {
        let prefixes = depinfo_prefixes_for_display(r"\\?\C:\Work", true, true);

        assert!(
            prefixes.contains(&"C:/Work/".to_string()),
            "stripped display contributes its slash alternate: {prefixes:?}"
        );
        assert!(
            !prefixes.iter().any(|prefix| prefix.starts_with("//?/")),
            "verbatim display must not be slash-expanded: {prefixes:?}"
        );
    }

    #[test]
    fn windows_depinfo_expansion_preserves_native_and_slash_root_styles() {
        assert!(windows_display_prefers_backslash(r"C:\work"));
        assert!(windows_display_prefers_backslash(r"\\?\C:\work"));
        assert!(windows_display_prefers_backslash(r"\\server\share"));
        assert!(!windows_display_prefers_backslash("C:/work"));
        assert!(!windows_display_prefers_backslash("/external/work"));

        assert_eq!(with_trailing_separator("/", '/'), "/");
        assert_eq!(with_trailing_separator("/work/", '/'), "/work/");
        assert_eq!(with_trailing_separator(r"C:\", '\\'), r"C:\");
        assert_eq!(with_trailing_separator(r"C:\work\", '/'), "C:\\work/");

        let native = rewrite_depinfo_content_with_sentinel_for_platform(
            "__kache_root__/debug/deps/demo.d\n",
            Path::new(r"C:\work\target"),
            DEPINFO_ROOT_SENTINEL,
            DepInfoMode::Expand,
            true,
        );
        assert_eq!(native, "C:\\work\\target\\debug/deps/demo.d\n");

        let slash = rewrite_depinfo_content_with_sentinel_for_platform(
            "__kache_root__/debug/deps/demo.d\n",
            Path::new("/external/target"),
            DEPINFO_ROOT_SENTINEL,
            DepInfoMode::Expand,
            true,
        );
        assert_eq!(slash, "/external/target/debug/deps/demo.d\n");

        let mixed = rewrite_depinfo_content_with_sentinel_for_platform(
            "/build/work/target/debug/deps/demo.d\n",
            Path::new(r"/build/work\target"),
            DEPINFO_ROOT_SENTINEL,
            DepInfoMode::Relativize,
            true,
        );
        assert_eq!(mixed, "__kache_root__/debug/deps/demo.d\n");
    }

    #[test]
    fn configured_windows_roots_keep_verbatim_and_plain_slots_distinct() {
        let verbatim_drive = depinfo_prefixes_for_exact_display(r"\\?\C:\Work", true);
        assert_eq!(verbatim_drive.len(), 2);
        assert!(verbatim_drive.contains(&r"\\?\C:\Work/".to_string()));
        assert!(verbatim_drive.contains(&r"\\?\C:\Work\".to_string()));
        assert!(
            verbatim_drive
                .iter()
                .all(|prefix| prefix.starts_with(r"\\?\"))
        );
        assert!(
            !verbatim_drive
                .iter()
                .any(|prefix| prefix.starts_with(r"C:\Work"))
        );

        let verbatim_unc = depinfo_prefixes_for_exact_display(r"\\?\UNC\server\share", true);
        assert_eq!(verbatim_unc.len(), 2);
        assert!(verbatim_unc.contains(&r"\\?\UNC\server\share/".to_string()));
        assert!(verbatim_unc.contains(&r"\\?\UNC\server\share\".to_string()));
        assert!(
            verbatim_unc
                .iter()
                .all(|prefix| prefix.starts_with(r"\\?\UNC\server\share"))
        );
        assert!(
            !verbatim_unc
                .iter()
                .any(|prefix| prefix.starts_with(r"\\server\share"))
        );

        let input = r"out: \\?\C:\Work\src\verbatim.rs C:\Work\src\plain.rs \\?\UNC\server\share\src\verbatim_unc.rs \\server\share\src\plain_unc.rs";
        let producer_roots = [
            (
                PathBuf::from(r"\\?\C:\Work"),
                "__kache_base_dir_0__/".to_string(),
            ),
            (
                PathBuf::from(r"C:\Work"),
                "__kache_base_dir_1__/".to_string(),
            ),
            (
                PathBuf::from(r"\\?\UNC\server\share"),
                "__kache_base_dir_2__/".to_string(),
            ),
            (
                PathBuf::from(r"\\server\share"),
                "__kache_base_dir_3__/".to_string(),
            ),
        ];
        let stored = producer_roots
            .iter()
            .fold(input.to_string(), |content, (root, sentinel)| {
                rewrite_depinfo_content_with_exact_sentinel_for_platform(
                    &content,
                    root,
                    sentinel,
                    DepInfoMode::Relativize,
                    true,
                )
            });
        assert!(
            stored.contains(r"__kache_base_dir_0__/src\verbatim.rs"),
            "{stored}"
        );
        assert!(
            stored.contains(r"__kache_base_dir_1__/src\plain.rs"),
            "{stored}"
        );
        assert!(
            stored.contains(r"__kache_base_dir_2__/src\verbatim_unc.rs"),
            "{stored}"
        );
        assert!(
            stored.contains(r"__kache_base_dir_3__/src\plain_unc.rs"),
            "{stored}"
        );

        let consumer_roots = [
            (
                PathBuf::from(r"\\?\D:\Other"),
                "__kache_base_dir_0__/".to_string(),
            ),
            (
                PathBuf::from(r"D:\Other"),
                "__kache_base_dir_1__/".to_string(),
            ),
            (
                PathBuf::from(r"\\?\UNC\server2\share2"),
                "__kache_base_dir_2__/".to_string(),
            ),
            (
                PathBuf::from(r"\\server2\share2"),
                "__kache_base_dir_3__/".to_string(),
            ),
        ];
        let restored = consumer_roots
            .iter()
            .fold(stored, |content, (root, sentinel)| {
                rewrite_depinfo_content_with_exact_sentinel_for_platform(
                    &content,
                    root,
                    sentinel,
                    DepInfoMode::Expand,
                    true,
                )
            });
        assert!(restored.contains(r"\\?\D:\Other\src\verbatim.rs"));
        assert!(restored.contains(r"D:\Other\src\plain.rs"));
        assert!(restored.contains(r"\\?\UNC\server2\share2\src\verbatim_unc.rs"));
        assert!(restored.contains(r"\\server2\share2\src\plain_unc.rs"));
        assert!(!restored.contains(r"C:\Work"));
        assert!(!restored.contains(r"\\server\share"));
    }

    #[test]
    #[cfg(windows)]
    fn rustc_depinfo_rewrite_handles_native_windows_cwd_and_env_dep() {
        let input = "D:\\WORK TREE\\target\\debug\\deps\\demo.d: \
D:\\WORK TREE\\crate\\src\\lib.rs\n\
# env-dep:ASSET=D:\\\\WORK TREE\\\\crate\\\\asset.txt\n";
        let stored = rewrite_rustc_depinfo_content(
            input,
            Path::new(r"d:\work tree\target"),
            Path::new(r"d:\work tree\crate"),
            Some(Path::new(r"d:\work tree")),
            DepInfoMode::Relativize,
        );
        assert!(stored.contains("__kache_root__/debug\\deps\\demo.d"));
        assert!(stored.contains("__kache_cwd__/src\\lib.rs"));
        assert!(stored.contains("# env-dep:ASSET=__kache_cwd__/asset.txt"));
        assert!(!stored.to_ascii_lowercase().contains(r"d:\work tree"));
    }

    #[test]
    #[cfg(unix)]
    fn depinfo_relativize_matches_a_canonical_symlink_target() {
        let dir = tempfile::tempdir().unwrap();
        let real = dir.path().join("real-target");
        let alias = dir.path().join("target-alias");
        std::fs::create_dir_all(&real).unwrap();
        std::os::unix::fs::symlink(&real, &alias).unwrap();
        let canonical = real.canonicalize().unwrap();
        let input = format!(
            "{}/debug/demo.d: {}/debug/input.rs\n",
            canonical.display(),
            canonical.display()
        );

        let stored = rewrite_depinfo_content(&input, &alias, DepInfoMode::Relativize);
        assert_eq!(stored.matches(DEPINFO_ROOT_SENTINEL).count(), 2, "{stored}");
        assert!(!stored.contains(canonical.to_str().unwrap()), "{stored}");
    }

    /// kunobi-ninja/kache#330: Windows dep-info uses backslash separators and
    /// often mixes them (an env-var join appends with `/`). Relativize must
    /// catch both spellings of the prefix, or the builder's absolute paths
    /// ship in the cached entry and poison every other project sharing it.
    #[test]
    #[cfg(windows)]
    fn test_depinfo_relativize_handles_windows_separators() {
        let input = "S:\\proj\\target\\debug\\deps\\demo.d: \
S:\\proj\\target\\debug\\build\\demo-8a22\\out/generated.rs\n";

        let rewritten = rewrite_depinfo_content(
            input,
            Path::new("S:\\proj\\target"),
            DepInfoMode::Relativize,
        );
        assert!(
            !rewritten.contains("S:\\proj\\target"),
            "the builder's absolute prefix must not survive: {rewritten}"
        );
        assert_eq!(
            rewritten.matches(DEPINFO_ROOT_SENTINEL).count(),
            2,
            "both references relativize: {rewritten}"
        );

        // Expansion re-roots at the consumer using its native separator.
        let expanded = rewrite_depinfo_content(
            &rewritten,
            Path::new("T:\\other\\target"),
            DepInfoMode::Expand,
        );
        assert!(
            expanded.contains("T:\\other\\target\\debug\\build\\demo-8a22\\out/generated.rs"),
            "consumer-rooted mixed-separator path: {expanded}"
        );
        assert!(!expanded.contains(DEPINFO_ROOT_SENTINEL));
    }

    /// Mirrors cargo's `unescape_env` grammar for `# env-dep:` values: only
    /// `\\`, `\n`, and `\r` are legal escapes; anything else makes cargo fail
    /// the whole compile with "unknown escape character" (kunobi-ninja/kache#730).
    fn cargo_env_dep_value_parses(value: &str) -> bool {
        let mut chars = value.trim_end_matches('\n').chars();
        while let Some(c) = chars.next() {
            if c == '\\' {
                match chars.next() {
                    Some('\\') | Some('n') | Some('r') => {}
                    _ => return false,
                }
            }
        }
        true
    }

    /// The oracle itself must be red for the corruption this guards against:
    /// an orphan single backslash before `x86_64` is exactly what cargo
    /// rejected in the nightly Firefox/Windows bench.
    #[test]
    fn test_env_dep_grammar_rejects_orphan_escape() {
        assert!(cargo_env_dep_value_parses(
            r"C:\\proj\\obj\\x86_64-pc-windows-msvc"
        ));
        assert!(!cargo_env_dep_value_parses(
            r"__kache_root__/obj\x86_64-pc-windows-msvc"
        ));
        assert!(!cargo_env_dep_value_parses(r"C:\proj\obj"));
    }

    /// kunobi-ninja/kache#730: `# env-dep:` values escape backslashes as
    /// `\\`. Relativize must match the escaped spelling of a backslash
    /// anchor, never leaving half an escape pair behind, and the result must
    /// stay parseable under cargo's env-dep grammar.
    #[test]
    fn test_depinfo_env_dep_relativize_matches_escaped_prefix() {
        let input = "target\\debug\\deps\\demo.d: C:\\proj\\src\\lib.rs\n\
                     # env-dep:OUT_DIR=C:\\\\proj\\\\obj\\\\x86_64-pc-windows-msvc\\\\out\n";
        let prefixes = ["C:\\proj/".to_string(), "C:\\proj\\".to_string()];

        let rewritten =
            rewrite_depinfo_content_with_prefixes(input, &prefixes, DepInfoMode::Relativize);

        let env_line = rewritten
            .lines()
            .find(|l| l.starts_with(DEPINFO_ENV_DEP_PREFIX))
            .unwrap();
        assert!(
            env_line.contains("# env-dep:OUT_DIR=__kache_root__/obj\\\\x86_64"),
            "escaped anchor must relativize whole, not split an escape pair: {rewritten}"
        );
        assert!(
            cargo_env_dep_value_parses(env_line.split_once('=').unwrap().1),
            "relativized env-dep value must stay parseable: {rewritten}"
        );
        assert!(
            rewritten.contains("__kache_root__/src\\lib.rs"),
            "file-list line keeps the plain-spelling rewrite: {rewritten}"
        );
    }

    /// env-dep record keys are environment variable NAMES, never paths:
    /// a key-only record (no `=`) and the key half of a record must survive
    /// both directions byte-for-byte (cross-model review finding).
    #[test]
    fn test_depinfo_env_dep_never_rewrites_keys() {
        let input = "# env-dep:__kache_root__/WEIRD_KEY\n\
                     # env-dep:__kache_root__/ALSO_WEIRD=__kache_root__/value\n";
        let prefixes = ["C:\\proj/".to_string(), "C:\\proj\\".to_string()];

        let expanded = rewrite_depinfo_content_with_prefixes(input, &prefixes, DepInfoMode::Expand);
        assert!(
            expanded.contains("# env-dep:__kache_root__/WEIRD_KEY\n"),
            "key-only record must be untouched: {expanded}"
        );
        assert!(
            expanded.contains("# env-dep:__kache_root__/ALSO_WEIRD=C:\\\\proj/value"),
            "only the value half may expand: {expanded}"
        );
    }

    /// kunobi-ninja/kache#730, the shape that broke the nightly bench: an
    /// entry relativized under a forward-spelled anchor, expanded under a
    /// backslash-spelled anchor. Expand must insert the escaped spelling into
    /// `# env-dep:` lines or cargo rejects the restored `.d` outright.
    #[test]
    fn test_depinfo_env_dep_expand_inserts_escaped_prefix() {
        let stored = "target/debug/deps/demo.d: __kache_root__/src/lib.rs\n\
                      # env-dep:OUT_DIR=__kache_root__/obj-kache-bench\\\\x86_64-pc-windows-msvc\\\\out\n";
        let prefixes = [
            "C:\\other\\clone-b/".to_string(),
            "C:\\other\\clone-b\\".to_string(),
        ];

        let expanded =
            rewrite_depinfo_content_with_prefixes(stored, &prefixes, DepInfoMode::Expand);

        let env_line = expanded
            .lines()
            .find(|l| l.starts_with(DEPINFO_ENV_DEP_PREFIX))
            .unwrap();
        assert!(
            env_line.contains("OUT_DIR=C:\\\\other\\\\clone-b/obj-kache-bench\\\\x86_64"),
            "expanded env-dep anchor must be escaped: {expanded}"
        );
        assert!(
            cargo_env_dep_value_parses(env_line.split_once('=').unwrap().1),
            "expanded env-dep value must stay parseable: {expanded}"
        );
        assert!(
            expanded.contains("demo.d: C:\\other\\clone-b/src/lib.rs"),
            "file-list line takes the plain anchor (rustc leaves backslashes raw there): {expanded}"
        );

        // Round trip: re-relativizing under the same anchor restores the
        // stored form, so warm entries stay stable across hits.
        let rerelativized =
            rewrite_depinfo_content_with_prefixes(&expanded, &prefixes, DepInfoMode::Relativize);
        assert_eq!(rerelativized, stored, "expand/relativize must round-trip");
    }

    #[test]
    fn test_depinfo_expand_preserves_parent_relative_paths() {
        let input = "\
foo.o: ../../src/foo.cc ../include/foo.h __kache_root__/generated.h foo/./bar.h
";

        let rewritten =
            rewrite_depinfo_content(input, Path::new("/build/worktree/obj"), DepInfoMode::Expand);

        assert!(
            rewritten.contains("../../src/foo.cc"),
            "parent-relative deps must not be expanded: {rewritten}"
        );
        assert!(
            rewritten.contains("../include/foo.h"),
            "single parent-relative deps must not be expanded: {rewritten}"
        );
        assert!(
            rewritten.contains("/build/worktree/obj/generated.h"),
            "sentinel paths must expand: {rewritten}"
        );
        assert!(
            rewritten.contains("foo/./bar.h"),
            "embedded ./ segments are compiler-owned paths: {rewritten}"
        );
    }

    #[test]
    fn test_depinfo_expand_preserves_firefox_parent_relative_depfile_paths() {
        let input = "\
Unified_mm_ettings-WrongChannel0.o: Unified_mm_ettings-WrongChannel0.mm \\
  ../../../../../../../toolkit/mozapps/update/updater/macos-frameworks/UpdateSettings/UpdateSettings.mm \\
  ../../../../../../../toolkit/mozapps/update/updater/macos-frameworks/UpdateSettings/UpdateSettings.h \\
  __kache_root__/mozilla-config.h
";
        let anchor = Path::new(
            "/Users/lenij/work/kache/tmp/bench/clone-a/obj-kache-bench\
             /toolkit/mozapps/update/updater/macos-frameworks/UpdateSettings-WrongChannel",
        );

        let rewritten = rewrite_depinfo_content(input, anchor, DepInfoMode::Expand);

        assert!(
            rewritten.contains(
                "../../../../../../../toolkit/mozapps/update/updater/macos-frameworks\
                 /UpdateSettings/UpdateSettings.mm"
            ),
            "Firefox-style parent-relative source path must survive restore: {rewritten}"
        );
        assert!(
            rewritten.contains(
                "../../../../../../../toolkit/mozapps/update/updater/macos-frameworks\
                 /UpdateSettings/UpdateSettings.h"
            ),
            "Firefox-style parent-relative header path must survive restore: {rewritten}"
        );
        assert!(
            !rewritten.contains("/./Users/") && !rewritten.contains("WrongChannel/./"),
            "restore must not inject the anchor into ../ paths: {rewritten}"
        );
        assert!(
            rewritten.contains(
                "/Users/lenij/work/kache/tmp/bench/clone-a/obj-kache-bench\
                 /toolkit/mozapps/update/updater/macos-frameworks\
                 /UpdateSettings-WrongChannel/mozilla-config.h"
            ),
            "sentinel paths should still expand at the restore anchor: {rewritten}"
        );
    }

    #[cfg(unix)]
    #[test]
    fn test_copy_executable_gets_execute_permission() {
        use std::os::unix::fs::PermissionsExt;

        let dir = tempfile::tempdir().unwrap();
        // Simulate a blob: read-only, no execute bit (as stored in kache's blob store)
        let src = dir.path().join("blob");
        fs::write(&src, b"ELF fake binary").unwrap();
        fs::set_permissions(&src, fs::Permissions::from_mode(0o444)).unwrap();

        let dst = dir.path().join("test_binary");
        link_to_target(&src, &dst, LinkStrategy::Copy).unwrap();

        let mode = fs::metadata(&dst).unwrap().permissions().mode();
        assert_eq!(mode & 0o111, 0o111, "executable should have +x: {mode:#o}");
        assert_eq!(
            mode & 0o200,
            0o200,
            "executable should be writable: {mode:#o}"
        );
    }

    #[test]
    fn executable_permission_helper_restores_consumer_permissions() {
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join("restored-executable");
        fs::write(&path, b"executable").unwrap();

        #[cfg(unix)]
        {
            use std::os::unix::fs::PermissionsExt;
            fs::set_permissions(&path, fs::Permissions::from_mode(0o400)).unwrap();
        }
        #[cfg(not(unix))]
        {
            let mut permissions = fs::metadata(&path).unwrap().permissions();
            permissions.set_readonly(true);
            fs::set_permissions(&path, permissions).unwrap();
        }

        set_executable_permissions(&path).unwrap();

        #[cfg(unix)]
        {
            use std::os::unix::fs::PermissionsExt;
            assert_eq!(
                fs::metadata(&path).unwrap().permissions().mode() & 0o777,
                0o755
            );
        }
        #[cfg(not(unix))]
        assert!(!fs::metadata(&path).unwrap().permissions().readonly());
    }

    #[test]
    fn writable_staging_file_is_created_beside_target() {
        let dir = tempfile::tempdir().unwrap();
        let parent = dir.path().join("outputs");
        fs::create_dir(&parent).unwrap();
        let target = parent.join("output.o");

        let staged = new_writable_staging_file(&target).unwrap();

        assert_eq!(staged.path().parent(), Some(parent.as_path()));
    }

    #[cfg(unix)]
    #[test]
    fn test_hardlink_fallback_no_execute_permission() {
        use std::os::unix::fs::PermissionsExt;

        let dir = tempfile::tempdir().unwrap();
        let src_dir = tempfile::tempdir().unwrap(); // different tempdir to force cross-dir

        let src = src_dir.path().join("blob.rlib");
        fs::write(&src, b"rlib content").unwrap();
        fs::set_permissions(&src, fs::Permissions::from_mode(0o444)).unwrap();

        let dst = dir.path().join("output.rlib");

        // Hardlink should succeed (same filesystem), so test copy_file directly
        copy_file(&src, &dst, false).unwrap();

        let mode = fs::metadata(&dst).unwrap().permissions().mode();
        assert_eq!(
            mode & 0o111,
            0,
            "non-executable should NOT have +x: {mode:#o}"
        );
        assert_eq!(mode & 0o200, 0o200, "should be writable: {mode:#o}");
    }

    #[cfg(unix)]
    #[test]
    fn test_copy_readonly_blob_becomes_writable_executable() {
        use std::os::unix::fs::PermissionsExt;

        let dir = tempfile::tempdir().unwrap();
        // Blob stored as read-only (exactly how kache stores them)
        let src = dir.path().join("blob");
        fs::write(&src, b"test binary content").unwrap();
        fs::set_permissions(&src, fs::Permissions::from_mode(0o444)).unwrap();

        let dst = dir.path().join("my_test-abc123");
        link_to_target(&src, &dst, LinkStrategy::Copy).unwrap();

        // Must be executable (cargo test will try to run this)
        let mode = fs::metadata(&dst).unwrap().permissions().mode();
        assert_eq!(mode & 0o755, 0o755, "expected 0o755, got {mode:#o}");
    }

    #[cfg(unix)]
    #[test]
    fn write_restored_over_readonly_blob_link_isolates_and_stays_writable() {
        // The bug this guards: on restore, a `.d` was linked to the
        // read-only store blob, then a post-restore rewrite tried to
        // edit it in place — failing on the 0o444 mode (reflink case)
        // or corrupting the shared blob (hardlink case). `write_restored`
        // instead materializes the final content as a fresh file.
        use std::os::unix::fs::{MetadataExt, PermissionsExt};

        let dir = tempfile::tempdir().unwrap();
        let blob = dir.path().join("blob.d");
        let target = dir.path().join("sub/restored.d");

        // A read-only store blob, and a prior restore that hardlinked it
        // into place (the worst case — shared inode + read-only).
        fs::write(&blob, b"OLD RELATIVIZED CONTENT").unwrap();
        fs::set_permissions(&blob, fs::Permissions::from_mode(0o444)).unwrap();
        fs::create_dir_all(target.parent().unwrap()).unwrap();
        fs::hard_link(&blob, &target).unwrap();

        write_restored(&target, b"NEW EXPANDED CONTENT", LinkStrategy::Hardlink).unwrap();

        // Final content is in place...
        assert_eq!(fs::read(&target).unwrap(), b"NEW EXPANDED CONTENT");
        // ...the restored file is writable (an in-place edit could not
        // have failed on it)...
        let mode = fs::metadata(&target).unwrap().permissions().mode();
        assert_eq!(
            mode & 0o200,
            0o200,
            "restored file must be writable: {mode:#o}"
        );
        // ...it shares no inode with the blob...
        assert_ne!(
            fs::metadata(&target).unwrap().ino(),
            fs::metadata(&blob).unwrap().ino(),
            "restored file must not share an inode with the store blob"
        );
        // ...and the store blob is byte-for-byte untouched.
        assert_eq!(fs::read(&blob).unwrap(), b"OLD RELATIVIZED CONTENT");
        assert!(
            fs::metadata(&blob).unwrap().permissions().readonly(),
            "store blob must remain read-only"
        );
    }

    #[test]
    fn write_restored_creates_missing_parent_dirs() {
        let dir = tempfile::tempdir().unwrap();
        let target = dir.path().join("a/b/c/out.d");
        write_restored(&target, b"content", LinkStrategy::Hardlink).unwrap();
        assert_eq!(fs::read(&target).unwrap(), b"content");
    }

    #[cfg(unix)]
    #[test]
    fn write_restored_copy_strategy_sets_executable() {
        use std::os::unix::fs::PermissionsExt;

        let dir = tempfile::tempdir().unwrap();
        let target = dir.path().join("deps/e2e-abc123");

        // Copy strategy is what Executable / DynamicLibrary kinds use:
        // a materialized executable must be runnable by the OS (#298).
        write_restored(&target, b"ELF fake binary", LinkStrategy::Copy).unwrap();

        let mode = fs::metadata(&target).unwrap().permissions().mode();
        assert_eq!(mode & 0o111, 0o111, "executable should have +x: {mode:#o}");
        assert_eq!(
            mode & 0o200,
            0o200,
            "executable should be writable: {mode:#o}"
        );
    }

    #[cfg(unix)]
    #[test]
    fn write_restored_hardlink_strategy_is_not_executable() {
        use std::os::unix::fs::PermissionsExt;

        let dir = tempfile::tempdir().unwrap();
        let target = dir.path().join("sub/restored.d");

        // Hardlink strategy backs dep-info (.d) and other immutable kinds:
        // materialized content stays a plain 0o644 file, never executable.
        write_restored(&target, b"deps: src.rs", LinkStrategy::Hardlink).unwrap();

        let mode = fs::metadata(&target).unwrap().permissions().mode();
        assert_eq!(
            mode & 0o111,
            0,
            "non-executable must NOT have +x: {mode:#o}"
        );
        assert_eq!(mode & 0o200, 0o200, "should be writable: {mode:#o}");
    }

    #[test]
    fn link_to_target_optimistic_existing_parent() {
        let dir = tempfile::TempDir::new().unwrap();
        let src = dir.path().join("source.txt");
        fs::write(&src, "test").unwrap();

        // Parent exists
        let dst_dir = dir.path().join("out");
        fs::create_dir_all(&dst_dir).unwrap();
        let dst = dst_dir.join("dest.txt");

        super::link_to_target(&src, &dst, LinkStrategy::Copy).unwrap();
        assert_eq!(fs::read_to_string(&dst).unwrap(), "test");
    }

    #[test]
    fn link_to_target_optimistic_missing_parent() {
        let dir = tempfile::TempDir::new().unwrap();
        let src = dir.path().join("source.txt");
        fs::write(&src, "test").unwrap();

        // Parent does NOT exist
        let dst = dir.path().join("missing").join("dest.txt");

        super::link_to_target(&src, &dst, LinkStrategy::Copy).unwrap();
        assert_eq!(fs::read_to_string(&dst).unwrap(), "test");
    }

    #[test]
    fn link_to_target_optimistic_nested_directories() {
        let dir = tempfile::TempDir::new().unwrap();
        let src = dir.path().join("source.txt");
        fs::write(&src, "test").unwrap();

        // Deeply nested missing parent
        let dst = dir
            .path()
            .join("foo")
            .join("bar")
            .join("baz")
            .join("dest.txt");

        super::link_to_target(&src, &dst, LinkStrategy::Copy).unwrap();
        assert_eq!(fs::read_to_string(&dst).unwrap(), "test");
    }

    #[test]
    #[cfg(unix)] // Permissions are easier to test on Unix
    fn link_to_target_permission_denied_does_not_loop() {
        let dir = tempfile::TempDir::new().unwrap();
        let src = dir.path().join("source.txt");
        fs::write(&src, "test").unwrap();

        let dst_dir = dir.path().join("readonly");
        fs::create_dir_all(&dst_dir).unwrap();

        // Make directory read-only
        use std::os::unix::fs::PermissionsExt;
        fs::set_permissions(&dst_dir, fs::Permissions::from_mode(0o555)).unwrap();

        let dst = dst_dir.join("dest.txt");

        let err = super::link_to_target(&src, &dst, LinkStrategy::Copy).unwrap_err();
        let io_err = err.downcast_ref::<std::io::Error>().unwrap();
        assert_eq!(io_err.kind(), std::io::ErrorKind::PermissionDenied);

        // Restore permissions so TempDir can clean up
        fs::set_permissions(&dst_dir, fs::Permissions::from_mode(0o755)).unwrap();
    }

    #[test]
    #[cfg(unix)]
    fn link_to_target_missing_parent_permission_denied_surfaces_real_cause() {
        let dir = tempfile::TempDir::new().unwrap();
        let src = dir.path().join("source.txt");
        fs::write(&src, "test").unwrap();

        let dst_dir = dir.path().join("readonly_parent");
        fs::create_dir_all(&dst_dir).unwrap();

        use std::os::unix::fs::PermissionsExt;
        fs::set_permissions(&dst_dir, fs::Permissions::from_mode(0o555)).unwrap();

        let dst = dst_dir.join("nested").join("dest.txt");

        let err = super::link_to_target(&src, &dst, LinkStrategy::Copy).unwrap_err();
        let io_err = err.downcast_ref::<std::io::Error>().unwrap();
        assert_eq!(io_err.kind(), std::io::ErrorKind::PermissionDenied);

        fs::set_permissions(&dst_dir, fs::Permissions::from_mode(0o755)).unwrap();
    }

    #[test]
    #[cfg(unix)]
    fn write_restored_missing_parent_permission_denied_surfaces_real_cause() {
        let dir = tempfile::TempDir::new().unwrap();
        let dst_dir = dir.path().join("readonly_parent");
        fs::create_dir_all(&dst_dir).unwrap();

        use std::os::unix::fs::PermissionsExt;
        fs::set_permissions(&dst_dir, fs::Permissions::from_mode(0o555)).unwrap();

        let dst = dst_dir.join("nested").join("dest.txt");

        let err = super::write_restored(&dst, b"test", LinkStrategy::Copy).unwrap_err();
        let io_err = err.downcast_ref::<std::io::Error>().unwrap();
        assert_eq!(io_err.kind(), std::io::ErrorKind::PermissionDenied);

        fs::set_permissions(&dst_dir, fs::Permissions::from_mode(0o755)).unwrap();
    }
}