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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* NTFS kernel index handling.
*
* Copyright (c) 2004-2005 Anton Altaparmakov
* Copyright (c) 2025 LG Electronics Co., Ltd.
*
* Part of this file is based on code from the NTFS-3G.
* and is copyrighted by the respective authors below:
* Copyright (c) 2004-2005 Anton Altaparmakov
* Copyright (c) 2004-2005 Richard Russon
* Copyright (c) 2005-2006 Yura Pakhuchiy
* Copyright (c) 2005-2008 Szabolcs Szakacsits
* Copyright (c) 2007-2021 Jean-Pierre Andre
*/
#include "collate.h"
#include "index.h"
#include "ntfs.h"
#include "attrlist.h"
/*
* ntfs_index_entry_inconsistent - Check the consistency of an index entry
*
* Make sure data and key do not overflow from entry.
* As a side effect, an entry with zero length is rejected.
* This entry must be a full one (no INDEX_ENTRY_END flag), and its
* length must have been checked beforehand to not overflow from the
* index record.
*/
int ntfs_index_entry_inconsistent(struct ntfs_index_context *icx,
struct ntfs_volume *vol, const struct index_entry *ie,
__le32 collation_rule, u64 inum)
{
if (icx) {
struct index_header *ih;
u8 *ie_start, *ie_end;
if (icx->is_in_root)
ih = &icx->ir->index;
else
ih = &icx->ib->index;
if ((le32_to_cpu(ih->index_length) > le32_to_cpu(ih->allocated_size)) ||
(le32_to_cpu(ih->index_length) > icx->block_size)) {
ntfs_error(vol->sb, "%s Index entry(0x%p)'s length is too big.",
icx->is_in_root ? "Index root" : "Index block",
(u8 *)icx->entry);
return -EINVAL;
}
ie_start = (u8 *)ih + le32_to_cpu(ih->entries_offset);
ie_end = (u8 *)ih + le32_to_cpu(ih->index_length);
if (ie_start > (u8 *)ie ||
ie_end <= (u8 *)ie + le16_to_cpu(ie->length) ||
le16_to_cpu(ie->length) > le32_to_cpu(ih->allocated_size) ||
le16_to_cpu(ie->length) > icx->block_size) {
ntfs_error(vol->sb, "Index entry(0x%p) is out of range from %s",
(u8 *)icx->entry,
icx->is_in_root ? "index root" : "index block");
return -EIO;
}
}
if (ie->key_length &&
((le16_to_cpu(ie->key_length) + offsetof(struct index_entry, key)) >
le16_to_cpu(ie->length))) {
ntfs_error(vol->sb, "Overflow from index entry in inode %lld\n",
(long long)inum);
return -EIO;
} else {
if (collation_rule == COLLATION_FILE_NAME) {
if ((offsetof(struct index_entry, key.file_name.file_name) +
ie->key.file_name.file_name_length * sizeof(__le16)) >
le16_to_cpu(ie->length)) {
ntfs_error(vol->sb,
"File name overflow from index entry in inode %lld\n",
(long long)inum);
return -EIO;
}
} else {
if (ie->data.vi.data_length &&
((le16_to_cpu(ie->data.vi.data_offset) +
le16_to_cpu(ie->data.vi.data_length)) >
le16_to_cpu(ie->length))) {
ntfs_error(vol->sb,
"Data overflow from index entry in inode %lld\n",
(long long)inum);
return -EIO;
}
}
}
return 0;
}
/*
* ntfs_index_entry_mark_dirty - mark an index entry dirty
* @ictx: ntfs index context describing the index entry
*
* Mark the index entry described by the index entry context @ictx dirty.
*
* If the index entry is in the index root attribute, simply mark the inode
* containing the index root attribute dirty. This ensures the mftrecord, and
* hence the index root attribute, will be written out to disk later.
*
* If the index entry is in an index block belonging to the index allocation
* attribute, set ib_dirty to true, thus index block will be updated during
* ntfs_index_ctx_put.
*/
void ntfs_index_entry_mark_dirty(struct ntfs_index_context *ictx)
{
if (ictx->is_in_root)
mark_mft_record_dirty(ictx->actx->ntfs_ino);
else if (ictx->ib)
ictx->ib_dirty = true;
}
static s64 ntfs_ib_vcn_to_pos(struct ntfs_index_context *icx, s64 vcn)
{
return vcn << icx->vcn_size_bits;
}
static s64 ntfs_ib_pos_to_vcn(struct ntfs_index_context *icx, s64 pos)
{
return pos >> icx->vcn_size_bits;
}
static int ntfs_ib_write(struct ntfs_index_context *icx, struct index_block *ib)
{
s64 ret, vcn = le64_to_cpu(ib->index_block_vcn);
ntfs_debug("vcn: %lld\n", vcn);
ret = pre_write_mst_fixup((struct ntfs_record *)ib, icx->block_size);
if (ret)
return -EIO;
ret = ntfs_inode_attr_pwrite(VFS_I(icx->ia_ni),
ntfs_ib_vcn_to_pos(icx, vcn), icx->block_size,
(u8 *)ib, icx->sync_write);
if (ret != icx->block_size) {
ntfs_debug("Failed to write index block %lld, inode %llu",
vcn, (unsigned long long)icx->idx_ni->mft_no);
return ret;
}
return 0;
}
static int ntfs_icx_ib_write(struct ntfs_index_context *icx)
{
int err;
err = ntfs_ib_write(icx, icx->ib);
if (err)
return err;
icx->ib_dirty = false;
return 0;
}
int ntfs_icx_ib_sync_write(struct ntfs_index_context *icx)
{
int ret;
if (icx->ib_dirty == false)
return 0;
icx->sync_write = true;
ret = ntfs_ib_write(icx, icx->ib);
if (!ret) {
kvfree(icx->ib);
icx->ib = NULL;
icx->ib_dirty = false;
} else {
post_write_mst_fixup((struct ntfs_record *)icx->ib);
icx->sync_write = false;
}
return ret;
}
/*
* ntfs_index_ctx_get - allocate and initialize a new index context
* @ni: ntfs inode with which to initialize the context
* @name: name of the which context describes
* @name_len: length of the index name
*
* Allocate a new index context, initialize it with @ni and return it.
* Return NULL if allocation failed.
*/
struct ntfs_index_context *ntfs_index_ctx_get(struct ntfs_inode *ni,
__le16 *name, u32 name_len)
{
struct ntfs_index_context *icx;
ntfs_debug("Entering\n");
if (!ni)
return NULL;
if (ni->nr_extents == -1)
ni = ni->ext.base_ntfs_ino;
icx = kmem_cache_alloc(ntfs_index_ctx_cache, GFP_NOFS);
if (icx)
*icx = (struct ntfs_index_context) {
.idx_ni = ni,
.name = name,
.name_len = name_len,
};
return icx;
}
static void ntfs_index_ctx_free(struct ntfs_index_context *icx)
{
ntfs_debug("Entering\n");
if (icx->actx) {
ntfs_attr_put_search_ctx(icx->actx);
icx->actx = NULL;
}
if (!icx->is_in_root) {
if (icx->ib_dirty)
ntfs_ib_write(icx, icx->ib);
kvfree(icx->ib);
icx->ib = NULL;
}
if (icx->ia_ni) {
iput(VFS_I(icx->ia_ni));
icx->ia_ni = NULL;
}
}
/*
* ntfs_index_ctx_put - release an index context
* @icx: index context to free
*
* Release the index context @icx, releasing all associated resources.
*/
void ntfs_index_ctx_put(struct ntfs_index_context *icx)
{
ntfs_index_ctx_free(icx);
kmem_cache_free(ntfs_index_ctx_cache, icx);
}
/*
* ntfs_index_ctx_reinit - reinitialize an index context
* @icx: index context to reinitialize
*
* Reinitialize the index context @icx so it can be used for ntfs_index_lookup.
*/
void ntfs_index_ctx_reinit(struct ntfs_index_context *icx)
{
ntfs_debug("Entering\n");
ntfs_index_ctx_free(icx);
*icx = (struct ntfs_index_context) {
.idx_ni = icx->idx_ni,
.name = icx->name,
.name_len = icx->name_len,
};
}
static __le64 *ntfs_ie_get_vcn_addr(struct index_entry *ie)
{
return (__le64 *)((u8 *)ie + le16_to_cpu(ie->length) - sizeof(s64));
}
/*
* Get the subnode vcn to which the index entry refers.
*/
static s64 ntfs_ie_get_vcn(struct index_entry *ie)
{
return le64_to_cpup(ntfs_ie_get_vcn_addr(ie));
}
static struct index_entry *ntfs_ie_get_first(struct index_header *ih)
{
return (struct index_entry *)((u8 *)ih + le32_to_cpu(ih->entries_offset));
}
static struct index_entry *ntfs_ie_get_next(struct index_entry *ie)
{
return (struct index_entry *)((char *)ie + le16_to_cpu(ie->length));
}
static u8 *ntfs_ie_get_end(struct index_header *ih)
{
return (u8 *)ih + le32_to_cpu(ih->index_length);
}
static int ntfs_ie_end(struct index_entry *ie)
{
return ie->flags & INDEX_ENTRY_END || !ie->length;
}
/*
* Find the last entry in the index block
*/
static struct index_entry *ntfs_ie_get_last(struct index_entry *ie, char *ies_end)
{
ntfs_debug("Entering\n");
while ((char *)ie < ies_end && !ntfs_ie_end(ie))
ie = ntfs_ie_get_next(ie);
return ie;
}
static struct index_entry *ntfs_ie_get_by_pos(struct index_header *ih, int pos)
{
struct index_entry *ie;
ntfs_debug("pos: %d\n", pos);
ie = ntfs_ie_get_first(ih);
while (pos-- > 0)
ie = ntfs_ie_get_next(ie);
return ie;
}
static struct index_entry *ntfs_ie_prev(struct index_header *ih, struct index_entry *ie)
{
struct index_entry *ie_prev = NULL;
struct index_entry *tmp;
ntfs_debug("Entering\n");
tmp = ntfs_ie_get_first(ih);
while (tmp != ie) {
ie_prev = tmp;
tmp = ntfs_ie_get_next(tmp);
}
return ie_prev;
}
static int ntfs_ih_numof_entries(struct index_header *ih)
{
int n;
struct index_entry *ie;
u8 *end;
ntfs_debug("Entering\n");
end = ntfs_ie_get_end(ih);
ie = ntfs_ie_get_first(ih);
for (n = 0; !ntfs_ie_end(ie) && (u8 *)ie < end; n++)
ie = ntfs_ie_get_next(ie);
return n;
}
static int ntfs_ih_one_entry(struct index_header *ih)
{
return (ntfs_ih_numof_entries(ih) == 1);
}
static int ntfs_ih_zero_entry(struct index_header *ih)
{
return (ntfs_ih_numof_entries(ih) == 0);
}
static void ntfs_ie_delete(struct index_header *ih, struct index_entry *ie)
{
u32 new_size;
ntfs_debug("Entering\n");
new_size = le32_to_cpu(ih->index_length) - le16_to_cpu(ie->length);
ih->index_length = cpu_to_le32(new_size);
memmove(ie, (u8 *)ie + le16_to_cpu(ie->length),
new_size - ((u8 *)ie - (u8 *)ih));
}
static void ntfs_ie_set_vcn(struct index_entry *ie, s64 vcn)
{
*ntfs_ie_get_vcn_addr(ie) = cpu_to_le64(vcn);
}
/*
* Insert @ie index entry at @pos entry. Used @ih values should be ok already.
*/
static void ntfs_ie_insert(struct index_header *ih, struct index_entry *ie,
struct index_entry *pos)
{
int ie_size = le16_to_cpu(ie->length);
ntfs_debug("Entering\n");
ih->index_length = cpu_to_le32(le32_to_cpu(ih->index_length) + ie_size);
memmove((u8 *)pos + ie_size, pos,
le32_to_cpu(ih->index_length) - ((u8 *)pos - (u8 *)ih) - ie_size);
memcpy(pos, ie, ie_size);
}
static struct index_entry *ntfs_ie_dup(struct index_entry *ie)
{
ntfs_debug("Entering\n");
return kmemdup(ie, le16_to_cpu(ie->length), GFP_NOFS);
}
static struct index_entry *ntfs_ie_dup_novcn(struct index_entry *ie)
{
struct index_entry *dup;
int size = le16_to_cpu(ie->length);
ntfs_debug("Entering\n");
if (ie->flags & INDEX_ENTRY_NODE)
size -= sizeof(s64);
dup = kmemdup(ie, size, GFP_NOFS);
if (dup) {
dup->flags &= ~INDEX_ENTRY_NODE;
dup->length = cpu_to_le16(size);
}
return dup;
}
/*
* Check the consistency of an index block
*
* Make sure the index block does not overflow from the index record.
* The size of block is assumed to have been checked to be what is
* defined in the index root.
*
* Returns 0 if no error was found -1 otherwise (with errno unchanged)
*
* |<--->| offsetof(struct index_block, index)
* | |<--->| sizeof(struct index_header)
* | | |
* | | | seq index entries unused
* |=====|=====|=====|===========================|==============|
* | | | | |
* | |<--------->| entries_offset | |
* | |<---------------- index_length ------->| |
* | |<--------------------- allocated_size --------------->|
* |<--------------------------- block_size ------------------->|
*
* size(struct index_header) <= ent_offset < ind_length <= alloc_size < bk_size
*/
static int ntfs_index_block_inconsistent(struct ntfs_index_context *icx,
struct index_block *ib, s64 vcn)
{
u32 ib_size = (unsigned int)le32_to_cpu(ib->index.allocated_size) +
offsetof(struct index_block, index);
struct super_block *sb = icx->idx_ni->vol->sb;
unsigned long long inum = icx->idx_ni->mft_no;
ntfs_debug("Entering\n");
if (!ntfs_is_indx_record(ib->magic)) {
ntfs_error(sb, "Corrupt index block signature: vcn %lld inode %llu\n",
vcn, (unsigned long long)icx->idx_ni->mft_no);
return -1;
}
if (le64_to_cpu(ib->index_block_vcn) != vcn) {
ntfs_error(sb,
"Corrupt index block: s64 (%lld) is different from expected s64 (%lld) in inode %llu\n",
(long long)le64_to_cpu(ib->index_block_vcn),
vcn, inum);
return -1;
}
if (ib_size != icx->block_size) {
ntfs_error(sb,
"Corrupt index block : s64 (%lld) of inode %llu has a size (%u) differing from the index specified size (%u)\n",
vcn, inum, ib_size, icx->block_size);
return -1;
}
if (le32_to_cpu(ib->index.entries_offset) < sizeof(struct index_header)) {
ntfs_error(sb, "Invalid index entry offset in inode %lld\n", inum);
return -1;
}
if (le32_to_cpu(ib->index.index_length) <=
le32_to_cpu(ib->index.entries_offset)) {
ntfs_error(sb, "No space for index entries in inode %lld\n", inum);
return -1;
}
if (le32_to_cpu(ib->index.allocated_size) <
le32_to_cpu(ib->index.index_length)) {
ntfs_error(sb, "Index entries overflow in inode %lld\n", inum);
return -1;
}
return 0;
}
static struct index_root *ntfs_ir_lookup(struct ntfs_inode *ni, __le16 *name,
u32 name_len, struct ntfs_attr_search_ctx **ctx)
{
struct attr_record *a;
struct index_root *ir = NULL;
ntfs_debug("Entering\n");
*ctx = ntfs_attr_get_search_ctx(ni, NULL);
if (!*ctx) {
ntfs_error(ni->vol->sb, "%s, Failed to get search context", __func__);
return NULL;
}
if (ntfs_attr_lookup(AT_INDEX_ROOT, name, name_len, CASE_SENSITIVE,
0, NULL, 0, *ctx)) {
ntfs_error(ni->vol->sb, "Failed to lookup $INDEX_ROOT");
goto err_out;
}
a = (*ctx)->attr;
if (a->non_resident) {
ntfs_error(ni->vol->sb, "Non-resident $INDEX_ROOT detected");
goto err_out;
}
ir = (struct index_root *)((char *)a + le16_to_cpu(a->data.resident.value_offset));
err_out:
if (!ir) {
ntfs_attr_put_search_ctx(*ctx);
*ctx = NULL;
}
return ir;
}
static struct index_root *ntfs_ir_lookup2(struct ntfs_inode *ni, __le16 *name, u32 len)
{
struct ntfs_attr_search_ctx *ctx;
struct index_root *ir;
ir = ntfs_ir_lookup(ni, name, len, &ctx);
if (ir)
ntfs_attr_put_search_ctx(ctx);
return ir;
}
/*
* Find a key in the index block.
*/
static int ntfs_ie_lookup(const void *key, const u32 key_len,
struct ntfs_index_context *icx, struct index_header *ih,
s64 *vcn, struct index_entry **ie_out)
{
struct index_entry *ie;
u8 *index_end;
int rc, item = 0;
ntfs_debug("Entering\n");
index_end = ntfs_ie_get_end(ih);
/*
* Loop until we exceed valid memory (corruption case) or until we
* reach the last entry.
*/
for (ie = ntfs_ie_get_first(ih); ; ie = ntfs_ie_get_next(ie)) {
/* Bounds checks. */
if ((u8 *)ie + sizeof(struct index_entry_header) > index_end ||
(u8 *)ie + le16_to_cpu(ie->length) > index_end) {
ntfs_error(icx->idx_ni->vol->sb,
"Index entry out of bounds in inode %llu.\n",
(unsigned long long)icx->idx_ni->mft_no);
return -ERANGE;
}
/*
* The last entry cannot contain a key. It can however contain
* a pointer to a child node in the B+tree so we just break out.
*/
if (ntfs_ie_end(ie))
break;
/*
* Not a perfect match, need to do full blown collation so we
* know which way in the B+tree we have to go.
*/
rc = ntfs_collate(icx->idx_ni->vol, icx->cr, key, key_len, &ie->key,
le16_to_cpu(ie->key_length));
if (rc == -EINVAL) {
ntfs_error(icx->idx_ni->vol->sb,
"Collation error. Perhaps a filename contains invalid characters?\n");
return -ERANGE;
}
/*
* If @key collates before the key of the current entry, there
* is definitely no such key in this index but we might need to
* descend into the B+tree so we just break out of the loop.
*/
if (rc == -1)
break;
if (!rc) {
*ie_out = ie;
icx->parent_pos[icx->pindex] = item;
return 0;
}
item++;
}
/*
* We have finished with this index block without success. Check for the
* presence of a child node and if not present return with errno ENOENT,
* otherwise we will keep searching in another index block.
*/
if (!(ie->flags & INDEX_ENTRY_NODE)) {
ntfs_debug("Index entry wasn't found.\n");
*ie_out = ie;
return -ENOENT;
}
/* Get the starting vcn of the index_block holding the child node. */
*vcn = ntfs_ie_get_vcn(ie);
if (*vcn < 0) {
ntfs_error(icx->idx_ni->vol->sb, "Negative vcn in inode %llu\n",
(unsigned long long)icx->idx_ni->mft_no);
return -EINVAL;
}
ntfs_debug("Parent entry number %d\n", item);
icx->parent_pos[icx->pindex] = item;
return -EAGAIN;
}
struct ntfs_inode *ntfs_ia_open(struct ntfs_index_context *icx, struct ntfs_inode *ni)
{
struct inode *ia_vi;
ia_vi = ntfs_index_iget(VFS_I(ni), icx->name, icx->name_len);
if (IS_ERR(ia_vi)) {
ntfs_error(icx->idx_ni->vol->sb,
"Failed to open index allocation of inode %llu",
(unsigned long long)ni->mft_no);
return NULL;
}
return NTFS_I(ia_vi);
}
static int ntfs_ib_read(struct ntfs_index_context *icx, s64 vcn, struct index_block *dst)
{
s64 pos, ret;
ntfs_debug("vcn: %lld\n", vcn);
pos = ntfs_ib_vcn_to_pos(icx, vcn);
ret = ntfs_inode_attr_pread(VFS_I(icx->ia_ni), pos, icx->block_size, (u8 *)dst);
if (ret != icx->block_size) {
if (ret == -1)
ntfs_error(icx->idx_ni->vol->sb, "Failed to read index block");
else
ntfs_error(icx->idx_ni->vol->sb,
"Failed to read full index block at %lld\n", pos);
return -1;
}
post_read_mst_fixup((struct ntfs_record *)((u8 *)dst), icx->block_size);
if (ntfs_index_block_inconsistent(icx, dst, vcn))
return -1;
return 0;
}
static int ntfs_icx_parent_inc(struct ntfs_index_context *icx)
{
icx->pindex++;
if (icx->pindex >= MAX_PARENT_VCN) {
ntfs_error(icx->idx_ni->vol->sb, "Index is over %d level deep", MAX_PARENT_VCN);
return -EOPNOTSUPP;
}
return 0;
}
static int ntfs_icx_parent_dec(struct ntfs_index_context *icx)
{
icx->pindex--;
if (icx->pindex < 0) {
ntfs_error(icx->idx_ni->vol->sb, "Corrupt index pointer (%d)", icx->pindex);
return -EINVAL;
}
return 0;
}
/*
* ntfs_index_lookup - find a key in an index and return its index entry
* @key: key for which to search in the index
* @key_len: length of @key in bytes
* @icx: context describing the index and the returned entry
*
* Before calling ntfs_index_lookup(), @icx must have been obtained from a
* call to ntfs_index_ctx_get().
*
* Look for the @key in the index specified by the index lookup context @icx.
* ntfs_index_lookup() walks the contents of the index looking for the @key.
*
* If the @key is found in the index, 0 is returned and @icx is setup to
* describe the index entry containing the matching @key. @icx->entry is the
* index entry and @icx->data and @icx->data_len are the index entry data and
* its length in bytes, respectively.
*
* If the @key is not found in the index, -ENOENT is returned and
* @icx is setup to describe the index entry whose key collates immediately
* after the search @key, i.e. this is the position in the index at which
* an index entry with a key of @key would need to be inserted.
*
* When finished with the entry and its data, call ntfs_index_ctx_put() to free
* the context and other associated resources.
*
* If the index entry was modified, call ntfs_index_entry_mark_dirty() before
* the call to ntfs_index_ctx_put() to ensure that the changes are written
* to disk.
*/
int ntfs_index_lookup(const void *key, const u32 key_len, struct ntfs_index_context *icx)
{
s64 old_vcn, vcn;
struct ntfs_inode *ni = icx->idx_ni;
struct super_block *sb = ni->vol->sb;
struct index_root *ir;
struct index_entry *ie;
struct index_block *ib = NULL;
int err = 0;
ntfs_debug("Entering\n");
if (!key) {
ntfs_error(sb, "key: %p key_len: %d", key, key_len);
return -EINVAL;
}
ir = ntfs_ir_lookup(ni, icx->name, icx->name_len, &icx->actx);
if (!ir)
return -EIO;
icx->block_size = le32_to_cpu(ir->index_block_size);
if (icx->block_size < NTFS_BLOCK_SIZE) {
err = -EINVAL;
ntfs_error(sb,
"Index block size (%d) is smaller than the sector size (%d)",
icx->block_size, NTFS_BLOCK_SIZE);
goto err_out;
}
if (ni->vol->cluster_size <= icx->block_size)
icx->vcn_size_bits = ni->vol->cluster_size_bits;
else
icx->vcn_size_bits = ni->vol->sector_size_bits;
icx->cr = ir->collation_rule;
if (!ntfs_is_collation_rule_supported(icx->cr)) {
err = -EOPNOTSUPP;
ntfs_error(sb, "Unknown collation rule 0x%x",
(unsigned int)le32_to_cpu(icx->cr));
goto err_out;
}
old_vcn = VCN_INDEX_ROOT_PARENT;
err = ntfs_ie_lookup(key, key_len, icx, &ir->index, &vcn, &ie);
if (err == -ERANGE || err == -EINVAL)
goto err_out;
icx->ir = ir;
if (err != -EAGAIN) {
icx->is_in_root = true;
icx->parent_vcn[icx->pindex] = old_vcn;
goto done;
}
/* Child node present, descend into it. */
icx->ia_ni = ntfs_ia_open(icx, ni);
if (!icx->ia_ni) {
err = -ENOENT;
goto err_out;
}
ib = kvzalloc(icx->block_size, GFP_NOFS);
if (!ib) {
err = -ENOMEM;
goto err_out;
}
descend_into_child_node:
icx->parent_vcn[icx->pindex] = old_vcn;
if (ntfs_icx_parent_inc(icx)) {
err = -EIO;
goto err_out;
}
old_vcn = vcn;
ntfs_debug("Descend into node with s64 %lld.\n", vcn);
if (ntfs_ib_read(icx, vcn, ib)) {
err = -EIO;
goto err_out;
}
err = ntfs_ie_lookup(key, key_len, icx, &ib->index, &vcn, &ie);
if (err != -EAGAIN) {
if (err == -EINVAL || err == -ERANGE)
goto err_out;
icx->is_in_root = false;
icx->ib = ib;
icx->parent_vcn[icx->pindex] = vcn;
goto done;
}
if ((ib->index.flags & NODE_MASK) == LEAF_NODE) {
ntfs_error(icx->idx_ni->vol->sb,
"Index entry with child node found in a leaf node in inode 0x%llx.\n",
(unsigned long long)ni->mft_no);
goto err_out;
}
goto descend_into_child_node;
err_out:
if (icx->actx) {
ntfs_attr_put_search_ctx(icx->actx);
icx->actx = NULL;
}
kvfree(ib);
if (!err)
err = -EIO;
return err;
done:
icx->entry = ie;
icx->data = (u8 *)ie + offsetof(struct index_entry, key);
icx->data_len = le16_to_cpu(ie->key_length);
ntfs_debug("Done.\n");
return err;
}
static struct index_block *ntfs_ib_alloc(s64 ib_vcn, u32 ib_size,
u8 node_type)
{
struct index_block *ib;
int ih_size = sizeof(struct index_header);
ntfs_debug("Entering ib_vcn = %lld ib_size = %u\n", ib_vcn, ib_size);
ib = kvzalloc(ib_size, GFP_NOFS);
if (!ib)
return NULL;
ib->magic = magic_INDX;
ib->usa_ofs = cpu_to_le16(sizeof(struct index_block));
ib->usa_count = cpu_to_le16(ib_size / NTFS_BLOCK_SIZE + 1);
/* Set USN to 1 */
*(__le16 *)((char *)ib + le16_to_cpu(ib->usa_ofs)) = cpu_to_le16(1);
ib->lsn = 0;
ib->index_block_vcn = cpu_to_le64(ib_vcn);
ib->index.entries_offset = cpu_to_le32((ih_size +
le16_to_cpu(ib->usa_count) * 2 + 7) & ~7);
ib->index.index_length = 0;
ib->index.allocated_size = cpu_to_le32(ib_size -
(sizeof(struct index_block) - ih_size));
ib->index.flags = node_type;
return ib;
}
/*
* Find the median by going through all the entries
*/
static struct index_entry *ntfs_ie_get_median(struct index_header *ih)
{
struct index_entry *ie, *ie_start;
u8 *ie_end;
int i = 0, median;
ntfs_debug("Entering\n");
ie = ie_start = ntfs_ie_get_first(ih);
ie_end = (u8 *)ntfs_ie_get_end(ih);
while ((u8 *)ie < ie_end && !ntfs_ie_end(ie)) {
ie = ntfs_ie_get_next(ie);
i++;
}
/*
* NOTE: this could be also the entry at the half of the index block.
*/
median = i / 2 - 1;
ntfs_debug("Entries: %d median: %d\n", i, median);
for (i = 0, ie = ie_start; i <= median; i++)
ie = ntfs_ie_get_next(ie);
return ie;
}
static u64 ntfs_ibm_vcn_to_pos(struct ntfs_index_context *icx, s64 vcn)
{
u64 pos = ntfs_ib_vcn_to_pos(icx, vcn);
do_div(pos, icx->block_size);
return pos;
}
static s64 ntfs_ibm_pos_to_vcn(struct ntfs_index_context *icx, s64 pos)
{
return ntfs_ib_pos_to_vcn(icx, pos * icx->block_size);
}
static int ntfs_ibm_add(struct ntfs_index_context *icx)
{
u8 bmp[8];
ntfs_debug("Entering\n");
if (ntfs_attr_exist(icx->idx_ni, AT_BITMAP, icx->name, icx->name_len))
return 0;
/*
* AT_BITMAP must be at least 8 bytes.
*/
memset(bmp, 0, sizeof(bmp));
if (ntfs_attr_add(icx->idx_ni, AT_BITMAP, icx->name, icx->name_len,
bmp, sizeof(bmp))) {
ntfs_error(icx->idx_ni->vol->sb, "Failed to add AT_BITMAP");
return -EINVAL;
}
return 0;
}
static int ntfs_ibm_modify(struct ntfs_index_context *icx, s64 vcn, int set)
{
u8 byte;
u64 pos = ntfs_ibm_vcn_to_pos(icx, vcn);
u32 bpos = pos / 8;
u32 bit = 1 << (pos % 8);
struct ntfs_inode *bmp_ni;
struct inode *bmp_vi;
int ret = 0;
ntfs_debug("%s vcn: %lld\n", set ? "set" : "clear", vcn);
bmp_vi = ntfs_attr_iget(VFS_I(icx->idx_ni), AT_BITMAP, icx->name, icx->name_len);
if (IS_ERR(bmp_vi)) {
ntfs_error(icx->idx_ni->vol->sb, "Failed to open $BITMAP attribute");
return PTR_ERR(bmp_vi);
}
bmp_ni = NTFS_I(bmp_vi);
if (set) {
if (bmp_ni->data_size < bpos + 1) {
ret = ntfs_attr_truncate(bmp_ni, (bmp_ni->data_size + 8) & ~7);
if (ret) {
ntfs_error(icx->idx_ni->vol->sb, "Failed to truncate AT_BITMAP");
goto err;
}
i_size_write(bmp_vi, (loff_t)bmp_ni->data_size);
}
}
if (ntfs_inode_attr_pread(bmp_vi, bpos, 1, &byte) != 1) {
ret = -EIO;
ntfs_error(icx->idx_ni->vol->sb, "Failed to read $BITMAP");
goto err;
}
if (set)
byte |= bit;
else
byte &= ~bit;
if (ntfs_inode_attr_pwrite(bmp_vi, bpos, 1, &byte, false) != 1) {
ret = -EIO;
ntfs_error(icx->idx_ni->vol->sb, "Failed to write $Bitmap");
goto err;
}
err:
iput(bmp_vi);
return ret;
}
static int ntfs_ibm_set(struct ntfs_index_context *icx, s64 vcn)
{
return ntfs_ibm_modify(icx, vcn, 1);
}
static int ntfs_ibm_clear(struct ntfs_index_context *icx, s64 vcn)
{
return ntfs_ibm_modify(icx, vcn, 0);
}
static s64 ntfs_ibm_get_free(struct ntfs_index_context *icx)
{
u8 *bm;
int bit;
s64 vcn, byte, size;
ntfs_debug("Entering\n");
bm = ntfs_attr_readall(icx->idx_ni, AT_BITMAP, icx->name, icx->name_len,
&size);
if (!bm)
return (s64)-1;
for (byte = 0; byte < size; byte++) {
if (bm[byte] == 255)
continue;
for (bit = 0; bit < 8; bit++) {
if (!(bm[byte] & (1 << bit))) {
vcn = ntfs_ibm_pos_to_vcn(icx, byte * 8 + bit);
goto out;
}
}
}
vcn = ntfs_ibm_pos_to_vcn(icx, size * 8);
out:
ntfs_debug("allocated vcn: %lld\n", vcn);
if (ntfs_ibm_set(icx, vcn))
vcn = (s64)-1;
kvfree(bm);
return vcn;
}
static struct index_block *ntfs_ir_to_ib(struct index_root *ir, s64 ib_vcn)
{
struct index_block *ib;
struct index_entry *ie_last;
char *ies_start, *ies_end;
int i;
ntfs_debug("Entering\n");
ib = ntfs_ib_alloc(ib_vcn, le32_to_cpu(ir->index_block_size), LEAF_NODE);
if (!ib)
return NULL;
ies_start = (char *)ntfs_ie_get_first(&ir->index);
ies_end = (char *)ntfs_ie_get_end(&ir->index);
ie_last = ntfs_ie_get_last((struct index_entry *)ies_start, ies_end);
/*
* Copy all entries, including the termination entry
* as well, which can never have any data.
*/
i = (char *)ie_last - ies_start + le16_to_cpu(ie_last->length);
memcpy(ntfs_ie_get_first(&ib->index), ies_start, i);
ib->index.flags = ir->index.flags;
ib->index.index_length = cpu_to_le32(i +
le32_to_cpu(ib->index.entries_offset));
return ib;
}
static void ntfs_ir_nill(struct index_root *ir)
{
struct index_entry *ie_last;
char *ies_start, *ies_end;
ntfs_debug("Entering\n");
ies_start = (char *)ntfs_ie_get_first(&ir->index);
ies_end = (char *)ntfs_ie_get_end(&ir->index);
ie_last = ntfs_ie_get_last((struct index_entry *)ies_start, ies_end);
/*
* Move the index root termination entry forward
*/
if ((char *)ie_last > ies_start) {
memmove((char *)ntfs_ie_get_first(&ir->index),
(char *)ie_last, le16_to_cpu(ie_last->length));
ie_last = (struct index_entry *)ies_start;
}
}
static int ntfs_ib_copy_tail(struct ntfs_index_context *icx, struct index_block *src,
struct index_entry *median, s64 new_vcn)
{
u8 *ies_end;
struct index_entry *ie_head; /* first entry after the median */
int tail_size, ret;
struct index_block *dst;
ntfs_debug("Entering\n");
dst = ntfs_ib_alloc(new_vcn, icx->block_size,
src->index.flags & NODE_MASK);
if (!dst)
return -ENOMEM;
ie_head = ntfs_ie_get_next(median);
ies_end = (u8 *)ntfs_ie_get_end(&src->index);
tail_size = ies_end - (u8 *)ie_head;
memcpy(ntfs_ie_get_first(&dst->index), ie_head, tail_size);
dst->index.index_length = cpu_to_le32(tail_size +
le32_to_cpu(dst->index.entries_offset));
ret = ntfs_ib_write(icx, dst);
kvfree(dst);
return ret;
}
static int ntfs_ib_cut_tail(struct ntfs_index_context *icx, struct index_block *ib,
struct index_entry *ie)
{
char *ies_start, *ies_end;
struct index_entry *ie_last;
int ret;
ntfs_debug("Entering\n");
ies_start = (char *)ntfs_ie_get_first(&ib->index);
ies_end = (char *)ntfs_ie_get_end(&ib->index);
ie_last = ntfs_ie_get_last((struct index_entry *)ies_start, ies_end);
if (ie_last->flags & INDEX_ENTRY_NODE)
ntfs_ie_set_vcn(ie_last, ntfs_ie_get_vcn(ie));
unsafe_memcpy(ie, ie_last, le16_to_cpu(ie_last->length),
/* alloc is larger than ie_last->length, see ntfs_ie_get_last() */);
ib->index.index_length = cpu_to_le32(((char *)ie - ies_start) +
le16_to_cpu(ie->length) + le32_to_cpu(ib->index.entries_offset));
ret = ntfs_ib_write(icx, ib);
return ret;
}
static int ntfs_ia_add(struct ntfs_index_context *icx)
{
int ret;
ntfs_debug("Entering\n");
ret = ntfs_ibm_add(icx);
if (ret)
return ret;
if (!ntfs_attr_exist(icx->idx_ni, AT_INDEX_ALLOCATION, icx->name, icx->name_len)) {
ret = ntfs_attr_add(icx->idx_ni, AT_INDEX_ALLOCATION, icx->name,
icx->name_len, NULL, 0);
if (ret) {
ntfs_error(icx->idx_ni->vol->sb, "Failed to add AT_INDEX_ALLOCATION");
return ret;
}
}
icx->ia_ni = ntfs_ia_open(icx, icx->idx_ni);
if (!icx->ia_ni)
return -ENOENT;
return 0;
}
static int ntfs_ir_reparent(struct ntfs_index_context *icx)
{
struct ntfs_attr_search_ctx *ctx = NULL;
struct index_root *ir;
struct index_entry *ie;
struct index_block *ib = NULL;
s64 new_ib_vcn;
int ix_root_size;
int ret = 0;
ntfs_debug("Entering\n");
ir = ntfs_ir_lookup2(icx->idx_ni, icx->name, icx->name_len);
if (!ir) {
ret = -ENOENT;
goto out;
}
if ((ir->index.flags & NODE_MASK) == SMALL_INDEX) {
ret = ntfs_ia_add(icx);
if (ret)
goto out;
}
new_ib_vcn = ntfs_ibm_get_free(icx);
if (new_ib_vcn < 0) {
ret = -EINVAL;
goto out;
}
ir = ntfs_ir_lookup2(icx->idx_ni, icx->name, icx->name_len);
if (!ir) {
ret = -ENOENT;
goto clear_bmp;
}
ib = ntfs_ir_to_ib(ir, new_ib_vcn);
if (ib == NULL) {
ret = -EIO;
ntfs_error(icx->idx_ni->vol->sb, "Failed to move index root to index block");
goto clear_bmp;
}
ret = ntfs_ib_write(icx, ib);
if (ret)
goto clear_bmp;
retry:
ir = ntfs_ir_lookup(icx->idx_ni, icx->name, icx->name_len, &ctx);
if (!ir) {
ret = -ENOENT;
goto clear_bmp;
}
ntfs_ir_nill(ir);
ie = ntfs_ie_get_first(&ir->index);
ie->flags |= INDEX_ENTRY_NODE;
ie->length = cpu_to_le16(sizeof(struct index_entry_header) + sizeof(s64));
ir->index.flags = LARGE_INDEX;
NInoSetIndexAllocPresent(icx->idx_ni);
ir->index.index_length = cpu_to_le32(le32_to_cpu(ir->index.entries_offset) +
le16_to_cpu(ie->length));
ir->index.allocated_size = ir->index.index_length;
ix_root_size = sizeof(struct index_root) - sizeof(struct index_header) +
le32_to_cpu(ir->index.allocated_size);
ret = ntfs_resident_attr_value_resize(ctx->mrec, ctx->attr, ix_root_size);
if (ret) {
/*
* When there is no space to build a non-resident
* index, we may have to move the root to an extent
*/
if ((ret == -ENOSPC) && (ctx->al_entry || !ntfs_inode_add_attrlist(icx->idx_ni))) {
ntfs_attr_put_search_ctx(ctx);
ctx = NULL;
ir = ntfs_ir_lookup(icx->idx_ni, icx->name, icx->name_len, &ctx);
if (ir && !ntfs_attr_record_move_away(ctx, ix_root_size -
le32_to_cpu(ctx->attr->data.resident.value_length))) {
if (ntfs_attrlist_update(ctx->base_ntfs_ino ?
ctx->base_ntfs_ino : ctx->ntfs_ino))
goto clear_bmp;
ntfs_attr_put_search_ctx(ctx);
ctx = NULL;
goto retry;
}
}
goto clear_bmp;
} else {
icx->idx_ni->data_size = icx->idx_ni->initialized_size = ix_root_size;
icx->idx_ni->allocated_size = (ix_root_size + 7) & ~7;
}
ntfs_ie_set_vcn(ie, new_ib_vcn);
err_out:
kvfree(ib);
if (ctx)
ntfs_attr_put_search_ctx(ctx);
out:
return ret;
clear_bmp:
ntfs_ibm_clear(icx, new_ib_vcn);
goto err_out;
}
/*
* ntfs_ir_truncate - Truncate index root attribute
* @icx: index context
* @data_size: new data size for the index root
*/
static int ntfs_ir_truncate(struct ntfs_index_context *icx, int data_size)
{
int ret;
ntfs_debug("Entering\n");
/*
* INDEX_ROOT must be resident and its entries can be moved to
* struct index_block, so ENOSPC isn't a real error.
*/
ret = ntfs_attr_truncate(icx->idx_ni, data_size + offsetof(struct index_root, index));
if (!ret) {
i_size_write(VFS_I(icx->idx_ni), icx->idx_ni->initialized_size);
icx->ir = ntfs_ir_lookup2(icx->idx_ni, icx->name, icx->name_len);
if (!icx->ir)
return -ENOENT;
icx->ir->index.allocated_size = cpu_to_le32(data_size);
} else if (ret != -ENOSPC)
ntfs_error(icx->idx_ni->vol->sb, "Failed to truncate INDEX_ROOT");
return ret;
}
/*
* ntfs_ir_make_space - Make more space for the index root attribute
* @icx: index context
* @data_size: required data size for the index root
*/
static int ntfs_ir_make_space(struct ntfs_index_context *icx, int data_size)
{
int ret;
ntfs_debug("Entering\n");
ret = ntfs_ir_truncate(icx, data_size);
if (ret == -ENOSPC) {
ret = ntfs_ir_reparent(icx);
if (!ret)
ret = -EAGAIN;
else
ntfs_error(icx->idx_ni->vol->sb, "Failed to modify INDEX_ROOT");
}
return ret;
}
/*
* NOTE: 'ie' must be a copy of a real index entry.
*/
static int ntfs_ie_add_vcn(struct index_entry **ie)
{
struct index_entry *p, *old = *ie;
old->length = cpu_to_le16(le16_to_cpu(old->length) + sizeof(s64));
p = krealloc(old, le16_to_cpu(old->length), GFP_NOFS);
if (!p)
return -ENOMEM;
p->flags |= INDEX_ENTRY_NODE;
*ie = p;
return 0;
}
static int ntfs_ih_insert(struct index_header *ih, struct index_entry *orig_ie, s64 new_vcn,
int pos)
{
struct index_entry *ie_node, *ie;
int ret = 0;
s64 old_vcn;
ntfs_debug("Entering\n");
ie = ntfs_ie_dup(orig_ie);
if (!ie)
return -ENOMEM;
if (!(ie->flags & INDEX_ENTRY_NODE)) {
ret = ntfs_ie_add_vcn(&ie);
if (ret)
goto out;
}
ie_node = ntfs_ie_get_by_pos(ih, pos);
old_vcn = ntfs_ie_get_vcn(ie_node);
ntfs_ie_set_vcn(ie_node, new_vcn);
ntfs_ie_insert(ih, ie, ie_node);
ntfs_ie_set_vcn(ie_node, old_vcn);
out:
kfree(ie);
return ret;
}
static s64 ntfs_icx_parent_vcn(struct ntfs_index_context *icx)
{
return icx->parent_vcn[icx->pindex];
}
static s64 ntfs_icx_parent_pos(struct ntfs_index_context *icx)
{
return icx->parent_pos[icx->pindex];
}
static int ntfs_ir_insert_median(struct ntfs_index_context *icx, struct index_entry *median,
s64 new_vcn)
{
u32 new_size;
int ret;
ntfs_debug("Entering\n");
icx->ir = ntfs_ir_lookup2(icx->idx_ni, icx->name, icx->name_len);
if (!icx->ir)
return -ENOENT;
new_size = le32_to_cpu(icx->ir->index.index_length) +
le16_to_cpu(median->length);
if (!(median->flags & INDEX_ENTRY_NODE))
new_size += sizeof(s64);
ret = ntfs_ir_make_space(icx, new_size);
if (ret)
return ret;
icx->ir = ntfs_ir_lookup2(icx->idx_ni, icx->name, icx->name_len);
if (!icx->ir)
return -ENOENT;
return ntfs_ih_insert(&icx->ir->index, median, new_vcn,
ntfs_icx_parent_pos(icx));
}
static int ntfs_ib_split(struct ntfs_index_context *icx, struct index_block *ib);
struct split_info {
struct list_head entry;
s64 new_vcn;
struct index_block *ib;
};
static int ntfs_ib_insert(struct ntfs_index_context *icx, struct index_entry *ie, s64 new_vcn,
struct split_info *si)
{
struct index_block *ib;
u32 idx_size, allocated_size;
int err;
s64 old_vcn;
ntfs_debug("Entering\n");
ib = kvzalloc(icx->block_size, GFP_NOFS);
if (!ib)
return -ENOMEM;
old_vcn = ntfs_icx_parent_vcn(icx);
err = ntfs_ib_read(icx, old_vcn, ib);
if (err)
goto err_out;
idx_size = le32_to_cpu(ib->index.index_length);
allocated_size = le32_to_cpu(ib->index.allocated_size);
if (idx_size + le16_to_cpu(ie->length) + sizeof(s64) > allocated_size) {
si->ib = ib;
si->new_vcn = new_vcn;
return -EAGAIN;
}
err = ntfs_ih_insert(&ib->index, ie, new_vcn, ntfs_icx_parent_pos(icx));
if (err)
goto err_out;
err = ntfs_ib_write(icx, ib);
err_out:
kvfree(ib);
return err;
}
/*
* ntfs_ib_split - Split an index block
* @icx: index context
* @ib: index block to split
*/
static int ntfs_ib_split(struct ntfs_index_context *icx, struct index_block *ib)
{
struct index_entry *median;
s64 new_vcn;
int ret;
struct split_info *si;
LIST_HEAD(ntfs_cut_tail_list);
ntfs_debug("Entering\n");
resplit:
ret = ntfs_icx_parent_dec(icx);
if (ret)
goto out;
median = ntfs_ie_get_median(&ib->index);
new_vcn = ntfs_ibm_get_free(icx);
if (new_vcn < 0) {
ret = -EINVAL;
goto out;
}
ret = ntfs_ib_copy_tail(icx, ib, median, new_vcn);
if (ret) {
ntfs_ibm_clear(icx, new_vcn);
goto out;
}
if (ntfs_icx_parent_vcn(icx) == VCN_INDEX_ROOT_PARENT) {
ret = ntfs_ir_insert_median(icx, median, new_vcn);
if (ret) {
ntfs_ibm_clear(icx, new_vcn);
goto out;
}
} else {
si = kzalloc(sizeof(struct split_info), GFP_NOFS);
if (!si) {
ntfs_ibm_clear(icx, new_vcn);
ret = -ENOMEM;
goto out;
}
ret = ntfs_ib_insert(icx, median, new_vcn, si);
if (ret == -EAGAIN) {
list_add_tail(&si->entry, &ntfs_cut_tail_list);
ib = si->ib;
goto resplit;
} else if (ret) {
kvfree(si->ib);
kfree(si);
ntfs_ibm_clear(icx, new_vcn);
goto out;
}
kfree(si);
}
ret = ntfs_ib_cut_tail(icx, ib, median);
out:
while (!list_empty(&ntfs_cut_tail_list)) {
si = list_last_entry(&ntfs_cut_tail_list, struct split_info, entry);
ntfs_ibm_clear(icx, si->new_vcn);
kvfree(si->ib);
list_del(&si->entry);
kfree(si);
if (!ret)
ret = -EAGAIN;
}
return ret;
}
int ntfs_ie_add(struct ntfs_index_context *icx, struct index_entry *ie)
{
struct index_header *ih;
int allocated_size, new_size;
int ret;
while (1) {
ret = ntfs_index_lookup(&ie->key, le16_to_cpu(ie->key_length), icx);
if (!ret) {
ret = -EEXIST;
ntfs_error(icx->idx_ni->vol->sb, "Index already have such entry");
goto err_out;
}
if (ret != -ENOENT) {
ntfs_error(icx->idx_ni->vol->sb, "Failed to find place for new entry");
goto err_out;
}
ret = 0;
if (icx->is_in_root)
ih = &icx->ir->index;
else
ih = &icx->ib->index;
allocated_size = le32_to_cpu(ih->allocated_size);
new_size = le32_to_cpu(ih->index_length) + le16_to_cpu(ie->length);
if (new_size <= allocated_size)
break;
ntfs_debug("index block sizes: allocated: %d needed: %d\n",
allocated_size, new_size);
if (icx->is_in_root)
ret = ntfs_ir_make_space(icx, new_size);
else
ret = ntfs_ib_split(icx, icx->ib);
if (ret && ret != -EAGAIN)
goto err_out;
mark_mft_record_dirty(icx->actx->ntfs_ino);
ntfs_index_ctx_reinit(icx);
}
ntfs_ie_insert(ih, ie, icx->entry);
ntfs_index_entry_mark_dirty(icx);
err_out:
ntfs_debug("%s\n", ret ? "Failed" : "Done");
return ret;
}
/*
* ntfs_index_add_filename - add filename to directory index
* @ni: ntfs inode describing directory to which index add filename
* @fn: FILE_NAME attribute to add
* @mref: reference of the inode which @fn describes
*/
int ntfs_index_add_filename(struct ntfs_inode *ni, struct file_name_attr *fn, u64 mref)
{
struct index_entry *ie;
struct ntfs_index_context *icx;
int fn_size, ie_size, err;
ntfs_debug("Entering\n");
if (!ni || !fn)
return -EINVAL;
fn_size = (fn->file_name_length * sizeof(__le16)) +
sizeof(struct file_name_attr);
ie_size = (sizeof(struct index_entry_header) + fn_size + 7) & ~7;
ie = kzalloc(ie_size, GFP_NOFS);
if (!ie)
return -ENOMEM;
ie->data.dir.indexed_file = cpu_to_le64(mref);
ie->length = cpu_to_le16(ie_size);
ie->key_length = cpu_to_le16(fn_size);
unsafe_memcpy(&ie->key, fn, fn_size,
/* "fn_size" was correctly calculated above */);
icx = ntfs_index_ctx_get(ni, I30, 4);
if (!icx) {
err = -ENOMEM;
goto out;
}
err = ntfs_ie_add(icx, ie);
ntfs_index_ctx_put(icx);
out:
kfree(ie);
return err;
}
static int ntfs_ih_takeout(struct ntfs_index_context *icx, struct index_header *ih,
struct index_entry *ie, struct index_block *ib)
{
struct index_entry *ie_roam;
int freed_space;
bool full;
int ret = 0;
ntfs_debug("Entering\n");
full = ih->index_length == ih->allocated_size;
ie_roam = ntfs_ie_dup_novcn(ie);
if (!ie_roam)
return -ENOMEM;
ntfs_ie_delete(ih, ie);
if (ntfs_icx_parent_vcn(icx) == VCN_INDEX_ROOT_PARENT) {
/*
* Recover the space which may have been freed
* while deleting an entry from root index
*/
freed_space = le32_to_cpu(ih->allocated_size) -
le32_to_cpu(ih->index_length);
if (full && (freed_space > 0) && !(freed_space & 7)) {
ntfs_ir_truncate(icx, le32_to_cpu(ih->index_length));
/* do nothing if truncation fails */
}
mark_mft_record_dirty(icx->actx->ntfs_ino);
} else {
ret = ntfs_ib_write(icx, ib);
if (ret)
goto out;
}
ntfs_index_ctx_reinit(icx);
ret = ntfs_ie_add(icx, ie_roam);
out:
kfree(ie_roam);
return ret;
}
/*
* Used if an empty index block to be deleted has END entry as the parent
* in the INDEX_ROOT which is the only one there.
*/
static void ntfs_ir_leafify(struct ntfs_index_context *icx, struct index_header *ih)
{
struct index_entry *ie;
ntfs_debug("Entering\n");
ie = ntfs_ie_get_first(ih);
ie->flags &= ~INDEX_ENTRY_NODE;
ie->length = cpu_to_le16(le16_to_cpu(ie->length) - sizeof(s64));
ih->index_length = cpu_to_le32(le32_to_cpu(ih->index_length) - sizeof(s64));
ih->flags &= ~LARGE_INDEX;
NInoClearIndexAllocPresent(icx->idx_ni);
/* Not fatal error */
ntfs_ir_truncate(icx, le32_to_cpu(ih->index_length));
}
/*
* Used if an empty index block to be deleted has END entry as the parent
* in the INDEX_ROOT which is not the only one there.
*/
static int ntfs_ih_reparent_end(struct ntfs_index_context *icx, struct index_header *ih,
struct index_block *ib)
{
struct index_entry *ie, *ie_prev;
ntfs_debug("Entering\n");
ie = ntfs_ie_get_by_pos(ih, ntfs_icx_parent_pos(icx));
ie_prev = ntfs_ie_prev(ih, ie);
if (!ie_prev)
return -EIO;
ntfs_ie_set_vcn(ie, ntfs_ie_get_vcn(ie_prev));
return ntfs_ih_takeout(icx, ih, ie_prev, ib);
}
static int ntfs_index_rm_leaf(struct ntfs_index_context *icx)
{
struct index_block *ib = NULL;
struct index_header *parent_ih;
struct index_entry *ie;
int ret;
ntfs_debug("pindex: %d\n", icx->pindex);
ret = ntfs_icx_parent_dec(icx);
if (ret)
return ret;
ret = ntfs_ibm_clear(icx, icx->parent_vcn[icx->pindex + 1]);
if (ret)
return ret;
if (ntfs_icx_parent_vcn(icx) == VCN_INDEX_ROOT_PARENT)
parent_ih = &icx->ir->index;
else {
ib = kvzalloc(icx->block_size, GFP_NOFS);
if (!ib)
return -ENOMEM;
ret = ntfs_ib_read(icx, ntfs_icx_parent_vcn(icx), ib);
if (ret)
goto out;
parent_ih = &ib->index;
}
ie = ntfs_ie_get_by_pos(parent_ih, ntfs_icx_parent_pos(icx));
if (!ntfs_ie_end(ie)) {
ret = ntfs_ih_takeout(icx, parent_ih, ie, ib);
goto out;
}
if (ntfs_ih_zero_entry(parent_ih)) {
if (ntfs_icx_parent_vcn(icx) == VCN_INDEX_ROOT_PARENT) {
ntfs_ir_leafify(icx, parent_ih);
goto out;
}
ret = ntfs_index_rm_leaf(icx);
goto out;
}
ret = ntfs_ih_reparent_end(icx, parent_ih, ib);
out:
kvfree(ib);
return ret;
}
static int ntfs_index_rm_node(struct ntfs_index_context *icx)
{
int entry_pos, pindex;
s64 vcn;
struct index_block *ib = NULL;
struct index_entry *ie_succ, *ie, *entry = icx->entry;
struct index_header *ih;
u32 new_size;
int delta, ret;
ntfs_debug("Entering\n");
if (!icx->ia_ni) {
icx->ia_ni = ntfs_ia_open(icx, icx->idx_ni);
if (!icx->ia_ni)
return -EINVAL;
}
ib = kvzalloc(icx->block_size, GFP_NOFS);
if (!ib)
return -ENOMEM;
ie_succ = ntfs_ie_get_next(icx->entry);
entry_pos = icx->parent_pos[icx->pindex]++;
pindex = icx->pindex;
descend:
vcn = ntfs_ie_get_vcn(ie_succ);
ret = ntfs_ib_read(icx, vcn, ib);
if (ret)
goto out;
ie_succ = ntfs_ie_get_first(&ib->index);
ret = ntfs_icx_parent_inc(icx);
if (ret)
goto out;
icx->parent_vcn[icx->pindex] = vcn;
icx->parent_pos[icx->pindex] = 0;
if ((ib->index.flags & NODE_MASK) == INDEX_NODE)
goto descend;
if (ntfs_ih_zero_entry(&ib->index)) {
ret = -EIO;
ntfs_error(icx->idx_ni->vol->sb, "Empty index block");
goto out;
}
ie = ntfs_ie_dup(ie_succ);
if (!ie) {
ret = -ENOMEM;
goto out;
}
ret = ntfs_ie_add_vcn(&ie);
if (ret)
goto out2;
ntfs_ie_set_vcn(ie, ntfs_ie_get_vcn(icx->entry));
if (icx->is_in_root)
ih = &icx->ir->index;
else
ih = &icx->ib->index;
delta = le16_to_cpu(ie->length) - le16_to_cpu(icx->entry->length);
new_size = le32_to_cpu(ih->index_length) + delta;
if (delta > 0) {
if (icx->is_in_root) {
ret = ntfs_ir_make_space(icx, new_size);
if (ret != 0)
goto out2;
ih = &icx->ir->index;
entry = ntfs_ie_get_by_pos(ih, entry_pos);
} else if (new_size > le32_to_cpu(ih->allocated_size)) {
icx->pindex = pindex;
ret = ntfs_ib_split(icx, icx->ib);
if (!ret)
ret = -EAGAIN;
goto out2;
}
}
ntfs_ie_delete(ih, entry);
ntfs_ie_insert(ih, ie, entry);
if (icx->is_in_root)
ret = ntfs_ir_truncate(icx, new_size);
else
ret = ntfs_icx_ib_write(icx);
if (ret)
goto out2;
ntfs_ie_delete(&ib->index, ie_succ);
if (ntfs_ih_zero_entry(&ib->index))
ret = ntfs_index_rm_leaf(icx);
else
ret = ntfs_ib_write(icx, ib);
out2:
kfree(ie);
out:
kvfree(ib);
return ret;
}
/*
* ntfs_index_rm - remove entry from the index
* @icx: index context describing entry to delete
*
* Delete entry described by @icx from the index. Index context is always
* reinitialized after use of this function, so it can be used for index
* lookup once again.
*/
int ntfs_index_rm(struct ntfs_index_context *icx)
{
struct index_header *ih;
int ret = 0;
ntfs_debug("Entering\n");
if (!icx || (!icx->ib && !icx->ir) || ntfs_ie_end(icx->entry)) {
ret = -EINVAL;
goto err_out;
}
if (icx->is_in_root)
ih = &icx->ir->index;
else
ih = &icx->ib->index;
if (icx->entry->flags & INDEX_ENTRY_NODE) {
ret = ntfs_index_rm_node(icx);
if (ret)
goto err_out;
} else if (icx->is_in_root || !ntfs_ih_one_entry(ih)) {
ntfs_ie_delete(ih, icx->entry);
if (icx->is_in_root)
ret = ntfs_ir_truncate(icx, le32_to_cpu(ih->index_length));
else
ret = ntfs_icx_ib_write(icx);
if (ret)
goto err_out;
} else {
ret = ntfs_index_rm_leaf(icx);
if (ret)
goto err_out;
}
return 0;
err_out:
return ret;
}
int ntfs_index_remove(struct ntfs_inode *dir_ni, const void *key, const u32 keylen)
{
int ret = 0;
struct ntfs_index_context *icx;
icx = ntfs_index_ctx_get(dir_ni, I30, 4);
if (!icx)
return -EINVAL;
while (1) {
ret = ntfs_index_lookup(key, keylen, icx);
if (ret)
goto err_out;
ret = ntfs_index_rm(icx);
if (ret && ret != -EAGAIN)
goto err_out;
else if (!ret)
break;
mark_mft_record_dirty(icx->actx->ntfs_ino);
ntfs_index_ctx_reinit(icx);
}
mark_mft_record_dirty(icx->actx->ntfs_ino);
ntfs_index_ctx_put(icx);
return 0;
err_out:
ntfs_index_ctx_put(icx);
ntfs_error(dir_ni->vol->sb, "Delete failed");
return ret;
}
/*
* ntfs_index_walk_down - walk down the index tree (leaf bound)
* until there are no subnode in the first index entry returns
* the entry at the bottom left in subnode
*/
struct index_entry *ntfs_index_walk_down(struct index_entry *ie, struct ntfs_index_context *ictx)
{
struct index_entry *entry;
s64 vcn;
entry = ie;
do {
vcn = ntfs_ie_get_vcn(entry);
if (ictx->is_in_root) {
/* down from level zero */
ictx->ir = NULL;
ictx->ib = kvzalloc(ictx->block_size, GFP_NOFS);
ictx->pindex = 1;
ictx->is_in_root = false;
} else {
/* down from non-zero level */
ictx->pindex++;
}
ictx->parent_pos[ictx->pindex] = 0;
ictx->parent_vcn[ictx->pindex] = vcn;
if (!ntfs_ib_read(ictx, vcn, ictx->ib)) {
ictx->entry = ntfs_ie_get_first(&ictx->ib->index);
entry = ictx->entry;
} else
entry = NULL;
} while (entry && (entry->flags & INDEX_ENTRY_NODE));
return entry;
}
/*
* ntfs_index_walk_up - walk up the index tree (root bound) until
* there is a valid data entry in parent returns the parent entry
* or NULL if no more parent.
* @ie: current index entry
* @ictx: index context
*/
static struct index_entry *ntfs_index_walk_up(struct index_entry *ie,
struct ntfs_index_context *ictx)
{
struct index_entry *entry = ie;
s64 vcn;
if (ictx->pindex <= 0)
return NULL;
do {
ictx->pindex--;
if (!ictx->pindex) {
/* we have reached the root */
kfree(ictx->ib);
ictx->ib = NULL;
ictx->is_in_root = true;
/* a new search context is to be allocated */
if (ictx->actx)
ntfs_attr_put_search_ctx(ictx->actx);
ictx->ir = ntfs_ir_lookup(ictx->idx_ni, ictx->name,
ictx->name_len, &ictx->actx);
if (ictx->ir)
entry = ntfs_ie_get_by_pos(
&ictx->ir->index,
ictx->parent_pos[ictx->pindex]);
else
entry = NULL;
} else {
/* up into non-root node */
vcn = ictx->parent_vcn[ictx->pindex];
if (!ntfs_ib_read(ictx, vcn, ictx->ib)) {
entry = ntfs_ie_get_by_pos(
&ictx->ib->index,
ictx->parent_pos[ictx->pindex]);
} else
entry = NULL;
}
ictx->entry = entry;
} while (entry && (ictx->pindex > 0) &&
(entry->flags & INDEX_ENTRY_END));
return entry;
}
/*
* ntfs_index_next - get next entry in an index according to collating sequence.
* Returns next entry or NULL if none.
*
* Sample layout :
*
* +---+---+---+---+---+---+---+---+ n ptrs to subnodes
* | | | 10| 25| 33| | | | n-1 keys in between
* +---+---+---+---+---+---+---+---+ no key in last entry
* | A | A
* | | | +-------------------------------+
* +--------------------------+ | +-----+ |
* | +--+ | |
* V | V |
* +---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+
* | 11| 12| 13| 14| 15| 16| 17| | | | 26| 27| 28| 29| 30| 31| 32| |
* +---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+
* | |
* +-----------------------+ |
* | |
* +---+---+---+---+---+---+---+---+
* | 18| 19| 20| 21| 22| 23| 24| |
* +---+---+---+---+---+---+---+---+
*
* @ie: current index entry
* @ictx: index context
*/
struct index_entry *ntfs_index_next(struct index_entry *ie, struct ntfs_index_context *ictx)
{
struct index_entry *next;
__le16 flags;
/*
* lookup() may have returned an invalid node
* when searching for a partial key
* if this happens, walk up
*/
if (ie->flags & INDEX_ENTRY_END)
next = ntfs_index_walk_up(ie, ictx);
else {
/*
* get next entry in same node
* there is always one after any entry with data
*/
next = (struct index_entry *)((char *)ie + le16_to_cpu(ie->length));
++ictx->parent_pos[ictx->pindex];
flags = next->flags;
/* walk down if it has a subnode */
if (flags & INDEX_ENTRY_NODE) {
if (!ictx->ia_ni)
ictx->ia_ni = ntfs_ia_open(ictx, ictx->idx_ni);
next = ntfs_index_walk_down(next, ictx);
} else {
/* walk up it has no subnode, nor data */
if (flags & INDEX_ENTRY_END)
next = ntfs_index_walk_up(next, ictx);
}
}
/* return NULL if stuck at end of a block */
if (next && (next->flags & INDEX_ENTRY_END))
next = NULL;
return next;
}
|