2 * attrib.c - NTFS attribute operations. Part of the Linux-NTFS project.
4 * Copyright (c) 2001-2005 Anton Altaparmakov
5 * Copyright (c) 2002 Richard Russon
7 * This program/include file is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program/include file is distributed in the hope that it will be
13 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program (in the main directory of the Linux-NTFS
19 * distribution in the file COPYING); if not, write to the Free Software
20 * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/buffer_head.h>
24 #include <linux/swap.h>
36 * ntfs_map_runlist_nolock - map (a part of) a runlist of an ntfs inode
37 * @ni: ntfs inode for which to map (part of) a runlist
38 * @vcn: map runlist part containing this vcn
40 * Map the part of a runlist containing the @vcn of the ntfs inode @ni.
42 * Return 0 on success and -errno on error. There is one special error code
43 * which is not an error as such. This is -ENOENT. It means that @vcn is out
44 * of bounds of the runlist.
46 * Locking: - The runlist must be locked for writing.
47 * - This function modifies the runlist.
49 int ntfs_map_runlist_nolock(ntfs_inode
*ni
, VCN vcn
)
55 ntfs_attr_search_ctx
*ctx
;
59 ntfs_debug("Mapping runlist part containing vcn 0x%llx.",
60 (unsigned long long)vcn
);
64 base_ni
= ni
->ext
.base_ntfs_ino
;
65 m
= map_mft_record(base_ni
);
68 ctx
= ntfs_attr_get_search_ctx(base_ni
, m
);
73 err
= ntfs_attr_lookup(ni
->type
, ni
->name
, ni
->name_len
,
74 CASE_SENSITIVE
, vcn
, NULL
, 0, ctx
);
82 * Only decompress the mapping pairs if @vcn is inside it. Otherwise
83 * we get into problems when we try to map an out of bounds vcn because
84 * we then try to map the already mapped runlist fragment and
85 * ntfs_mapping_pairs_decompress() fails.
87 end_vcn
= sle64_to_cpu(a
->data
.non_resident
.highest_vcn
) + 1;
88 if (unlikely(!a
->data
.non_resident
.lowest_vcn
&& end_vcn
<= 1))
89 end_vcn
= ni
->allocated_size
>> ni
->vol
->cluster_size_bits
;
90 if (unlikely(vcn
>= end_vcn
)) {
94 rl
= ntfs_mapping_pairs_decompress(ni
->vol
, a
, ni
->runlist
.rl
);
101 ntfs_attr_put_search_ctx(ctx
);
102 unmap_mft_record(base_ni
);
107 * ntfs_map_runlist - map (a part of) a runlist of an ntfs inode
108 * @ni: ntfs inode for which to map (part of) a runlist
109 * @vcn: map runlist part containing this vcn
111 * Map the part of a runlist containing the @vcn of the ntfs inode @ni.
113 * Return 0 on success and -errno on error. There is one special error code
114 * which is not an error as such. This is -ENOENT. It means that @vcn is out
115 * of bounds of the runlist.
117 * Locking: - The runlist must be unlocked on entry and is unlocked on return.
118 * - This function takes the runlist lock for writing and modifies the
121 int ntfs_map_runlist(ntfs_inode
*ni
, VCN vcn
)
125 down_write(&ni
->runlist
.lock
);
126 /* Make sure someone else didn't do the work while we were sleeping. */
127 if (likely(ntfs_rl_vcn_to_lcn(ni
->runlist
.rl
, vcn
) <=
129 err
= ntfs_map_runlist_nolock(ni
, vcn
);
130 up_write(&ni
->runlist
.lock
);
135 * ntfs_attr_vcn_to_lcn_nolock - convert a vcn into a lcn given an ntfs inode
136 * @ni: ntfs inode of the attribute whose runlist to search
137 * @vcn: vcn to convert
138 * @write_locked: true if the runlist is locked for writing
140 * Find the virtual cluster number @vcn in the runlist of the ntfs attribute
141 * described by the ntfs inode @ni and return the corresponding logical cluster
144 * If the @vcn is not mapped yet, the attempt is made to map the attribute
145 * extent containing the @vcn and the vcn to lcn conversion is retried.
147 * If @write_locked is true the caller has locked the runlist for writing and
148 * if false for reading.
150 * Since lcns must be >= 0, we use negative return codes with special meaning:
152 * Return code Meaning / Description
153 * ==========================================
154 * LCN_HOLE Hole / not allocated on disk.
155 * LCN_ENOENT There is no such vcn in the runlist, i.e. @vcn is out of bounds.
156 * LCN_ENOMEM Not enough memory to map runlist.
157 * LCN_EIO Critical error (runlist/file is corrupt, i/o error, etc).
159 * Locking: - The runlist must be locked on entry and is left locked on return.
160 * - If @write_locked is FALSE, i.e. the runlist is locked for reading,
161 * the lock may be dropped inside the function so you cannot rely on
162 * the runlist still being the same when this function returns.
164 LCN
ntfs_attr_vcn_to_lcn_nolock(ntfs_inode
*ni
, const VCN vcn
,
165 const BOOL write_locked
)
168 BOOL is_retry
= FALSE
;
170 ntfs_debug("Entering for i_ino 0x%lx, vcn 0x%llx, %s_locked.",
171 ni
->mft_no
, (unsigned long long)vcn
,
172 write_locked
? "write" : "read");
174 BUG_ON(!NInoNonResident(ni
));
177 /* Convert vcn to lcn. If that fails map the runlist and retry once. */
178 lcn
= ntfs_rl_vcn_to_lcn(ni
->runlist
.rl
, vcn
);
179 if (likely(lcn
>= LCN_HOLE
)) {
180 ntfs_debug("Done, lcn 0x%llx.", (long long)lcn
);
183 if (lcn
!= LCN_RL_NOT_MAPPED
) {
184 if (lcn
!= LCN_ENOENT
)
186 } else if (!is_retry
) {
190 up_read(&ni
->runlist
.lock
);
191 down_write(&ni
->runlist
.lock
);
192 if (unlikely(ntfs_rl_vcn_to_lcn(ni
->runlist
.rl
, vcn
) !=
193 LCN_RL_NOT_MAPPED
)) {
194 up_write(&ni
->runlist
.lock
);
195 down_read(&ni
->runlist
.lock
);
199 err
= ntfs_map_runlist_nolock(ni
, vcn
);
201 up_write(&ni
->runlist
.lock
);
202 down_read(&ni
->runlist
.lock
);
210 else if (err
== -ENOMEM
)
215 if (lcn
!= LCN_ENOENT
)
216 ntfs_error(ni
->vol
->sb
, "Failed with error code %lli.",
222 * ntfs_attr_find_vcn_nolock - find a vcn in the runlist of an ntfs inode
223 * @ni: ntfs inode describing the runlist to search
225 * @write_locked: true if the runlist is locked for writing
227 * Find the virtual cluster number @vcn in the runlist described by the ntfs
228 * inode @ni and return the address of the runlist element containing the @vcn.
230 * If the @vcn is not mapped yet, the attempt is made to map the attribute
231 * extent containing the @vcn and the vcn to lcn conversion is retried.
233 * If @write_locked is true the caller has locked the runlist for writing and
234 * if false for reading.
236 * Note you need to distinguish between the lcn of the returned runlist element
237 * being >= 0 and LCN_HOLE. In the later case you have to return zeroes on
238 * read and allocate clusters on write.
240 * Return the runlist element containing the @vcn on success and
241 * ERR_PTR(-errno) on error. You need to test the return value with IS_ERR()
242 * to decide if the return is success or failure and PTR_ERR() to get to the
243 * error code if IS_ERR() is true.
245 * The possible error return codes are:
246 * -ENOENT - No such vcn in the runlist, i.e. @vcn is out of bounds.
247 * -ENOMEM - Not enough memory to map runlist.
248 * -EIO - Critical error (runlist/file is corrupt, i/o error, etc).
250 * Locking: - The runlist must be locked on entry and is left locked on return.
251 * - If @write_locked is FALSE, i.e. the runlist is locked for reading,
252 * the lock may be dropped inside the function so you cannot rely on
253 * the runlist still being the same when this function returns.
255 runlist_element
*ntfs_attr_find_vcn_nolock(ntfs_inode
*ni
, const VCN vcn
,
256 const BOOL write_locked
)
260 BOOL is_retry
= FALSE
;
262 ntfs_debug("Entering for i_ino 0x%lx, vcn 0x%llx, %s_locked.",
263 ni
->mft_no
, (unsigned long long)vcn
,
264 write_locked
? "write" : "read");
266 BUG_ON(!NInoNonResident(ni
));
270 if (likely(rl
&& vcn
>= rl
[0].vcn
)) {
271 while (likely(rl
->length
)) {
272 if (unlikely(vcn
< rl
[1].vcn
)) {
273 if (likely(rl
->lcn
>= LCN_HOLE
)) {
281 if (likely(rl
->lcn
!= LCN_RL_NOT_MAPPED
)) {
282 if (likely(rl
->lcn
== LCN_ENOENT
))
288 if (!err
&& !is_retry
) {
290 * The @vcn is in an unmapped region, map the runlist and
294 up_read(&ni
->runlist
.lock
);
295 down_write(&ni
->runlist
.lock
);
296 if (unlikely(ntfs_rl_vcn_to_lcn(ni
->runlist
.rl
, vcn
) !=
297 LCN_RL_NOT_MAPPED
)) {
298 up_write(&ni
->runlist
.lock
);
299 down_read(&ni
->runlist
.lock
);
303 err
= ntfs_map_runlist_nolock(ni
, vcn
);
305 up_write(&ni
->runlist
.lock
);
306 down_read(&ni
->runlist
.lock
);
313 * -EINVAL coming from a failed mapping attempt is equivalent
314 * to i/o error for us as it should not happen in our code
322 ntfs_error(ni
->vol
->sb
, "Failed with error code %i.", err
);
327 * ntfs_attr_find - find (next) attribute in mft record
328 * @type: attribute type to find
329 * @name: attribute name to find (optional, i.e. NULL means don't care)
330 * @name_len: attribute name length (only needed if @name present)
331 * @ic: IGNORE_CASE or CASE_SENSITIVE (ignored if @name not present)
332 * @val: attribute value to find (optional, resident attributes only)
333 * @val_len: attribute value length
334 * @ctx: search context with mft record and attribute to search from
336 * You should not need to call this function directly. Use ntfs_attr_lookup()
339 * ntfs_attr_find() takes a search context @ctx as parameter and searches the
340 * mft record specified by @ctx->mrec, beginning at @ctx->attr, for an
341 * attribute of @type, optionally @name and @val.
343 * If the attribute is found, ntfs_attr_find() returns 0 and @ctx->attr will
344 * point to the found attribute.
346 * If the attribute is not found, ntfs_attr_find() returns -ENOENT and
347 * @ctx->attr will point to the attribute before which the attribute being
348 * searched for would need to be inserted if such an action were to be desired.
350 * On actual error, ntfs_attr_find() returns -EIO. In this case @ctx->attr is
351 * undefined and in particular do not rely on it not changing.
353 * If @ctx->is_first is TRUE, the search begins with @ctx->attr itself. If it
354 * is FALSE, the search begins after @ctx->attr.
356 * If @ic is IGNORE_CASE, the @name comparisson is not case sensitive and
357 * @ctx->ntfs_ino must be set to the ntfs inode to which the mft record
358 * @ctx->mrec belongs. This is so we can get at the ntfs volume and hence at
359 * the upcase table. If @ic is CASE_SENSITIVE, the comparison is case
360 * sensitive. When @name is present, @name_len is the @name length in Unicode
363 * If @name is not present (NULL), we assume that the unnamed attribute is
364 * being searched for.
366 * Finally, the resident attribute value @val is looked for, if present. If
367 * @val is not present (NULL), @val_len is ignored.
369 * ntfs_attr_find() only searches the specified mft record and it ignores the
370 * presence of an attribute list attribute (unless it is the one being searched
371 * for, obviously). If you need to take attribute lists into consideration,
372 * use ntfs_attr_lookup() instead (see below). This also means that you cannot
373 * use ntfs_attr_find() to search for extent records of non-resident
374 * attributes, as extents with lowest_vcn != 0 are usually described by the
375 * attribute list attribute only. - Note that it is possible that the first
376 * extent is only in the attribute list while the last extent is in the base
377 * mft record, so do not rely on being able to find the first extent in the
380 * Warning: Never use @val when looking for attribute types which can be
381 * non-resident as this most likely will result in a crash!
383 static int ntfs_attr_find(const ATTR_TYPE type
, const ntfschar
*name
,
384 const u32 name_len
, const IGNORE_CASE_BOOL ic
,
385 const u8
*val
, const u32 val_len
, ntfs_attr_search_ctx
*ctx
)
388 ntfs_volume
*vol
= ctx
->ntfs_ino
->vol
;
389 ntfschar
*upcase
= vol
->upcase
;
390 u32 upcase_len
= vol
->upcase_len
;
393 * Iterate over attributes in mft record starting at @ctx->attr, or the
394 * attribute following that, if @ctx->is_first is TRUE.
398 ctx
->is_first
= FALSE
;
400 a
= (ATTR_RECORD
*)((u8
*)ctx
->attr
+
401 le32_to_cpu(ctx
->attr
->length
));
402 for (;; a
= (ATTR_RECORD
*)((u8
*)a
+ le32_to_cpu(a
->length
))) {
403 if ((u8
*)a
< (u8
*)ctx
->mrec
|| (u8
*)a
> (u8
*)ctx
->mrec
+
404 le32_to_cpu(ctx
->mrec
->bytes_allocated
))
407 if (unlikely(le32_to_cpu(a
->type
) > le32_to_cpu(type
) ||
410 if (unlikely(!a
->length
))
415 * If @name is present, compare the two names. If @name is
416 * missing, assume we want an unnamed attribute.
419 /* The search failed if the found attribute is named. */
422 } else if (!ntfs_are_names_equal(name
, name_len
,
423 (ntfschar
*)((u8
*)a
+ le16_to_cpu(a
->name_offset
)),
424 a
->name_length
, ic
, upcase
, upcase_len
)) {
427 rc
= ntfs_collate_names(name
, name_len
,
429 le16_to_cpu(a
->name_offset
)),
430 a
->name_length
, 1, IGNORE_CASE
,
433 * If @name collates before a->name, there is no
434 * matching attribute.
438 /* If the strings are not equal, continue search. */
441 rc
= ntfs_collate_names(name
, name_len
,
443 le16_to_cpu(a
->name_offset
)),
444 a
->name_length
, 1, CASE_SENSITIVE
,
452 * The names match or @name not present and attribute is
453 * unnamed. If no @val specified, we have found the attribute
458 /* @val is present; compare values. */
462 rc
= memcmp(val
, (u8
*)a
+ le16_to_cpu(
463 a
->data
.resident
.value_offset
),
464 min_t(u32
, val_len
, le32_to_cpu(
465 a
->data
.resident
.value_length
)));
467 * If @val collates before the current attribute's
468 * value, there is no matching attribute.
474 a
->data
.resident
.value_length
);
483 ntfs_error(vol
->sb
, "Inode is corrupt. Run chkdsk.");
489 * load_attribute_list - load an attribute list into memory
490 * @vol: ntfs volume from which to read
491 * @runlist: runlist of the attribute list
492 * @al_start: destination buffer
493 * @size: size of the destination buffer in bytes
494 * @initialized_size: initialized size of the attribute list
496 * Walk the runlist @runlist and load all clusters from it copying them into
497 * the linear buffer @al. The maximum number of bytes copied to @al is @size
498 * bytes. Note, @size does not need to be a multiple of the cluster size. If
499 * @initialized_size is less than @size, the region in @al between
500 * @initialized_size and @size will be zeroed and not read from disk.
502 * Return 0 on success or -errno on error.
504 int load_attribute_list(ntfs_volume
*vol
, runlist
*runlist
, u8
*al_start
,
505 const s64 size
, const s64 initialized_size
)
509 u8
*al_end
= al
+ initialized_size
;
511 struct buffer_head
*bh
;
512 struct super_block
*sb
;
513 unsigned long block_size
;
514 unsigned long block
, max_block
;
516 unsigned char block_size_bits
;
518 ntfs_debug("Entering.");
519 if (!vol
|| !runlist
|| !al
|| size
<= 0 || initialized_size
< 0 ||
520 initialized_size
> size
)
522 if (!initialized_size
) {
527 block_size
= sb
->s_blocksize
;
528 block_size_bits
= sb
->s_blocksize_bits
;
529 down_read(&runlist
->lock
);
531 /* Read all clusters specified by the runlist one run at a time. */
533 lcn
= ntfs_rl_vcn_to_lcn(rl
, rl
->vcn
);
534 ntfs_debug("Reading vcn = 0x%llx, lcn = 0x%llx.",
535 (unsigned long long)rl
->vcn
,
536 (unsigned long long)lcn
);
537 /* The attribute list cannot be sparse. */
539 ntfs_error(sb
, "ntfs_rl_vcn_to_lcn() failed. Cannot "
540 "read attribute list.");
543 block
= lcn
<< vol
->cluster_size_bits
>> block_size_bits
;
544 /* Read the run from device in chunks of block_size bytes. */
545 max_block
= block
+ (rl
->length
<< vol
->cluster_size_bits
>>
547 ntfs_debug("max_block = 0x%lx.", max_block
);
549 ntfs_debug("Reading block = 0x%lx.", block
);
550 bh
= sb_bread(sb
, block
);
552 ntfs_error(sb
, "sb_bread() failed. Cannot "
553 "read attribute list.");
556 if (al
+ block_size
>= al_end
)
558 memcpy(al
, bh
->b_data
, block_size
);
561 } while (++block
< max_block
);
564 if (initialized_size
< size
) {
566 memset(al_start
+ initialized_size
, 0, size
- initialized_size
);
569 up_read(&runlist
->lock
);
576 * Note: The attribute list can be smaller than its allocation
577 * by multiple clusters. This has been encountered by at least
578 * two people running Windows XP, thus we cannot do any
579 * truncation sanity checking here. (AIA)
581 memcpy(al
, bh
->b_data
, al_end
- al
);
583 if (initialized_size
< size
)
589 ntfs_error(sb
, "Attribute list buffer overflow. Read attribute list "
597 * ntfs_external_attr_find - find an attribute in the attribute list of an inode
598 * @type: attribute type to find
599 * @name: attribute name to find (optional, i.e. NULL means don't care)
600 * @name_len: attribute name length (only needed if @name present)
601 * @ic: IGNORE_CASE or CASE_SENSITIVE (ignored if @name not present)
602 * @lowest_vcn: lowest vcn to find (optional, non-resident attributes only)
603 * @val: attribute value to find (optional, resident attributes only)
604 * @val_len: attribute value length
605 * @ctx: search context with mft record and attribute to search from
607 * You should not need to call this function directly. Use ntfs_attr_lookup()
610 * Find an attribute by searching the attribute list for the corresponding
611 * attribute list entry. Having found the entry, map the mft record if the
612 * attribute is in a different mft record/inode, ntfs_attr_find() the attribute
613 * in there and return it.
615 * On first search @ctx->ntfs_ino must be the base mft record and @ctx must
616 * have been obtained from a call to ntfs_attr_get_search_ctx(). On subsequent
617 * calls @ctx->ntfs_ino can be any extent inode, too (@ctx->base_ntfs_ino is
618 * then the base inode).
620 * After finishing with the attribute/mft record you need to call
621 * ntfs_attr_put_search_ctx() to cleanup the search context (unmapping any
622 * mapped inodes, etc).
624 * If the attribute is found, ntfs_external_attr_find() returns 0 and
625 * @ctx->attr will point to the found attribute. @ctx->mrec will point to the
626 * mft record in which @ctx->attr is located and @ctx->al_entry will point to
627 * the attribute list entry for the attribute.
629 * If the attribute is not found, ntfs_external_attr_find() returns -ENOENT and
630 * @ctx->attr will point to the attribute in the base mft record before which
631 * the attribute being searched for would need to be inserted if such an action
632 * were to be desired. @ctx->mrec will point to the mft record in which
633 * @ctx->attr is located and @ctx->al_entry will point to the attribute list
634 * entry of the attribute before which the attribute being searched for would
635 * need to be inserted if such an action were to be desired.
637 * Thus to insert the not found attribute, one wants to add the attribute to
638 * @ctx->mrec (the base mft record) and if there is not enough space, the
639 * attribute should be placed in a newly allocated extent mft record. The
640 * attribute list entry for the inserted attribute should be inserted in the
641 * attribute list attribute at @ctx->al_entry.
643 * On actual error, ntfs_external_attr_find() returns -EIO. In this case
644 * @ctx->attr is undefined and in particular do not rely on it not changing.
646 static int ntfs_external_attr_find(const ATTR_TYPE type
,
647 const ntfschar
*name
, const u32 name_len
,
648 const IGNORE_CASE_BOOL ic
, const VCN lowest_vcn
,
649 const u8
*val
, const u32 val_len
, ntfs_attr_search_ctx
*ctx
)
651 ntfs_inode
*base_ni
, *ni
;
653 ATTR_LIST_ENTRY
*al_entry
, *next_al_entry
;
654 u8
*al_start
, *al_end
;
659 static const char *es
= " Unmount and run chkdsk.";
662 base_ni
= ctx
->base_ntfs_ino
;
663 ntfs_debug("Entering for inode 0x%lx, type 0x%x.", ni
->mft_no
, type
);
665 /* First call happens with the base mft record. */
666 base_ni
= ctx
->base_ntfs_ino
= ctx
->ntfs_ino
;
667 ctx
->base_mrec
= ctx
->mrec
;
670 ctx
->base_attr
= ctx
->attr
;
674 al_start
= base_ni
->attr_list
;
675 al_end
= al_start
+ base_ni
->attr_list_size
;
677 ctx
->al_entry
= (ATTR_LIST_ENTRY
*)al_start
;
679 * Iterate over entries in attribute list starting at @ctx->al_entry,
680 * or the entry following that, if @ctx->is_first is TRUE.
683 al_entry
= ctx
->al_entry
;
684 ctx
->is_first
= FALSE
;
686 al_entry
= (ATTR_LIST_ENTRY
*)((u8
*)ctx
->al_entry
+
687 le16_to_cpu(ctx
->al_entry
->length
));
688 for (;; al_entry
= next_al_entry
) {
689 /* Out of bounds check. */
690 if ((u8
*)al_entry
< base_ni
->attr_list
||
691 (u8
*)al_entry
> al_end
)
692 break; /* Inode is corrupt. */
693 ctx
->al_entry
= al_entry
;
694 /* Catch the end of the attribute list. */
695 if ((u8
*)al_entry
== al_end
)
697 if (!al_entry
->length
)
699 if ((u8
*)al_entry
+ 6 > al_end
|| (u8
*)al_entry
+
700 le16_to_cpu(al_entry
->length
) > al_end
)
702 next_al_entry
= (ATTR_LIST_ENTRY
*)((u8
*)al_entry
+
703 le16_to_cpu(al_entry
->length
));
704 if (le32_to_cpu(al_entry
->type
) > le32_to_cpu(type
))
706 if (type
!= al_entry
->type
)
709 * If @name is present, compare the two names. If @name is
710 * missing, assume we want an unnamed attribute.
712 al_name_len
= al_entry
->name_length
;
713 al_name
= (ntfschar
*)((u8
*)al_entry
+ al_entry
->name_offset
);
717 } else if (!ntfs_are_names_equal(al_name
, al_name_len
, name
,
718 name_len
, ic
, vol
->upcase
, vol
->upcase_len
)) {
721 rc
= ntfs_collate_names(name
, name_len
, al_name
,
722 al_name_len
, 1, IGNORE_CASE
,
723 vol
->upcase
, vol
->upcase_len
);
725 * If @name collates before al_name, there is no
726 * matching attribute.
730 /* If the strings are not equal, continue search. */
734 * FIXME: Reverse engineering showed 0, IGNORE_CASE but
735 * that is inconsistent with ntfs_attr_find(). The
736 * subsequent rc checks were also different. Perhaps I
737 * made a mistake in one of the two. Need to recheck
738 * which is correct or at least see what is going on...
741 rc
= ntfs_collate_names(name
, name_len
, al_name
,
742 al_name_len
, 1, CASE_SENSITIVE
,
743 vol
->upcase
, vol
->upcase_len
);
750 * The names match or @name not present and attribute is
751 * unnamed. Now check @lowest_vcn. Continue search if the
752 * next attribute list entry still fits @lowest_vcn. Otherwise
753 * we have reached the right one or the search has failed.
755 if (lowest_vcn
&& (u8
*)next_al_entry
>= al_start
&&
756 (u8
*)next_al_entry
+ 6 < al_end
&&
757 (u8
*)next_al_entry
+ le16_to_cpu(
758 next_al_entry
->length
) <= al_end
&&
759 sle64_to_cpu(next_al_entry
->lowest_vcn
) <=
761 next_al_entry
->type
== al_entry
->type
&&
762 next_al_entry
->name_length
== al_name_len
&&
763 ntfs_are_names_equal((ntfschar
*)((u8
*)
765 next_al_entry
->name_offset
),
766 next_al_entry
->name_length
,
767 al_name
, al_name_len
, CASE_SENSITIVE
,
768 vol
->upcase
, vol
->upcase_len
))
770 if (MREF_LE(al_entry
->mft_reference
) == ni
->mft_no
) {
771 if (MSEQNO_LE(al_entry
->mft_reference
) != ni
->seq_no
) {
772 ntfs_error(vol
->sb
, "Found stale mft "
773 "reference in attribute list "
774 "of base inode 0x%lx.%s",
775 base_ni
->mft_no
, es
);
779 } else { /* Mft references do not match. */
780 /* If there is a mapped record unmap it first. */
782 unmap_extent_mft_record(ni
);
783 /* Do we want the base record back? */
784 if (MREF_LE(al_entry
->mft_reference
) ==
786 ni
= ctx
->ntfs_ino
= base_ni
;
787 ctx
->mrec
= ctx
->base_mrec
;
789 /* We want an extent record. */
790 ctx
->mrec
= map_extent_mft_record(base_ni
,
792 al_entry
->mft_reference
), &ni
);
793 if (IS_ERR(ctx
->mrec
)) {
794 ntfs_error(vol
->sb
, "Failed to map "
796 "0x%lx of base inode "
800 base_ni
->mft_no
, es
);
801 err
= PTR_ERR(ctx
->mrec
);
804 /* Cause @ctx to be sanitized below. */
810 ctx
->attr
= (ATTR_RECORD
*)((u8
*)ctx
->mrec
+
811 le16_to_cpu(ctx
->mrec
->attrs_offset
));
814 * ctx->vfs_ino, ctx->mrec, and ctx->attr now point to the
815 * mft record containing the attribute represented by the
819 * We could call into ntfs_attr_find() to find the right
820 * attribute in this mft record but this would be less
821 * efficient and not quite accurate as ntfs_attr_find() ignores
822 * the attribute instance numbers for example which become
823 * important when one plays with attribute lists. Also,
824 * because a proper match has been found in the attribute list
825 * entry above, the comparison can now be optimized. So it is
826 * worth re-implementing a simplified ntfs_attr_find() here.
830 * Use a manual loop so we can still use break and continue
831 * with the same meanings as above.
834 if ((u8
*)a
< (u8
*)ctx
->mrec
|| (u8
*)a
> (u8
*)ctx
->mrec
+
835 le32_to_cpu(ctx
->mrec
->bytes_allocated
))
837 if (a
->type
== AT_END
)
841 if (al_entry
->instance
!= a
->instance
)
844 * If the type and/or the name are mismatched between the
845 * attribute list entry and the attribute record, there is
846 * corruption so we break and return error EIO.
848 if (al_entry
->type
!= a
->type
)
850 if (!ntfs_are_names_equal((ntfschar
*)((u8
*)a
+
851 le16_to_cpu(a
->name_offset
)), a
->name_length
,
852 al_name
, al_name_len
, CASE_SENSITIVE
,
853 vol
->upcase
, vol
->upcase_len
))
857 * If no @val specified or @val specified and it matches, we
860 if (!val
|| (!a
->non_resident
&& le32_to_cpu(
861 a
->data
.resident
.value_length
) == val_len
&&
863 le16_to_cpu(a
->data
.resident
.value_offset
),
865 ntfs_debug("Done, found.");
869 /* Proceed to the next attribute in the current mft record. */
870 a
= (ATTR_RECORD
*)((u8
*)a
+ le32_to_cpu(a
->length
));
871 goto do_next_attr_loop
;
874 ntfs_error(vol
->sb
, "Base inode 0x%lx contains corrupt "
875 "attribute list attribute.%s", base_ni
->mft_no
,
881 unmap_extent_mft_record(ni
);
882 ctx
->ntfs_ino
= base_ni
;
883 ctx
->mrec
= ctx
->base_mrec
;
884 ctx
->attr
= ctx
->base_attr
;
891 * If we were looking for AT_END, we reset the search context @ctx and
892 * use ntfs_attr_find() to seek to the end of the base mft record.
894 if (type
== AT_END
) {
895 ntfs_attr_reinit_search_ctx(ctx
);
896 return ntfs_attr_find(AT_END
, name
, name_len
, ic
, val
, val_len
,
900 * The attribute was not found. Before we return, we want to ensure
901 * @ctx->mrec and @ctx->attr indicate the position at which the
902 * attribute should be inserted in the base mft record. Since we also
903 * want to preserve @ctx->al_entry we cannot reinitialize the search
904 * context using ntfs_attr_reinit_search_ctx() as this would set
905 * @ctx->al_entry to NULL. Thus we do the necessary bits manually (see
906 * ntfs_attr_init_search_ctx() below). Note, we _only_ preserve
907 * @ctx->al_entry as the remaining fields (base_*) are identical to
908 * their non base_ counterparts and we cannot set @ctx->base_attr
909 * correctly yet as we do not know what @ctx->attr will be set to by
910 * the call to ntfs_attr_find() below.
913 unmap_extent_mft_record(ni
);
914 ctx
->mrec
= ctx
->base_mrec
;
915 ctx
->attr
= (ATTR_RECORD
*)((u8
*)ctx
->mrec
+
916 le16_to_cpu(ctx
->mrec
->attrs_offset
));
917 ctx
->is_first
= TRUE
;
918 ctx
->ntfs_ino
= base_ni
;
919 ctx
->base_ntfs_ino
= NULL
;
920 ctx
->base_mrec
= NULL
;
921 ctx
->base_attr
= NULL
;
923 * In case there are multiple matches in the base mft record, need to
924 * keep enumerating until we get an attribute not found response (or
925 * another error), otherwise we would keep returning the same attribute
926 * over and over again and all programs using us for enumeration would
927 * lock up in a tight loop.
930 err
= ntfs_attr_find(type
, name
, name_len
, ic
, val
, val_len
,
933 ntfs_debug("Done, not found.");
938 * ntfs_attr_lookup - find an attribute in an ntfs inode
939 * @type: attribute type to find
940 * @name: attribute name to find (optional, i.e. NULL means don't care)
941 * @name_len: attribute name length (only needed if @name present)
942 * @ic: IGNORE_CASE or CASE_SENSITIVE (ignored if @name not present)
943 * @lowest_vcn: lowest vcn to find (optional, non-resident attributes only)
944 * @val: attribute value to find (optional, resident attributes only)
945 * @val_len: attribute value length
946 * @ctx: search context with mft record and attribute to search from
948 * Find an attribute in an ntfs inode. On first search @ctx->ntfs_ino must
949 * be the base mft record and @ctx must have been obtained from a call to
950 * ntfs_attr_get_search_ctx().
952 * This function transparently handles attribute lists and @ctx is used to
953 * continue searches where they were left off at.
955 * After finishing with the attribute/mft record you need to call
956 * ntfs_attr_put_search_ctx() to cleanup the search context (unmapping any
957 * mapped inodes, etc).
959 * Return 0 if the search was successful and -errno if not.
961 * When 0, @ctx->attr is the found attribute and it is in mft record
962 * @ctx->mrec. If an attribute list attribute is present, @ctx->al_entry is
963 * the attribute list entry of the found attribute.
965 * When -ENOENT, @ctx->attr is the attribute which collates just after the
966 * attribute being searched for, i.e. if one wants to add the attribute to the
967 * mft record this is the correct place to insert it into. If an attribute
968 * list attribute is present, @ctx->al_entry is the attribute list entry which
969 * collates just after the attribute list entry of the attribute being searched
970 * for, i.e. if one wants to add the attribute to the mft record this is the
971 * correct place to insert its attribute list entry into.
973 * When -errno != -ENOENT, an error occured during the lookup. @ctx->attr is
974 * then undefined and in particular you should not rely on it not changing.
976 int ntfs_attr_lookup(const ATTR_TYPE type
, const ntfschar
*name
,
977 const u32 name_len
, const IGNORE_CASE_BOOL ic
,
978 const VCN lowest_vcn
, const u8
*val
, const u32 val_len
,
979 ntfs_attr_search_ctx
*ctx
)
983 ntfs_debug("Entering.");
984 if (ctx
->base_ntfs_ino
)
985 base_ni
= ctx
->base_ntfs_ino
;
987 base_ni
= ctx
->ntfs_ino
;
988 /* Sanity check, just for debugging really. */
990 if (!NInoAttrList(base_ni
) || type
== AT_ATTRIBUTE_LIST
)
991 return ntfs_attr_find(type
, name
, name_len
, ic
, val
, val_len
,
993 return ntfs_external_attr_find(type
, name
, name_len
, ic
, lowest_vcn
,
998 * ntfs_attr_init_search_ctx - initialize an attribute search context
999 * @ctx: attribute search context to initialize
1000 * @ni: ntfs inode with which to initialize the search context
1001 * @mrec: mft record with which to initialize the search context
1003 * Initialize the attribute search context @ctx with @ni and @mrec.
1005 static inline void ntfs_attr_init_search_ctx(ntfs_attr_search_ctx
*ctx
,
1006 ntfs_inode
*ni
, MFT_RECORD
*mrec
)
1008 *ctx
= (ntfs_attr_search_ctx
) {
1010 /* Sanity checks are performed elsewhere. */
1011 .attr
= (ATTR_RECORD
*)((u8
*)mrec
+
1012 le16_to_cpu(mrec
->attrs_offset
)),
1019 * ntfs_attr_reinit_search_ctx - reinitialize an attribute search context
1020 * @ctx: attribute search context to reinitialize
1022 * Reinitialize the attribute search context @ctx, unmapping an associated
1023 * extent mft record if present, and initialize the search context again.
1025 * This is used when a search for a new attribute is being started to reset
1026 * the search context to the beginning.
1028 void ntfs_attr_reinit_search_ctx(ntfs_attr_search_ctx
*ctx
)
1030 if (likely(!ctx
->base_ntfs_ino
)) {
1031 /* No attribute list. */
1032 ctx
->is_first
= TRUE
;
1033 /* Sanity checks are performed elsewhere. */
1034 ctx
->attr
= (ATTR_RECORD
*)((u8
*)ctx
->mrec
+
1035 le16_to_cpu(ctx
->mrec
->attrs_offset
));
1037 * This needs resetting due to ntfs_external_attr_find() which
1038 * can leave it set despite having zeroed ctx->base_ntfs_ino.
1040 ctx
->al_entry
= NULL
;
1042 } /* Attribute list. */
1043 if (ctx
->ntfs_ino
!= ctx
->base_ntfs_ino
)
1044 unmap_extent_mft_record(ctx
->ntfs_ino
);
1045 ntfs_attr_init_search_ctx(ctx
, ctx
->base_ntfs_ino
, ctx
->base_mrec
);
1050 * ntfs_attr_get_search_ctx - allocate/initialize a new attribute search context
1051 * @ni: ntfs inode with which to initialize the search context
1052 * @mrec: mft record with which to initialize the search context
1054 * Allocate a new attribute search context, initialize it with @ni and @mrec,
1055 * and return it. Return NULL if allocation failed.
1057 ntfs_attr_search_ctx
*ntfs_attr_get_search_ctx(ntfs_inode
*ni
, MFT_RECORD
*mrec
)
1059 ntfs_attr_search_ctx
*ctx
;
1061 ctx
= kmem_cache_alloc(ntfs_attr_ctx_cache
, SLAB_NOFS
);
1063 ntfs_attr_init_search_ctx(ctx
, ni
, mrec
);
1068 * ntfs_attr_put_search_ctx - release an attribute search context
1069 * @ctx: attribute search context to free
1071 * Release the attribute search context @ctx, unmapping an associated extent
1072 * mft record if present.
1074 void ntfs_attr_put_search_ctx(ntfs_attr_search_ctx
*ctx
)
1076 if (ctx
->base_ntfs_ino
&& ctx
->ntfs_ino
!= ctx
->base_ntfs_ino
)
1077 unmap_extent_mft_record(ctx
->ntfs_ino
);
1078 kmem_cache_free(ntfs_attr_ctx_cache
, ctx
);
1085 * ntfs_attr_find_in_attrdef - find an attribute in the $AttrDef system file
1086 * @vol: ntfs volume to which the attribute belongs
1087 * @type: attribute type which to find
1089 * Search for the attribute definition record corresponding to the attribute
1090 * @type in the $AttrDef system file.
1092 * Return the attribute type definition record if found and NULL if not found.
1094 static ATTR_DEF
*ntfs_attr_find_in_attrdef(const ntfs_volume
*vol
,
1095 const ATTR_TYPE type
)
1099 BUG_ON(!vol
->attrdef
);
1101 for (ad
= vol
->attrdef
; (u8
*)ad
- (u8
*)vol
->attrdef
<
1102 vol
->attrdef_size
&& ad
->type
; ++ad
) {
1103 /* We have not found it yet, carry on searching. */
1104 if (likely(le32_to_cpu(ad
->type
) < le32_to_cpu(type
)))
1106 /* We found the attribute; return it. */
1107 if (likely(ad
->type
== type
))
1109 /* We have gone too far already. No point in continuing. */
1112 /* Attribute not found. */
1113 ntfs_debug("Attribute type 0x%x not found in $AttrDef.",
1119 * ntfs_attr_size_bounds_check - check a size of an attribute type for validity
1120 * @vol: ntfs volume to which the attribute belongs
1121 * @type: attribute type which to check
1122 * @size: size which to check
1124 * Check whether the @size in bytes is valid for an attribute of @type on the
1125 * ntfs volume @vol. This information is obtained from $AttrDef system file.
1127 * Return 0 if valid, -ERANGE if not valid, or -ENOENT if the attribute is not
1128 * listed in $AttrDef.
1130 int ntfs_attr_size_bounds_check(const ntfs_volume
*vol
, const ATTR_TYPE type
,
1137 * $ATTRIBUTE_LIST has a maximum size of 256kiB, but this is not
1138 * listed in $AttrDef.
1140 if (unlikely(type
== AT_ATTRIBUTE_LIST
&& size
> 256 * 1024))
1142 /* Get the $AttrDef entry for the attribute @type. */
1143 ad
= ntfs_attr_find_in_attrdef(vol
, type
);
1146 /* Do the bounds check. */
1147 if (((sle64_to_cpu(ad
->min_size
) > 0) &&
1148 size
< sle64_to_cpu(ad
->min_size
)) ||
1149 ((sle64_to_cpu(ad
->max_size
) > 0) && size
>
1150 sle64_to_cpu(ad
->max_size
)))
1156 * ntfs_attr_can_be_non_resident - check if an attribute can be non-resident
1157 * @vol: ntfs volume to which the attribute belongs
1158 * @type: attribute type which to check
1160 * Check whether the attribute of @type on the ntfs volume @vol is allowed to
1161 * be non-resident. This information is obtained from $AttrDef system file.
1163 * Return 0 if the attribute is allowed to be non-resident, -EPERM if not, and
1164 * -ENOENT if the attribute is not listed in $AttrDef.
1166 int ntfs_attr_can_be_non_resident(const ntfs_volume
*vol
, const ATTR_TYPE type
)
1170 /* Find the attribute definition record in $AttrDef. */
1171 ad
= ntfs_attr_find_in_attrdef(vol
, type
);
1174 /* Check the flags and return the result. */
1175 if (ad
->flags
& ATTR_DEF_RESIDENT
)
1181 * ntfs_attr_can_be_resident - check if an attribute can be resident
1182 * @vol: ntfs volume to which the attribute belongs
1183 * @type: attribute type which to check
1185 * Check whether the attribute of @type on the ntfs volume @vol is allowed to
1186 * be resident. This information is derived from our ntfs knowledge and may
1187 * not be completely accurate, especially when user defined attributes are
1188 * present. Basically we allow everything to be resident except for index
1189 * allocation and $EA attributes.
1191 * Return 0 if the attribute is allowed to be non-resident and -EPERM if not.
1193 * Warning: In the system file $MFT the attribute $Bitmap must be non-resident
1194 * otherwise windows will not boot (blue screen of death)! We cannot
1195 * check for this here as we do not know which inode's $Bitmap is
1196 * being asked about so the caller needs to special case this.
1198 int ntfs_attr_can_be_resident(const ntfs_volume
*vol
, const ATTR_TYPE type
)
1200 if (type
== AT_INDEX_ALLOCATION
|| type
== AT_EA
)
1206 * ntfs_attr_record_resize - resize an attribute record
1207 * @m: mft record containing attribute record
1208 * @a: attribute record to resize
1209 * @new_size: new size in bytes to which to resize the attribute record @a
1211 * Resize the attribute record @a, i.e. the resident part of the attribute, in
1212 * the mft record @m to @new_size bytes.
1214 * Return 0 on success and -errno on error. The following error codes are
1216 * -ENOSPC - Not enough space in the mft record @m to perform the resize.
1218 * Note: On error, no modifications have been performed whatsoever.
1220 * Warning: If you make a record smaller without having copied all the data you
1221 * are interested in the data may be overwritten.
1223 int ntfs_attr_record_resize(MFT_RECORD
*m
, ATTR_RECORD
*a
, u32 new_size
)
1225 ntfs_debug("Entering for new_size %u.", new_size
);
1226 /* Align to 8 bytes if it is not already done. */
1228 new_size
= (new_size
+ 7) & ~7;
1229 /* If the actual attribute length has changed, move things around. */
1230 if (new_size
!= le32_to_cpu(a
->length
)) {
1231 u32 new_muse
= le32_to_cpu(m
->bytes_in_use
) -
1232 le32_to_cpu(a
->length
) + new_size
;
1233 /* Not enough space in this mft record. */
1234 if (new_muse
> le32_to_cpu(m
->bytes_allocated
))
1236 /* Move attributes following @a to their new location. */
1237 memmove((u8
*)a
+ new_size
, (u8
*)a
+ le32_to_cpu(a
->length
),
1238 le32_to_cpu(m
->bytes_in_use
) - ((u8
*)a
-
1239 (u8
*)m
) - le32_to_cpu(a
->length
));
1240 /* Adjust @m to reflect the change in used space. */
1241 m
->bytes_in_use
= cpu_to_le32(new_muse
);
1242 /* Adjust @a to reflect the new size. */
1243 if (new_size
>= offsetof(ATTR_REC
, length
) + sizeof(a
->length
))
1244 a
->length
= cpu_to_le32(new_size
);
1250 * ntfs_attr_make_non_resident - convert a resident to a non-resident attribute
1251 * @ni: ntfs inode describing the attribute to convert
1253 * Convert the resident ntfs attribute described by the ntfs inode @ni to a
1256 * Return 0 on success and -errno on error. The following error return codes
1258 * -EPERM - The attribute is not allowed to be non-resident.
1259 * -ENOMEM - Not enough memory.
1260 * -ENOSPC - Not enough disk space.
1261 * -EINVAL - Attribute not defined on the volume.
1262 * -EIO - I/o error or other error.
1263 * Note that -ENOSPC is also returned in the case that there is not enough
1264 * space in the mft record to do the conversion. This can happen when the mft
1265 * record is already very full. The caller is responsible for trying to make
1266 * space in the mft record and trying again. FIXME: Do we need a separate
1267 * error return code for this kind of -ENOSPC or is it always worth trying
1268 * again in case the attribute may then fit in a resident state so no need to
1269 * make it non-resident at all? Ho-hum... (AIA)
1271 * NOTE to self: No changes in the attribute list are required to move from
1272 * a resident to a non-resident attribute.
1274 * Locking: - The caller must hold i_sem on the inode.
1276 int ntfs_attr_make_non_resident(ntfs_inode
*ni
)
1279 struct inode
*vi
= VFS_I(ni
);
1280 ntfs_volume
*vol
= ni
->vol
;
1281 ntfs_inode
*base_ni
;
1284 ntfs_attr_search_ctx
*ctx
;
1286 runlist_element
*rl
;
1288 unsigned long flags
;
1289 int mp_size
, mp_ofs
, name_ofs
, arec_size
, err
, err2
;
1291 u8 old_res_attr_flags
;
1293 /* Check that the attribute is allowed to be non-resident. */
1294 err
= ntfs_attr_can_be_non_resident(vol
, ni
->type
);
1295 if (unlikely(err
)) {
1297 ntfs_debug("Attribute is not allowed to be "
1300 ntfs_debug("Attribute not defined on the NTFS "
1305 * The size needs to be aligned to a cluster boundary for allocation
1308 new_size
= (i_size_read(vi
) + vol
->cluster_size
- 1) &
1309 ~(vol
->cluster_size
- 1);
1311 runlist_element
*rl2
;
1314 * Will need the page later and since the page lock nests
1315 * outside all ntfs locks, we need to get the page now.
1317 page
= find_or_create_page(vi
->i_mapping
, 0,
1318 mapping_gfp_mask(vi
->i_mapping
));
1319 if (unlikely(!page
))
1321 /* Start by allocating clusters to hold the attribute value. */
1322 rl
= ntfs_cluster_alloc(vol
, 0, new_size
>>
1323 vol
->cluster_size_bits
, -1, DATA_ZONE
);
1326 ntfs_debug("Failed to allocate cluster%s, error code "
1328 vol
->cluster_size_bits
) > 1 ? "s" : "",
1332 /* Change the runlist terminator to LCN_ENOENT. */
1336 BUG_ON(rl2
->lcn
!= LCN_RL_NOT_MAPPED
);
1337 rl2
->lcn
= LCN_ENOENT
;
1342 /* Determine the size of the mapping pairs array. */
1343 mp_size
= ntfs_get_size_for_mapping_pairs(vol
, rl
, 0, -1);
1344 if (unlikely(mp_size
< 0)) {
1346 ntfs_debug("Failed to get size for mapping pairs array, error "
1350 down_write(&ni
->runlist
.lock
);
1354 base_ni
= ni
->ext
.base_ntfs_ino
;
1355 m
= map_mft_record(base_ni
);
1362 ctx
= ntfs_attr_get_search_ctx(base_ni
, m
);
1363 if (unlikely(!ctx
)) {
1367 err
= ntfs_attr_lookup(ni
->type
, ni
->name
, ni
->name_len
,
1368 CASE_SENSITIVE
, 0, NULL
, 0, ctx
);
1369 if (unlikely(err
)) {
1376 BUG_ON(NInoNonResident(ni
));
1377 BUG_ON(a
->non_resident
);
1379 * Calculate new offsets for the name and the mapping pairs array.
1380 * We assume the attribute is not compressed or sparse.
1382 name_ofs
= (offsetof(ATTR_REC
,
1383 data
.non_resident
.compressed_size
) + 7) & ~7;
1384 mp_ofs
= (name_ofs
+ a
->name_length
* sizeof(ntfschar
) + 7) & ~7;
1386 * Determine the size of the resident part of the now non-resident
1389 arec_size
= (mp_ofs
+ mp_size
+ 7) & ~7;
1391 * If the page is not uptodate bring it uptodate by copying from the
1394 attr_size
= le32_to_cpu(a
->data
.resident
.value_length
);
1395 BUG_ON(attr_size
!= i_size_read(vi
));
1396 if (page
&& !PageUptodate(page
)) {
1397 kaddr
= kmap_atomic(page
, KM_USER0
);
1398 memcpy(kaddr
, (u8
*)a
+
1399 le16_to_cpu(a
->data
.resident
.value_offset
),
1401 memset(kaddr
+ attr_size
, 0, PAGE_CACHE_SIZE
- attr_size
);
1402 kunmap_atomic(kaddr
, KM_USER0
);
1403 flush_dcache_page(page
);
1404 SetPageUptodate(page
);
1406 /* Backup the attribute flag. */
1407 old_res_attr_flags
= a
->data
.resident
.flags
;
1408 /* Resize the resident part of the attribute record. */
1409 err
= ntfs_attr_record_resize(m
, a
, arec_size
);
1413 * Convert the resident part of the attribute record to describe a
1414 * non-resident attribute.
1416 a
->non_resident
= 1;
1417 /* Move the attribute name if it exists and update the offset. */
1419 memmove((u8
*)a
+ name_ofs
, (u8
*)a
+ le16_to_cpu(a
->name_offset
),
1420 a
->name_length
* sizeof(ntfschar
));
1421 a
->name_offset
= cpu_to_le16(name_ofs
);
1423 * FIXME: For now just clear all of these as we do not support them
1426 a
->flags
&= cpu_to_le16(0xffff & ~le16_to_cpu(ATTR_IS_SPARSE
|
1427 ATTR_IS_ENCRYPTED
| ATTR_COMPRESSION_MASK
));
1428 /* Setup the fields specific to non-resident attributes. */
1429 a
->data
.non_resident
.lowest_vcn
= 0;
1430 a
->data
.non_resident
.highest_vcn
= cpu_to_sle64((new_size
- 1) >>
1431 vol
->cluster_size_bits
);
1432 a
->data
.non_resident
.mapping_pairs_offset
= cpu_to_le16(mp_ofs
);
1433 a
->data
.non_resident
.compression_unit
= 0;
1434 memset(&a
->data
.non_resident
.reserved
, 0,
1435 sizeof(a
->data
.non_resident
.reserved
));
1436 a
->data
.non_resident
.allocated_size
= cpu_to_sle64(new_size
);
1437 a
->data
.non_resident
.data_size
=
1438 a
->data
.non_resident
.initialized_size
=
1439 cpu_to_sle64(attr_size
);
1440 /* Generate the mapping pairs array into the attribute record. */
1441 err
= ntfs_mapping_pairs_build(vol
, (u8
*)a
+ mp_ofs
,
1442 arec_size
- mp_ofs
, rl
, 0, -1, NULL
);
1443 if (unlikely(err
)) {
1444 ntfs_debug("Failed to build mapping pairs, error code %i.",
1448 /* Setup the in-memory attribute structure to be non-resident. */
1450 * FIXME: For now just clear all of these as we do not support them
1453 NInoClearSparse(ni
);
1454 NInoClearEncrypted(ni
);
1455 NInoClearCompressed(ni
);
1456 ni
->runlist
.rl
= rl
;
1457 write_lock_irqsave(&ni
->size_lock
, flags
);
1458 ni
->allocated_size
= new_size
;
1459 write_unlock_irqrestore(&ni
->size_lock
, flags
);
1461 * This needs to be last since the address space operations ->readpage
1462 * and ->writepage can run concurrently with us as they are not
1463 * serialized on i_sem. Note, we are not allowed to fail once we flip
1464 * this switch, which is another reason to do this last.
1466 NInoSetNonResident(ni
);
1467 /* Mark the mft record dirty, so it gets written back. */
1468 flush_dcache_mft_record_page(ctx
->ntfs_ino
);
1469 mark_mft_record_dirty(ctx
->ntfs_ino
);
1470 ntfs_attr_put_search_ctx(ctx
);
1471 unmap_mft_record(base_ni
);
1472 up_write(&ni
->runlist
.lock
);
1474 set_page_dirty(page
);
1476 mark_page_accessed(page
);
1477 page_cache_release(page
);
1479 ntfs_debug("Done.");
1482 /* Convert the attribute back into a resident attribute. */
1483 a
->non_resident
= 0;
1484 /* Move the attribute name if it exists and update the offset. */
1485 name_ofs
= (offsetof(ATTR_RECORD
, data
.resident
.reserved
) +
1486 sizeof(a
->data
.resident
.reserved
) + 7) & ~7;
1488 memmove((u8
*)a
+ name_ofs
, (u8
*)a
+ le16_to_cpu(a
->name_offset
),
1489 a
->name_length
* sizeof(ntfschar
));
1490 mp_ofs
= (name_ofs
+ a
->name_length
* sizeof(ntfschar
) + 7) & ~7;
1491 a
->name_offset
= cpu_to_le16(name_ofs
);
1492 arec_size
= (mp_ofs
+ attr_size
+ 7) & ~7;
1493 /* Resize the resident part of the attribute record. */
1494 err2
= ntfs_attr_record_resize(m
, a
, arec_size
);
1495 if (unlikely(err2
)) {
1497 * This cannot happen (well if memory corruption is at work it
1498 * could happen in theory), but deal with it as well as we can.
1499 * If the old size is too small, truncate the attribute,
1500 * otherwise simply give it a larger allocated size.
1501 * FIXME: Should check whether chkdsk complains when the
1502 * allocated size is much bigger than the resident value size.
1504 arec_size
= le32_to_cpu(a
->length
);
1505 if ((mp_ofs
+ attr_size
) > arec_size
) {
1507 attr_size
= arec_size
- mp_ofs
;
1508 ntfs_error(vol
->sb
, "Failed to undo partial resident "
1509 "to non-resident attribute "
1510 "conversion. Truncating inode 0x%lx, "
1511 "attribute type 0x%x from %i bytes to "
1512 "%i bytes to maintain metadata "
1513 "consistency. THIS MEANS YOU ARE "
1514 "LOSING %i BYTES DATA FROM THIS %s.",
1516 (unsigned)le32_to_cpu(ni
->type
),
1517 err2
, attr_size
, err2
- attr_size
,
1518 ((ni
->type
== AT_DATA
) &&
1519 !ni
->name_len
) ? "FILE": "ATTRIBUTE");
1520 write_lock_irqsave(&ni
->size_lock
, flags
);
1521 ni
->initialized_size
= attr_size
;
1522 i_size_write(vi
, attr_size
);
1523 write_unlock_irqrestore(&ni
->size_lock
, flags
);
1526 /* Setup the fields specific to resident attributes. */
1527 a
->data
.resident
.value_length
= cpu_to_le32(attr_size
);
1528 a
->data
.resident
.value_offset
= cpu_to_le16(mp_ofs
);
1529 a
->data
.resident
.flags
= old_res_attr_flags
;
1530 memset(&a
->data
.resident
.reserved
, 0,
1531 sizeof(a
->data
.resident
.reserved
));
1532 /* Copy the data from the page back to the attribute value. */
1534 kaddr
= kmap_atomic(page
, KM_USER0
);
1535 memcpy((u8
*)a
+ mp_ofs
, kaddr
, attr_size
);
1536 kunmap_atomic(kaddr
, KM_USER0
);
1538 /* Setup the allocated size in the ntfs inode in case it changed. */
1539 write_lock_irqsave(&ni
->size_lock
, flags
);
1540 ni
->allocated_size
= arec_size
- mp_ofs
;
1541 write_unlock_irqrestore(&ni
->size_lock
, flags
);
1542 /* Mark the mft record dirty, so it gets written back. */
1543 flush_dcache_mft_record_page(ctx
->ntfs_ino
);
1544 mark_mft_record_dirty(ctx
->ntfs_ino
);
1547 ntfs_attr_put_search_ctx(ctx
);
1549 unmap_mft_record(base_ni
);
1550 ni
->runlist
.rl
= NULL
;
1551 up_write(&ni
->runlist
.lock
);
1554 if (ntfs_cluster_free_from_rl(vol
, rl
) < 0) {
1555 ntfs_error(vol
->sb
, "Failed to release allocated "
1556 "cluster(s) in error code path. Run "
1557 "chkdsk to recover the lost "
1564 page_cache_release(page
);
1572 * ntfs_attr_set - fill (a part of) an attribute with a byte
1573 * @ni: ntfs inode describing the attribute to fill
1574 * @ofs: offset inside the attribute at which to start to fill
1575 * @cnt: number of bytes to fill
1576 * @val: the unsigned 8-bit value with which to fill the attribute
1578 * Fill @cnt bytes of the attribute described by the ntfs inode @ni starting at
1579 * byte offset @ofs inside the attribute with the constant byte @val.
1581 * This function is effectively like memset() applied to an ntfs attribute.
1582 * Note thie function actually only operates on the page cache pages belonging
1583 * to the ntfs attribute and it marks them dirty after doing the memset().
1584 * Thus it relies on the vm dirty page write code paths to cause the modified
1585 * pages to be written to the mft record/disk.
1587 * Return 0 on success and -errno on error. An error code of -ESPIPE means
1588 * that @ofs + @cnt were outside the end of the attribute and no write was
1591 int ntfs_attr_set(ntfs_inode
*ni
, const s64 ofs
, const s64 cnt
, const u8 val
)
1593 ntfs_volume
*vol
= ni
->vol
;
1594 struct address_space
*mapping
;
1598 unsigned int start_ofs
, end_ofs
, size
;
1600 ntfs_debug("Entering for ofs 0x%llx, cnt 0x%llx, val 0x%hx.",
1601 (long long)ofs
, (long long)cnt
, val
);
1606 mapping
= VFS_I(ni
)->i_mapping
;
1607 /* Work out the starting index and page offset. */
1608 idx
= ofs
>> PAGE_CACHE_SHIFT
;
1609 start_ofs
= ofs
& ~PAGE_CACHE_MASK
;
1610 /* Work out the ending index and page offset. */
1612 end_ofs
= end
& ~PAGE_CACHE_MASK
;
1613 /* If the end is outside the inode size return -ESPIPE. */
1614 if (unlikely(end
> i_size_read(VFS_I(ni
)))) {
1615 ntfs_error(vol
->sb
, "Request exceeds end of attribute.");
1618 end
>>= PAGE_CACHE_SHIFT
;
1619 /* If there is a first partial page, need to do it the slow way. */
1621 page
= read_cache_page(mapping
, idx
,
1622 (filler_t
*)mapping
->a_ops
->readpage
, NULL
);
1624 ntfs_error(vol
->sb
, "Failed to read first partial "
1625 "page (sync error, index 0x%lx).", idx
);
1626 return PTR_ERR(page
);
1628 wait_on_page_locked(page
);
1629 if (unlikely(!PageUptodate(page
))) {
1630 ntfs_error(vol
->sb
, "Failed to read first partial page "
1631 "(async error, index 0x%lx).", idx
);
1632 page_cache_release(page
);
1633 return PTR_ERR(page
);
1636 * If the last page is the same as the first page, need to
1637 * limit the write to the end offset.
1639 size
= PAGE_CACHE_SIZE
;
1642 kaddr
= kmap_atomic(page
, KM_USER0
);
1643 memset(kaddr
+ start_ofs
, val
, size
- start_ofs
);
1644 flush_dcache_page(page
);
1645 kunmap_atomic(kaddr
, KM_USER0
);
1646 set_page_dirty(page
);
1647 page_cache_release(page
);
1652 /* Do the whole pages the fast way. */
1653 for (; idx
< end
; idx
++) {
1654 /* Find or create the current page. (The page is locked.) */
1655 page
= grab_cache_page(mapping
, idx
);
1656 if (unlikely(!page
)) {
1657 ntfs_error(vol
->sb
, "Insufficient memory to grab "
1658 "page (index 0x%lx).", idx
);
1661 kaddr
= kmap_atomic(page
, KM_USER0
);
1662 memset(kaddr
, val
, PAGE_CACHE_SIZE
);
1663 flush_dcache_page(page
);
1664 kunmap_atomic(kaddr
, KM_USER0
);
1666 * If the page has buffers, mark them uptodate since buffer
1667 * state and not page state is definitive in 2.6 kernels.
1669 if (page_has_buffers(page
)) {
1670 struct buffer_head
*bh
, *head
;
1672 bh
= head
= page_buffers(page
);
1674 set_buffer_uptodate(bh
);
1675 } while ((bh
= bh
->b_this_page
) != head
);
1677 /* Now that buffers are uptodate, set the page uptodate, too. */
1678 SetPageUptodate(page
);
1680 * Set the page and all its buffers dirty and mark the inode
1681 * dirty, too. The VM will write the page later on.
1683 set_page_dirty(page
);
1684 /* Finally unlock and release the page. */
1686 page_cache_release(page
);
1688 /* If there is a last partial page, need to do it the slow way. */
1690 page
= read_cache_page(mapping
, idx
,
1691 (filler_t
*)mapping
->a_ops
->readpage
, NULL
);
1693 ntfs_error(vol
->sb
, "Failed to read last partial page "
1694 "(sync error, index 0x%lx).", idx
);
1695 return PTR_ERR(page
);
1697 wait_on_page_locked(page
);
1698 if (unlikely(!PageUptodate(page
))) {
1699 ntfs_error(vol
->sb
, "Failed to read last partial page "
1700 "(async error, index 0x%lx).", idx
);
1701 page_cache_release(page
);
1702 return PTR_ERR(page
);
1704 kaddr
= kmap_atomic(page
, KM_USER0
);
1705 memset(kaddr
, val
, end_ofs
);
1706 flush_dcache_page(page
);
1707 kunmap_atomic(kaddr
, KM_USER0
);
1708 set_page_dirty(page
);
1709 page_cache_release(page
);
1712 ntfs_debug("Done.");
1716 #endif /* NTFS_RW */