1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <linux/buffer_head.h>
24#include <linux/slab.h>
25
26#include "dir.h"
27#include "aops.h"
28#include "attrib.h"
29#include "mft.h"
30#include "debug.h"
31#include "ntfs.h"
32
33
34
35
36ntfschar I30[5] = { cpu_to_le16('$'), cpu_to_le16('I'),
37 cpu_to_le16('3'), cpu_to_le16('0'), 0 };
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
80MFT_REF ntfs_lookup_inode_by_name(ntfs_inode *dir_ni, const ntfschar *uname,
81 const int uname_len, ntfs_name **res)
82{
83 ntfs_volume *vol = dir_ni->vol;
84 struct super_block *sb = vol->sb;
85 MFT_RECORD *m;
86 INDEX_ROOT *ir;
87 INDEX_ENTRY *ie;
88 INDEX_ALLOCATION *ia;
89 u8 *index_end;
90 u64 mref;
91 ntfs_attr_search_ctx *ctx;
92 int err, rc;
93 VCN vcn, old_vcn;
94 struct address_space *ia_mapping;
95 struct page *page;
96 u8 *kaddr;
97 ntfs_name *name = NULL;
98
99 BUG_ON(!S_ISDIR(VFS_I(dir_ni)->i_mode));
100 BUG_ON(NInoAttr(dir_ni));
101
102 m = map_mft_record(dir_ni);
103 if (IS_ERR(m)) {
104 ntfs_error(sb, "map_mft_record() failed with error code %ld.",
105 -PTR_ERR(m));
106 return ERR_MREF(PTR_ERR(m));
107 }
108 ctx = ntfs_attr_get_search_ctx(dir_ni, m);
109 if (unlikely(!ctx)) {
110 err = -ENOMEM;
111 goto err_out;
112 }
113
114 err = ntfs_attr_lookup(AT_INDEX_ROOT, I30, 4, CASE_SENSITIVE, 0, NULL,
115 0, ctx);
116 if (unlikely(err)) {
117 if (err == -ENOENT) {
118 ntfs_error(sb, "Index root attribute missing in "
119 "directory inode 0x%lx.",
120 dir_ni->mft_no);
121 err = -EIO;
122 }
123 goto err_out;
124 }
125
126 ir = (INDEX_ROOT*)((u8*)ctx->attr +
127 le16_to_cpu(ctx->attr->data.resident.value_offset));
128 index_end = (u8*)&ir->index + le32_to_cpu(ir->index.index_length);
129
130 ie = (INDEX_ENTRY*)((u8*)&ir->index +
131 le32_to_cpu(ir->index.entries_offset));
132
133
134
135
136 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) {
137
138 if ((u8*)ie < (u8*)ctx->mrec || (u8*)ie +
139 sizeof(INDEX_ENTRY_HEADER) > index_end ||
140 (u8*)ie + le16_to_cpu(ie->key_length) >
141 index_end)
142 goto dir_err_out;
143
144
145
146
147 if (ie->flags & INDEX_ENTRY_END)
148 break;
149
150
151
152
153
154
155
156 if (ntfs_are_names_equal(uname, uname_len,
157 (ntfschar*)&ie->key.file_name.file_name,
158 ie->key.file_name.file_name_length,
159 CASE_SENSITIVE, vol->upcase, vol->upcase_len)) {
160found_it:
161
162
163
164
165
166
167
168
169
170
171 if (ie->key.file_name.file_name_type == FILE_NAME_DOS) {
172 if (!name) {
173 name = kmalloc(sizeof(ntfs_name),
174 GFP_NOFS);
175 if (!name) {
176 err = -ENOMEM;
177 goto err_out;
178 }
179 }
180 name->mref = le64_to_cpu(
181 ie->data.dir.indexed_file);
182 name->type = FILE_NAME_DOS;
183 name->len = 0;
184 *res = name;
185 } else {
186 kfree(name);
187 *res = NULL;
188 }
189 mref = le64_to_cpu(ie->data.dir.indexed_file);
190 ntfs_attr_put_search_ctx(ctx);
191 unmap_mft_record(dir_ni);
192 return mref;
193 }
194
195
196
197
198
199
200
201
202
203
204 if (!NVolCaseSensitive(vol) &&
205 ie->key.file_name.file_name_type &&
206 ntfs_are_names_equal(uname, uname_len,
207 (ntfschar*)&ie->key.file_name.file_name,
208 ie->key.file_name.file_name_length,
209 IGNORE_CASE, vol->upcase, vol->upcase_len)) {
210 int name_size = sizeof(ntfs_name);
211 u8 type = ie->key.file_name.file_name_type;
212 u8 len = ie->key.file_name.file_name_length;
213
214
215 if (name) {
216 ntfs_error(sb, "Found already allocated name "
217 "in phase 1. Please run chkdsk "
218 "and if that doesn't find any "
219 "errors please report you saw "
220 "this message to "
221 "linux-ntfs-dev@lists."
222 "sourceforge.net.");
223 goto dir_err_out;
224 }
225
226 if (type != FILE_NAME_DOS)
227 name_size += len * sizeof(ntfschar);
228 name = kmalloc(name_size, GFP_NOFS);
229 if (!name) {
230 err = -ENOMEM;
231 goto err_out;
232 }
233 name->mref = le64_to_cpu(ie->data.dir.indexed_file);
234 name->type = type;
235 if (type != FILE_NAME_DOS) {
236 name->len = len;
237 memcpy(name->name, ie->key.file_name.file_name,
238 len * sizeof(ntfschar));
239 } else
240 name->len = 0;
241 *res = name;
242 }
243
244
245
246
247 rc = ntfs_collate_names(uname, uname_len,
248 (ntfschar*)&ie->key.file_name.file_name,
249 ie->key.file_name.file_name_length, 1,
250 IGNORE_CASE, vol->upcase, vol->upcase_len);
251
252
253
254
255
256 if (rc == -1)
257 break;
258
259 if (rc)
260 continue;
261
262
263
264
265
266 rc = ntfs_collate_names(uname, uname_len,
267 (ntfschar*)&ie->key.file_name.file_name,
268 ie->key.file_name.file_name_length, 1,
269 CASE_SENSITIVE, vol->upcase, vol->upcase_len);
270 if (rc == -1)
271 break;
272 if (rc)
273 continue;
274
275
276
277
278
279 goto found_it;
280 }
281
282
283
284
285
286
287 if (!(ie->flags & INDEX_ENTRY_NODE)) {
288 if (name) {
289 ntfs_attr_put_search_ctx(ctx);
290 unmap_mft_record(dir_ni);
291 return name->mref;
292 }
293 ntfs_debug("Entry not found.");
294 err = -ENOENT;
295 goto err_out;
296 }
297
298 if (!NInoIndexAllocPresent(dir_ni)) {
299 ntfs_error(sb, "No index allocation attribute but index entry "
300 "requires one. Directory inode 0x%lx is "
301 "corrupt or driver bug.", dir_ni->mft_no);
302 goto err_out;
303 }
304
305 vcn = sle64_to_cpup((sle64*)((u8*)ie + le16_to_cpu(ie->length) - 8));
306 ia_mapping = VFS_I(dir_ni)->i_mapping;
307
308
309
310
311 ntfs_attr_put_search_ctx(ctx);
312 unmap_mft_record(dir_ni);
313 m = NULL;
314 ctx = NULL;
315descend_into_child_node:
316
317
318
319
320
321 page = ntfs_map_page(ia_mapping, vcn <<
322 dir_ni->itype.index.vcn_size_bits >> PAGE_SHIFT);
323 if (IS_ERR(page)) {
324 ntfs_error(sb, "Failed to map directory index page, error %ld.",
325 -PTR_ERR(page));
326 err = PTR_ERR(page);
327 goto err_out;
328 }
329 lock_page(page);
330 kaddr = (u8*)page_address(page);
331fast_descend_into_child_node:
332
333 ia = (INDEX_ALLOCATION*)(kaddr + ((vcn <<
334 dir_ni->itype.index.vcn_size_bits) & ~PAGE_MASK));
335
336 if ((u8*)ia < kaddr || (u8*)ia > kaddr + PAGE_SIZE) {
337 ntfs_error(sb, "Out of bounds check failed. Corrupt directory "
338 "inode 0x%lx or driver bug.", dir_ni->mft_no);
339 goto unm_err_out;
340 }
341
342 if (unlikely(!ntfs_is_indx_record(ia->magic))) {
343 ntfs_error(sb, "Directory index record with vcn 0x%llx is "
344 "corrupt. Corrupt inode 0x%lx. Run chkdsk.",
345 (unsigned long long)vcn, dir_ni->mft_no);
346 goto unm_err_out;
347 }
348 if (sle64_to_cpu(ia->index_block_vcn) != vcn) {
349 ntfs_error(sb, "Actual VCN (0x%llx) of index buffer is "
350 "different from expected VCN (0x%llx). "
351 "Directory inode 0x%lx is corrupt or driver "
352 "bug.", (unsigned long long)
353 sle64_to_cpu(ia->index_block_vcn),
354 (unsigned long long)vcn, dir_ni->mft_no);
355 goto unm_err_out;
356 }
357 if (le32_to_cpu(ia->index.allocated_size) + 0x18 !=
358 dir_ni->itype.index.block_size) {
359 ntfs_error(sb, "Index buffer (VCN 0x%llx) of directory inode "
360 "0x%lx has a size (%u) differing from the "
361 "directory specified size (%u). Directory "
362 "inode is corrupt or driver bug.",
363 (unsigned long long)vcn, dir_ni->mft_no,
364 le32_to_cpu(ia->index.allocated_size) + 0x18,
365 dir_ni->itype.index.block_size);
366 goto unm_err_out;
367 }
368 index_end = (u8*)ia + dir_ni->itype.index.block_size;
369 if (index_end > kaddr + PAGE_SIZE) {
370 ntfs_error(sb, "Index buffer (VCN 0x%llx) of directory inode "
371 "0x%lx crosses page boundary. Impossible! "
372 "Cannot access! This is probably a bug in the "
373 "driver.", (unsigned long long)vcn,
374 dir_ni->mft_no);
375 goto unm_err_out;
376 }
377 index_end = (u8*)&ia->index + le32_to_cpu(ia->index.index_length);
378 if (index_end > (u8*)ia + dir_ni->itype.index.block_size) {
379 ntfs_error(sb, "Size of index buffer (VCN 0x%llx) of directory "
380 "inode 0x%lx exceeds maximum size.",
381 (unsigned long long)vcn, dir_ni->mft_no);
382 goto unm_err_out;
383 }
384
385 ie = (INDEX_ENTRY*)((u8*)&ia->index +
386 le32_to_cpu(ia->index.entries_offset));
387
388
389
390
391
392 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) {
393
394 if ((u8*)ie < (u8*)ia || (u8*)ie +
395 sizeof(INDEX_ENTRY_HEADER) > index_end ||
396 (u8*)ie + le16_to_cpu(ie->key_length) >
397 index_end) {
398 ntfs_error(sb, "Index entry out of bounds in "
399 "directory inode 0x%lx.",
400 dir_ni->mft_no);
401 goto unm_err_out;
402 }
403
404
405
406
407 if (ie->flags & INDEX_ENTRY_END)
408 break;
409
410
411
412
413
414
415
416 if (ntfs_are_names_equal(uname, uname_len,
417 (ntfschar*)&ie->key.file_name.file_name,
418 ie->key.file_name.file_name_length,
419 CASE_SENSITIVE, vol->upcase, vol->upcase_len)) {
420found_it2:
421
422
423
424
425
426
427
428
429
430
431 if (ie->key.file_name.file_name_type == FILE_NAME_DOS) {
432 if (!name) {
433 name = kmalloc(sizeof(ntfs_name),
434 GFP_NOFS);
435 if (!name) {
436 err = -ENOMEM;
437 goto unm_err_out;
438 }
439 }
440 name->mref = le64_to_cpu(
441 ie->data.dir.indexed_file);
442 name->type = FILE_NAME_DOS;
443 name->len = 0;
444 *res = name;
445 } else {
446 kfree(name);
447 *res = NULL;
448 }
449 mref = le64_to_cpu(ie->data.dir.indexed_file);
450 unlock_page(page);
451 ntfs_unmap_page(page);
452 return mref;
453 }
454
455
456
457
458
459
460
461
462
463
464 if (!NVolCaseSensitive(vol) &&
465 ie->key.file_name.file_name_type &&
466 ntfs_are_names_equal(uname, uname_len,
467 (ntfschar*)&ie->key.file_name.file_name,
468 ie->key.file_name.file_name_length,
469 IGNORE_CASE, vol->upcase, vol->upcase_len)) {
470 int name_size = sizeof(ntfs_name);
471 u8 type = ie->key.file_name.file_name_type;
472 u8 len = ie->key.file_name.file_name_length;
473
474
475 if (name) {
476 ntfs_error(sb, "Found already allocated name "
477 "in phase 2. Please run chkdsk "
478 "and if that doesn't find any "
479 "errors please report you saw "
480 "this message to "
481 "linux-ntfs-dev@lists."
482 "sourceforge.net.");
483 unlock_page(page);
484 ntfs_unmap_page(page);
485 goto dir_err_out;
486 }
487
488 if (type != FILE_NAME_DOS)
489 name_size += len * sizeof(ntfschar);
490 name = kmalloc(name_size, GFP_NOFS);
491 if (!name) {
492 err = -ENOMEM;
493 goto unm_err_out;
494 }
495 name->mref = le64_to_cpu(ie->data.dir.indexed_file);
496 name->type = type;
497 if (type != FILE_NAME_DOS) {
498 name->len = len;
499 memcpy(name->name, ie->key.file_name.file_name,
500 len * sizeof(ntfschar));
501 } else
502 name->len = 0;
503 *res = name;
504 }
505
506
507
508
509 rc = ntfs_collate_names(uname, uname_len,
510 (ntfschar*)&ie->key.file_name.file_name,
511 ie->key.file_name.file_name_length, 1,
512 IGNORE_CASE, vol->upcase, vol->upcase_len);
513
514
515
516
517
518 if (rc == -1)
519 break;
520
521 if (rc)
522 continue;
523
524
525
526
527
528 rc = ntfs_collate_names(uname, uname_len,
529 (ntfschar*)&ie->key.file_name.file_name,
530 ie->key.file_name.file_name_length, 1,
531 CASE_SENSITIVE, vol->upcase, vol->upcase_len);
532 if (rc == -1)
533 break;
534 if (rc)
535 continue;
536
537
538
539
540
541 goto found_it2;
542 }
543
544
545
546
547 if (ie->flags & INDEX_ENTRY_NODE) {
548 if ((ia->index.flags & NODE_MASK) == LEAF_NODE) {
549 ntfs_error(sb, "Index entry with child node found in "
550 "a leaf node in directory inode 0x%lx.",
551 dir_ni->mft_no);
552 goto unm_err_out;
553 }
554
555 old_vcn = vcn;
556 vcn = sle64_to_cpup((sle64*)((u8*)ie +
557 le16_to_cpu(ie->length) - 8));
558 if (vcn >= 0) {
559
560
561 if (old_vcn << vol->cluster_size_bits >>
562 PAGE_SHIFT == vcn <<
563 vol->cluster_size_bits >>
564 PAGE_SHIFT)
565 goto fast_descend_into_child_node;
566 unlock_page(page);
567 ntfs_unmap_page(page);
568 goto descend_into_child_node;
569 }
570 ntfs_error(sb, "Negative child node vcn in directory inode "
571 "0x%lx.", dir_ni->mft_no);
572 goto unm_err_out;
573 }
574
575
576
577
578
579 if (name) {
580 unlock_page(page);
581 ntfs_unmap_page(page);
582 return name->mref;
583 }
584 ntfs_debug("Entry not found.");
585 err = -ENOENT;
586unm_err_out:
587 unlock_page(page);
588 ntfs_unmap_page(page);
589err_out:
590 if (!err)
591 err = -EIO;
592 if (ctx)
593 ntfs_attr_put_search_ctx(ctx);
594 if (m)
595 unmap_mft_record(dir_ni);
596 if (name) {
597 kfree(name);
598 *res = NULL;
599 }
600 return ERR_MREF(err);
601dir_err_out:
602 ntfs_error(sb, "Corrupt directory. Aborting lookup.");
603 goto err_out;
604}
605
606#if 0
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
633u64 ntfs_lookup_inode_by_name(ntfs_inode *dir_ni, const ntfschar *uname,
634 const int uname_len)
635{
636 ntfs_volume *vol = dir_ni->vol;
637 struct super_block *sb = vol->sb;
638 MFT_RECORD *m;
639 INDEX_ROOT *ir;
640 INDEX_ENTRY *ie;
641 INDEX_ALLOCATION *ia;
642 u8 *index_end;
643 u64 mref;
644 ntfs_attr_search_ctx *ctx;
645 int err, rc;
646 IGNORE_CASE_BOOL ic;
647 VCN vcn, old_vcn;
648 struct address_space *ia_mapping;
649 struct page *page;
650 u8 *kaddr;
651
652
653 m = map_mft_record(dir_ni);
654 if (IS_ERR(m)) {
655 ntfs_error(sb, "map_mft_record() failed with error code %ld.",
656 -PTR_ERR(m));
657 return ERR_MREF(PTR_ERR(m));
658 }
659 ctx = ntfs_attr_get_search_ctx(dir_ni, m);
660 if (!ctx) {
661 err = -ENOMEM;
662 goto err_out;
663 }
664
665 err = ntfs_attr_lookup(AT_INDEX_ROOT, I30, 4, CASE_SENSITIVE, 0, NULL,
666 0, ctx);
667 if (unlikely(err)) {
668 if (err == -ENOENT) {
669 ntfs_error(sb, "Index root attribute missing in "
670 "directory inode 0x%lx.",
671 dir_ni->mft_no);
672 err = -EIO;
673 }
674 goto err_out;
675 }
676
677 ir = (INDEX_ROOT*)((u8*)ctx->attr +
678 le16_to_cpu(ctx->attr->data.resident.value_offset));
679 index_end = (u8*)&ir->index + le32_to_cpu(ir->index.index_length);
680
681 ie = (INDEX_ENTRY*)((u8*)&ir->index +
682 le32_to_cpu(ir->index.entries_offset));
683
684
685
686
687 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) {
688
689 if ((u8*)ie < (u8*)ctx->mrec || (u8*)ie +
690 sizeof(INDEX_ENTRY_HEADER) > index_end ||
691 (u8*)ie + le16_to_cpu(ie->key_length) >
692 index_end)
693 goto dir_err_out;
694
695
696
697
698 if (ie->flags & INDEX_ENTRY_END)
699 break;
700
701
702
703
704
705
706
707
708
709
710 ic = ie->key.file_name.file_name_type ? IGNORE_CASE :
711 CASE_SENSITIVE;
712
713
714
715
716
717
718 if (ntfs_are_names_equal(uname, uname_len,
719 (ntfschar*)&ie->key.file_name.file_name,
720 ie->key.file_name.file_name_length, ic,
721 vol->upcase, vol->upcase_len)) {
722found_it:
723 mref = le64_to_cpu(ie->data.dir.indexed_file);
724 ntfs_attr_put_search_ctx(ctx);
725 unmap_mft_record(dir_ni);
726 return mref;
727 }
728
729
730
731
732 rc = ntfs_collate_names(uname, uname_len,
733 (ntfschar*)&ie->key.file_name.file_name,
734 ie->key.file_name.file_name_length, 1,
735 IGNORE_CASE, vol->upcase, vol->upcase_len);
736
737
738
739
740
741 if (rc == -1)
742 break;
743
744 if (rc)
745 continue;
746
747
748
749
750
751 rc = ntfs_collate_names(uname, uname_len,
752 (ntfschar*)&ie->key.file_name.file_name,
753 ie->key.file_name.file_name_length, 1,
754 CASE_SENSITIVE, vol->upcase, vol->upcase_len);
755 if (rc == -1)
756 break;
757 if (rc)
758 continue;
759
760
761
762
763
764 goto found_it;
765 }
766
767
768
769
770 if (!(ie->flags & INDEX_ENTRY_NODE)) {
771
772 err = -ENOENT;
773 goto err_out;
774 }
775
776 if (!NInoIndexAllocPresent(dir_ni)) {
777 ntfs_error(sb, "No index allocation attribute but index entry "
778 "requires one. Directory inode 0x%lx is "
779 "corrupt or driver bug.", dir_ni->mft_no);
780 goto err_out;
781 }
782
783 vcn = sle64_to_cpup((u8*)ie + le16_to_cpu(ie->length) - 8);
784 ia_mapping = VFS_I(dir_ni)->i_mapping;
785
786
787
788
789 ntfs_attr_put_search_ctx(ctx);
790 unmap_mft_record(dir_ni);
791 m = NULL;
792 ctx = NULL;
793descend_into_child_node:
794
795
796
797
798
799 page = ntfs_map_page(ia_mapping, vcn <<
800 dir_ni->itype.index.vcn_size_bits >> PAGE_SHIFT);
801 if (IS_ERR(page)) {
802 ntfs_error(sb, "Failed to map directory index page, error %ld.",
803 -PTR_ERR(page));
804 err = PTR_ERR(page);
805 goto err_out;
806 }
807 lock_page(page);
808 kaddr = (u8*)page_address(page);
809fast_descend_into_child_node:
810
811 ia = (INDEX_ALLOCATION*)(kaddr + ((vcn <<
812 dir_ni->itype.index.vcn_size_bits) & ~PAGE_MASK));
813
814 if ((u8*)ia < kaddr || (u8*)ia > kaddr + PAGE_SIZE) {
815 ntfs_error(sb, "Out of bounds check failed. Corrupt directory "
816 "inode 0x%lx or driver bug.", dir_ni->mft_no);
817 goto unm_err_out;
818 }
819
820 if (unlikely(!ntfs_is_indx_record(ia->magic))) {
821 ntfs_error(sb, "Directory index record with vcn 0x%llx is "
822 "corrupt. Corrupt inode 0x%lx. Run chkdsk.",
823 (unsigned long long)vcn, dir_ni->mft_no);
824 goto unm_err_out;
825 }
826 if (sle64_to_cpu(ia->index_block_vcn) != vcn) {
827 ntfs_error(sb, "Actual VCN (0x%llx) of index buffer is "
828 "different from expected VCN (0x%llx). "
829 "Directory inode 0x%lx is corrupt or driver "
830 "bug.", (unsigned long long)
831 sle64_to_cpu(ia->index_block_vcn),
832 (unsigned long long)vcn, dir_ni->mft_no);
833 goto unm_err_out;
834 }
835 if (le32_to_cpu(ia->index.allocated_size) + 0x18 !=
836 dir_ni->itype.index.block_size) {
837 ntfs_error(sb, "Index buffer (VCN 0x%llx) of directory inode "
838 "0x%lx has a size (%u) differing from the "
839 "directory specified size (%u). Directory "
840 "inode is corrupt or driver bug.",
841 (unsigned long long)vcn, dir_ni->mft_no,
842 le32_to_cpu(ia->index.allocated_size) + 0x18,
843 dir_ni->itype.index.block_size);
844 goto unm_err_out;
845 }
846 index_end = (u8*)ia + dir_ni->itype.index.block_size;
847 if (index_end > kaddr + PAGE_SIZE) {
848 ntfs_error(sb, "Index buffer (VCN 0x%llx) of directory inode "
849 "0x%lx crosses page boundary. Impossible! "
850 "Cannot access! This is probably a bug in the "
851 "driver.", (unsigned long long)vcn,
852 dir_ni->mft_no);
853 goto unm_err_out;
854 }
855 index_end = (u8*)&ia->index + le32_to_cpu(ia->index.index_length);
856 if (index_end > (u8*)ia + dir_ni->itype.index.block_size) {
857 ntfs_error(sb, "Size of index buffer (VCN 0x%llx) of directory "
858 "inode 0x%lx exceeds maximum size.",
859 (unsigned long long)vcn, dir_ni->mft_no);
860 goto unm_err_out;
861 }
862
863 ie = (INDEX_ENTRY*)((u8*)&ia->index +
864 le32_to_cpu(ia->index.entries_offset));
865
866
867
868
869
870 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) {
871
872 if ((u8*)ie < (u8*)ia || (u8*)ie +
873 sizeof(INDEX_ENTRY_HEADER) > index_end ||
874 (u8*)ie + le16_to_cpu(ie->key_length) >
875 index_end) {
876 ntfs_error(sb, "Index entry out of bounds in "
877 "directory inode 0x%lx.",
878 dir_ni->mft_no);
879 goto unm_err_out;
880 }
881
882
883
884
885 if (ie->flags & INDEX_ENTRY_END)
886 break;
887
888
889
890
891
892
893
894
895
896
897 ic = ie->key.file_name.file_name_type ? IGNORE_CASE :
898 CASE_SENSITIVE;
899
900
901
902
903
904
905 if (ntfs_are_names_equal(uname, uname_len,
906 (ntfschar*)&ie->key.file_name.file_name,
907 ie->key.file_name.file_name_length, ic,
908 vol->upcase, vol->upcase_len)) {
909found_it2:
910 mref = le64_to_cpu(ie->data.dir.indexed_file);
911 unlock_page(page);
912 ntfs_unmap_page(page);
913 return mref;
914 }
915
916
917
918
919 rc = ntfs_collate_names(uname, uname_len,
920 (ntfschar*)&ie->key.file_name.file_name,
921 ie->key.file_name.file_name_length, 1,
922 IGNORE_CASE, vol->upcase, vol->upcase_len);
923
924
925
926
927
928 if (rc == -1)
929 break;
930
931 if (rc)
932 continue;
933
934
935
936
937
938 rc = ntfs_collate_names(uname, uname_len,
939 (ntfschar*)&ie->key.file_name.file_name,
940 ie->key.file_name.file_name_length, 1,
941 CASE_SENSITIVE, vol->upcase, vol->upcase_len);
942 if (rc == -1)
943 break;
944 if (rc)
945 continue;
946
947
948
949
950
951 goto found_it2;
952 }
953
954
955
956
957 if (ie->flags & INDEX_ENTRY_NODE) {
958 if ((ia->index.flags & NODE_MASK) == LEAF_NODE) {
959 ntfs_error(sb, "Index entry with child node found in "
960 "a leaf node in directory inode 0x%lx.",
961 dir_ni->mft_no);
962 goto unm_err_out;
963 }
964
965 old_vcn = vcn;
966 vcn = sle64_to_cpup((u8*)ie + le16_to_cpu(ie->length) - 8);
967 if (vcn >= 0) {
968
969
970 if (old_vcn << vol->cluster_size_bits >>
971 PAGE_SHIFT == vcn <<
972 vol->cluster_size_bits >>
973 PAGE_SHIFT)
974 goto fast_descend_into_child_node;
975 unlock_page(page);
976 ntfs_unmap_page(page);
977 goto descend_into_child_node;
978 }
979 ntfs_error(sb, "Negative child node vcn in directory inode "
980 "0x%lx.", dir_ni->mft_no);
981 goto unm_err_out;
982 }
983
984 ntfs_debug("Entry not found.");
985 err = -ENOENT;
986unm_err_out:
987 unlock_page(page);
988 ntfs_unmap_page(page);
989err_out:
990 if (!err)
991 err = -EIO;
992 if (ctx)
993 ntfs_attr_put_search_ctx(ctx);
994 if (m)
995 unmap_mft_record(dir_ni);
996 return ERR_MREF(err);
997dir_err_out:
998 ntfs_error(sb, "Corrupt directory. Aborting lookup.");
999 goto err_out;
1000}
1001
1002#endif
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025static inline int ntfs_filldir(ntfs_volume *vol,
1026 ntfs_inode *ndir, struct page *ia_page, INDEX_ENTRY *ie,
1027 u8 *name, struct dir_context *actor)
1028{
1029 unsigned long mref;
1030 int name_len;
1031 unsigned dt_type;
1032 FILE_NAME_TYPE_FLAGS name_type;
1033
1034 name_type = ie->key.file_name.file_name_type;
1035 if (name_type == FILE_NAME_DOS) {
1036 ntfs_debug("Skipping DOS name space entry.");
1037 return 0;
1038 }
1039 if (MREF_LE(ie->data.dir.indexed_file) == FILE_root) {
1040 ntfs_debug("Skipping root directory self reference entry.");
1041 return 0;
1042 }
1043 if (MREF_LE(ie->data.dir.indexed_file) < FILE_first_user &&
1044 !NVolShowSystemFiles(vol)) {
1045 ntfs_debug("Skipping system file.");
1046 return 0;
1047 }
1048 name_len = ntfs_ucstonls(vol, (ntfschar*)&ie->key.file_name.file_name,
1049 ie->key.file_name.file_name_length, &name,
1050 NTFS_MAX_NAME_LEN * NLS_MAX_CHARSET_SIZE + 1);
1051 if (name_len <= 0) {
1052 ntfs_warning(vol->sb, "Skipping unrepresentable inode 0x%llx.",
1053 (long long)MREF_LE(ie->data.dir.indexed_file));
1054 return 0;
1055 }
1056 if (ie->key.file_name.file_attributes &
1057 FILE_ATTR_DUP_FILE_NAME_INDEX_PRESENT)
1058 dt_type = DT_DIR;
1059 else
1060 dt_type = DT_REG;
1061 mref = MREF_LE(ie->data.dir.indexed_file);
1062
1063
1064
1065
1066 if (ia_page)
1067 unlock_page(ia_page);
1068 ntfs_debug("Calling filldir for %s with len %i, fpos 0x%llx, inode "
1069 "0x%lx, DT_%s.", name, name_len, actor->pos, mref,
1070 dt_type == DT_DIR ? "DIR" : "REG");
1071 if (!dir_emit(actor, name, name_len, mref, dt_type))
1072 return 1;
1073
1074 if (ia_page)
1075 lock_page(ia_page);
1076 return 0;
1077}
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099static int ntfs_readdir(struct file *file, struct dir_context *actor)
1100{
1101 s64 ia_pos, ia_start, prev_ia_pos, bmp_pos;
1102 loff_t i_size;
1103 struct inode *bmp_vi, *vdir = file_inode(file);
1104 struct super_block *sb = vdir->i_sb;
1105 ntfs_inode *ndir = NTFS_I(vdir);
1106 ntfs_volume *vol = NTFS_SB(sb);
1107 MFT_RECORD *m;
1108 INDEX_ROOT *ir = NULL;
1109 INDEX_ENTRY *ie;
1110 INDEX_ALLOCATION *ia;
1111 u8 *name = NULL;
1112 int rc, err, ir_pos, cur_bmp_pos;
1113 struct address_space *ia_mapping, *bmp_mapping;
1114 struct page *bmp_page = NULL, *ia_page = NULL;
1115 u8 *kaddr, *bmp, *index_end;
1116 ntfs_attr_search_ctx *ctx;
1117
1118 ntfs_debug("Entering for inode 0x%lx, fpos 0x%llx.",
1119 vdir->i_ino, actor->pos);
1120 rc = err = 0;
1121
1122 i_size = i_size_read(vdir);
1123 if (actor->pos >= i_size + vol->mft_record_size)
1124 return 0;
1125
1126 if (!dir_emit_dots(file, actor))
1127 return 0;
1128 m = NULL;
1129 ctx = NULL;
1130
1131
1132
1133
1134 name = kmalloc(NTFS_MAX_NAME_LEN * NLS_MAX_CHARSET_SIZE + 1, GFP_NOFS);
1135 if (unlikely(!name)) {
1136 err = -ENOMEM;
1137 goto err_out;
1138 }
1139
1140 if (actor->pos >= vol->mft_record_size)
1141 goto skip_index_root;
1142
1143 m = map_mft_record(ndir);
1144 if (IS_ERR(m)) {
1145 err = PTR_ERR(m);
1146 m = NULL;
1147 goto err_out;
1148 }
1149 ctx = ntfs_attr_get_search_ctx(ndir, m);
1150 if (unlikely(!ctx)) {
1151 err = -ENOMEM;
1152 goto err_out;
1153 }
1154
1155 ir_pos = (s64)actor->pos;
1156
1157 err = ntfs_attr_lookup(AT_INDEX_ROOT, I30, 4, CASE_SENSITIVE, 0, NULL,
1158 0, ctx);
1159 if (unlikely(err)) {
1160 ntfs_error(sb, "Index root attribute missing in directory "
1161 "inode 0x%lx.", vdir->i_ino);
1162 goto err_out;
1163 }
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174 rc = le32_to_cpu(ctx->attr->data.resident.value_length);
1175 ir = kmalloc(rc, GFP_NOFS);
1176 if (unlikely(!ir)) {
1177 err = -ENOMEM;
1178 goto err_out;
1179 }
1180
1181 memcpy(ir, (u8*)ctx->attr +
1182 le16_to_cpu(ctx->attr->data.resident.value_offset), rc);
1183 ntfs_attr_put_search_ctx(ctx);
1184 unmap_mft_record(ndir);
1185 ctx = NULL;
1186 m = NULL;
1187 index_end = (u8*)&ir->index + le32_to_cpu(ir->index.index_length);
1188
1189 ie = (INDEX_ENTRY*)((u8*)&ir->index +
1190 le32_to_cpu(ir->index.entries_offset));
1191
1192
1193
1194
1195
1196 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) {
1197 ntfs_debug("In index root, offset 0x%zx.", (u8*)ie - (u8*)ir);
1198
1199 if (unlikely((u8*)ie < (u8*)ir || (u8*)ie +
1200 sizeof(INDEX_ENTRY_HEADER) > index_end ||
1201 (u8*)ie + le16_to_cpu(ie->key_length) >
1202 index_end))
1203 goto err_out;
1204
1205 if (ie->flags & INDEX_ENTRY_END)
1206 break;
1207
1208 if (ir_pos > (u8*)ie - (u8*)ir)
1209 continue;
1210
1211 actor->pos = (u8*)ie - (u8*)ir;
1212
1213 rc = ntfs_filldir(vol, ndir, NULL, ie, name, actor);
1214 if (rc) {
1215 kfree(ir);
1216 goto abort;
1217 }
1218 }
1219
1220 kfree(ir);
1221 ir = NULL;
1222
1223 if (!NInoIndexAllocPresent(ndir))
1224 goto EOD;
1225
1226 actor->pos = vol->mft_record_size;
1227skip_index_root:
1228 kaddr = NULL;
1229 prev_ia_pos = -1LL;
1230
1231 ia_pos = (s64)actor->pos - vol->mft_record_size;
1232 ia_mapping = vdir->i_mapping;
1233 ntfs_debug("Inode 0x%lx, getting index bitmap.", vdir->i_ino);
1234 bmp_vi = ntfs_attr_iget(vdir, AT_BITMAP, I30, 4);
1235 if (IS_ERR(bmp_vi)) {
1236 ntfs_error(sb, "Failed to get bitmap attribute.");
1237 err = PTR_ERR(bmp_vi);
1238 goto err_out;
1239 }
1240 bmp_mapping = bmp_vi->i_mapping;
1241
1242 bmp_pos = ia_pos >> ndir->itype.index.block_size_bits;
1243 if (unlikely(bmp_pos >> 3 >= i_size_read(bmp_vi))) {
1244 ntfs_error(sb, "Current index allocation position exceeds "
1245 "index bitmap size.");
1246 goto iput_err_out;
1247 }
1248
1249 cur_bmp_pos = bmp_pos & ((PAGE_SIZE * 8) - 1);
1250 bmp_pos &= ~(u64)((PAGE_SIZE * 8) - 1);
1251get_next_bmp_page:
1252 ntfs_debug("Reading bitmap with page index 0x%llx, bit ofs 0x%llx",
1253 (unsigned long long)bmp_pos >> (3 + PAGE_SHIFT),
1254 (unsigned long long)bmp_pos &
1255 (unsigned long long)((PAGE_SIZE * 8) - 1));
1256 bmp_page = ntfs_map_page(bmp_mapping,
1257 bmp_pos >> (3 + PAGE_SHIFT));
1258 if (IS_ERR(bmp_page)) {
1259 ntfs_error(sb, "Reading index bitmap failed.");
1260 err = PTR_ERR(bmp_page);
1261 bmp_page = NULL;
1262 goto iput_err_out;
1263 }
1264 bmp = (u8*)page_address(bmp_page);
1265
1266 while (!(bmp[cur_bmp_pos >> 3] & (1 << (cur_bmp_pos & 7)))) {
1267find_next_index_buffer:
1268 cur_bmp_pos++;
1269
1270
1271
1272
1273 if (unlikely((cur_bmp_pos >> 3) >= PAGE_SIZE)) {
1274 ntfs_unmap_page(bmp_page);
1275 bmp_pos += PAGE_SIZE * 8;
1276 cur_bmp_pos = 0;
1277 goto get_next_bmp_page;
1278 }
1279
1280 if (unlikely(((bmp_pos + cur_bmp_pos) >> 3) >= i_size))
1281 goto unm_EOD;
1282 ia_pos = (bmp_pos + cur_bmp_pos) <<
1283 ndir->itype.index.block_size_bits;
1284 }
1285 ntfs_debug("Handling index buffer 0x%llx.",
1286 (unsigned long long)bmp_pos + cur_bmp_pos);
1287
1288 if ((prev_ia_pos & (s64)PAGE_MASK) !=
1289 (ia_pos & (s64)PAGE_MASK)) {
1290 prev_ia_pos = ia_pos;
1291 if (likely(ia_page != NULL)) {
1292 unlock_page(ia_page);
1293 ntfs_unmap_page(ia_page);
1294 }
1295
1296
1297
1298
1299 ia_page = ntfs_map_page(ia_mapping, ia_pos >> PAGE_SHIFT);
1300 if (IS_ERR(ia_page)) {
1301 ntfs_error(sb, "Reading index allocation data failed.");
1302 err = PTR_ERR(ia_page);
1303 ia_page = NULL;
1304 goto err_out;
1305 }
1306 lock_page(ia_page);
1307 kaddr = (u8*)page_address(ia_page);
1308 }
1309
1310 ia = (INDEX_ALLOCATION*)(kaddr + (ia_pos & ~PAGE_MASK &
1311 ~(s64)(ndir->itype.index.block_size - 1)));
1312
1313 if (unlikely((u8*)ia < kaddr || (u8*)ia > kaddr + PAGE_SIZE)) {
1314 ntfs_error(sb, "Out of bounds check failed. Corrupt directory "
1315 "inode 0x%lx or driver bug.", vdir->i_ino);
1316 goto err_out;
1317 }
1318
1319 if (unlikely(!ntfs_is_indx_record(ia->magic))) {
1320 ntfs_error(sb, "Directory index record with vcn 0x%llx is "
1321 "corrupt. Corrupt inode 0x%lx. Run chkdsk.",
1322 (unsigned long long)ia_pos >>
1323 ndir->itype.index.vcn_size_bits, vdir->i_ino);
1324 goto err_out;
1325 }
1326 if (unlikely(sle64_to_cpu(ia->index_block_vcn) != (ia_pos &
1327 ~(s64)(ndir->itype.index.block_size - 1)) >>
1328 ndir->itype.index.vcn_size_bits)) {
1329 ntfs_error(sb, "Actual VCN (0x%llx) of index buffer is "
1330 "different from expected VCN (0x%llx). "
1331 "Directory inode 0x%lx is corrupt or driver "
1332 "bug. ", (unsigned long long)
1333 sle64_to_cpu(ia->index_block_vcn),
1334 (unsigned long long)ia_pos >>
1335 ndir->itype.index.vcn_size_bits, vdir->i_ino);
1336 goto err_out;
1337 }
1338 if (unlikely(le32_to_cpu(ia->index.allocated_size) + 0x18 !=
1339 ndir->itype.index.block_size)) {
1340 ntfs_error(sb, "Index buffer (VCN 0x%llx) of directory inode "
1341 "0x%lx has a size (%u) differing from the "
1342 "directory specified size (%u). Directory "
1343 "inode is corrupt or driver bug.",
1344 (unsigned long long)ia_pos >>
1345 ndir->itype.index.vcn_size_bits, vdir->i_ino,
1346 le32_to_cpu(ia->index.allocated_size) + 0x18,
1347 ndir->itype.index.block_size);
1348 goto err_out;
1349 }
1350 index_end = (u8*)ia + ndir->itype.index.block_size;
1351 if (unlikely(index_end > kaddr + PAGE_SIZE)) {
1352 ntfs_error(sb, "Index buffer (VCN 0x%llx) of directory inode "
1353 "0x%lx crosses page boundary. Impossible! "
1354 "Cannot access! This is probably a bug in the "
1355 "driver.", (unsigned long long)ia_pos >>
1356 ndir->itype.index.vcn_size_bits, vdir->i_ino);
1357 goto err_out;
1358 }
1359 ia_start = ia_pos & ~(s64)(ndir->itype.index.block_size - 1);
1360 index_end = (u8*)&ia->index + le32_to_cpu(ia->index.index_length);
1361 if (unlikely(index_end > (u8*)ia + ndir->itype.index.block_size)) {
1362 ntfs_error(sb, "Size of index buffer (VCN 0x%llx) of directory "
1363 "inode 0x%lx exceeds maximum size.",
1364 (unsigned long long)ia_pos >>
1365 ndir->itype.index.vcn_size_bits, vdir->i_ino);
1366 goto err_out;
1367 }
1368
1369 ie = (INDEX_ENTRY*)((u8*)&ia->index +
1370 le32_to_cpu(ia->index.entries_offset));
1371
1372
1373
1374
1375
1376 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) {
1377 ntfs_debug("In index allocation, offset 0x%llx.",
1378 (unsigned long long)ia_start +
1379 (unsigned long long)((u8*)ie - (u8*)ia));
1380
1381 if (unlikely((u8*)ie < (u8*)ia || (u8*)ie +
1382 sizeof(INDEX_ENTRY_HEADER) > index_end ||
1383 (u8*)ie + le16_to_cpu(ie->key_length) >
1384 index_end))
1385 goto err_out;
1386
1387 if (ie->flags & INDEX_ENTRY_END)
1388 break;
1389
1390 if (ia_pos - ia_start > (u8*)ie - (u8*)ia)
1391 continue;
1392
1393 actor->pos = (u8*)ie - (u8*)ia +
1394 (sle64_to_cpu(ia->index_block_vcn) <<
1395 ndir->itype.index.vcn_size_bits) +
1396 vol->mft_record_size;
1397
1398
1399
1400
1401
1402
1403 rc = ntfs_filldir(vol, ndir, ia_page, ie, name, actor);
1404 if (rc) {
1405
1406 ntfs_unmap_page(ia_page);
1407 ntfs_unmap_page(bmp_page);
1408 iput(bmp_vi);
1409 goto abort;
1410 }
1411 }
1412 goto find_next_index_buffer;
1413unm_EOD:
1414 if (ia_page) {
1415 unlock_page(ia_page);
1416 ntfs_unmap_page(ia_page);
1417 }
1418 ntfs_unmap_page(bmp_page);
1419 iput(bmp_vi);
1420EOD:
1421
1422 actor->pos = i_size + vol->mft_record_size;
1423abort:
1424 kfree(name);
1425 return 0;
1426err_out:
1427 if (bmp_page) {
1428 ntfs_unmap_page(bmp_page);
1429iput_err_out:
1430 iput(bmp_vi);
1431 }
1432 if (ia_page) {
1433 unlock_page(ia_page);
1434 ntfs_unmap_page(ia_page);
1435 }
1436 kfree(ir);
1437 kfree(name);
1438 if (ctx)
1439 ntfs_attr_put_search_ctx(ctx);
1440 if (m)
1441 unmap_mft_record(ndir);
1442 if (!err)
1443 err = -EIO;
1444 ntfs_debug("Failed. Returning error code %i.", -err);
1445 return err;
1446}
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464static int ntfs_dir_open(struct inode *vi, struct file *filp)
1465{
1466 if (sizeof(unsigned long) < 8) {
1467 if (i_size_read(vi) > MAX_LFS_FILESIZE)
1468 return -EFBIG;
1469 }
1470 return 0;
1471}
1472
1473#ifdef NTFS_RW
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
1500static int ntfs_dir_fsync(struct file *filp, loff_t start, loff_t end,
1501 int datasync)
1502{
1503 struct inode *bmp_vi, *vi = filp->f_mapping->host;
1504 int err, ret;
1505 ntfs_attr na;
1506
1507 ntfs_debug("Entering for inode 0x%lx.", vi->i_ino);
1508
1509 err = filemap_write_and_wait_range(vi->i_mapping, start, end);
1510 if (err)
1511 return err;
1512 inode_lock(vi);
1513
1514 BUG_ON(!S_ISDIR(vi->i_mode));
1515
1516 na.mft_no = vi->i_ino;
1517 na.type = AT_BITMAP;
1518 na.name = I30;
1519 na.name_len = 4;
1520 bmp_vi = ilookup5(vi->i_sb, vi->i_ino, (test_t)ntfs_test_inode, &na);
1521 if (bmp_vi) {
1522 write_inode_now(bmp_vi, !datasync);
1523 iput(bmp_vi);
1524 }
1525 ret = __ntfs_write_inode(vi, 1);
1526 write_inode_now(vi, !datasync);
1527 err = sync_blockdev(vi->i_sb->s_bdev);
1528 if (unlikely(err && !ret))
1529 ret = err;
1530 if (likely(!ret))
1531 ntfs_debug("Done.");
1532 else
1533 ntfs_warning(vi->i_sb, "Failed to f%ssync inode 0x%lx. Error "
1534 "%u.", datasync ? "data" : "", vi->i_ino, -ret);
1535 inode_unlock(vi);
1536 return ret;
1537}
1538
1539#endif
1540
1541const struct file_operations ntfs_dir_ops = {
1542 .llseek = generic_file_llseek,
1543 .read = generic_read_dir,
1544 .iterate = ntfs_readdir,
1545#ifdef NTFS_RW
1546 .fsync = ntfs_dir_fsync,
1547#endif
1548
1549
1550 .open = ntfs_dir_open,
1551};
1552