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/sched.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
28
29#include "attrib.h"
30#include "debug.h"
31#include "layout.h"
32#include "lcnalloc.h"
33#include "malloc.h"
34#include "mft.h"
35#include "ntfs.h"
36#include "types.h"
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
84int ntfs_map_runlist_nolock(ntfs_inode *ni, VCN vcn, ntfs_attr_search_ctx *ctx)
85{
86 VCN end_vcn;
87 unsigned long flags;
88 ntfs_inode *base_ni;
89 MFT_RECORD *m;
90 ATTR_RECORD *a;
91 runlist_element *rl;
92 struct page *put_this_page = NULL;
93 int err = 0;
94 bool ctx_is_temporary, ctx_needs_reset;
95 ntfs_attr_search_ctx old_ctx = { NULL, };
96
97 ntfs_debug("Mapping runlist part containing vcn 0x%llx.",
98 (unsigned long long)vcn);
99 if (!NInoAttr(ni))
100 base_ni = ni;
101 else
102 base_ni = ni->ext.base_ntfs_ino;
103 if (!ctx) {
104 ctx_is_temporary = ctx_needs_reset = true;
105 m = map_mft_record(base_ni);
106 if (IS_ERR(m))
107 return PTR_ERR(m);
108 ctx = ntfs_attr_get_search_ctx(base_ni, m);
109 if (unlikely(!ctx)) {
110 err = -ENOMEM;
111 goto err_out;
112 }
113 } else {
114 VCN allocated_size_vcn;
115
116 BUG_ON(IS_ERR(ctx->mrec));
117 a = ctx->attr;
118 BUG_ON(!a->non_resident);
119 ctx_is_temporary = false;
120 end_vcn = sle64_to_cpu(a->data.non_resident.highest_vcn);
121 read_lock_irqsave(&ni->size_lock, flags);
122 allocated_size_vcn = ni->allocated_size >>
123 ni->vol->cluster_size_bits;
124 read_unlock_irqrestore(&ni->size_lock, flags);
125 if (!a->data.non_resident.lowest_vcn && end_vcn <= 0)
126 end_vcn = allocated_size_vcn - 1;
127
128
129
130
131
132
133
134 if (vcn >= allocated_size_vcn || (a->type == ni->type &&
135 a->name_length == ni->name_len &&
136 !memcmp((u8*)a + le16_to_cpu(a->name_offset),
137 ni->name, ni->name_len) &&
138 sle64_to_cpu(a->data.non_resident.lowest_vcn)
139 <= vcn && end_vcn >= vcn))
140 ctx_needs_reset = false;
141 else {
142
143 old_ctx = *ctx;
144
145
146
147
148
149
150
151
152 if (old_ctx.base_ntfs_ino && old_ctx.ntfs_ino !=
153 old_ctx.base_ntfs_ino) {
154 put_this_page = old_ctx.ntfs_ino->page;
155 page_cache_get(put_this_page);
156 }
157
158
159
160
161 ntfs_attr_reinit_search_ctx(ctx);
162 ctx_needs_reset = true;
163 }
164 }
165 if (ctx_needs_reset) {
166 err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
167 CASE_SENSITIVE, vcn, NULL, 0, ctx);
168 if (unlikely(err)) {
169 if (err == -ENOENT)
170 err = -EIO;
171 goto err_out;
172 }
173 BUG_ON(!ctx->attr->non_resident);
174 }
175 a = ctx->attr;
176
177
178
179
180
181
182 end_vcn = sle64_to_cpu(a->data.non_resident.highest_vcn) + 1;
183 if (unlikely(vcn && vcn >= end_vcn)) {
184 err = -ENOENT;
185 goto err_out;
186 }
187 rl = ntfs_mapping_pairs_decompress(ni->vol, a, ni->runlist.rl);
188 if (IS_ERR(rl))
189 err = PTR_ERR(rl);
190 else
191 ni->runlist.rl = rl;
192err_out:
193 if (ctx_is_temporary) {
194 if (likely(ctx))
195 ntfs_attr_put_search_ctx(ctx);
196 unmap_mft_record(base_ni);
197 } else if (ctx_needs_reset) {
198
199
200
201
202
203
204
205 if (NInoAttrList(base_ni)) {
206
207
208
209
210
211 if (ctx->ntfs_ino != old_ctx.ntfs_ino) {
212
213
214
215
216 if (ctx->base_ntfs_ino && ctx->ntfs_ino !=
217 ctx->base_ntfs_ino) {
218 unmap_extent_mft_record(ctx->ntfs_ino);
219 ctx->mrec = ctx->base_mrec;
220 BUG_ON(!ctx->mrec);
221 }
222
223
224
225
226 if (old_ctx.base_ntfs_ino &&
227 old_ctx.ntfs_ino !=
228 old_ctx.base_ntfs_ino) {
229retry_map:
230 ctx->mrec = map_mft_record(
231 old_ctx.ntfs_ino);
232
233
234
235
236
237
238
239
240
241
242 if (IS_ERR(ctx->mrec)) {
243 if (PTR_ERR(ctx->mrec) ==
244 -ENOMEM) {
245 schedule();
246 goto retry_map;
247 } else
248 old_ctx.ntfs_ino =
249 old_ctx.
250 base_ntfs_ino;
251 }
252 }
253 }
254
255 if (ctx->mrec != old_ctx.mrec) {
256 if (!IS_ERR(ctx->mrec))
257 old_ctx.attr = (ATTR_RECORD*)(
258 (u8*)ctx->mrec +
259 ((u8*)old_ctx.attr -
260 (u8*)old_ctx.mrec));
261 old_ctx.mrec = ctx->mrec;
262 }
263 }
264
265 *ctx = old_ctx;
266
267
268
269
270
271
272
273
274
275
276
277 if (put_this_page)
278 page_cache_release(put_this_page);
279 }
280 return err;
281}
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298int ntfs_map_runlist(ntfs_inode *ni, VCN vcn)
299{
300 int err = 0;
301
302 down_write(&ni->runlist.lock);
303
304 if (likely(ntfs_rl_vcn_to_lcn(ni->runlist.rl, vcn) <=
305 LCN_RL_NOT_MAPPED))
306 err = ntfs_map_runlist_nolock(ni, vcn, NULL);
307 up_write(&ni->runlist.lock);
308 return err;
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
341LCN ntfs_attr_vcn_to_lcn_nolock(ntfs_inode *ni, const VCN vcn,
342 const bool write_locked)
343{
344 LCN lcn;
345 unsigned long flags;
346 bool is_retry = false;
347
348 BUG_ON(!ni);
349 ntfs_debug("Entering for i_ino 0x%lx, vcn 0x%llx, %s_locked.",
350 ni->mft_no, (unsigned long long)vcn,
351 write_locked ? "write" : "read");
352 BUG_ON(!NInoNonResident(ni));
353 BUG_ON(vcn < 0);
354 if (!ni->runlist.rl) {
355 read_lock_irqsave(&ni->size_lock, flags);
356 if (!ni->allocated_size) {
357 read_unlock_irqrestore(&ni->size_lock, flags);
358 return LCN_ENOENT;
359 }
360 read_unlock_irqrestore(&ni->size_lock, flags);
361 }
362retry_remap:
363
364 lcn = ntfs_rl_vcn_to_lcn(ni->runlist.rl, vcn);
365 if (likely(lcn >= LCN_HOLE)) {
366 ntfs_debug("Done, lcn 0x%llx.", (long long)lcn);
367 return lcn;
368 }
369 if (lcn != LCN_RL_NOT_MAPPED) {
370 if (lcn != LCN_ENOENT)
371 lcn = LCN_EIO;
372 } else if (!is_retry) {
373 int err;
374
375 if (!write_locked) {
376 up_read(&ni->runlist.lock);
377 down_write(&ni->runlist.lock);
378 if (unlikely(ntfs_rl_vcn_to_lcn(ni->runlist.rl, vcn) !=
379 LCN_RL_NOT_MAPPED)) {
380 up_write(&ni->runlist.lock);
381 down_read(&ni->runlist.lock);
382 goto retry_remap;
383 }
384 }
385 err = ntfs_map_runlist_nolock(ni, vcn, NULL);
386 if (!write_locked) {
387 up_write(&ni->runlist.lock);
388 down_read(&ni->runlist.lock);
389 }
390 if (likely(!err)) {
391 is_retry = true;
392 goto retry_remap;
393 }
394 if (err == -ENOENT)
395 lcn = LCN_ENOENT;
396 else if (err == -ENOMEM)
397 lcn = LCN_ENOMEM;
398 else
399 lcn = LCN_EIO;
400 }
401 if (lcn != LCN_ENOENT)
402 ntfs_error(ni->vol->sb, "Failed with error code %lli.",
403 (long long)lcn);
404 return lcn;
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
464runlist_element *ntfs_attr_find_vcn_nolock(ntfs_inode *ni, const VCN vcn,
465 ntfs_attr_search_ctx *ctx)
466{
467 unsigned long flags;
468 runlist_element *rl;
469 int err = 0;
470 bool is_retry = false;
471
472 BUG_ON(!ni);
473 ntfs_debug("Entering for i_ino 0x%lx, vcn 0x%llx, with%s ctx.",
474 ni->mft_no, (unsigned long long)vcn, ctx ? "" : "out");
475 BUG_ON(!NInoNonResident(ni));
476 BUG_ON(vcn < 0);
477 if (!ni->runlist.rl) {
478 read_lock_irqsave(&ni->size_lock, flags);
479 if (!ni->allocated_size) {
480 read_unlock_irqrestore(&ni->size_lock, flags);
481 return ERR_PTR(-ENOENT);
482 }
483 read_unlock_irqrestore(&ni->size_lock, flags);
484 }
485retry_remap:
486 rl = ni->runlist.rl;
487 if (likely(rl && vcn >= rl[0].vcn)) {
488 while (likely(rl->length)) {
489 if (unlikely(vcn < rl[1].vcn)) {
490 if (likely(rl->lcn >= LCN_HOLE)) {
491 ntfs_debug("Done.");
492 return rl;
493 }
494 break;
495 }
496 rl++;
497 }
498 if (likely(rl->lcn != LCN_RL_NOT_MAPPED)) {
499 if (likely(rl->lcn == LCN_ENOENT))
500 err = -ENOENT;
501 else
502 err = -EIO;
503 }
504 }
505 if (!err && !is_retry) {
506
507
508
509
510 if (IS_ERR(ctx->mrec))
511 err = PTR_ERR(ctx->mrec);
512 else {
513
514
515
516
517 err = ntfs_map_runlist_nolock(ni, vcn, ctx);
518 if (likely(!err)) {
519 is_retry = true;
520 goto retry_remap;
521 }
522 }
523 if (err == -EINVAL)
524 err = -EIO;
525 } else if (!err)
526 err = -EIO;
527 if (err != -ENOENT)
528 ntfs_error(ni->vol->sb, "Failed with error code %i.", err);
529 return ERR_PTR(err);
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
589static int ntfs_attr_find(const ATTR_TYPE type, const ntfschar *name,
590 const u32 name_len, const IGNORE_CASE_BOOL ic,
591 const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx)
592{
593 ATTR_RECORD *a;
594 ntfs_volume *vol = ctx->ntfs_ino->vol;
595 ntfschar *upcase = vol->upcase;
596 u32 upcase_len = vol->upcase_len;
597
598
599
600
601
602 if (ctx->is_first) {
603 a = ctx->attr;
604 ctx->is_first = false;
605 } else
606 a = (ATTR_RECORD*)((u8*)ctx->attr +
607 le32_to_cpu(ctx->attr->length));
608 for (;; a = (ATTR_RECORD*)((u8*)a + le32_to_cpu(a->length))) {
609 if ((u8*)a < (u8*)ctx->mrec || (u8*)a > (u8*)ctx->mrec +
610 le32_to_cpu(ctx->mrec->bytes_allocated))
611 break;
612 ctx->attr = a;
613 if (unlikely(le32_to_cpu(a->type) > le32_to_cpu(type) ||
614 a->type == AT_END))
615 return -ENOENT;
616 if (unlikely(!a->length))
617 break;
618 if (a->type != type)
619 continue;
620
621
622
623
624 if (!name) {
625
626 if (a->name_length)
627 return -ENOENT;
628 } else if (!ntfs_are_names_equal(name, name_len,
629 (ntfschar*)((u8*)a + le16_to_cpu(a->name_offset)),
630 a->name_length, ic, upcase, upcase_len)) {
631 register int rc;
632
633 rc = ntfs_collate_names(name, name_len,
634 (ntfschar*)((u8*)a +
635 le16_to_cpu(a->name_offset)),
636 a->name_length, 1, IGNORE_CASE,
637 upcase, upcase_len);
638
639
640
641
642 if (rc == -1)
643 return -ENOENT;
644
645 if (rc)
646 continue;
647 rc = ntfs_collate_names(name, name_len,
648 (ntfschar*)((u8*)a +
649 le16_to_cpu(a->name_offset)),
650 a->name_length, 1, CASE_SENSITIVE,
651 upcase, upcase_len);
652 if (rc == -1)
653 return -ENOENT;
654 if (rc)
655 continue;
656 }
657
658
659
660
661
662 if (!val)
663 return 0;
664
665 else {
666 register int rc;
667
668 rc = memcmp(val, (u8*)a + le16_to_cpu(
669 a->data.resident.value_offset),
670 min_t(u32, val_len, le32_to_cpu(
671 a->data.resident.value_length)));
672
673
674
675
676 if (!rc) {
677 register u32 avl;
678
679 avl = le32_to_cpu(
680 a->data.resident.value_length);
681 if (val_len == avl)
682 return 0;
683 if (val_len < avl)
684 return -ENOENT;
685 } else if (rc < 0)
686 return -ENOENT;
687 }
688 }
689 ntfs_error(vol->sb, "Inode is corrupt. Run chkdsk.");
690 NVolSetErrors(vol);
691 return -EIO;
692}
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710int load_attribute_list(ntfs_volume *vol, runlist *runlist, u8 *al_start,
711 const s64 size, const s64 initialized_size)
712{
713 LCN lcn;
714 u8 *al = al_start;
715 u8 *al_end = al + initialized_size;
716 runlist_element *rl;
717 struct buffer_head *bh;
718 struct super_block *sb;
719 unsigned long block_size;
720 unsigned long block, max_block;
721 int err = 0;
722 unsigned char block_size_bits;
723
724 ntfs_debug("Entering.");
725 if (!vol || !runlist || !al || size <= 0 || initialized_size < 0 ||
726 initialized_size > size)
727 return -EINVAL;
728 if (!initialized_size) {
729 memset(al, 0, size);
730 return 0;
731 }
732 sb = vol->sb;
733 block_size = sb->s_blocksize;
734 block_size_bits = sb->s_blocksize_bits;
735 down_read(&runlist->lock);
736 rl = runlist->rl;
737 if (!rl) {
738 ntfs_error(sb, "Cannot read attribute list since runlist is "
739 "missing.");
740 goto err_out;
741 }
742
743 while (rl->length) {
744 lcn = ntfs_rl_vcn_to_lcn(rl, rl->vcn);
745 ntfs_debug("Reading vcn = 0x%llx, lcn = 0x%llx.",
746 (unsigned long long)rl->vcn,
747 (unsigned long long)lcn);
748
749 if (lcn < 0) {
750 ntfs_error(sb, "ntfs_rl_vcn_to_lcn() failed. Cannot "
751 "read attribute list.");
752 goto err_out;
753 }
754 block = lcn << vol->cluster_size_bits >> block_size_bits;
755
756 max_block = block + (rl->length << vol->cluster_size_bits >>
757 block_size_bits);
758 ntfs_debug("max_block = 0x%lx.", max_block);
759 do {
760 ntfs_debug("Reading block = 0x%lx.", block);
761 bh = sb_bread(sb, block);
762 if (!bh) {
763 ntfs_error(sb, "sb_bread() failed. Cannot "
764 "read attribute list.");
765 goto err_out;
766 }
767 if (al + block_size >= al_end)
768 goto do_final;
769 memcpy(al, bh->b_data, block_size);
770 brelse(bh);
771 al += block_size;
772 } while (++block < max_block);
773 rl++;
774 }
775 if (initialized_size < size) {
776initialize:
777 memset(al_start + initialized_size, 0, size - initialized_size);
778 }
779done:
780 up_read(&runlist->lock);
781 return err;
782do_final:
783 if (al < al_end) {
784
785
786
787
788
789
790
791
792 memcpy(al, bh->b_data, al_end - al);
793 brelse(bh);
794 if (initialized_size < size)
795 goto initialize;
796 goto done;
797 }
798 brelse(bh);
799
800 ntfs_error(sb, "Attribute list buffer overflow. Read attribute list "
801 "is truncated.");
802err_out:
803 err = -EIO;
804 goto done;
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
857static int ntfs_external_attr_find(const ATTR_TYPE type,
858 const ntfschar *name, const u32 name_len,
859 const IGNORE_CASE_BOOL ic, const VCN lowest_vcn,
860 const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx)
861{
862 ntfs_inode *base_ni, *ni;
863 ntfs_volume *vol;
864 ATTR_LIST_ENTRY *al_entry, *next_al_entry;
865 u8 *al_start, *al_end;
866 ATTR_RECORD *a;
867 ntfschar *al_name;
868 u32 al_name_len;
869 int err = 0;
870 static const char *es = " Unmount and run chkdsk.";
871
872 ni = ctx->ntfs_ino;
873 base_ni = ctx->base_ntfs_ino;
874 ntfs_debug("Entering for inode 0x%lx, type 0x%x.", ni->mft_no, type);
875 if (!base_ni) {
876
877 base_ni = ctx->base_ntfs_ino = ctx->ntfs_ino;
878 ctx->base_mrec = ctx->mrec;
879 }
880 if (ni == base_ni)
881 ctx->base_attr = ctx->attr;
882 if (type == AT_END)
883 goto not_found;
884 vol = base_ni->vol;
885 al_start = base_ni->attr_list;
886 al_end = al_start + base_ni->attr_list_size;
887 if (!ctx->al_entry)
888 ctx->al_entry = (ATTR_LIST_ENTRY*)al_start;
889
890
891
892
893 if (ctx->is_first) {
894 al_entry = ctx->al_entry;
895 ctx->is_first = false;
896 } else
897 al_entry = (ATTR_LIST_ENTRY*)((u8*)ctx->al_entry +
898 le16_to_cpu(ctx->al_entry->length));
899 for (;; al_entry = next_al_entry) {
900
901 if ((u8*)al_entry < base_ni->attr_list ||
902 (u8*)al_entry > al_end)
903 break;
904 ctx->al_entry = al_entry;
905
906 if ((u8*)al_entry == al_end)
907 goto not_found;
908 if (!al_entry->length)
909 break;
910 if ((u8*)al_entry + 6 > al_end || (u8*)al_entry +
911 le16_to_cpu(al_entry->length) > al_end)
912 break;
913 next_al_entry = (ATTR_LIST_ENTRY*)((u8*)al_entry +
914 le16_to_cpu(al_entry->length));
915 if (le32_to_cpu(al_entry->type) > le32_to_cpu(type))
916 goto not_found;
917 if (type != al_entry->type)
918 continue;
919
920
921
922
923 al_name_len = al_entry->name_length;
924 al_name = (ntfschar*)((u8*)al_entry + al_entry->name_offset);
925 if (!name) {
926 if (al_name_len)
927 goto not_found;
928 } else if (!ntfs_are_names_equal(al_name, al_name_len, name,
929 name_len, ic, vol->upcase, vol->upcase_len)) {
930 register int rc;
931
932 rc = ntfs_collate_names(name, name_len, al_name,
933 al_name_len, 1, IGNORE_CASE,
934 vol->upcase, vol->upcase_len);
935
936
937
938
939 if (rc == -1)
940 goto not_found;
941
942 if (rc)
943 continue;
944
945
946
947
948
949
950
951
952 rc = ntfs_collate_names(name, name_len, al_name,
953 al_name_len, 1, CASE_SENSITIVE,
954 vol->upcase, vol->upcase_len);
955 if (rc == -1)
956 goto not_found;
957 if (rc)
958 continue;
959 }
960
961
962
963
964
965
966 if (lowest_vcn && (u8*)next_al_entry >= al_start &&
967 (u8*)next_al_entry + 6 < al_end &&
968 (u8*)next_al_entry + le16_to_cpu(
969 next_al_entry->length) <= al_end &&
970 sle64_to_cpu(next_al_entry->lowest_vcn) <=
971 lowest_vcn &&
972 next_al_entry->type == al_entry->type &&
973 next_al_entry->name_length == al_name_len &&
974 ntfs_are_names_equal((ntfschar*)((u8*)
975 next_al_entry +
976 next_al_entry->name_offset),
977 next_al_entry->name_length,
978 al_name, al_name_len, CASE_SENSITIVE,
979 vol->upcase, vol->upcase_len))
980 continue;
981 if (MREF_LE(al_entry->mft_reference) == ni->mft_no) {
982 if (MSEQNO_LE(al_entry->mft_reference) != ni->seq_no) {
983 ntfs_error(vol->sb, "Found stale mft "
984 "reference in attribute list "
985 "of base inode 0x%lx.%s",
986 base_ni->mft_no, es);
987 err = -EIO;
988 break;
989 }
990 } else {
991
992 if (ni != base_ni)
993 unmap_extent_mft_record(ni);
994
995 if (MREF_LE(al_entry->mft_reference) ==
996 base_ni->mft_no) {
997 ni = ctx->ntfs_ino = base_ni;
998 ctx->mrec = ctx->base_mrec;
999 } else {
1000
1001 ctx->mrec = map_extent_mft_record(base_ni,
1002 le64_to_cpu(
1003 al_entry->mft_reference), &ni);
1004 if (IS_ERR(ctx->mrec)) {
1005 ntfs_error(vol->sb, "Failed to map "
1006 "extent mft record "
1007 "0x%lx of base inode "
1008 "0x%lx.%s",
1009 MREF_LE(al_entry->
1010 mft_reference),
1011 base_ni->mft_no, es);
1012 err = PTR_ERR(ctx->mrec);
1013 if (err == -ENOENT)
1014 err = -EIO;
1015
1016 ni = NULL;
1017 break;
1018 }
1019 ctx->ntfs_ino = ni;
1020 }
1021 ctx->attr = (ATTR_RECORD*)((u8*)ctx->mrec +
1022 le16_to_cpu(ctx->mrec->attrs_offset));
1023 }
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039 a = ctx->attr;
1040
1041
1042
1043
1044do_next_attr_loop:
1045 if ((u8*)a < (u8*)ctx->mrec || (u8*)a > (u8*)ctx->mrec +
1046 le32_to_cpu(ctx->mrec->bytes_allocated))
1047 break;
1048 if (a->type == AT_END)
1049 break;
1050 if (!a->length)
1051 break;
1052 if (al_entry->instance != a->instance)
1053 goto do_next_attr;
1054
1055
1056
1057
1058
1059 if (al_entry->type != a->type)
1060 break;
1061 if (!ntfs_are_names_equal((ntfschar*)((u8*)a +
1062 le16_to_cpu(a->name_offset)), a->name_length,
1063 al_name, al_name_len, CASE_SENSITIVE,
1064 vol->upcase, vol->upcase_len))
1065 break;
1066 ctx->attr = a;
1067
1068
1069
1070
1071 if (!val || (!a->non_resident && le32_to_cpu(
1072 a->data.resident.value_length) == val_len &&
1073 !memcmp((u8*)a +
1074 le16_to_cpu(a->data.resident.value_offset),
1075 val, val_len))) {
1076 ntfs_debug("Done, found.");
1077 return 0;
1078 }
1079do_next_attr:
1080
1081 a = (ATTR_RECORD*)((u8*)a + le32_to_cpu(a->length));
1082 goto do_next_attr_loop;
1083 }
1084 if (!err) {
1085 ntfs_error(vol->sb, "Base inode 0x%lx contains corrupt "
1086 "attribute list attribute.%s", base_ni->mft_no,
1087 es);
1088 err = -EIO;
1089 }
1090 if (ni != base_ni) {
1091 if (ni)
1092 unmap_extent_mft_record(ni);
1093 ctx->ntfs_ino = base_ni;
1094 ctx->mrec = ctx->base_mrec;
1095 ctx->attr = ctx->base_attr;
1096 }
1097 if (err != -ENOMEM)
1098 NVolSetErrors(vol);
1099 return err;
1100not_found:
1101
1102
1103
1104
1105 if (type == AT_END) {
1106 ntfs_attr_reinit_search_ctx(ctx);
1107 return ntfs_attr_find(AT_END, name, name_len, ic, val, val_len,
1108 ctx);
1109 }
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123 if (ni != base_ni)
1124 unmap_extent_mft_record(ni);
1125 ctx->mrec = ctx->base_mrec;
1126 ctx->attr = (ATTR_RECORD*)((u8*)ctx->mrec +
1127 le16_to_cpu(ctx->mrec->attrs_offset));
1128 ctx->is_first = true;
1129 ctx->ntfs_ino = base_ni;
1130 ctx->base_ntfs_ino = NULL;
1131 ctx->base_mrec = NULL;
1132 ctx->base_attr = NULL;
1133
1134
1135
1136
1137
1138
1139
1140 do {
1141 err = ntfs_attr_find(type, name, name_len, ic, val, val_len,
1142 ctx);
1143 } while (!err);
1144 ntfs_debug("Done, not found.");
1145 return err;
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
1187int ntfs_attr_lookup(const ATTR_TYPE type, const ntfschar *name,
1188 const u32 name_len, const IGNORE_CASE_BOOL ic,
1189 const VCN lowest_vcn, const u8 *val, const u32 val_len,
1190 ntfs_attr_search_ctx *ctx)
1191{
1192 ntfs_inode *base_ni;
1193
1194 ntfs_debug("Entering.");
1195 BUG_ON(IS_ERR(ctx->mrec));
1196 if (ctx->base_ntfs_ino)
1197 base_ni = ctx->base_ntfs_ino;
1198 else
1199 base_ni = ctx->ntfs_ino;
1200
1201 BUG_ON(!base_ni);
1202 if (!NInoAttrList(base_ni) || type == AT_ATTRIBUTE_LIST)
1203 return ntfs_attr_find(type, name, name_len, ic, val, val_len,
1204 ctx);
1205 return ntfs_external_attr_find(type, name, name_len, ic, lowest_vcn,
1206 val, val_len, ctx);
1207}
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217static inline void ntfs_attr_init_search_ctx(ntfs_attr_search_ctx *ctx,
1218 ntfs_inode *ni, MFT_RECORD *mrec)
1219{
1220 *ctx = (ntfs_attr_search_ctx) {
1221 .mrec = mrec,
1222
1223 .attr = (ATTR_RECORD*)((u8*)mrec +
1224 le16_to_cpu(mrec->attrs_offset)),
1225 .is_first = true,
1226 .ntfs_ino = ni,
1227 };
1228}
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240void ntfs_attr_reinit_search_ctx(ntfs_attr_search_ctx *ctx)
1241{
1242 if (likely(!ctx->base_ntfs_ino)) {
1243
1244 ctx->is_first = true;
1245
1246 ctx->attr = (ATTR_RECORD*)((u8*)ctx->mrec +
1247 le16_to_cpu(ctx->mrec->attrs_offset));
1248
1249
1250
1251
1252 ctx->al_entry = NULL;
1253 return;
1254 }
1255 if (ctx->ntfs_ino != ctx->base_ntfs_ino)
1256 unmap_extent_mft_record(ctx->ntfs_ino);
1257 ntfs_attr_init_search_ctx(ctx, ctx->base_ntfs_ino, ctx->base_mrec);
1258 return;
1259}
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269ntfs_attr_search_ctx *ntfs_attr_get_search_ctx(ntfs_inode *ni, MFT_RECORD *mrec)
1270{
1271 ntfs_attr_search_ctx *ctx;
1272
1273 ctx = kmem_cache_alloc(ntfs_attr_ctx_cache, GFP_NOFS);
1274 if (ctx)
1275 ntfs_attr_init_search_ctx(ctx, ni, mrec);
1276 return ctx;
1277}
1278
1279
1280
1281
1282
1283
1284
1285
1286void ntfs_attr_put_search_ctx(ntfs_attr_search_ctx *ctx)
1287{
1288 if (ctx->base_ntfs_ino && ctx->ntfs_ino != ctx->base_ntfs_ino)
1289 unmap_extent_mft_record(ctx->ntfs_ino);
1290 kmem_cache_free(ntfs_attr_ctx_cache, ctx);
1291 return;
1292}
1293
1294#ifdef NTFS_RW
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306static ATTR_DEF *ntfs_attr_find_in_attrdef(const ntfs_volume *vol,
1307 const ATTR_TYPE type)
1308{
1309 ATTR_DEF *ad;
1310
1311 BUG_ON(!vol->attrdef);
1312 BUG_ON(!type);
1313 for (ad = vol->attrdef; (u8*)ad - (u8*)vol->attrdef <
1314 vol->attrdef_size && ad->type; ++ad) {
1315
1316 if (likely(le32_to_cpu(ad->type) < le32_to_cpu(type)))
1317 continue;
1318
1319 if (likely(ad->type == type))
1320 return ad;
1321
1322 break;
1323 }
1324
1325 ntfs_debug("Attribute type 0x%x not found in $AttrDef.",
1326 le32_to_cpu(type));
1327 return NULL;
1328}
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342int ntfs_attr_size_bounds_check(const ntfs_volume *vol, const ATTR_TYPE type,
1343 const s64 size)
1344{
1345 ATTR_DEF *ad;
1346
1347 BUG_ON(size < 0);
1348
1349
1350
1351
1352 if (unlikely(type == AT_ATTRIBUTE_LIST && size > 256 * 1024))
1353 return -ERANGE;
1354
1355 ad = ntfs_attr_find_in_attrdef(vol, type);
1356 if (unlikely(!ad))
1357 return -ENOENT;
1358
1359 if (((sle64_to_cpu(ad->min_size) > 0) &&
1360 size < sle64_to_cpu(ad->min_size)) ||
1361 ((sle64_to_cpu(ad->max_size) > 0) && size >
1362 sle64_to_cpu(ad->max_size)))
1363 return -ERANGE;
1364 return 0;
1365}
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378int ntfs_attr_can_be_non_resident(const ntfs_volume *vol, const ATTR_TYPE type)
1379{
1380 ATTR_DEF *ad;
1381
1382
1383 ad = ntfs_attr_find_in_attrdef(vol, type);
1384 if (unlikely(!ad))
1385 return -ENOENT;
1386
1387 if (ad->flags & ATTR_DEF_RESIDENT)
1388 return -EPERM;
1389 return 0;
1390}
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410int ntfs_attr_can_be_resident(const ntfs_volume *vol, const ATTR_TYPE type)
1411{
1412 if (type == AT_INDEX_ALLOCATION)
1413 return -EPERM;
1414 return 0;
1415}
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435int ntfs_attr_record_resize(MFT_RECORD *m, ATTR_RECORD *a, u32 new_size)
1436{
1437 ntfs_debug("Entering for new_size %u.", new_size);
1438
1439 if (new_size & 7)
1440 new_size = (new_size + 7) & ~7;
1441
1442 if (new_size != le32_to_cpu(a->length)) {
1443 u32 new_muse = le32_to_cpu(m->bytes_in_use) -
1444 le32_to_cpu(a->length) + new_size;
1445
1446 if (new_muse > le32_to_cpu(m->bytes_allocated))
1447 return -ENOSPC;
1448
1449 memmove((u8*)a + new_size, (u8*)a + le32_to_cpu(a->length),
1450 le32_to_cpu(m->bytes_in_use) - ((u8*)a -
1451 (u8*)m) - le32_to_cpu(a->length));
1452
1453 m->bytes_in_use = cpu_to_le32(new_muse);
1454
1455 if (new_size >= offsetof(ATTR_REC, length) + sizeof(a->length))
1456 a->length = cpu_to_le32(new_size);
1457 }
1458 return 0;
1459}
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479int ntfs_resident_attr_value_resize(MFT_RECORD *m, ATTR_RECORD *a,
1480 const u32 new_size)
1481{
1482 u32 old_size;
1483
1484
1485 if (ntfs_attr_record_resize(m, a,
1486 le16_to_cpu(a->data.resident.value_offset) + new_size))
1487 return -ENOSPC;
1488
1489
1490
1491
1492 old_size = le32_to_cpu(a->data.resident.value_length);
1493 if (new_size > old_size)
1494 memset((u8*)a + le16_to_cpu(a->data.resident.value_offset) +
1495 old_size, 0, new_size - old_size);
1496
1497 a->data.resident.value_length = cpu_to_le32(new_size);
1498 return 0;
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
1535int ntfs_attr_make_non_resident(ntfs_inode *ni, const u32 data_size)
1536{
1537 s64 new_size;
1538 struct inode *vi = VFS_I(ni);
1539 ntfs_volume *vol = ni->vol;
1540 ntfs_inode *base_ni;
1541 MFT_RECORD *m;
1542 ATTR_RECORD *a;
1543 ntfs_attr_search_ctx *ctx;
1544 struct page *page;
1545 runlist_element *rl;
1546 u8 *kaddr;
1547 unsigned long flags;
1548 int mp_size, mp_ofs, name_ofs, arec_size, err, err2;
1549 u32 attr_size;
1550 u8 old_res_attr_flags;
1551
1552
1553 err = ntfs_attr_can_be_non_resident(vol, ni->type);
1554 if (unlikely(err)) {
1555 if (err == -EPERM)
1556 ntfs_debug("Attribute is not allowed to be "
1557 "non-resident.");
1558 else
1559 ntfs_debug("Attribute not defined on the NTFS "
1560 "volume!");
1561 return err;
1562 }
1563
1564
1565
1566
1567 BUG_ON(NInoCompressed(ni));
1568 BUG_ON(NInoEncrypted(ni));
1569
1570
1571
1572
1573 new_size = (data_size + vol->cluster_size - 1) &
1574 ~(vol->cluster_size - 1);
1575 if (new_size > 0) {
1576
1577
1578
1579
1580 page = find_or_create_page(vi->i_mapping, 0,
1581 mapping_gfp_mask(vi->i_mapping));
1582 if (unlikely(!page))
1583 return -ENOMEM;
1584
1585 rl = ntfs_cluster_alloc(vol, 0, new_size >>
1586 vol->cluster_size_bits, -1, DATA_ZONE, true);
1587 if (IS_ERR(rl)) {
1588 err = PTR_ERR(rl);
1589 ntfs_debug("Failed to allocate cluster%s, error code "
1590 "%i.", (new_size >>
1591 vol->cluster_size_bits) > 1 ? "s" : "",
1592 err);
1593 goto page_err_out;
1594 }
1595 } else {
1596 rl = NULL;
1597 page = NULL;
1598 }
1599
1600 mp_size = ntfs_get_size_for_mapping_pairs(vol, rl, 0, -1);
1601 if (unlikely(mp_size < 0)) {
1602 err = mp_size;
1603 ntfs_debug("Failed to get size for mapping pairs array, error "
1604 "code %i.", err);
1605 goto rl_err_out;
1606 }
1607 down_write(&ni->runlist.lock);
1608 if (!NInoAttr(ni))
1609 base_ni = ni;
1610 else
1611 base_ni = ni->ext.base_ntfs_ino;
1612 m = map_mft_record(base_ni);
1613 if (IS_ERR(m)) {
1614 err = PTR_ERR(m);
1615 m = NULL;
1616 ctx = NULL;
1617 goto err_out;
1618 }
1619 ctx = ntfs_attr_get_search_ctx(base_ni, m);
1620 if (unlikely(!ctx)) {
1621 err = -ENOMEM;
1622 goto err_out;
1623 }
1624 err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
1625 CASE_SENSITIVE, 0, NULL, 0, ctx);
1626 if (unlikely(err)) {
1627 if (err == -ENOENT)
1628 err = -EIO;
1629 goto err_out;
1630 }
1631 m = ctx->mrec;
1632 a = ctx->attr;
1633 BUG_ON(NInoNonResident(ni));
1634 BUG_ON(a->non_resident);
1635
1636
1637
1638 if (NInoSparse(ni) || NInoCompressed(ni))
1639 name_ofs = (offsetof(ATTR_REC,
1640 data.non_resident.compressed_size) +
1641 sizeof(a->data.non_resident.compressed_size) +
1642 7) & ~7;
1643 else
1644 name_ofs = (offsetof(ATTR_REC,
1645 data.non_resident.compressed_size) + 7) & ~7;
1646 mp_ofs = (name_ofs + a->name_length * sizeof(ntfschar) + 7) & ~7;
1647
1648
1649
1650
1651 arec_size = (mp_ofs + mp_size + 7) & ~7;
1652
1653
1654
1655
1656 attr_size = le32_to_cpu(a->data.resident.value_length);
1657 BUG_ON(attr_size != data_size);
1658 if (page && !PageUptodate(page)) {
1659 kaddr = kmap_atomic(page);
1660 memcpy(kaddr, (u8*)a +
1661 le16_to_cpu(a->data.resident.value_offset),
1662 attr_size);
1663 memset(kaddr + attr_size, 0, PAGE_CACHE_SIZE - attr_size);
1664 kunmap_atomic(kaddr);
1665 flush_dcache_page(page);
1666 SetPageUptodate(page);
1667 }
1668
1669 old_res_attr_flags = a->data.resident.flags;
1670
1671 err = ntfs_attr_record_resize(m, a, arec_size);
1672 if (unlikely(err))
1673 goto err_out;
1674
1675
1676
1677
1678 a->non_resident = 1;
1679
1680 if (a->name_length)
1681 memmove((u8*)a + name_ofs, (u8*)a + le16_to_cpu(a->name_offset),
1682 a->name_length * sizeof(ntfschar));
1683 a->name_offset = cpu_to_le16(name_ofs);
1684
1685 a->data.non_resident.lowest_vcn = 0;
1686 a->data.non_resident.highest_vcn = cpu_to_sle64((new_size - 1) >>
1687 vol->cluster_size_bits);
1688 a->data.non_resident.mapping_pairs_offset = cpu_to_le16(mp_ofs);
1689 memset(&a->data.non_resident.reserved, 0,
1690 sizeof(a->data.non_resident.reserved));
1691 a->data.non_resident.allocated_size = cpu_to_sle64(new_size);
1692 a->data.non_resident.data_size =
1693 a->data.non_resident.initialized_size =
1694 cpu_to_sle64(attr_size);
1695 if (NInoSparse(ni) || NInoCompressed(ni)) {
1696 a->data.non_resident.compression_unit = 0;
1697 if (NInoCompressed(ni) || vol->major_ver < 3)
1698 a->data.non_resident.compression_unit = 4;
1699 a->data.non_resident.compressed_size =
1700 a->data.non_resident.allocated_size;
1701 } else
1702 a->data.non_resident.compression_unit = 0;
1703
1704 err = ntfs_mapping_pairs_build(vol, (u8*)a + mp_ofs,
1705 arec_size - mp_ofs, rl, 0, -1, NULL);
1706 if (unlikely(err)) {
1707 ntfs_debug("Failed to build mapping pairs, error code %i.",
1708 err);
1709 goto undo_err_out;
1710 }
1711
1712 ni->runlist.rl = rl;
1713 write_lock_irqsave(&ni->size_lock, flags);
1714 ni->allocated_size = new_size;
1715 if (NInoSparse(ni) || NInoCompressed(ni)) {
1716 ni->itype.compressed.size = ni->allocated_size;
1717 if (a->data.non_resident.compression_unit) {
1718 ni->itype.compressed.block_size = 1U << (a->data.
1719 non_resident.compression_unit +
1720 vol->cluster_size_bits);
1721 ni->itype.compressed.block_size_bits =
1722 ffs(ni->itype.compressed.block_size) -
1723 1;
1724 ni->itype.compressed.block_clusters = 1U <<
1725 a->data.non_resident.compression_unit;
1726 } else {
1727 ni->itype.compressed.block_size = 0;
1728 ni->itype.compressed.block_size_bits = 0;
1729 ni->itype.compressed.block_clusters = 0;
1730 }
1731 vi->i_blocks = ni->itype.compressed.size >> 9;
1732 } else
1733 vi->i_blocks = ni->allocated_size >> 9;
1734 write_unlock_irqrestore(&ni->size_lock, flags);
1735
1736
1737
1738
1739
1740
1741 NInoSetNonResident(ni);
1742
1743 flush_dcache_mft_record_page(ctx->ntfs_ino);
1744 mark_mft_record_dirty(ctx->ntfs_ino);
1745 ntfs_attr_put_search_ctx(ctx);
1746 unmap_mft_record(base_ni);
1747 up_write(&ni->runlist.lock);
1748 if (page) {
1749 set_page_dirty(page);
1750 unlock_page(page);
1751 page_cache_release(page);
1752 }
1753 ntfs_debug("Done.");
1754 return 0;
1755undo_err_out:
1756
1757 a->non_resident = 0;
1758
1759 name_ofs = (offsetof(ATTR_RECORD, data.resident.reserved) +
1760 sizeof(a->data.resident.reserved) + 7) & ~7;
1761 if (a->name_length)
1762 memmove((u8*)a + name_ofs, (u8*)a + le16_to_cpu(a->name_offset),
1763 a->name_length * sizeof(ntfschar));
1764 mp_ofs = (name_ofs + a->name_length * sizeof(ntfschar) + 7) & ~7;
1765 a->name_offset = cpu_to_le16(name_ofs);
1766 arec_size = (mp_ofs + attr_size + 7) & ~7;
1767
1768 err2 = ntfs_attr_record_resize(m, a, arec_size);
1769 if (unlikely(err2)) {
1770
1771
1772
1773
1774
1775
1776
1777
1778 arec_size = le32_to_cpu(a->length);
1779 if ((mp_ofs + attr_size) > arec_size) {
1780 err2 = attr_size;
1781 attr_size = arec_size - mp_ofs;
1782 ntfs_error(vol->sb, "Failed to undo partial resident "
1783 "to non-resident attribute "
1784 "conversion. Truncating inode 0x%lx, "
1785 "attribute type 0x%x from %i bytes to "
1786 "%i bytes to maintain metadata "
1787 "consistency. THIS MEANS YOU ARE "
1788 "LOSING %i BYTES DATA FROM THIS %s.",
1789 vi->i_ino,
1790 (unsigned)le32_to_cpu(ni->type),
1791 err2, attr_size, err2 - attr_size,
1792 ((ni->type == AT_DATA) &&
1793 !ni->name_len) ? "FILE": "ATTRIBUTE");
1794 write_lock_irqsave(&ni->size_lock, flags);
1795 ni->initialized_size = attr_size;
1796 i_size_write(vi, attr_size);
1797 write_unlock_irqrestore(&ni->size_lock, flags);
1798 }
1799 }
1800
1801 a->data.resident.value_length = cpu_to_le32(attr_size);
1802 a->data.resident.value_offset = cpu_to_le16(mp_ofs);
1803 a->data.resident.flags = old_res_attr_flags;
1804 memset(&a->data.resident.reserved, 0,
1805 sizeof(a->data.resident.reserved));
1806
1807 if (page) {
1808 kaddr = kmap_atomic(page);
1809 memcpy((u8*)a + mp_ofs, kaddr, attr_size);
1810 kunmap_atomic(kaddr);
1811 }
1812
1813 write_lock_irqsave(&ni->size_lock, flags);
1814 ni->allocated_size = arec_size - mp_ofs;
1815 write_unlock_irqrestore(&ni->size_lock, flags);
1816
1817 flush_dcache_mft_record_page(ctx->ntfs_ino);
1818 mark_mft_record_dirty(ctx->ntfs_ino);
1819err_out:
1820 if (ctx)
1821 ntfs_attr_put_search_ctx(ctx);
1822 if (m)
1823 unmap_mft_record(base_ni);
1824 ni->runlist.rl = NULL;
1825 up_write(&ni->runlist.lock);
1826rl_err_out:
1827 if (rl) {
1828 if (ntfs_cluster_free_from_rl(vol, rl) < 0) {
1829 ntfs_error(vol->sb, "Failed to release allocated "
1830 "cluster(s) in error code path. Run "
1831 "chkdsk to recover the lost "
1832 "cluster(s).");
1833 NVolSetErrors(vol);
1834 }
1835 ntfs_free(rl);
1836page_err_out:
1837 unlock_page(page);
1838 page_cache_release(page);
1839 }
1840 if (err == -EINVAL)
1841 err = -EIO;
1842 return err;
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
1904s64 ntfs_attr_extend_allocation(ntfs_inode *ni, s64 new_alloc_size,
1905 const s64 new_data_size, const s64 data_start)
1906{
1907 VCN vcn;
1908 s64 ll, allocated_size, start = data_start;
1909 struct inode *vi = VFS_I(ni);
1910 ntfs_volume *vol = ni->vol;
1911 ntfs_inode *base_ni;
1912 MFT_RECORD *m;
1913 ATTR_RECORD *a;
1914 ntfs_attr_search_ctx *ctx;
1915 runlist_element *rl, *rl2;
1916 unsigned long flags;
1917 int err, mp_size;
1918 u32 attr_len = 0;
1919 bool mp_rebuilt;
1920
1921#ifdef DEBUG
1922 read_lock_irqsave(&ni->size_lock, flags);
1923 allocated_size = ni->allocated_size;
1924 read_unlock_irqrestore(&ni->size_lock, flags);
1925 ntfs_debug("Entering for i_ino 0x%lx, attribute type 0x%x, "
1926 "old_allocated_size 0x%llx, "
1927 "new_allocated_size 0x%llx, new_data_size 0x%llx, "
1928 "data_start 0x%llx.", vi->i_ino,
1929 (unsigned)le32_to_cpu(ni->type),
1930 (unsigned long long)allocated_size,
1931 (unsigned long long)new_alloc_size,
1932 (unsigned long long)new_data_size,
1933 (unsigned long long)start);
1934#endif
1935retry_extend:
1936
1937
1938
1939
1940 if (NInoNonResident(ni)) {
1941 if (start > 0)
1942 start &= ~(s64)vol->cluster_size_mask;
1943 new_alloc_size = (new_alloc_size + vol->cluster_size - 1) &
1944 ~(s64)vol->cluster_size_mask;
1945 }
1946 BUG_ON(new_data_size >= 0 && new_data_size > new_alloc_size);
1947
1948 err = ntfs_attr_size_bounds_check(vol, ni->type, new_alloc_size);
1949 if (unlikely(err)) {
1950
1951 read_lock_irqsave(&ni->size_lock, flags);
1952 allocated_size = ni->allocated_size;
1953 read_unlock_irqrestore(&ni->size_lock, flags);
1954 if (start < 0 || start >= allocated_size) {
1955 if (err == -ERANGE) {
1956 ntfs_error(vol->sb, "Cannot extend allocation "
1957 "of inode 0x%lx, attribute "
1958 "type 0x%x, because the new "
1959 "allocation would exceed the "
1960 "maximum allowed size for "
1961 "this attribute type.",
1962 vi->i_ino, (unsigned)
1963 le32_to_cpu(ni->type));
1964 } else {
1965 ntfs_error(vol->sb, "Cannot extend allocation "
1966 "of inode 0x%lx, attribute "
1967 "type 0x%x, because this "
1968 "attribute type is not "
1969 "defined on the NTFS volume. "
1970 "Possible corruption! You "
1971 "should run chkdsk!",
1972 vi->i_ino, (unsigned)
1973 le32_to_cpu(ni->type));
1974 }
1975 }
1976
1977 if (err == -ERANGE)
1978 err = -EFBIG;
1979 else
1980 err = -EIO;
1981 return err;
1982 }
1983 if (!NInoAttr(ni))
1984 base_ni = ni;
1985 else
1986 base_ni = ni->ext.base_ntfs_ino;
1987
1988
1989
1990
1991 down_write(&ni->runlist.lock);
1992 m = map_mft_record(base_ni);
1993 if (IS_ERR(m)) {
1994 err = PTR_ERR(m);
1995 m = NULL;
1996 ctx = NULL;
1997 goto err_out;
1998 }
1999 ctx = ntfs_attr_get_search_ctx(base_ni, m);
2000 if (unlikely(!ctx)) {
2001 err = -ENOMEM;
2002 goto err_out;
2003 }
2004 read_lock_irqsave(&ni->size_lock, flags);
2005 allocated_size = ni->allocated_size;
2006 read_unlock_irqrestore(&ni->size_lock, flags);
2007
2008
2009
2010
2011 vcn = NInoNonResident(ni) ? allocated_size >> vol->cluster_size_bits :
2012 0;
2013
2014
2015
2016
2017
2018
2019 if (unlikely(new_alloc_size <= allocated_size)) {
2020 ntfs_debug("Allocated size already exceeds requested size.");
2021 new_alloc_size = allocated_size;
2022 if (new_data_size < 0)
2023 goto done;
2024
2025
2026
2027
2028 vcn = 0;
2029 }
2030 err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
2031 CASE_SENSITIVE, vcn, NULL, 0, ctx);
2032 if (unlikely(err)) {
2033 if (err == -ENOENT)
2034 err = -EIO;
2035 goto err_out;
2036 }
2037 m = ctx->mrec;
2038 a = ctx->attr;
2039
2040 if (a->non_resident)
2041 goto do_non_resident_extend;
2042 BUG_ON(NInoNonResident(ni));
2043
2044 attr_len = le32_to_cpu(a->data.resident.value_length);
2045
2046
2047
2048
2049
2050 if (new_alloc_size < vol->mft_record_size &&
2051 !ntfs_attr_record_resize(m, a,
2052 le16_to_cpu(a->data.resident.value_offset) +
2053 new_alloc_size)) {
2054
2055 write_lock_irqsave(&ni->size_lock, flags);
2056 ni->allocated_size = le32_to_cpu(a->length) -
2057 le16_to_cpu(a->data.resident.value_offset);
2058 write_unlock_irqrestore(&ni->size_lock, flags);
2059 if (new_data_size >= 0) {
2060 BUG_ON(new_data_size < attr_len);
2061 a->data.resident.value_length =
2062 cpu_to_le32((u32)new_data_size);
2063 }
2064 goto flush_done;
2065 }
2066
2067
2068
2069
2070
2071
2072
2073
2074 ntfs_attr_put_search_ctx(ctx);
2075 unmap_mft_record(base_ni);
2076 up_write(&ni->runlist.lock);
2077
2078
2079
2080
2081 err = ntfs_attr_make_non_resident(ni, attr_len);
2082 if (likely(!err))
2083 goto retry_extend;
2084
2085
2086
2087
2088
2089 if (unlikely(err != -EPERM && err != -ENOSPC)) {
2090
2091 read_lock_irqsave(&ni->size_lock, flags);
2092 allocated_size = ni->allocated_size;
2093 read_unlock_irqrestore(&ni->size_lock, flags);
2094 if (start < 0 || start >= allocated_size)
2095 ntfs_error(vol->sb, "Cannot extend allocation of "
2096 "inode 0x%lx, attribute type 0x%x, "
2097 "because the conversion from resident "
2098 "to non-resident attribute failed "
2099 "with error code %i.", vi->i_ino,
2100 (unsigned)le32_to_cpu(ni->type), err);
2101 if (err != -ENOMEM)
2102 err = -EIO;
2103 goto conv_err_out;
2104 }
2105
2106 read_lock_irqsave(&ni->size_lock, flags);
2107 allocated_size = ni->allocated_size;
2108 read_unlock_irqrestore(&ni->size_lock, flags);
2109 if (start < 0 || start >= allocated_size) {
2110 if (err == -ENOSPC)
2111 ntfs_error(vol->sb, "Not enough space in the mft "
2112 "record/on disk for the non-resident "
2113 "attribute value. This case is not "
2114 "implemented yet.");
2115 else
2116 ntfs_error(vol->sb, "This attribute type may not be "
2117 "non-resident. This case is not "
2118 "implemented yet.");
2119 }
2120 err = -EOPNOTSUPP;
2121 goto conv_err_out;
2122#if 0
2123
2124 if (!err)
2125 goto do_resident_extend;
2126
2127
2128
2129
2130
2131
2132 if (ni->type == AT_ATTRIBUTE_LIST ||
2133 ni->type == AT_STANDARD_INFORMATION) {
2134
2135
2136 err = -EOPNOTSUPP;
2137 if (!err)
2138 goto do_resident_extend;
2139 goto err_out;
2140 }
2141
2142
2143
2144 err = -EOPNOTSUPP;
2145 if (!err)
2146 goto do_resident_extend;
2147
2148 goto err_out;
2149#endif
2150do_non_resident_extend:
2151 BUG_ON(!NInoNonResident(ni));
2152 if (new_alloc_size == allocated_size) {
2153 BUG_ON(vcn);
2154 goto alloc_done;
2155 }
2156
2157
2158
2159
2160
2161
2162
2163
2164 if ((start >= 0 && start <= allocated_size) || ni->type != AT_DATA ||
2165 !NVolSparseEnabled(vol) || NInoSparseDisabled(ni))
2166 goto skip_sparse;
2167
2168
2169 ntfs_debug("Inserting holes is not-implemented yet. Falling back to "
2170 "allocating real clusters instead.");
2171skip_sparse:
2172 rl = ni->runlist.rl;
2173 if (likely(rl)) {
2174
2175 while (rl->length)
2176 rl++;
2177 }
2178
2179 if (unlikely(!rl || rl->lcn == LCN_RL_NOT_MAPPED ||
2180 (rl->lcn == LCN_ENOENT && rl > ni->runlist.rl &&
2181 (rl-1)->lcn == LCN_RL_NOT_MAPPED))) {
2182 if (!rl && !allocated_size)
2183 goto first_alloc;
2184 rl = ntfs_mapping_pairs_decompress(vol, a, ni->runlist.rl);
2185 if (IS_ERR(rl)) {
2186 err = PTR_ERR(rl);
2187 if (start < 0 || start >= allocated_size)
2188 ntfs_error(vol->sb, "Cannot extend allocation "
2189 "of inode 0x%lx, attribute "
2190 "type 0x%x, because the "
2191 "mapping of a runlist "
2192 "fragment failed with error "
2193 "code %i.", vi->i_ino,
2194 (unsigned)le32_to_cpu(ni->type),
2195 err);
2196 if (err != -ENOMEM)
2197 err = -EIO;
2198 goto err_out;
2199 }
2200 ni->runlist.rl = rl;
2201
2202 while (rl->length)
2203 rl++;
2204 }
2205
2206
2207
2208
2209
2210
2211
2212
2213 while (rl->lcn < 0 && rl > ni->runlist.rl)
2214 rl--;
2215first_alloc:
2216
2217
2218
2219 rl2 = ntfs_cluster_alloc(vol, allocated_size >> vol->cluster_size_bits,
2220 (new_alloc_size - allocated_size) >>
2221 vol->cluster_size_bits, (rl && (rl->lcn >= 0)) ?
2222 rl->lcn + rl->length : -1, DATA_ZONE, true);
2223 if (IS_ERR(rl2)) {
2224 err = PTR_ERR(rl2);
2225 if (start < 0 || start >= allocated_size)
2226 ntfs_error(vol->sb, "Cannot extend allocation of "
2227 "inode 0x%lx, attribute type 0x%x, "
2228 "because the allocation of clusters "
2229 "failed with error code %i.", vi->i_ino,
2230 (unsigned)le32_to_cpu(ni->type), err);
2231 if (err != -ENOMEM && err != -ENOSPC)
2232 err = -EIO;
2233 goto err_out;
2234 }
2235 rl = ntfs_runlists_merge(ni->runlist.rl, rl2);
2236 if (IS_ERR(rl)) {
2237 err = PTR_ERR(rl);
2238 if (start < 0 || start >= allocated_size)
2239 ntfs_error(vol->sb, "Cannot extend allocation of "
2240 "inode 0x%lx, attribute type 0x%x, "
2241 "because the runlist merge failed "
2242 "with error code %i.", vi->i_ino,
2243 (unsigned)le32_to_cpu(ni->type), err);
2244 if (err != -ENOMEM)
2245 err = -EIO;
2246 if (ntfs_cluster_free_from_rl(vol, rl2)) {
2247 ntfs_error(vol->sb, "Failed to release allocated "
2248 "cluster(s) in error code path. Run "
2249 "chkdsk to recover the lost "
2250 "cluster(s).");
2251 NVolSetErrors(vol);
2252 }
2253 ntfs_free(rl2);
2254 goto err_out;
2255 }
2256 ni->runlist.rl = rl;
2257 ntfs_debug("Allocated 0x%llx clusters.", (long long)(new_alloc_size -
2258 allocated_size) >> vol->cluster_size_bits);
2259
2260 ll = sle64_to_cpu(a->data.non_resident.lowest_vcn);
2261 rl2 = ntfs_rl_find_vcn_nolock(rl, ll);
2262 BUG_ON(!rl2);
2263 BUG_ON(!rl2->length);
2264 BUG_ON(rl2->lcn < LCN_HOLE);
2265 mp_rebuilt = false;
2266
2267 mp_size = ntfs_get_size_for_mapping_pairs(vol, rl2, ll, -1);
2268 if (unlikely(mp_size <= 0)) {
2269 err = mp_size;
2270 if (start < 0 || start >= allocated_size)
2271 ntfs_error(vol->sb, "Cannot extend allocation of "
2272 "inode 0x%lx, attribute type 0x%x, "
2273 "because determining the size for the "
2274 "mapping pairs failed with error code "
2275 "%i.", vi->i_ino,
2276 (unsigned)le32_to_cpu(ni->type), err);
2277 err = -EIO;
2278 goto undo_alloc;
2279 }
2280
2281 attr_len = le32_to_cpu(a->length);
2282 err = ntfs_attr_record_resize(m, a, mp_size +
2283 le16_to_cpu(a->data.non_resident.mapping_pairs_offset));
2284 if (unlikely(err)) {
2285 BUG_ON(err != -ENOSPC);
2286
2287
2288
2289
2290
2291
2292 if (start < 0 || start >= allocated_size)
2293 ntfs_error(vol->sb, "Not enough space in the mft "
2294 "record for the extended attribute "
2295 "record. This case is not "
2296 "implemented yet.");
2297 err = -EOPNOTSUPP;
2298 goto undo_alloc;
2299 }
2300 mp_rebuilt = true;
2301
2302 err = ntfs_mapping_pairs_build(vol, (u8*)a +
2303 le16_to_cpu(a->data.non_resident.mapping_pairs_offset),
2304 mp_size, rl2, ll, -1, NULL);
2305 if (unlikely(err)) {
2306 if (start < 0 || start >= allocated_size)
2307 ntfs_error(vol->sb, "Cannot extend allocation of "
2308 "inode 0x%lx, attribute type 0x%x, "
2309 "because building the mapping pairs "
2310 "failed with error code %i.", vi->i_ino,
2311 (unsigned)le32_to_cpu(ni->type), err);
2312 err = -EIO;
2313 goto undo_alloc;
2314 }
2315
2316 a->data.non_resident.highest_vcn = cpu_to_sle64((new_alloc_size >>
2317 vol->cluster_size_bits) - 1);
2318
2319
2320
2321
2322 if (a->data.non_resident.lowest_vcn) {
2323
2324
2325
2326
2327 flush_dcache_mft_record_page(ctx->ntfs_ino);
2328 mark_mft_record_dirty(ctx->ntfs_ino);
2329 ntfs_attr_reinit_search_ctx(ctx);
2330 err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
2331 CASE_SENSITIVE, 0, NULL, 0, ctx);
2332 if (unlikely(err))
2333 goto restore_undo_alloc;
2334
2335 a = ctx->attr;
2336 }
2337 write_lock_irqsave(&ni->size_lock, flags);
2338 ni->allocated_size = new_alloc_size;
2339 a->data.non_resident.allocated_size = cpu_to_sle64(new_alloc_size);
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350 if (NInoSparse(ni) || NInoCompressed(ni)) {
2351 ni->itype.compressed.size += new_alloc_size - allocated_size;
2352 a->data.non_resident.compressed_size =
2353 cpu_to_sle64(ni->itype.compressed.size);
2354 vi->i_blocks = ni->itype.compressed.size >> 9;
2355 } else
2356 vi->i_blocks = new_alloc_size >> 9;
2357 write_unlock_irqrestore(&ni->size_lock, flags);
2358alloc_done:
2359 if (new_data_size >= 0) {
2360 BUG_ON(new_data_size <
2361 sle64_to_cpu(a->data.non_resident.data_size));
2362 a->data.non_resident.data_size = cpu_to_sle64(new_data_size);
2363 }
2364flush_done:
2365
2366 flush_dcache_mft_record_page(ctx->ntfs_ino);
2367 mark_mft_record_dirty(ctx->ntfs_ino);
2368done:
2369 ntfs_attr_put_search_ctx(ctx);
2370 unmap_mft_record(base_ni);
2371 up_write(&ni->runlist.lock);
2372 ntfs_debug("Done, new_allocated_size 0x%llx.",
2373 (unsigned long long)new_alloc_size);
2374 return new_alloc_size;
2375restore_undo_alloc:
2376 if (start < 0 || start >= allocated_size)
2377 ntfs_error(vol->sb, "Cannot complete extension of allocation "
2378 "of inode 0x%lx, attribute type 0x%x, because "
2379 "lookup of first attribute extent failed with "
2380 "error code %i.", vi->i_ino,
2381 (unsigned)le32_to_cpu(ni->type), err);
2382 if (err == -ENOENT)
2383 err = -EIO;
2384 ntfs_attr_reinit_search_ctx(ctx);
2385 if (ntfs_attr_lookup(ni->type, ni->name, ni->name_len, CASE_SENSITIVE,
2386 allocated_size >> vol->cluster_size_bits, NULL, 0,
2387 ctx)) {
2388 ntfs_error(vol->sb, "Failed to find last attribute extent of "
2389 "attribute in error code path. Run chkdsk to "
2390 "recover.");
2391 write_lock_irqsave(&ni->size_lock, flags);
2392 ni->allocated_size = new_alloc_size;
2393
2394
2395
2396
2397
2398 if (NInoSparse(ni) || NInoCompressed(ni)) {
2399 ni->itype.compressed.size += new_alloc_size -
2400 allocated_size;
2401 vi->i_blocks = ni->itype.compressed.size >> 9;
2402 } else
2403 vi->i_blocks = new_alloc_size >> 9;
2404 write_unlock_irqrestore(&ni->size_lock, flags);
2405 ntfs_attr_put_search_ctx(ctx);
2406 unmap_mft_record(base_ni);
2407 up_write(&ni->runlist.lock);
2408
2409
2410
2411
2412 NVolSetErrors(vol);
2413 return err;
2414 }
2415 ctx->attr->data.non_resident.highest_vcn = cpu_to_sle64(
2416 (allocated_size >> vol->cluster_size_bits) - 1);
2417undo_alloc:
2418 ll = allocated_size >> vol->cluster_size_bits;
2419 if (ntfs_cluster_free(ni, ll, -1, ctx) < 0) {
2420 ntfs_error(vol->sb, "Failed to release allocated cluster(s) "
2421 "in error code path. Run chkdsk to recover "
2422 "the lost cluster(s).");
2423 NVolSetErrors(vol);
2424 }
2425 m = ctx->mrec;
2426 a = ctx->attr;
2427
2428
2429
2430
2431
2432
2433 if (ntfs_rl_truncate_nolock(vol, &ni->runlist, ll) || IS_ERR(m)) {
2434 ntfs_error(vol->sb, "Failed to %s in error code path. Run "
2435 "chkdsk to recover.", IS_ERR(m) ?
2436 "restore attribute search context" :
2437 "truncate attribute runlist");
2438 NVolSetErrors(vol);
2439 } else if (mp_rebuilt) {
2440 if (ntfs_attr_record_resize(m, a, attr_len)) {
2441 ntfs_error(vol->sb, "Failed to restore attribute "
2442 "record in error code path. Run "
2443 "chkdsk to recover.");
2444 NVolSetErrors(vol);
2445 } else {
2446 if (ntfs_mapping_pairs_build(vol, (u8*)a + le16_to_cpu(
2447 a->data.non_resident.
2448 mapping_pairs_offset), attr_len -
2449 le16_to_cpu(a->data.non_resident.
2450 mapping_pairs_offset), rl2, ll, -1,
2451 NULL)) {
2452 ntfs_error(vol->sb, "Failed to restore "
2453 "mapping pairs array in error "
2454 "code path. Run chkdsk to "
2455 "recover.");
2456 NVolSetErrors(vol);
2457 }
2458 flush_dcache_mft_record_page(ctx->ntfs_ino);
2459 mark_mft_record_dirty(ctx->ntfs_ino);
2460 }
2461 }
2462err_out:
2463 if (ctx)
2464 ntfs_attr_put_search_ctx(ctx);
2465 if (m)
2466 unmap_mft_record(base_ni);
2467 up_write(&ni->runlist.lock);
2468conv_err_out:
2469 ntfs_debug("Failed. Returning error code %i.", err);
2470 return err;
2471}
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493int ntfs_attr_set(ntfs_inode *ni, const s64 ofs, const s64 cnt, const u8 val)
2494{
2495 ntfs_volume *vol = ni->vol;
2496 struct address_space *mapping;
2497 struct page *page;
2498 u8 *kaddr;
2499 pgoff_t idx, end;
2500 unsigned start_ofs, end_ofs, size;
2501
2502 ntfs_debug("Entering for ofs 0x%llx, cnt 0x%llx, val 0x%hx.",
2503 (long long)ofs, (long long)cnt, val);
2504 BUG_ON(ofs < 0);
2505 BUG_ON(cnt < 0);
2506 if (!cnt)
2507 goto done;
2508
2509
2510
2511
2512 BUG_ON(NInoCompressed(ni));
2513 BUG_ON(NInoEncrypted(ni));
2514 mapping = VFS_I(ni)->i_mapping;
2515
2516 idx = ofs >> PAGE_CACHE_SHIFT;
2517 start_ofs = ofs & ~PAGE_CACHE_MASK;
2518
2519 end = ofs + cnt;
2520 end_ofs = end & ~PAGE_CACHE_MASK;
2521
2522 if (unlikely(end > i_size_read(VFS_I(ni)))) {
2523 ntfs_error(vol->sb, "Request exceeds end of attribute.");
2524 return -ESPIPE;
2525 }
2526 end >>= PAGE_CACHE_SHIFT;
2527
2528 if (start_ofs) {
2529 page = read_mapping_page(mapping, idx, NULL);
2530 if (IS_ERR(page)) {
2531 ntfs_error(vol->sb, "Failed to read first partial "
2532 "page (error, index 0x%lx).", idx);
2533 return PTR_ERR(page);
2534 }
2535
2536
2537
2538
2539 size = PAGE_CACHE_SIZE;
2540 if (idx == end)
2541 size = end_ofs;
2542 kaddr = kmap_atomic(page);
2543 memset(kaddr + start_ofs, val, size - start_ofs);
2544 flush_dcache_page(page);
2545 kunmap_atomic(kaddr);
2546 set_page_dirty(page);
2547 page_cache_release(page);
2548 balance_dirty_pages_ratelimited(mapping);
2549 cond_resched();
2550 if (idx == end)
2551 goto done;
2552 idx++;
2553 }
2554
2555 for (; idx < end; idx++) {
2556
2557 page = grab_cache_page(mapping, idx);
2558 if (unlikely(!page)) {
2559 ntfs_error(vol->sb, "Insufficient memory to grab "
2560 "page (index 0x%lx).", idx);
2561 return -ENOMEM;
2562 }
2563 kaddr = kmap_atomic(page);
2564 memset(kaddr, val, PAGE_CACHE_SIZE);
2565 flush_dcache_page(page);
2566 kunmap_atomic(kaddr);
2567
2568
2569
2570
2571 if (page_has_buffers(page)) {
2572 struct buffer_head *bh, *head;
2573
2574 bh = head = page_buffers(page);
2575 do {
2576 set_buffer_uptodate(bh);
2577 } while ((bh = bh->b_this_page) != head);
2578 }
2579
2580 SetPageUptodate(page);
2581
2582
2583
2584
2585 set_page_dirty(page);
2586
2587 unlock_page(page);
2588 page_cache_release(page);
2589 balance_dirty_pages_ratelimited(mapping);
2590 cond_resched();
2591 }
2592
2593 if (end_ofs) {
2594 page = read_mapping_page(mapping, idx, NULL);
2595 if (IS_ERR(page)) {
2596 ntfs_error(vol->sb, "Failed to read last partial page "
2597 "(error, index 0x%lx).", idx);
2598 return PTR_ERR(page);
2599 }
2600 kaddr = kmap_atomic(page);
2601 memset(kaddr, val, end_ofs);
2602 flush_dcache_page(page);
2603 kunmap_atomic(kaddr);
2604 set_page_dirty(page);
2605 page_cache_release(page);
2606 balance_dirty_pages_ratelimited(mapping);
2607 cond_resched();
2608 }
2609done:
2610 ntfs_debug("Done.");
2611 return 0;
2612}
2613
2614#endif
2615