blob: 7ae647c640bb28aa77fb22e9ec9aa93e91ce3dea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * inode.c - NTFS kernel inode handling. Part of the Linux-NTFS project.
3 *
Anton Altaparmakovc002f422005-02-03 12:02:56 +00004 * Copyright (c) 2001-2005 Anton Altaparmakov
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This program/include file is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as published
8 * by the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program/include file is distributed in the hope that it will be
12 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program (in the main directory of the Linux-NTFS
18 * distribution in the file COPYING); if not, write to the Free Software
19 * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <linux/pagemap.h>
23#include <linux/buffer_head.h>
24#include <linux/smp_lock.h>
25#include <linux/quotaops.h>
26#include <linux/mount.h>
27
28#include "aops.h"
29#include "dir.h"
30#include "debug.h"
31#include "inode.h"
32#include "attrib.h"
33#include "malloc.h"
34#include "mft.h"
35#include "time.h"
36#include "ntfs.h"
37
38/**
39 * ntfs_test_inode - compare two (possibly fake) inodes for equality
40 * @vi: vfs inode which to test
41 * @na: ntfs attribute which is being tested with
42 *
43 * Compare the ntfs attribute embedded in the ntfs specific part of the vfs
44 * inode @vi for equality with the ntfs attribute @na.
45 *
46 * If searching for the normal file/directory inode, set @na->type to AT_UNUSED.
47 * @na->name and @na->name_len are then ignored.
48 *
49 * Return 1 if the attributes match and 0 if not.
50 *
51 * NOTE: This function runs with the inode_lock spin lock held so it is not
52 * allowed to sleep.
53 */
54int ntfs_test_inode(struct inode *vi, ntfs_attr *na)
55{
56 ntfs_inode *ni;
57
58 if (vi->i_ino != na->mft_no)
59 return 0;
60 ni = NTFS_I(vi);
61 /* If !NInoAttr(ni), @vi is a normal file or directory inode. */
62 if (likely(!NInoAttr(ni))) {
63 /* If not looking for a normal inode this is a mismatch. */
64 if (unlikely(na->type != AT_UNUSED))
65 return 0;
66 } else {
67 /* A fake inode describing an attribute. */
68 if (ni->type != na->type)
69 return 0;
70 if (ni->name_len != na->name_len)
71 return 0;
72 if (na->name_len && memcmp(ni->name, na->name,
73 na->name_len * sizeof(ntfschar)))
74 return 0;
75 }
76 /* Match! */
77 return 1;
78}
79
80/**
81 * ntfs_init_locked_inode - initialize an inode
82 * @vi: vfs inode to initialize
83 * @na: ntfs attribute which to initialize @vi to
84 *
85 * Initialize the vfs inode @vi with the values from the ntfs attribute @na in
86 * order to enable ntfs_test_inode() to do its work.
87 *
88 * If initializing the normal file/directory inode, set @na->type to AT_UNUSED.
89 * In that case, @na->name and @na->name_len should be set to NULL and 0,
90 * respectively. Although that is not strictly necessary as
91 * ntfs_read_inode_locked() will fill them in later.
92 *
93 * Return 0 on success and -errno on error.
94 *
95 * NOTE: This function runs with the inode_lock spin lock held so it is not
96 * allowed to sleep. (Hence the GFP_ATOMIC allocation.)
97 */
98static int ntfs_init_locked_inode(struct inode *vi, ntfs_attr *na)
99{
100 ntfs_inode *ni = NTFS_I(vi);
101
102 vi->i_ino = na->mft_no;
103
104 ni->type = na->type;
105 if (na->type == AT_INDEX_ALLOCATION)
106 NInoSetMstProtected(ni);
107
108 ni->name = na->name;
109 ni->name_len = na->name_len;
110
111 /* If initializing a normal inode, we are done. */
112 if (likely(na->type == AT_UNUSED)) {
113 BUG_ON(na->name);
114 BUG_ON(na->name_len);
115 return 0;
116 }
117
118 /* It is a fake inode. */
119 NInoSetAttr(ni);
120
121 /*
122 * We have I30 global constant as an optimization as it is the name
123 * in >99.9% of named attributes! The other <0.1% incur a GFP_ATOMIC
124 * allocation but that is ok. And most attributes are unnamed anyway,
125 * thus the fraction of named attributes with name != I30 is actually
126 * absolutely tiny.
127 */
128 if (na->name_len && na->name != I30) {
129 unsigned int i;
130
131 BUG_ON(!na->name);
132 i = na->name_len * sizeof(ntfschar);
133 ni->name = (ntfschar*)kmalloc(i + sizeof(ntfschar), GFP_ATOMIC);
134 if (!ni->name)
135 return -ENOMEM;
136 memcpy(ni->name, na->name, i);
137 ni->name[i] = 0;
138 }
139 return 0;
140}
141
142typedef int (*set_t)(struct inode *, void *);
143static int ntfs_read_locked_inode(struct inode *vi);
144static int ntfs_read_locked_attr_inode(struct inode *base_vi, struct inode *vi);
145static int ntfs_read_locked_index_inode(struct inode *base_vi,
146 struct inode *vi);
147
148/**
149 * ntfs_iget - obtain a struct inode corresponding to a specific normal inode
150 * @sb: super block of mounted volume
151 * @mft_no: mft record number / inode number to obtain
152 *
153 * Obtain the struct inode corresponding to a specific normal inode (i.e. a
154 * file or directory).
155 *
156 * If the inode is in the cache, it is just returned with an increased
157 * reference count. Otherwise, a new struct inode is allocated and initialized,
158 * and finally ntfs_read_locked_inode() is called to read in the inode and
159 * fill in the remainder of the inode structure.
160 *
161 * Return the struct inode on success. Check the return value with IS_ERR() and
162 * if true, the function failed and the error code is obtained from PTR_ERR().
163 */
164struct inode *ntfs_iget(struct super_block *sb, unsigned long mft_no)
165{
166 struct inode *vi;
167 ntfs_attr na;
168 int err;
169
170 na.mft_no = mft_no;
171 na.type = AT_UNUSED;
172 na.name = NULL;
173 na.name_len = 0;
174
175 vi = iget5_locked(sb, mft_no, (test_t)ntfs_test_inode,
176 (set_t)ntfs_init_locked_inode, &na);
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000177 if (unlikely(!vi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return ERR_PTR(-ENOMEM);
179
180 err = 0;
181
182 /* If this is a freshly allocated inode, need to read it now. */
183 if (vi->i_state & I_NEW) {
184 err = ntfs_read_locked_inode(vi);
185 unlock_new_inode(vi);
186 }
187 /*
188 * There is no point in keeping bad inodes around if the failure was
189 * due to ENOMEM. We want to be able to retry again later.
190 */
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000191 if (unlikely(err == -ENOMEM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 iput(vi);
193 vi = ERR_PTR(err);
194 }
195 return vi;
196}
197
198/**
199 * ntfs_attr_iget - obtain a struct inode corresponding to an attribute
200 * @base_vi: vfs base inode containing the attribute
201 * @type: attribute type
202 * @name: Unicode name of the attribute (NULL if unnamed)
203 * @name_len: length of @name in Unicode characters (0 if unnamed)
204 *
205 * Obtain the (fake) struct inode corresponding to the attribute specified by
206 * @type, @name, and @name_len, which is present in the base mft record
207 * specified by the vfs inode @base_vi.
208 *
209 * If the attribute inode is in the cache, it is just returned with an
210 * increased reference count. Otherwise, a new struct inode is allocated and
211 * initialized, and finally ntfs_read_locked_attr_inode() is called to read the
212 * attribute and fill in the inode structure.
213 *
214 * Note, for index allocation attributes, you need to use ntfs_index_iget()
215 * instead of ntfs_attr_iget() as working with indices is a lot more complex.
216 *
217 * Return the struct inode of the attribute inode on success. Check the return
218 * value with IS_ERR() and if true, the function failed and the error code is
219 * obtained from PTR_ERR().
220 */
221struct inode *ntfs_attr_iget(struct inode *base_vi, ATTR_TYPE type,
222 ntfschar *name, u32 name_len)
223{
224 struct inode *vi;
225 ntfs_attr na;
226 int err;
227
228 /* Make sure no one calls ntfs_attr_iget() for indices. */
229 BUG_ON(type == AT_INDEX_ALLOCATION);
230
231 na.mft_no = base_vi->i_ino;
232 na.type = type;
233 na.name = name;
234 na.name_len = name_len;
235
236 vi = iget5_locked(base_vi->i_sb, na.mft_no, (test_t)ntfs_test_inode,
237 (set_t)ntfs_init_locked_inode, &na);
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000238 if (unlikely(!vi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return ERR_PTR(-ENOMEM);
240
241 err = 0;
242
243 /* If this is a freshly allocated inode, need to read it now. */
244 if (vi->i_state & I_NEW) {
245 err = ntfs_read_locked_attr_inode(base_vi, vi);
246 unlock_new_inode(vi);
247 }
248 /*
249 * There is no point in keeping bad attribute inodes around. This also
250 * simplifies things in that we never need to check for bad attribute
251 * inodes elsewhere.
252 */
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000253 if (unlikely(err)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 iput(vi);
255 vi = ERR_PTR(err);
256 }
257 return vi;
258}
259
260/**
261 * ntfs_index_iget - obtain a struct inode corresponding to an index
262 * @base_vi: vfs base inode containing the index related attributes
263 * @name: Unicode name of the index
264 * @name_len: length of @name in Unicode characters
265 *
266 * Obtain the (fake) struct inode corresponding to the index specified by @name
267 * and @name_len, which is present in the base mft record specified by the vfs
268 * inode @base_vi.
269 *
270 * If the index inode is in the cache, it is just returned with an increased
271 * reference count. Otherwise, a new struct inode is allocated and
272 * initialized, and finally ntfs_read_locked_index_inode() is called to read
273 * the index related attributes and fill in the inode structure.
274 *
275 * Return the struct inode of the index inode on success. Check the return
276 * value with IS_ERR() and if true, the function failed and the error code is
277 * obtained from PTR_ERR().
278 */
279struct inode *ntfs_index_iget(struct inode *base_vi, ntfschar *name,
280 u32 name_len)
281{
282 struct inode *vi;
283 ntfs_attr na;
284 int err;
285
286 na.mft_no = base_vi->i_ino;
287 na.type = AT_INDEX_ALLOCATION;
288 na.name = name;
289 na.name_len = name_len;
290
291 vi = iget5_locked(base_vi->i_sb, na.mft_no, (test_t)ntfs_test_inode,
292 (set_t)ntfs_init_locked_inode, &na);
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000293 if (unlikely(!vi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return ERR_PTR(-ENOMEM);
295
296 err = 0;
297
298 /* If this is a freshly allocated inode, need to read it now. */
299 if (vi->i_state & I_NEW) {
300 err = ntfs_read_locked_index_inode(base_vi, vi);
301 unlock_new_inode(vi);
302 }
303 /*
304 * There is no point in keeping bad index inodes around. This also
305 * simplifies things in that we never need to check for bad index
306 * inodes elsewhere.
307 */
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000308 if (unlikely(err)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 iput(vi);
310 vi = ERR_PTR(err);
311 }
312 return vi;
313}
314
315struct inode *ntfs_alloc_big_inode(struct super_block *sb)
316{
317 ntfs_inode *ni;
318
319 ntfs_debug("Entering.");
320 ni = (ntfs_inode *)kmem_cache_alloc(ntfs_big_inode_cache,
321 SLAB_NOFS);
322 if (likely(ni != NULL)) {
323 ni->state = 0;
324 return VFS_I(ni);
325 }
326 ntfs_error(sb, "Allocation of NTFS big inode structure failed.");
327 return NULL;
328}
329
330void ntfs_destroy_big_inode(struct inode *inode)
331{
332 ntfs_inode *ni = NTFS_I(inode);
333
334 ntfs_debug("Entering.");
335 BUG_ON(ni->page);
336 if (!atomic_dec_and_test(&ni->count))
337 BUG();
338 kmem_cache_free(ntfs_big_inode_cache, NTFS_I(inode));
339}
340
341static inline ntfs_inode *ntfs_alloc_extent_inode(void)
342{
343 ntfs_inode *ni;
344
345 ntfs_debug("Entering.");
346 ni = (ntfs_inode *)kmem_cache_alloc(ntfs_inode_cache, SLAB_NOFS);
347 if (likely(ni != NULL)) {
348 ni->state = 0;
349 return ni;
350 }
351 ntfs_error(NULL, "Allocation of NTFS inode structure failed.");
352 return NULL;
353}
354
355static void ntfs_destroy_extent_inode(ntfs_inode *ni)
356{
357 ntfs_debug("Entering.");
358 BUG_ON(ni->page);
359 if (!atomic_dec_and_test(&ni->count))
360 BUG();
361 kmem_cache_free(ntfs_inode_cache, ni);
362}
363
364/**
365 * __ntfs_init_inode - initialize ntfs specific part of an inode
366 * @sb: super block of mounted volume
367 * @ni: freshly allocated ntfs inode which to initialize
368 *
369 * Initialize an ntfs inode to defaults.
370 *
371 * NOTE: ni->mft_no, ni->state, ni->type, ni->name, and ni->name_len are left
372 * untouched. Make sure to initialize them elsewhere.
373 *
374 * Return zero on success and -ENOMEM on error.
375 */
376void __ntfs_init_inode(struct super_block *sb, ntfs_inode *ni)
377{
378 ntfs_debug("Entering.");
Anton Altaparmakov36763672004-11-18 13:46:45 +0000379 rwlock_init(&ni->size_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 ni->initialized_size = ni->allocated_size = 0;
381 ni->seq_no = 0;
382 atomic_set(&ni->count, 1);
383 ni->vol = NTFS_SB(sb);
384 ntfs_init_runlist(&ni->runlist);
385 init_MUTEX(&ni->mrec_lock);
386 ni->page = NULL;
387 ni->page_ofs = 0;
388 ni->attr_list_size = 0;
389 ni->attr_list = NULL;
390 ntfs_init_runlist(&ni->attr_list_rl);
391 ni->itype.index.bmp_ino = NULL;
392 ni->itype.index.block_size = 0;
393 ni->itype.index.vcn_size = 0;
394 ni->itype.index.collation_rule = 0;
395 ni->itype.index.block_size_bits = 0;
396 ni->itype.index.vcn_size_bits = 0;
397 init_MUTEX(&ni->extent_lock);
398 ni->nr_extents = 0;
399 ni->ext.base_ntfs_ino = NULL;
400}
401
402inline ntfs_inode *ntfs_new_extent_inode(struct super_block *sb,
403 unsigned long mft_no)
404{
405 ntfs_inode *ni = ntfs_alloc_extent_inode();
406
407 ntfs_debug("Entering.");
408 if (likely(ni != NULL)) {
409 __ntfs_init_inode(sb, ni);
410 ni->mft_no = mft_no;
411 ni->type = AT_UNUSED;
412 ni->name = NULL;
413 ni->name_len = 0;
414 }
415 return ni;
416}
417
418/**
419 * ntfs_is_extended_system_file - check if a file is in the $Extend directory
420 * @ctx: initialized attribute search context
421 *
422 * Search all file name attributes in the inode described by the attribute
423 * search context @ctx and check if any of the names are in the $Extend system
424 * directory.
425 *
426 * Return values:
427 * 1: file is in $Extend directory
428 * 0: file is not in $Extend directory
429 * -errno: failed to determine if the file is in the $Extend directory
430 */
431static int ntfs_is_extended_system_file(ntfs_attr_search_ctx *ctx)
432{
433 int nr_links, err;
434
435 /* Restart search. */
436 ntfs_attr_reinit_search_ctx(ctx);
437
438 /* Get number of hard links. */
439 nr_links = le16_to_cpu(ctx->mrec->link_count);
440
441 /* Loop through all hard links. */
442 while (!(err = ntfs_attr_lookup(AT_FILE_NAME, NULL, 0, 0, 0, NULL, 0,
443 ctx))) {
444 FILE_NAME_ATTR *file_name_attr;
445 ATTR_RECORD *attr = ctx->attr;
446 u8 *p, *p2;
447
448 nr_links--;
449 /*
450 * Maximum sanity checking as we are called on an inode that
451 * we suspect might be corrupt.
452 */
453 p = (u8*)attr + le32_to_cpu(attr->length);
454 if (p < (u8*)ctx->mrec || (u8*)p > (u8*)ctx->mrec +
455 le32_to_cpu(ctx->mrec->bytes_in_use)) {
456err_corrupt_attr:
457 ntfs_error(ctx->ntfs_ino->vol->sb, "Corrupt file name "
458 "attribute. You should run chkdsk.");
459 return -EIO;
460 }
461 if (attr->non_resident) {
462 ntfs_error(ctx->ntfs_ino->vol->sb, "Non-resident file "
463 "name. You should run chkdsk.");
464 return -EIO;
465 }
466 if (attr->flags) {
467 ntfs_error(ctx->ntfs_ino->vol->sb, "File name with "
468 "invalid flags. You should run "
469 "chkdsk.");
470 return -EIO;
471 }
472 if (!(attr->data.resident.flags & RESIDENT_ATTR_IS_INDEXED)) {
473 ntfs_error(ctx->ntfs_ino->vol->sb, "Unindexed file "
474 "name. You should run chkdsk.");
475 return -EIO;
476 }
477 file_name_attr = (FILE_NAME_ATTR*)((u8*)attr +
478 le16_to_cpu(attr->data.resident.value_offset));
479 p2 = (u8*)attr + le32_to_cpu(attr->data.resident.value_length);
480 if (p2 < (u8*)attr || p2 > p)
481 goto err_corrupt_attr;
482 /* This attribute is ok, but is it in the $Extend directory? */
483 if (MREF_LE(file_name_attr->parent_directory) == FILE_Extend)
484 return 1; /* YES, it's an extended system file. */
485 }
486 if (unlikely(err != -ENOENT))
487 return err;
488 if (unlikely(nr_links)) {
489 ntfs_error(ctx->ntfs_ino->vol->sb, "Inode hard link count "
490 "doesn't match number of name attributes. You "
491 "should run chkdsk.");
492 return -EIO;
493 }
494 return 0; /* NO, it is not an extended system file. */
495}
496
497/**
498 * ntfs_read_locked_inode - read an inode from its device
499 * @vi: inode to read
500 *
501 * ntfs_read_locked_inode() is called from ntfs_iget() to read the inode
502 * described by @vi into memory from the device.
503 *
504 * The only fields in @vi that we need to/can look at when the function is
505 * called are i_sb, pointing to the mounted device's super block, and i_ino,
506 * the number of the inode to load.
507 *
508 * ntfs_read_locked_inode() maps, pins and locks the mft record number i_ino
509 * for reading and sets up the necessary @vi fields as well as initializing
510 * the ntfs inode.
511 *
512 * Q: What locks are held when the function is called?
513 * A: i_state has I_LOCK set, hence the inode is locked, also
514 * i_count is set to 1, so it is not going to go away
515 * i_flags is set to 0 and we have no business touching it. Only an ioctl()
516 * is allowed to write to them. We should of course be honouring them but
517 * we need to do that using the IS_* macros defined in include/linux/fs.h.
518 * In any case ntfs_read_locked_inode() has nothing to do with i_flags.
519 *
520 * Return 0 on success and -errno on error. In the error case, the inode will
521 * have had make_bad_inode() executed on it.
522 */
523static int ntfs_read_locked_inode(struct inode *vi)
524{
525 ntfs_volume *vol = NTFS_SB(vi->i_sb);
526 ntfs_inode *ni;
527 MFT_RECORD *m;
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000528 ATTR_RECORD *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 STANDARD_INFORMATION *si;
530 ntfs_attr_search_ctx *ctx;
531 int err = 0;
532
533 ntfs_debug("Entering for i_ino 0x%lx.", vi->i_ino);
534
535 /* Setup the generic vfs inode parts now. */
536
537 /* This is the optimal IO size (for stat), not the fs block size. */
538 vi->i_blksize = PAGE_CACHE_SIZE;
539 /*
540 * This is for checking whether an inode has changed w.r.t. a file so
541 * that the file can be updated if necessary (compare with f_version).
542 */
543 vi->i_version = 1;
544
545 vi->i_uid = vol->uid;
546 vi->i_gid = vol->gid;
547 vi->i_mode = 0;
548
549 /*
550 * Initialize the ntfs specific part of @vi special casing
551 * FILE_MFT which we need to do at mount time.
552 */
553 if (vi->i_ino != FILE_MFT)
554 ntfs_init_big_inode(vi);
555 ni = NTFS_I(vi);
556
557 m = map_mft_record(ni);
558 if (IS_ERR(m)) {
559 err = PTR_ERR(m);
560 goto err_out;
561 }
562 ctx = ntfs_attr_get_search_ctx(ni, m);
563 if (!ctx) {
564 err = -ENOMEM;
565 goto unm_err_out;
566 }
567
568 if (!(m->flags & MFT_RECORD_IN_USE)) {
569 ntfs_error(vi->i_sb, "Inode is not in use!");
570 goto unm_err_out;
571 }
572 if (m->base_mft_record) {
573 ntfs_error(vi->i_sb, "Inode is an extent inode!");
574 goto unm_err_out;
575 }
576
577 /* Transfer information from mft record into vfs and ntfs inodes. */
578 vi->i_generation = ni->seq_no = le16_to_cpu(m->sequence_number);
579
580 /*
581 * FIXME: Keep in mind that link_count is two for files which have both
582 * a long file name and a short file name as separate entries, so if
583 * we are hiding short file names this will be too high. Either we need
584 * to account for the short file names by subtracting them or we need
585 * to make sure we delete files even though i_nlink is not zero which
586 * might be tricky due to vfs interactions. Need to think about this
587 * some more when implementing the unlink command.
588 */
589 vi->i_nlink = le16_to_cpu(m->link_count);
590 /*
591 * FIXME: Reparse points can have the directory bit set even though
592 * they would be S_IFLNK. Need to deal with this further below when we
593 * implement reparse points / symbolic links but it will do for now.
594 * Also if not a directory, it could be something else, rather than
595 * a regular file. But again, will do for now.
596 */
597 /* Everyone gets all permissions. */
598 vi->i_mode |= S_IRWXUGO;
599 /* If read-only, noone gets write permissions. */
600 if (IS_RDONLY(vi))
601 vi->i_mode &= ~S_IWUGO;
602 if (m->flags & MFT_RECORD_IS_DIRECTORY) {
603 vi->i_mode |= S_IFDIR;
604 /*
605 * Apply the directory permissions mask set in the mount
606 * options.
607 */
608 vi->i_mode &= ~vol->dmask;
609 /* Things break without this kludge! */
610 if (vi->i_nlink > 1)
611 vi->i_nlink = 1;
612 } else {
613 vi->i_mode |= S_IFREG;
614 /* Apply the file permissions mask set in the mount options. */
615 vi->i_mode &= ~vol->fmask;
616 }
617 /*
618 * Find the standard information attribute in the mft record. At this
619 * stage we haven't setup the attribute list stuff yet, so this could
620 * in fact fail if the standard information is in an extent record, but
621 * I don't think this actually ever happens.
622 */
623 err = ntfs_attr_lookup(AT_STANDARD_INFORMATION, NULL, 0, 0, 0, NULL, 0,
624 ctx);
625 if (unlikely(err)) {
626 if (err == -ENOENT) {
627 /*
628 * TODO: We should be performing a hot fix here (if the
629 * recover mount option is set) by creating a new
630 * attribute.
631 */
632 ntfs_error(vi->i_sb, "$STANDARD_INFORMATION attribute "
633 "is missing.");
634 }
635 goto unm_err_out;
636 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000637 a = ctx->attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /* Get the standard information attribute value. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000639 si = (STANDARD_INFORMATION*)((u8*)a +
640 le16_to_cpu(a->data.resident.value_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /* Transfer information from the standard information into vi. */
643 /*
644 * Note: The i_?times do not quite map perfectly onto the NTFS times,
645 * but they are close enough, and in the end it doesn't really matter
646 * that much...
647 */
648 /*
649 * mtime is the last change of the data within the file. Not changed
650 * when only metadata is changed, e.g. a rename doesn't affect mtime.
651 */
652 vi->i_mtime = ntfs2utc(si->last_data_change_time);
653 /*
654 * ctime is the last change of the metadata of the file. This obviously
655 * always changes, when mtime is changed. ctime can be changed on its
656 * own, mtime is then not changed, e.g. when a file is renamed.
657 */
658 vi->i_ctime = ntfs2utc(si->last_mft_change_time);
659 /*
660 * Last access to the data within the file. Not changed during a rename
661 * for example but changed whenever the file is written to.
662 */
663 vi->i_atime = ntfs2utc(si->last_access_time);
664
665 /* Find the attribute list attribute if present. */
666 ntfs_attr_reinit_search_ctx(ctx);
667 err = ntfs_attr_lookup(AT_ATTRIBUTE_LIST, NULL, 0, 0, 0, NULL, 0, ctx);
668 if (err) {
669 if (unlikely(err != -ENOENT)) {
670 ntfs_error(vi->i_sb, "Failed to lookup attribute list "
671 "attribute.");
672 goto unm_err_out;
673 }
674 } else /* if (!err) */ {
675 if (vi->i_ino == FILE_MFT)
676 goto skip_attr_list_load;
677 ntfs_debug("Attribute list found in inode 0x%lx.", vi->i_ino);
678 NInoSetAttrList(ni);
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000679 a = ctx->attr;
680 if (a->flags & ATTR_IS_ENCRYPTED ||
681 a->flags & ATTR_COMPRESSION_MASK ||
682 a->flags & ATTR_IS_SPARSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 ntfs_error(vi->i_sb, "Attribute list attribute is "
684 "compressed/encrypted/sparse.");
685 goto unm_err_out;
686 }
687 /* Now allocate memory for the attribute list. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000688 ni->attr_list_size = (u32)ntfs_attr_size(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 ni->attr_list = ntfs_malloc_nofs(ni->attr_list_size);
690 if (!ni->attr_list) {
691 ntfs_error(vi->i_sb, "Not enough memory to allocate "
692 "buffer for attribute list.");
693 err = -ENOMEM;
694 goto unm_err_out;
695 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000696 if (a->non_resident) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 NInoSetAttrListNonResident(ni);
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000698 if (a->data.non_resident.lowest_vcn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 ntfs_error(vi->i_sb, "Attribute list has non "
700 "zero lowest_vcn.");
701 goto unm_err_out;
702 }
703 /*
704 * Setup the runlist. No need for locking as we have
705 * exclusive access to the inode at this time.
706 */
707 ni->attr_list_rl.rl = ntfs_mapping_pairs_decompress(vol,
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000708 a, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (IS_ERR(ni->attr_list_rl.rl)) {
710 err = PTR_ERR(ni->attr_list_rl.rl);
711 ni->attr_list_rl.rl = NULL;
712 ntfs_error(vi->i_sb, "Mapping pairs "
713 "decompression failed.");
714 goto unm_err_out;
715 }
716 /* Now load the attribute list. */
717 if ((err = load_attribute_list(vol, &ni->attr_list_rl,
718 ni->attr_list, ni->attr_list_size,
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000719 sle64_to_cpu(a->data.non_resident.
720 initialized_size)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 ntfs_error(vi->i_sb, "Failed to load "
722 "attribute list attribute.");
723 goto unm_err_out;
724 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000725 } else /* if (!a->non_resident) */ {
726 if ((u8*)a + le16_to_cpu(a->data.resident.value_offset)
727 + le32_to_cpu(
728 a->data.resident.value_length) >
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 (u8*)ctx->mrec + vol->mft_record_size) {
730 ntfs_error(vi->i_sb, "Corrupt attribute list "
731 "in inode.");
732 goto unm_err_out;
733 }
734 /* Now copy the attribute list. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000735 memcpy(ni->attr_list, (u8*)a + le16_to_cpu(
736 a->data.resident.value_offset),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 le32_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000738 a->data.resident.value_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740 }
741skip_attr_list_load:
742 /*
743 * If an attribute list is present we now have the attribute list value
744 * in ntfs_ino->attr_list and it is ntfs_ino->attr_list_size bytes.
745 */
746 if (S_ISDIR(vi->i_mode)) {
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000747 loff_t bvi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 struct inode *bvi;
749 ntfs_inode *bni;
750 INDEX_ROOT *ir;
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000751 u8 *ir_end, *index_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 /* It is a directory, find index root attribute. */
754 ntfs_attr_reinit_search_ctx(ctx);
755 err = ntfs_attr_lookup(AT_INDEX_ROOT, I30, 4, CASE_SENSITIVE,
756 0, NULL, 0, ctx);
757 if (unlikely(err)) {
758 if (err == -ENOENT) {
759 // FIXME: File is corrupt! Hot-fix with empty
760 // index root attribute if recovery option is
761 // set.
762 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute "
763 "is missing.");
764 }
765 goto unm_err_out;
766 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000767 a = ctx->attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 /* Set up the state. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000769 if (unlikely(a->non_resident)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 ntfs_error(vol->sb, "$INDEX_ROOT attribute is not "
771 "resident.");
772 goto unm_err_out;
773 }
774 /* Ensure the attribute name is placed before the value. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000775 if (unlikely(a->name_length && (le16_to_cpu(a->name_offset) >=
776 le16_to_cpu(a->data.resident.value_offset)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 ntfs_error(vol->sb, "$INDEX_ROOT attribute name is "
778 "placed after the attribute value.");
779 goto unm_err_out;
780 }
781 /*
782 * Compressed/encrypted index root just means that the newly
783 * created files in that directory should be created compressed/
784 * encrypted. However index root cannot be both compressed and
785 * encrypted.
786 */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000787 if (a->flags & ATTR_COMPRESSION_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 NInoSetCompressed(ni);
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000789 if (a->flags & ATTR_IS_ENCRYPTED) {
790 if (a->flags & ATTR_COMPRESSION_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 ntfs_error(vi->i_sb, "Found encrypted and "
792 "compressed attribute.");
793 goto unm_err_out;
794 }
795 NInoSetEncrypted(ni);
796 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000797 if (a->flags & ATTR_IS_SPARSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 NInoSetSparse(ni);
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000799 ir = (INDEX_ROOT*)((u8*)a +
800 le16_to_cpu(a->data.resident.value_offset));
801 ir_end = (u8*)ir + le32_to_cpu(a->data.resident.value_length);
802 if (ir_end > (u8*)ctx->mrec + vol->mft_record_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is "
804 "corrupt.");
805 goto unm_err_out;
806 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000807 index_end = (u8*)&ir->index +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 le32_to_cpu(ir->index.index_length);
809 if (index_end > ir_end) {
810 ntfs_error(vi->i_sb, "Directory index is corrupt.");
811 goto unm_err_out;
812 }
813 if (ir->type != AT_FILE_NAME) {
814 ntfs_error(vi->i_sb, "Indexed attribute is not "
815 "$FILE_NAME.");
816 goto unm_err_out;
817 }
818 if (ir->collation_rule != COLLATION_FILE_NAME) {
819 ntfs_error(vi->i_sb, "Index collation rule is not "
820 "COLLATION_FILE_NAME.");
821 goto unm_err_out;
822 }
823 ni->itype.index.collation_rule = ir->collation_rule;
824 ni->itype.index.block_size = le32_to_cpu(ir->index_block_size);
825 if (ni->itype.index.block_size &
826 (ni->itype.index.block_size - 1)) {
827 ntfs_error(vi->i_sb, "Index block size (%u) is not a "
828 "power of two.",
829 ni->itype.index.block_size);
830 goto unm_err_out;
831 }
832 if (ni->itype.index.block_size > PAGE_CACHE_SIZE) {
833 ntfs_error(vi->i_sb, "Index block size (%u) > "
834 "PAGE_CACHE_SIZE (%ld) is not "
835 "supported. Sorry.",
836 ni->itype.index.block_size,
837 PAGE_CACHE_SIZE);
838 err = -EOPNOTSUPP;
839 goto unm_err_out;
840 }
841 if (ni->itype.index.block_size < NTFS_BLOCK_SIZE) {
842 ntfs_error(vi->i_sb, "Index block size (%u) < "
843 "NTFS_BLOCK_SIZE (%i) is not "
844 "supported. Sorry.",
845 ni->itype.index.block_size,
846 NTFS_BLOCK_SIZE);
847 err = -EOPNOTSUPP;
848 goto unm_err_out;
849 }
850 ni->itype.index.block_size_bits =
851 ffs(ni->itype.index.block_size) - 1;
852 /* Determine the size of a vcn in the directory index. */
853 if (vol->cluster_size <= ni->itype.index.block_size) {
854 ni->itype.index.vcn_size = vol->cluster_size;
855 ni->itype.index.vcn_size_bits = vol->cluster_size_bits;
856 } else {
857 ni->itype.index.vcn_size = vol->sector_size;
858 ni->itype.index.vcn_size_bits = vol->sector_size_bits;
859 }
860
861 /* Setup the index allocation attribute, even if not present. */
862 NInoSetMstProtected(ni);
863 ni->type = AT_INDEX_ALLOCATION;
864 ni->name = I30;
865 ni->name_len = 4;
866
867 if (!(ir->index.flags & LARGE_INDEX)) {
868 /* No index allocation. */
869 vi->i_size = ni->initialized_size =
870 ni->allocated_size = 0;
871 /* We are done with the mft record, so we release it. */
872 ntfs_attr_put_search_ctx(ctx);
873 unmap_mft_record(ni);
874 m = NULL;
875 ctx = NULL;
876 goto skip_large_dir_stuff;
877 } /* LARGE_INDEX: Index allocation present. Setup state. */
878 NInoSetIndexAllocPresent(ni);
879 /* Find index allocation attribute. */
880 ntfs_attr_reinit_search_ctx(ctx);
881 err = ntfs_attr_lookup(AT_INDEX_ALLOCATION, I30, 4,
882 CASE_SENSITIVE, 0, NULL, 0, ctx);
883 if (unlikely(err)) {
884 if (err == -ENOENT)
885 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION "
886 "attribute is not present but "
887 "$INDEX_ROOT indicated it is.");
888 else
889 ntfs_error(vi->i_sb, "Failed to lookup "
890 "$INDEX_ALLOCATION "
891 "attribute.");
892 goto unm_err_out;
893 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000894 a = ctx->attr;
895 if (!a->non_resident) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
897 "is resident.");
898 goto unm_err_out;
899 }
900 /*
901 * Ensure the attribute name is placed before the mapping pairs
902 * array.
903 */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000904 if (unlikely(a->name_length && (le16_to_cpu(a->name_offset) >=
905 le16_to_cpu(
906 a->data.non_resident.mapping_pairs_offset)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 ntfs_error(vol->sb, "$INDEX_ALLOCATION attribute name "
908 "is placed after the mapping pairs "
909 "array.");
910 goto unm_err_out;
911 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000912 if (a->flags & ATTR_IS_ENCRYPTED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
914 "is encrypted.");
915 goto unm_err_out;
916 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000917 if (a->flags & ATTR_IS_SPARSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
919 "is sparse.");
920 goto unm_err_out;
921 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000922 if (a->flags & ATTR_COMPRESSION_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
924 "is compressed.");
925 goto unm_err_out;
926 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000927 if (a->data.non_resident.lowest_vcn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 ntfs_error(vi->i_sb, "First extent of "
929 "$INDEX_ALLOCATION attribute has non "
930 "zero lowest_vcn.");
931 goto unm_err_out;
932 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000933 vi->i_size = sle64_to_cpu(a->data.non_resident.data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 ni->initialized_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000935 a->data.non_resident.initialized_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 ni->allocated_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +0000937 a->data.non_resident.allocated_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /*
939 * We are done with the mft record, so we release it. Otherwise
940 * we would deadlock in ntfs_attr_iget().
941 */
942 ntfs_attr_put_search_ctx(ctx);
943 unmap_mft_record(ni);
944 m = NULL;
945 ctx = NULL;
946 /* Get the index bitmap attribute inode. */
947 bvi = ntfs_attr_iget(vi, AT_BITMAP, I30, 4);
948 if (IS_ERR(bvi)) {
949 ntfs_error(vi->i_sb, "Failed to get bitmap attribute.");
950 err = PTR_ERR(bvi);
951 goto unm_err_out;
952 }
953 ni->itype.index.bmp_ino = bvi;
954 bni = NTFS_I(bvi);
955 if (NInoCompressed(bni) || NInoEncrypted(bni) ||
956 NInoSparse(bni)) {
957 ntfs_error(vi->i_sb, "$BITMAP attribute is compressed "
958 "and/or encrypted and/or sparse.");
959 goto unm_err_out;
960 }
961 /* Consistency check bitmap size vs. index allocation size. */
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000962 bvi_size = i_size_read(bvi);
963 if ((bvi_size << 3) < (vi->i_size >>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 ni->itype.index.block_size_bits)) {
965 ntfs_error(vi->i_sb, "Index bitmap too small (0x%llx) "
966 "for index allocation (0x%llx).",
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +0000967 bvi_size << 3, vi->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 goto unm_err_out;
969 }
970skip_large_dir_stuff:
971 /* Setup the operations for this inode. */
972 vi->i_op = &ntfs_dir_inode_ops;
973 vi->i_fop = &ntfs_dir_ops;
974 } else {
975 /* It is a file. */
976 ntfs_attr_reinit_search_ctx(ctx);
977
978 /* Setup the data attribute, even if not present. */
979 ni->type = AT_DATA;
980 ni->name = NULL;
981 ni->name_len = 0;
982
983 /* Find first extent of the unnamed data attribute. */
984 err = ntfs_attr_lookup(AT_DATA, NULL, 0, 0, 0, NULL, 0, ctx);
985 if (unlikely(err)) {
986 vi->i_size = ni->initialized_size =
987 ni->allocated_size = 0;
988 if (err != -ENOENT) {
989 ntfs_error(vi->i_sb, "Failed to lookup $DATA "
990 "attribute.");
991 goto unm_err_out;
992 }
993 /*
994 * FILE_Secure does not have an unnamed $DATA
995 * attribute, so we special case it here.
996 */
997 if (vi->i_ino == FILE_Secure)
998 goto no_data_attr_special_case;
999 /*
1000 * Most if not all the system files in the $Extend
1001 * system directory do not have unnamed data
1002 * attributes so we need to check if the parent
1003 * directory of the file is FILE_Extend and if it is
1004 * ignore this error. To do this we need to get the
1005 * name of this inode from the mft record as the name
1006 * contains the back reference to the parent directory.
1007 */
1008 if (ntfs_is_extended_system_file(ctx) > 0)
1009 goto no_data_attr_special_case;
1010 // FIXME: File is corrupt! Hot-fix with empty data
1011 // attribute if recovery option is set.
1012 ntfs_error(vi->i_sb, "$DATA attribute is missing.");
1013 goto unm_err_out;
1014 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001015 a = ctx->attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /* Setup the state. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001017 if (a->non_resident) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 NInoSetNonResident(ni);
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001019 if (a->flags & ATTR_COMPRESSION_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 NInoSetCompressed(ni);
1021 if (vol->cluster_size > 4096) {
1022 ntfs_error(vi->i_sb, "Found "
1023 "compressed data but "
1024 "compression is disabled due "
1025 "to cluster size (%i) > 4kiB.",
1026 vol->cluster_size);
1027 goto unm_err_out;
1028 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001029 if ((a->flags & ATTR_COMPRESSION_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 != ATTR_IS_COMPRESSED) {
1031 ntfs_error(vi->i_sb, "Found "
1032 "unknown compression method or "
1033 "corrupt file.");
1034 goto unm_err_out;
1035 }
1036 ni->itype.compressed.block_clusters = 1U <<
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001037 a->data.non_resident.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 compression_unit;
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001039 if (a->data.non_resident.compression_unit !=
1040 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 ntfs_error(vi->i_sb, "Found "
1042 "nonstandard compression unit "
1043 "(%u instead of 4). Cannot "
1044 "handle this.",
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001045 a->data.non_resident.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 compression_unit);
1047 err = -EOPNOTSUPP;
1048 goto unm_err_out;
1049 }
1050 ni->itype.compressed.block_size = 1U << (
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001051 a->data.non_resident.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 compression_unit +
1053 vol->cluster_size_bits);
1054 ni->itype.compressed.block_size_bits = ffs(
1055 ni->itype.compressed.block_size) - 1;
1056 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001057 if (a->flags & ATTR_IS_ENCRYPTED) {
1058 if (a->flags & ATTR_COMPRESSION_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 ntfs_error(vi->i_sb, "Found encrypted "
1060 "and compressed data.");
1061 goto unm_err_out;
1062 }
1063 NInoSetEncrypted(ni);
1064 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001065 if (a->flags & ATTR_IS_SPARSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 NInoSetSparse(ni);
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001067 if (a->data.non_resident.lowest_vcn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 ntfs_error(vi->i_sb, "First extent of $DATA "
1069 "attribute has non zero "
1070 "lowest_vcn.");
1071 goto unm_err_out;
1072 }
1073 /* Setup all the sizes. */
1074 vi->i_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001075 a->data.non_resident.data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 ni->initialized_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001077 a->data.non_resident.initialized_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 ni->allocated_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001079 a->data.non_resident.allocated_size);
1080 if (NInoCompressed(ni))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 ni->itype.compressed.size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001082 a->data.non_resident.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 compressed_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 } else { /* Resident attribute. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001085 /* Setup all the sizes. */
1086 vi->i_size = ni->initialized_size = le32_to_cpu(
1087 a->data.resident.value_length);
1088 ni->allocated_size = le32_to_cpu(a->length) -
1089 le16_to_cpu(
1090 a->data.resident.value_offset);
1091 if (vi->i_size > ni->allocated_size) {
1092 ntfs_error(vi->i_sb, "Resident data attribute "
1093 "is corrupt (size exceeds "
1094 "allocation).");
1095 goto unm_err_out;
1096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098no_data_attr_special_case:
1099 /* We are done with the mft record, so we release it. */
1100 ntfs_attr_put_search_ctx(ctx);
1101 unmap_mft_record(ni);
1102 m = NULL;
1103 ctx = NULL;
1104 /* Setup the operations for this inode. */
1105 vi->i_op = &ntfs_file_inode_ops;
1106 vi->i_fop = &ntfs_file_ops;
1107 }
1108 if (NInoMstProtected(ni))
1109 vi->i_mapping->a_ops = &ntfs_mst_aops;
1110 else
1111 vi->i_mapping->a_ops = &ntfs_aops;
1112 /*
1113 * The number of 512-byte blocks used on disk (for stat). This is in so
1114 * far inaccurate as it doesn't account for any named streams or other
1115 * special non-resident attributes, but that is how Windows works, too,
1116 * so we are at least consistent with Windows, if not entirely
1117 * consistent with the Linux Way. Doing it the Linux Way would cause a
1118 * significant slowdown as it would involve iterating over all
1119 * attributes in the mft record and adding the allocated/compressed
1120 * sizes of all non-resident attributes present to give us the Linux
1121 * correct size that should go into i_blocks (after division by 512).
1122 */
1123 if (S_ISDIR(vi->i_mode) || !NInoCompressed(ni))
1124 vi->i_blocks = ni->allocated_size >> 9;
1125 else
1126 vi->i_blocks = ni->itype.compressed.size >> 9;
1127
1128 ntfs_debug("Done.");
1129 return 0;
1130
1131unm_err_out:
1132 if (!err)
1133 err = -EIO;
1134 if (ctx)
1135 ntfs_attr_put_search_ctx(ctx);
1136 if (m)
1137 unmap_mft_record(ni);
1138err_out:
1139 ntfs_error(vol->sb, "Failed with error code %i. Marking corrupt "
1140 "inode 0x%lx as bad. Run chkdsk.", err, vi->i_ino);
1141 make_bad_inode(vi);
1142 if (err != -EOPNOTSUPP && err != -ENOMEM)
1143 NVolSetErrors(vol);
1144 return err;
1145}
1146
1147/**
1148 * ntfs_read_locked_attr_inode - read an attribute inode from its base inode
1149 * @base_vi: base inode
1150 * @vi: attribute inode to read
1151 *
1152 * ntfs_read_locked_attr_inode() is called from ntfs_attr_iget() to read the
1153 * attribute inode described by @vi into memory from the base mft record
1154 * described by @base_ni.
1155 *
1156 * ntfs_read_locked_attr_inode() maps, pins and locks the base inode for
1157 * reading and looks up the attribute described by @vi before setting up the
1158 * necessary fields in @vi as well as initializing the ntfs inode.
1159 *
1160 * Q: What locks are held when the function is called?
1161 * A: i_state has I_LOCK set, hence the inode is locked, also
1162 * i_count is set to 1, so it is not going to go away
1163 *
1164 * Return 0 on success and -errno on error. In the error case, the inode will
1165 * have had make_bad_inode() executed on it.
1166 */
1167static int ntfs_read_locked_attr_inode(struct inode *base_vi, struct inode *vi)
1168{
1169 ntfs_volume *vol = NTFS_SB(vi->i_sb);
1170 ntfs_inode *ni, *base_ni;
1171 MFT_RECORD *m;
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001172 ATTR_RECORD *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 ntfs_attr_search_ctx *ctx;
1174 int err = 0;
1175
1176 ntfs_debug("Entering for i_ino 0x%lx.", vi->i_ino);
1177
1178 ntfs_init_big_inode(vi);
1179
1180 ni = NTFS_I(vi);
1181 base_ni = NTFS_I(base_vi);
1182
1183 /* Just mirror the values from the base inode. */
1184 vi->i_blksize = base_vi->i_blksize;
1185 vi->i_version = base_vi->i_version;
1186 vi->i_uid = base_vi->i_uid;
1187 vi->i_gid = base_vi->i_gid;
1188 vi->i_nlink = base_vi->i_nlink;
1189 vi->i_mtime = base_vi->i_mtime;
1190 vi->i_ctime = base_vi->i_ctime;
1191 vi->i_atime = base_vi->i_atime;
1192 vi->i_generation = ni->seq_no = base_ni->seq_no;
1193
1194 /* Set inode type to zero but preserve permissions. */
1195 vi->i_mode = base_vi->i_mode & ~S_IFMT;
1196
1197 m = map_mft_record(base_ni);
1198 if (IS_ERR(m)) {
1199 err = PTR_ERR(m);
1200 goto err_out;
1201 }
1202 ctx = ntfs_attr_get_search_ctx(base_ni, m);
1203 if (!ctx) {
1204 err = -ENOMEM;
1205 goto unm_err_out;
1206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 /* Find the attribute. */
1208 err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
1209 CASE_SENSITIVE, 0, NULL, 0, ctx);
1210 if (unlikely(err))
1211 goto unm_err_out;
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001212 a = ctx->attr;
1213 if (!a->non_resident) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 /* Ensure the attribute name is placed before the value. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001215 if (unlikely(a->name_length && (le16_to_cpu(a->name_offset) >=
1216 le16_to_cpu(a->data.resident.value_offset)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 ntfs_error(vol->sb, "Attribute name is placed after "
1218 "the attribute value.");
1219 goto unm_err_out;
1220 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001221 if (NInoMstProtected(ni) || a->flags) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 ntfs_error(vi->i_sb, "Found mst protected attribute "
1223 "or attribute with non-zero flags but "
1224 "the attribute is resident. Please "
1225 "report you saw this message to "
1226 "linux-ntfs-dev@lists.sourceforge.net");
1227 goto unm_err_out;
1228 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001229 /* Resident attribute. Setup all the sizes. */
1230 vi->i_size = ni->initialized_size = le32_to_cpu(
1231 a->data.resident.value_length);
1232 ni->allocated_size = le32_to_cpu(a->length) -
1233 le16_to_cpu(a->data.resident.value_offset);
1234 if (vi->i_size > ni->allocated_size) {
1235 ntfs_error(vi->i_sb, "Resident data attribute is "
1236 "corrupt (size exceeds allocation).");
1237 goto unm_err_out;
1238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 } else {
1240 NInoSetNonResident(ni);
1241 /*
1242 * Ensure the attribute name is placed before the mapping pairs
1243 * array.
1244 */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001245 if (unlikely(a->name_length && (le16_to_cpu(a->name_offset) >=
1246 le16_to_cpu(
1247 a->data.non_resident.mapping_pairs_offset)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 ntfs_error(vol->sb, "Attribute name is placed after "
1249 "the mapping pairs array.");
1250 goto unm_err_out;
1251 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001252 if (a->flags & ATTR_COMPRESSION_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (NInoMstProtected(ni)) {
1254 ntfs_error(vi->i_sb, "Found mst protected "
1255 "attribute but the attribute "
1256 "is compressed. Please report "
1257 "you saw this message to "
1258 "linux-ntfs-dev@lists."
1259 "sourceforge.net");
1260 goto unm_err_out;
1261 }
1262 NInoSetCompressed(ni);
1263 if ((ni->type != AT_DATA) || (ni->type == AT_DATA &&
1264 ni->name_len)) {
1265 ntfs_error(vi->i_sb, "Found compressed "
1266 "non-data or named data "
1267 "attribute. Please report "
1268 "you saw this message to "
1269 "linux-ntfs-dev@lists."
1270 "sourceforge.net");
1271 goto unm_err_out;
1272 }
1273 if (vol->cluster_size > 4096) {
1274 ntfs_error(vi->i_sb, "Found compressed "
1275 "attribute but compression is "
1276 "disabled due to cluster size "
1277 "(%i) > 4kiB.",
1278 vol->cluster_size);
1279 goto unm_err_out;
1280 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001281 if ((a->flags & ATTR_COMPRESSION_MASK) !=
1282 ATTR_IS_COMPRESSED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 ntfs_error(vi->i_sb, "Found unknown "
1284 "compression method.");
1285 goto unm_err_out;
1286 }
1287 ni->itype.compressed.block_clusters = 1U <<
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001288 a->data.non_resident.compression_unit;
1289 if (a->data.non_resident.compression_unit != 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 ntfs_error(vi->i_sb, "Found nonstandard "
1291 "compression unit (%u instead "
1292 "of 4). Cannot handle this.",
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001293 a->data.non_resident.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 compression_unit);
1295 err = -EOPNOTSUPP;
1296 goto unm_err_out;
1297 }
1298 ni->itype.compressed.block_size = 1U << (
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001299 a->data.non_resident.compression_unit +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 vol->cluster_size_bits);
1301 ni->itype.compressed.block_size_bits = ffs(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001302 ni->itype.compressed.block_size) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001304 if (a->flags & ATTR_IS_ENCRYPTED) {
1305 if (a->flags & ATTR_COMPRESSION_MASK) {
1306 ntfs_error(vi->i_sb, "Found encrypted and "
1307 "compressed data.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 goto unm_err_out;
1309 }
1310 if (NInoMstProtected(ni)) {
1311 ntfs_error(vi->i_sb, "Found mst protected "
1312 "attribute but the attribute "
1313 "is encrypted. Please report "
1314 "you saw this message to "
1315 "linux-ntfs-dev@lists."
1316 "sourceforge.net");
1317 goto unm_err_out;
1318 }
1319 NInoSetEncrypted(ni);
1320 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001321 if (a->flags & ATTR_IS_SPARSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (NInoMstProtected(ni)) {
1323 ntfs_error(vi->i_sb, "Found mst protected "
1324 "attribute but the attribute "
1325 "is sparse. Please report "
1326 "you saw this message to "
1327 "linux-ntfs-dev@lists."
1328 "sourceforge.net");
1329 goto unm_err_out;
1330 }
1331 NInoSetSparse(ni);
1332 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001333 if (a->data.non_resident.lowest_vcn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 ntfs_error(vi->i_sb, "First extent of attribute has "
1335 "non-zero lowest_vcn.");
1336 goto unm_err_out;
1337 }
1338 /* Setup all the sizes. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001339 vi->i_size = sle64_to_cpu(a->data.non_resident.data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 ni->initialized_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001341 a->data.non_resident.initialized_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 ni->allocated_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001343 a->data.non_resident.allocated_size);
1344 if (NInoCompressed(ni))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 ni->itype.compressed.size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001346 a->data.non_resident.compressed_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
1348
1349 /* Setup the operations for this attribute inode. */
1350 vi->i_op = NULL;
1351 vi->i_fop = NULL;
1352 if (NInoMstProtected(ni))
1353 vi->i_mapping->a_ops = &ntfs_mst_aops;
1354 else
1355 vi->i_mapping->a_ops = &ntfs_aops;
1356
1357 if (!NInoCompressed(ni))
1358 vi->i_blocks = ni->allocated_size >> 9;
1359 else
1360 vi->i_blocks = ni->itype.compressed.size >> 9;
1361
1362 /*
1363 * Make sure the base inode doesn't go away and attach it to the
1364 * attribute inode.
1365 */
1366 igrab(base_vi);
1367 ni->ext.base_ntfs_ino = base_ni;
1368 ni->nr_extents = -1;
1369
1370 ntfs_attr_put_search_ctx(ctx);
1371 unmap_mft_record(base_ni);
1372
1373 ntfs_debug("Done.");
1374 return 0;
1375
1376unm_err_out:
1377 if (!err)
1378 err = -EIO;
1379 if (ctx)
1380 ntfs_attr_put_search_ctx(ctx);
1381 unmap_mft_record(base_ni);
1382err_out:
1383 ntfs_error(vol->sb, "Failed with error code %i while reading attribute "
1384 "inode (mft_no 0x%lx, type 0x%x, name_len %i). "
1385 "Marking corrupt inode and base inode 0x%lx as bad. "
1386 "Run chkdsk.", err, vi->i_ino, ni->type, ni->name_len,
1387 base_vi->i_ino);
1388 make_bad_inode(vi);
1389 make_bad_inode(base_vi);
1390 if (err != -ENOMEM)
1391 NVolSetErrors(vol);
1392 return err;
1393}
1394
1395/**
1396 * ntfs_read_locked_index_inode - read an index inode from its base inode
1397 * @base_vi: base inode
1398 * @vi: index inode to read
1399 *
1400 * ntfs_read_locked_index_inode() is called from ntfs_index_iget() to read the
1401 * index inode described by @vi into memory from the base mft record described
1402 * by @base_ni.
1403 *
1404 * ntfs_read_locked_index_inode() maps, pins and locks the base inode for
1405 * reading and looks up the attributes relating to the index described by @vi
1406 * before setting up the necessary fields in @vi as well as initializing the
1407 * ntfs inode.
1408 *
1409 * Note, index inodes are essentially attribute inodes (NInoAttr() is true)
1410 * with the attribute type set to AT_INDEX_ALLOCATION. Apart from that, they
1411 * are setup like directory inodes since directories are a special case of
1412 * indices ao they need to be treated in much the same way. Most importantly,
1413 * for small indices the index allocation attribute might not actually exist.
1414 * However, the index root attribute always exists but this does not need to
1415 * have an inode associated with it and this is why we define a new inode type
1416 * index. Also, like for directories, we need to have an attribute inode for
1417 * the bitmap attribute corresponding to the index allocation attribute and we
1418 * can store this in the appropriate field of the inode, just like we do for
1419 * normal directory inodes.
1420 *
1421 * Q: What locks are held when the function is called?
1422 * A: i_state has I_LOCK set, hence the inode is locked, also
1423 * i_count is set to 1, so it is not going to go away
1424 *
1425 * Return 0 on success and -errno on error. In the error case, the inode will
1426 * have had make_bad_inode() executed on it.
1427 */
1428static int ntfs_read_locked_index_inode(struct inode *base_vi, struct inode *vi)
1429{
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +00001430 loff_t bvi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 ntfs_volume *vol = NTFS_SB(vi->i_sb);
1432 ntfs_inode *ni, *base_ni, *bni;
1433 struct inode *bvi;
1434 MFT_RECORD *m;
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001435 ATTR_RECORD *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 ntfs_attr_search_ctx *ctx;
1437 INDEX_ROOT *ir;
1438 u8 *ir_end, *index_end;
1439 int err = 0;
1440
1441 ntfs_debug("Entering for i_ino 0x%lx.", vi->i_ino);
1442 ntfs_init_big_inode(vi);
1443 ni = NTFS_I(vi);
1444 base_ni = NTFS_I(base_vi);
1445 /* Just mirror the values from the base inode. */
1446 vi->i_blksize = base_vi->i_blksize;
1447 vi->i_version = base_vi->i_version;
1448 vi->i_uid = base_vi->i_uid;
1449 vi->i_gid = base_vi->i_gid;
1450 vi->i_nlink = base_vi->i_nlink;
1451 vi->i_mtime = base_vi->i_mtime;
1452 vi->i_ctime = base_vi->i_ctime;
1453 vi->i_atime = base_vi->i_atime;
1454 vi->i_generation = ni->seq_no = base_ni->seq_no;
1455 /* Set inode type to zero but preserve permissions. */
1456 vi->i_mode = base_vi->i_mode & ~S_IFMT;
1457 /* Map the mft record for the base inode. */
1458 m = map_mft_record(base_ni);
1459 if (IS_ERR(m)) {
1460 err = PTR_ERR(m);
1461 goto err_out;
1462 }
1463 ctx = ntfs_attr_get_search_ctx(base_ni, m);
1464 if (!ctx) {
1465 err = -ENOMEM;
1466 goto unm_err_out;
1467 }
1468 /* Find the index root attribute. */
1469 err = ntfs_attr_lookup(AT_INDEX_ROOT, ni->name, ni->name_len,
1470 CASE_SENSITIVE, 0, NULL, 0, ctx);
1471 if (unlikely(err)) {
1472 if (err == -ENOENT)
1473 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is "
1474 "missing.");
1475 goto unm_err_out;
1476 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001477 a = ctx->attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 /* Set up the state. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001479 if (unlikely(a->non_resident)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 ntfs_error(vol->sb, "$INDEX_ROOT attribute is not resident.");
1481 goto unm_err_out;
1482 }
1483 /* Ensure the attribute name is placed before the value. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001484 if (unlikely(a->name_length && (le16_to_cpu(a->name_offset) >=
1485 le16_to_cpu(a->data.resident.value_offset)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 ntfs_error(vol->sb, "$INDEX_ROOT attribute name is placed "
1487 "after the attribute value.");
1488 goto unm_err_out;
1489 }
1490 /* Compressed/encrypted/sparse index root is not allowed. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001491 if (a->flags & (ATTR_COMPRESSION_MASK | ATTR_IS_ENCRYPTED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 ATTR_IS_SPARSE)) {
1493 ntfs_error(vi->i_sb, "Found compressed/encrypted/sparse index "
1494 "root attribute.");
1495 goto unm_err_out;
1496 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001497 ir = (INDEX_ROOT*)((u8*)a + le16_to_cpu(a->data.resident.value_offset));
1498 ir_end = (u8*)ir + le32_to_cpu(a->data.resident.value_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 if (ir_end > (u8*)ctx->mrec + vol->mft_record_size) {
1500 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is corrupt.");
1501 goto unm_err_out;
1502 }
1503 index_end = (u8*)&ir->index + le32_to_cpu(ir->index.index_length);
1504 if (index_end > ir_end) {
1505 ntfs_error(vi->i_sb, "Index is corrupt.");
1506 goto unm_err_out;
1507 }
1508 if (ir->type) {
1509 ntfs_error(vi->i_sb, "Index type is not 0 (type is 0x%x).",
1510 le32_to_cpu(ir->type));
1511 goto unm_err_out;
1512 }
1513 ni->itype.index.collation_rule = ir->collation_rule;
1514 ntfs_debug("Index collation rule is 0x%x.",
1515 le32_to_cpu(ir->collation_rule));
1516 ni->itype.index.block_size = le32_to_cpu(ir->index_block_size);
1517 if (ni->itype.index.block_size & (ni->itype.index.block_size - 1)) {
1518 ntfs_error(vi->i_sb, "Index block size (%u) is not a power of "
1519 "two.", ni->itype.index.block_size);
1520 goto unm_err_out;
1521 }
1522 if (ni->itype.index.block_size > PAGE_CACHE_SIZE) {
1523 ntfs_error(vi->i_sb, "Index block size (%u) > PAGE_CACHE_SIZE "
1524 "(%ld) is not supported. Sorry.",
1525 ni->itype.index.block_size, PAGE_CACHE_SIZE);
1526 err = -EOPNOTSUPP;
1527 goto unm_err_out;
1528 }
1529 if (ni->itype.index.block_size < NTFS_BLOCK_SIZE) {
1530 ntfs_error(vi->i_sb, "Index block size (%u) < NTFS_BLOCK_SIZE "
1531 "(%i) is not supported. Sorry.",
1532 ni->itype.index.block_size, NTFS_BLOCK_SIZE);
1533 err = -EOPNOTSUPP;
1534 goto unm_err_out;
1535 }
1536 ni->itype.index.block_size_bits = ffs(ni->itype.index.block_size) - 1;
1537 /* Determine the size of a vcn in the index. */
1538 if (vol->cluster_size <= ni->itype.index.block_size) {
1539 ni->itype.index.vcn_size = vol->cluster_size;
1540 ni->itype.index.vcn_size_bits = vol->cluster_size_bits;
1541 } else {
1542 ni->itype.index.vcn_size = vol->sector_size;
1543 ni->itype.index.vcn_size_bits = vol->sector_size_bits;
1544 }
1545 /* Check for presence of index allocation attribute. */
1546 if (!(ir->index.flags & LARGE_INDEX)) {
1547 /* No index allocation. */
1548 vi->i_size = ni->initialized_size = ni->allocated_size = 0;
1549 /* We are done with the mft record, so we release it. */
1550 ntfs_attr_put_search_ctx(ctx);
1551 unmap_mft_record(base_ni);
1552 m = NULL;
1553 ctx = NULL;
1554 goto skip_large_index_stuff;
1555 } /* LARGE_INDEX: Index allocation present. Setup state. */
1556 NInoSetIndexAllocPresent(ni);
1557 /* Find index allocation attribute. */
1558 ntfs_attr_reinit_search_ctx(ctx);
1559 err = ntfs_attr_lookup(AT_INDEX_ALLOCATION, ni->name, ni->name_len,
1560 CASE_SENSITIVE, 0, NULL, 0, ctx);
1561 if (unlikely(err)) {
1562 if (err == -ENOENT)
1563 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1564 "not present but $INDEX_ROOT "
1565 "indicated it is.");
1566 else
1567 ntfs_error(vi->i_sb, "Failed to lookup "
1568 "$INDEX_ALLOCATION attribute.");
1569 goto unm_err_out;
1570 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001571 if (!a->non_resident) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1573 "resident.");
1574 goto unm_err_out;
1575 }
1576 /*
1577 * Ensure the attribute name is placed before the mapping pairs array.
1578 */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001579 if (unlikely(a->name_length && (le16_to_cpu(a->name_offset) >=
1580 le16_to_cpu(
1581 a->data.non_resident.mapping_pairs_offset)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 ntfs_error(vol->sb, "$INDEX_ALLOCATION attribute name is "
1583 "placed after the mapping pairs array.");
1584 goto unm_err_out;
1585 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001586 if (a->flags & ATTR_IS_ENCRYPTED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1588 "encrypted.");
1589 goto unm_err_out;
1590 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001591 if (a->flags & ATTR_IS_SPARSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is sparse.");
1593 goto unm_err_out;
1594 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001595 if (a->flags & ATTR_COMPRESSION_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1597 "compressed.");
1598 goto unm_err_out;
1599 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001600 if (a->data.non_resident.lowest_vcn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 ntfs_error(vi->i_sb, "First extent of $INDEX_ALLOCATION "
1602 "attribute has non zero lowest_vcn.");
1603 goto unm_err_out;
1604 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001605 vi->i_size = sle64_to_cpu(a->data.non_resident.data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 ni->initialized_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001607 a->data.non_resident.initialized_size);
1608 ni->allocated_size = sle64_to_cpu(a->data.non_resident.allocated_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 /*
1610 * We are done with the mft record, so we release it. Otherwise
1611 * we would deadlock in ntfs_attr_iget().
1612 */
1613 ntfs_attr_put_search_ctx(ctx);
1614 unmap_mft_record(base_ni);
1615 m = NULL;
1616 ctx = NULL;
1617 /* Get the index bitmap attribute inode. */
1618 bvi = ntfs_attr_iget(base_vi, AT_BITMAP, ni->name, ni->name_len);
1619 if (IS_ERR(bvi)) {
1620 ntfs_error(vi->i_sb, "Failed to get bitmap attribute.");
1621 err = PTR_ERR(bvi);
1622 goto unm_err_out;
1623 }
1624 bni = NTFS_I(bvi);
1625 if (NInoCompressed(bni) || NInoEncrypted(bni) ||
1626 NInoSparse(bni)) {
1627 ntfs_error(vi->i_sb, "$BITMAP attribute is compressed and/or "
1628 "encrypted and/or sparse.");
1629 goto iput_unm_err_out;
1630 }
1631 /* Consistency check bitmap size vs. index allocation size. */
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +00001632 bvi_size = i_size_read(bvi);
1633 if ((bvi_size << 3) < (vi->i_size >> ni->itype.index.block_size_bits)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 ntfs_error(vi->i_sb, "Index bitmap too small (0x%llx) for "
Anton Altaparmakovf50f3ac2004-11-19 22:16:00 +00001635 "index allocation (0x%llx).", bvi_size << 3,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 vi->i_size);
1637 goto iput_unm_err_out;
1638 }
1639 ni->itype.index.bmp_ino = bvi;
1640skip_large_index_stuff:
1641 /* Setup the operations for this index inode. */
1642 vi->i_op = NULL;
1643 vi->i_fop = NULL;
1644 vi->i_mapping->a_ops = &ntfs_mst_aops;
1645 vi->i_blocks = ni->allocated_size >> 9;
1646
1647 /*
1648 * Make sure the base inode doesn't go away and attach it to the
1649 * index inode.
1650 */
1651 igrab(base_vi);
1652 ni->ext.base_ntfs_ino = base_ni;
1653 ni->nr_extents = -1;
1654
1655 ntfs_debug("Done.");
1656 return 0;
1657
1658iput_unm_err_out:
1659 iput(bvi);
1660unm_err_out:
1661 if (!err)
1662 err = -EIO;
1663 if (ctx)
1664 ntfs_attr_put_search_ctx(ctx);
1665 if (m)
1666 unmap_mft_record(base_ni);
1667err_out:
1668 ntfs_error(vi->i_sb, "Failed with error code %i while reading index "
1669 "inode (mft_no 0x%lx, name_len %i.", err, vi->i_ino,
1670 ni->name_len);
1671 make_bad_inode(vi);
1672 if (err != -EOPNOTSUPP && err != -ENOMEM)
1673 NVolSetErrors(vol);
1674 return err;
1675}
1676
1677/**
1678 * ntfs_read_inode_mount - special read_inode for mount time use only
1679 * @vi: inode to read
1680 *
1681 * Read inode FILE_MFT at mount time, only called with super_block lock
1682 * held from within the read_super() code path.
1683 *
1684 * This function exists because when it is called the page cache for $MFT/$DATA
1685 * is not initialized and hence we cannot get at the contents of mft records
1686 * by calling map_mft_record*().
1687 *
1688 * Further it needs to cope with the circular references problem, i.e. cannot
1689 * load any attributes other than $ATTRIBUTE_LIST until $DATA is loaded, because
1690 * we do not know where the other extent mft records are yet and again, because
1691 * we cannot call map_mft_record*() yet. Obviously this applies only when an
1692 * attribute list is actually present in $MFT inode.
1693 *
1694 * We solve these problems by starting with the $DATA attribute before anything
1695 * else and iterating using ntfs_attr_lookup($DATA) over all extents. As each
1696 * extent is found, we ntfs_mapping_pairs_decompress() including the implied
1697 * ntfs_runlists_merge(). Each step of the iteration necessarily provides
1698 * sufficient information for the next step to complete.
1699 *
1700 * This should work but there are two possible pit falls (see inline comments
1701 * below), but only time will tell if they are real pits or just smoke...
1702 */
1703int ntfs_read_inode_mount(struct inode *vi)
1704{
1705 VCN next_vcn, last_vcn, highest_vcn;
1706 s64 block;
1707 struct super_block *sb = vi->i_sb;
1708 ntfs_volume *vol = NTFS_SB(sb);
1709 struct buffer_head *bh;
1710 ntfs_inode *ni;
1711 MFT_RECORD *m = NULL;
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001712 ATTR_RECORD *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 ntfs_attr_search_ctx *ctx;
1714 unsigned int i, nr_blocks;
1715 int err;
1716
1717 ntfs_debug("Entering.");
1718
1719 /* Initialize the ntfs specific part of @vi. */
1720 ntfs_init_big_inode(vi);
1721
1722 ni = NTFS_I(vi);
1723
1724 /* Setup the data attribute. It is special as it is mst protected. */
1725 NInoSetNonResident(ni);
1726 NInoSetMstProtected(ni);
Anton Altaparmakovc002f422005-02-03 12:02:56 +00001727 NInoSetSparseDisabled(ni);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 ni->type = AT_DATA;
1729 ni->name = NULL;
1730 ni->name_len = 0;
1731
1732 /*
1733 * This sets up our little cheat allowing us to reuse the async read io
1734 * completion handler for directories.
1735 */
1736 ni->itype.index.block_size = vol->mft_record_size;
1737 ni->itype.index.block_size_bits = vol->mft_record_size_bits;
1738
1739 /* Very important! Needed to be able to call map_mft_record*(). */
1740 vol->mft_ino = vi;
1741
1742 /* Allocate enough memory to read the first mft record. */
1743 if (vol->mft_record_size > 64 * 1024) {
1744 ntfs_error(sb, "Unsupported mft record size %i (max 64kiB).",
1745 vol->mft_record_size);
1746 goto err_out;
1747 }
1748 i = vol->mft_record_size;
1749 if (i < sb->s_blocksize)
1750 i = sb->s_blocksize;
1751 m = (MFT_RECORD*)ntfs_malloc_nofs(i);
1752 if (!m) {
1753 ntfs_error(sb, "Failed to allocate buffer for $MFT record 0.");
1754 goto err_out;
1755 }
1756
1757 /* Determine the first block of the $MFT/$DATA attribute. */
1758 block = vol->mft_lcn << vol->cluster_size_bits >>
1759 sb->s_blocksize_bits;
1760 nr_blocks = vol->mft_record_size >> sb->s_blocksize_bits;
1761 if (!nr_blocks)
1762 nr_blocks = 1;
1763
1764 /* Load $MFT/$DATA's first mft record. */
1765 for (i = 0; i < nr_blocks; i++) {
1766 bh = sb_bread(sb, block++);
1767 if (!bh) {
1768 ntfs_error(sb, "Device read failed.");
1769 goto err_out;
1770 }
1771 memcpy((char*)m + (i << sb->s_blocksize_bits), bh->b_data,
1772 sb->s_blocksize);
1773 brelse(bh);
1774 }
1775
1776 /* Apply the mst fixups. */
1777 if (post_read_mst_fixup((NTFS_RECORD*)m, vol->mft_record_size)) {
1778 /* FIXME: Try to use the $MFTMirr now. */
1779 ntfs_error(sb, "MST fixup failed. $MFT is corrupt.");
1780 goto err_out;
1781 }
1782
1783 /* Need this to sanity check attribute list references to $MFT. */
1784 vi->i_generation = ni->seq_no = le16_to_cpu(m->sequence_number);
1785
1786 /* Provides readpage() and sync_page() for map_mft_record(). */
1787 vi->i_mapping->a_ops = &ntfs_mst_aops;
1788
1789 ctx = ntfs_attr_get_search_ctx(ni, m);
1790 if (!ctx) {
1791 err = -ENOMEM;
1792 goto err_out;
1793 }
1794
1795 /* Find the attribute list attribute if present. */
1796 err = ntfs_attr_lookup(AT_ATTRIBUTE_LIST, NULL, 0, 0, 0, NULL, 0, ctx);
1797 if (err) {
1798 if (unlikely(err != -ENOENT)) {
1799 ntfs_error(sb, "Failed to lookup attribute list "
1800 "attribute. You should run chkdsk.");
1801 goto put_err_out;
1802 }
1803 } else /* if (!err) */ {
1804 ATTR_LIST_ENTRY *al_entry, *next_al_entry;
1805 u8 *al_end;
1806
1807 ntfs_debug("Attribute list attribute found in $MFT.");
1808 NInoSetAttrList(ni);
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001809 a = ctx->attr;
1810 if (a->flags & ATTR_IS_ENCRYPTED ||
1811 a->flags & ATTR_COMPRESSION_MASK ||
1812 a->flags & ATTR_IS_SPARSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 ntfs_error(sb, "Attribute list attribute is "
1814 "compressed/encrypted/sparse. Not "
1815 "allowed. $MFT is corrupt. You should "
1816 "run chkdsk.");
1817 goto put_err_out;
1818 }
1819 /* Now allocate memory for the attribute list. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001820 ni->attr_list_size = (u32)ntfs_attr_size(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 ni->attr_list = ntfs_malloc_nofs(ni->attr_list_size);
1822 if (!ni->attr_list) {
1823 ntfs_error(sb, "Not enough memory to allocate buffer "
1824 "for attribute list.");
1825 goto put_err_out;
1826 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001827 if (a->non_resident) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 NInoSetAttrListNonResident(ni);
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001829 if (a->data.non_resident.lowest_vcn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 ntfs_error(sb, "Attribute list has non zero "
1831 "lowest_vcn. $MFT is corrupt. "
1832 "You should run chkdsk.");
1833 goto put_err_out;
1834 }
1835 /* Setup the runlist. */
1836 ni->attr_list_rl.rl = ntfs_mapping_pairs_decompress(vol,
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001837 a, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 if (IS_ERR(ni->attr_list_rl.rl)) {
1839 err = PTR_ERR(ni->attr_list_rl.rl);
1840 ni->attr_list_rl.rl = NULL;
1841 ntfs_error(sb, "Mapping pairs decompression "
1842 "failed with error code %i.",
1843 -err);
1844 goto put_err_out;
1845 }
1846 /* Now load the attribute list. */
1847 if ((err = load_attribute_list(vol, &ni->attr_list_rl,
1848 ni->attr_list, ni->attr_list_size,
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001849 sle64_to_cpu(a->data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 non_resident.initialized_size)))) {
1851 ntfs_error(sb, "Failed to load attribute list "
1852 "attribute with error code %i.",
1853 -err);
1854 goto put_err_out;
1855 }
1856 } else /* if (!ctx.attr->non_resident) */ {
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001857 if ((u8*)a + le16_to_cpu(
1858 a->data.resident.value_offset) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 le32_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001860 a->data.resident.value_length) >
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 (u8*)ctx->mrec + vol->mft_record_size) {
1862 ntfs_error(sb, "Corrupt attribute list "
1863 "attribute.");
1864 goto put_err_out;
1865 }
1866 /* Now copy the attribute list. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001867 memcpy(ni->attr_list, (u8*)a + le16_to_cpu(
1868 a->data.resident.value_offset),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 le32_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001870 a->data.resident.value_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872 /* The attribute list is now setup in memory. */
1873 /*
1874 * FIXME: I don't know if this case is actually possible.
1875 * According to logic it is not possible but I have seen too
1876 * many weird things in MS software to rely on logic... Thus we
1877 * perform a manual search and make sure the first $MFT/$DATA
1878 * extent is in the base inode. If it is not we abort with an
1879 * error and if we ever see a report of this error we will need
1880 * to do some magic in order to have the necessary mft record
1881 * loaded and in the right place in the page cache. But
1882 * hopefully logic will prevail and this never happens...
1883 */
1884 al_entry = (ATTR_LIST_ENTRY*)ni->attr_list;
1885 al_end = (u8*)al_entry + ni->attr_list_size;
1886 for (;; al_entry = next_al_entry) {
1887 /* Out of bounds check. */
1888 if ((u8*)al_entry < ni->attr_list ||
1889 (u8*)al_entry > al_end)
1890 goto em_put_err_out;
1891 /* Catch the end of the attribute list. */
1892 if ((u8*)al_entry == al_end)
1893 goto em_put_err_out;
1894 if (!al_entry->length)
1895 goto em_put_err_out;
1896 if ((u8*)al_entry + 6 > al_end || (u8*)al_entry +
1897 le16_to_cpu(al_entry->length) > al_end)
1898 goto em_put_err_out;
1899 next_al_entry = (ATTR_LIST_ENTRY*)((u8*)al_entry +
1900 le16_to_cpu(al_entry->length));
1901 if (le32_to_cpu(al_entry->type) >
1902 const_le32_to_cpu(AT_DATA))
1903 goto em_put_err_out;
1904 if (AT_DATA != al_entry->type)
1905 continue;
1906 /* We want an unnamed attribute. */
1907 if (al_entry->name_length)
1908 goto em_put_err_out;
1909 /* Want the first entry, i.e. lowest_vcn == 0. */
1910 if (al_entry->lowest_vcn)
1911 goto em_put_err_out;
1912 /* First entry has to be in the base mft record. */
1913 if (MREF_LE(al_entry->mft_reference) != vi->i_ino) {
1914 /* MFT references do not match, logic fails. */
1915 ntfs_error(sb, "BUG: The first $DATA extent "
1916 "of $MFT is not in the base "
1917 "mft record. Please report "
1918 "you saw this message to "
1919 "linux-ntfs-dev@lists."
1920 "sourceforge.net");
1921 goto put_err_out;
1922 } else {
1923 /* Sequence numbers must match. */
1924 if (MSEQNO_LE(al_entry->mft_reference) !=
1925 ni->seq_no)
1926 goto em_put_err_out;
1927 /* Got it. All is ok. We can stop now. */
1928 break;
1929 }
1930 }
1931 }
1932
1933 ntfs_attr_reinit_search_ctx(ctx);
1934
1935 /* Now load all attribute extents. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001936 a = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 next_vcn = last_vcn = highest_vcn = 0;
1938 while (!(err = ntfs_attr_lookup(AT_DATA, NULL, 0, 0, next_vcn, NULL, 0,
1939 ctx))) {
1940 runlist_element *nrl;
1941
1942 /* Cache the current attribute. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001943 a = ctx->attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 /* $MFT must be non-resident. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001945 if (!a->non_resident) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 ntfs_error(sb, "$MFT must be non-resident but a "
1947 "resident extent was found. $MFT is "
1948 "corrupt. Run chkdsk.");
1949 goto put_err_out;
1950 }
1951 /* $MFT must be uncompressed and unencrypted. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001952 if (a->flags & ATTR_COMPRESSION_MASK ||
1953 a->flags & ATTR_IS_ENCRYPTED ||
1954 a->flags & ATTR_IS_SPARSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 ntfs_error(sb, "$MFT must be uncompressed, "
1956 "non-sparse, and unencrypted but a "
1957 "compressed/sparse/encrypted extent "
1958 "was found. $MFT is corrupt. Run "
1959 "chkdsk.");
1960 goto put_err_out;
1961 }
1962 /*
1963 * Decompress the mapping pairs array of this extent and merge
1964 * the result into the existing runlist. No need for locking
1965 * as we have exclusive access to the inode at this time and we
1966 * are a mount in progress task, too.
1967 */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001968 nrl = ntfs_mapping_pairs_decompress(vol, a, ni->runlist.rl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (IS_ERR(nrl)) {
1970 ntfs_error(sb, "ntfs_mapping_pairs_decompress() "
1971 "failed with error code %ld. $MFT is "
1972 "corrupt.", PTR_ERR(nrl));
1973 goto put_err_out;
1974 }
1975 ni->runlist.rl = nrl;
1976
1977 /* Are we in the first extent? */
1978 if (!next_vcn) {
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001979 if (a->data.non_resident.lowest_vcn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 ntfs_error(sb, "First extent of $DATA "
1981 "attribute has non zero "
1982 "lowest_vcn. $MFT is corrupt. "
1983 "You should run chkdsk.");
1984 goto put_err_out;
1985 }
1986 /* Get the last vcn in the $DATA attribute. */
1987 last_vcn = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001988 a->data.non_resident.allocated_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 >> vol->cluster_size_bits;
1990 /* Fill in the inode size. */
1991 vi->i_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001992 a->data.non_resident.data_size);
1993 ni->initialized_size = sle64_to_cpu(
1994 a->data.non_resident.initialized_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 ni->allocated_size = sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00001996 a->data.non_resident.allocated_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 /*
1998 * Verify the number of mft records does not exceed
1999 * 2^32 - 1.
2000 */
2001 if ((vi->i_size >> vol->mft_record_size_bits) >=
2002 (1ULL << 32)) {
2003 ntfs_error(sb, "$MFT is too big! Aborting.");
2004 goto put_err_out;
2005 }
2006 /*
2007 * We have got the first extent of the runlist for
2008 * $MFT which means it is now relatively safe to call
2009 * the normal ntfs_read_inode() function.
2010 * Complete reading the inode, this will actually
2011 * re-read the mft record for $MFT, this time entering
2012 * it into the page cache with which we complete the
2013 * kick start of the volume. It should be safe to do
2014 * this now as the first extent of $MFT/$DATA is
2015 * already known and we would hope that we don't need
2016 * further extents in order to find the other
2017 * attributes belonging to $MFT. Only time will tell if
2018 * this is really the case. If not we will have to play
2019 * magic at this point, possibly duplicating a lot of
2020 * ntfs_read_inode() at this point. We will need to
2021 * ensure we do enough of its work to be able to call
2022 * ntfs_read_inode() on extents of $MFT/$DATA. But lets
2023 * hope this never happens...
2024 */
2025 ntfs_read_locked_inode(vi);
2026 if (is_bad_inode(vi)) {
2027 ntfs_error(sb, "ntfs_read_inode() of $MFT "
2028 "failed. BUG or corrupt $MFT. "
2029 "Run chkdsk and if no errors "
2030 "are found, please report you "
2031 "saw this message to "
2032 "linux-ntfs-dev@lists."
2033 "sourceforge.net");
2034 ntfs_attr_put_search_ctx(ctx);
2035 /* Revert to the safe super operations. */
2036 ntfs_free(m);
2037 return -1;
2038 }
2039 /*
2040 * Re-initialize some specifics about $MFT's inode as
2041 * ntfs_read_inode() will have set up the default ones.
2042 */
2043 /* Set uid and gid to root. */
2044 vi->i_uid = vi->i_gid = 0;
2045 /* Regular file. No access for anyone. */
2046 vi->i_mode = S_IFREG;
2047 /* No VFS initiated operations allowed for $MFT. */
2048 vi->i_op = &ntfs_empty_inode_ops;
2049 vi->i_fop = &ntfs_empty_file_ops;
2050 }
2051
2052 /* Get the lowest vcn for the next extent. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00002053 highest_vcn = sle64_to_cpu(a->data.non_resident.highest_vcn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 next_vcn = highest_vcn + 1;
2055
2056 /* Only one extent or error, which we catch below. */
2057 if (next_vcn <= 0)
2058 break;
2059
2060 /* Avoid endless loops due to corruption. */
2061 if (next_vcn < sle64_to_cpu(
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00002062 a->data.non_resident.lowest_vcn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 ntfs_error(sb, "$MFT has corrupt attribute list "
2064 "attribute. Run chkdsk.");
2065 goto put_err_out;
2066 }
2067 }
2068 if (err != -ENOENT) {
2069 ntfs_error(sb, "Failed to lookup $MFT/$DATA attribute extent. "
2070 "$MFT is corrupt. Run chkdsk.");
2071 goto put_err_out;
2072 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00002073 if (!a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 ntfs_error(sb, "$MFT/$DATA attribute not found. $MFT is "
2075 "corrupt. Run chkdsk.");
2076 goto put_err_out;
2077 }
2078 if (highest_vcn && highest_vcn != last_vcn - 1) {
2079 ntfs_error(sb, "Failed to load the complete runlist for "
2080 "$MFT/$DATA. Driver bug or corrupt $MFT. "
2081 "Run chkdsk.");
2082 ntfs_debug("highest_vcn = 0x%llx, last_vcn - 1 = 0x%llx",
2083 (unsigned long long)highest_vcn,
2084 (unsigned long long)last_vcn - 1);
2085 goto put_err_out;
2086 }
2087 ntfs_attr_put_search_ctx(ctx);
2088 ntfs_debug("Done.");
2089 ntfs_free(m);
2090 return 0;
2091
2092em_put_err_out:
2093 ntfs_error(sb, "Couldn't find first extent of $DATA attribute in "
2094 "attribute list. $MFT is corrupt. Run chkdsk.");
2095put_err_out:
2096 ntfs_attr_put_search_ctx(ctx);
2097err_out:
2098 ntfs_error(sb, "Failed. Marking inode as bad.");
2099 make_bad_inode(vi);
2100 ntfs_free(m);
2101 return -1;
2102}
2103
2104/**
2105 * ntfs_put_inode - handler for when the inode reference count is decremented
2106 * @vi: vfs inode
2107 *
2108 * The VFS calls ntfs_put_inode() every time the inode reference count (i_count)
2109 * is about to be decremented (but before the decrement itself.
2110 *
2111 * If the inode @vi is a directory with two references, one of which is being
2112 * dropped, we need to put the attribute inode for the directory index bitmap,
2113 * if it is present, otherwise the directory inode would remain pinned for
2114 * ever.
2115 */
2116void ntfs_put_inode(struct inode *vi)
2117{
2118 if (S_ISDIR(vi->i_mode) && atomic_read(&vi->i_count) == 2) {
2119 ntfs_inode *ni = NTFS_I(vi);
2120 if (NInoIndexAllocPresent(ni)) {
2121 struct inode *bvi = NULL;
2122 down(&vi->i_sem);
2123 if (atomic_read(&vi->i_count) == 2) {
2124 bvi = ni->itype.index.bmp_ino;
2125 if (bvi)
2126 ni->itype.index.bmp_ino = NULL;
2127 }
2128 up(&vi->i_sem);
2129 if (bvi)
2130 iput(bvi);
2131 }
2132 }
2133}
2134
2135static void __ntfs_clear_inode(ntfs_inode *ni)
2136{
2137 /* Free all alocated memory. */
2138 down_write(&ni->runlist.lock);
2139 if (ni->runlist.rl) {
2140 ntfs_free(ni->runlist.rl);
2141 ni->runlist.rl = NULL;
2142 }
2143 up_write(&ni->runlist.lock);
2144
2145 if (ni->attr_list) {
2146 ntfs_free(ni->attr_list);
2147 ni->attr_list = NULL;
2148 }
2149
2150 down_write(&ni->attr_list_rl.lock);
2151 if (ni->attr_list_rl.rl) {
2152 ntfs_free(ni->attr_list_rl.rl);
2153 ni->attr_list_rl.rl = NULL;
2154 }
2155 up_write(&ni->attr_list_rl.lock);
2156
2157 if (ni->name_len && ni->name != I30) {
2158 /* Catch bugs... */
2159 BUG_ON(!ni->name);
2160 kfree(ni->name);
2161 }
2162}
2163
2164void ntfs_clear_extent_inode(ntfs_inode *ni)
2165{
2166 ntfs_debug("Entering for inode 0x%lx.", ni->mft_no);
2167
2168 BUG_ON(NInoAttr(ni));
2169 BUG_ON(ni->nr_extents != -1);
2170
2171#ifdef NTFS_RW
2172 if (NInoDirty(ni)) {
2173 if (!is_bad_inode(VFS_I(ni->ext.base_ntfs_ino)))
2174 ntfs_error(ni->vol->sb, "Clearing dirty extent inode! "
2175 "Losing data! This is a BUG!!!");
2176 // FIXME: Do something!!!
2177 }
2178#endif /* NTFS_RW */
2179
2180 __ntfs_clear_inode(ni);
2181
2182 /* Bye, bye... */
2183 ntfs_destroy_extent_inode(ni);
2184}
2185
2186/**
2187 * ntfs_clear_big_inode - clean up the ntfs specific part of an inode
2188 * @vi: vfs inode pending annihilation
2189 *
2190 * When the VFS is going to remove an inode from memory, ntfs_clear_big_inode()
2191 * is called, which deallocates all memory belonging to the NTFS specific part
2192 * of the inode and returns.
2193 *
2194 * If the MFT record is dirty, we commit it before doing anything else.
2195 */
2196void ntfs_clear_big_inode(struct inode *vi)
2197{
2198 ntfs_inode *ni = NTFS_I(vi);
2199
2200 /*
2201 * If the inode @vi is an index inode we need to put the attribute
2202 * inode for the index bitmap, if it is present, otherwise the index
2203 * inode would disappear and the attribute inode for the index bitmap
2204 * would no longer be referenced from anywhere and thus it would remain
2205 * pinned for ever.
2206 */
2207 if (NInoAttr(ni) && (ni->type == AT_INDEX_ALLOCATION) &&
2208 NInoIndexAllocPresent(ni) && ni->itype.index.bmp_ino) {
2209 iput(ni->itype.index.bmp_ino);
2210 ni->itype.index.bmp_ino = NULL;
2211 }
2212#ifdef NTFS_RW
2213 if (NInoDirty(ni)) {
2214 BOOL was_bad = (is_bad_inode(vi));
2215
2216 /* Committing the inode also commits all extent inodes. */
2217 ntfs_commit_inode(vi);
2218
2219 if (!was_bad && (is_bad_inode(vi) || NInoDirty(ni))) {
2220 ntfs_error(vi->i_sb, "Failed to commit dirty inode "
2221 "0x%lx. Losing data!", vi->i_ino);
2222 // FIXME: Do something!!!
2223 }
2224 }
2225#endif /* NTFS_RW */
2226
2227 /* No need to lock at this stage as no one else has a reference. */
2228 if (ni->nr_extents > 0) {
2229 int i;
2230
2231 for (i = 0; i < ni->nr_extents; i++)
2232 ntfs_clear_extent_inode(ni->ext.extent_ntfs_inos[i]);
2233 kfree(ni->ext.extent_ntfs_inos);
2234 }
2235
2236 __ntfs_clear_inode(ni);
2237
2238 if (NInoAttr(ni)) {
2239 /* Release the base inode if we are holding it. */
2240 if (ni->nr_extents == -1) {
2241 iput(VFS_I(ni->ext.base_ntfs_ino));
2242 ni->nr_extents = 0;
2243 ni->ext.base_ntfs_ino = NULL;
2244 }
2245 }
2246 return;
2247}
2248
2249/**
2250 * ntfs_show_options - show mount options in /proc/mounts
2251 * @sf: seq_file in which to write our mount options
2252 * @mnt: vfs mount whose mount options to display
2253 *
2254 * Called by the VFS once for each mounted ntfs volume when someone reads
2255 * /proc/mounts in order to display the NTFS specific mount options of each
2256 * mount. The mount options of the vfs mount @mnt are written to the seq file
2257 * @sf and success is returned.
2258 */
2259int ntfs_show_options(struct seq_file *sf, struct vfsmount *mnt)
2260{
2261 ntfs_volume *vol = NTFS_SB(mnt->mnt_sb);
2262 int i;
2263
2264 seq_printf(sf, ",uid=%i", vol->uid);
2265 seq_printf(sf, ",gid=%i", vol->gid);
2266 if (vol->fmask == vol->dmask)
2267 seq_printf(sf, ",umask=0%o", vol->fmask);
2268 else {
2269 seq_printf(sf, ",fmask=0%o", vol->fmask);
2270 seq_printf(sf, ",dmask=0%o", vol->dmask);
2271 }
2272 seq_printf(sf, ",nls=%s", vol->nls_map->charset);
2273 if (NVolCaseSensitive(vol))
2274 seq_printf(sf, ",case_sensitive");
2275 if (NVolShowSystemFiles(vol))
2276 seq_printf(sf, ",show_sys_files");
Anton Altaparmakovc002f422005-02-03 12:02:56 +00002277 if (!NVolSparseEnabled(vol))
2278 seq_printf(sf, ",disable_sparse");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 for (i = 0; on_errors_arr[i].val; i++) {
2280 if (on_errors_arr[i].val & vol->on_errors)
2281 seq_printf(sf, ",errors=%s", on_errors_arr[i].str);
2282 }
2283 seq_printf(sf, ",mft_zone_multiplier=%i", vol->mft_zone_multiplier);
2284 return 0;
2285}
2286
2287#ifdef NTFS_RW
2288
2289/**
2290 * ntfs_truncate - called when the i_size of an ntfs inode is changed
2291 * @vi: inode for which the i_size was changed
2292 *
2293 * We do not support i_size changes yet.
2294 *
2295 * The kernel guarantees that @vi is a regular file (S_ISREG() is true) and
2296 * that the change is allowed.
2297 *
2298 * This implies for us that @vi is a file inode rather than a directory, index,
2299 * or attribute inode as well as that @vi is a base inode.
2300 *
2301 * Returns 0 on success or -errno on error.
2302 *
2303 * Called with ->i_sem held. In all but one case ->i_alloc_sem is held for
2304 * writing. The only case where ->i_alloc_sem is not held is
2305 * mm/filemap.c::generic_file_buffered_write() where vmtruncate() is called
2306 * with the current i_size as the offset which means that it is a noop as far
2307 * as ntfs_truncate() is concerned.
2308 */
2309int ntfs_truncate(struct inode *vi)
2310{
2311 ntfs_inode *ni = NTFS_I(vi);
2312 ntfs_volume *vol = ni->vol;
2313 ntfs_attr_search_ctx *ctx;
2314 MFT_RECORD *m;
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00002315 ATTR_RECORD *a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 const char *te = " Leaving file length out of sync with i_size.";
2317 int err;
2318
2319 ntfs_debug("Entering for inode 0x%lx.", vi->i_ino);
2320 BUG_ON(NInoAttr(ni));
2321 BUG_ON(ni->nr_extents < 0);
2322 m = map_mft_record(ni);
2323 if (IS_ERR(m)) {
2324 err = PTR_ERR(m);
2325 ntfs_error(vi->i_sb, "Failed to map mft record for inode 0x%lx "
2326 "(error code %d).%s", vi->i_ino, err, te);
2327 ctx = NULL;
2328 m = NULL;
2329 goto err_out;
2330 }
2331 ctx = ntfs_attr_get_search_ctx(ni, m);
2332 if (unlikely(!ctx)) {
2333 ntfs_error(vi->i_sb, "Failed to allocate a search context for "
2334 "inode 0x%lx (not enough memory).%s",
2335 vi->i_ino, te);
2336 err = -ENOMEM;
2337 goto err_out;
2338 }
2339 err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
2340 CASE_SENSITIVE, 0, NULL, 0, ctx);
2341 if (unlikely(err)) {
2342 if (err == -ENOENT)
2343 ntfs_error(vi->i_sb, "Open attribute is missing from "
2344 "mft record. Inode 0x%lx is corrupt. "
2345 "Run chkdsk.", vi->i_ino);
2346 else
2347 ntfs_error(vi->i_sb, "Failed to lookup attribute in "
2348 "inode 0x%lx (error code %d).",
2349 vi->i_ino, err);
2350 goto err_out;
2351 }
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00002352 a = ctx->attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 /* If the size has not changed there is nothing to do. */
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00002354 if (ntfs_attr_size(a) == i_size_read(vi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 goto done;
2356 // TODO: Implement the truncate...
2357 ntfs_error(vi->i_sb, "Inode size has changed but this is not "
2358 "implemented yet. Resetting inode size to old value. "
2359 " This is most likely a bug in the ntfs driver!");
Anton Altaparmakov5ae9fcf2005-03-02 17:03:24 +00002360 i_size_write(vi, ntfs_attr_size(a));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361done:
2362 ntfs_attr_put_search_ctx(ctx);
2363 unmap_mft_record(ni);
2364 NInoClearTruncateFailed(ni);
2365 ntfs_debug("Done.");
2366 return 0;
2367err_out:
2368 if (err != -ENOMEM) {
2369 NVolSetErrors(vol);
2370 make_bad_inode(vi);
2371 }
2372 if (ctx)
2373 ntfs_attr_put_search_ctx(ctx);
2374 if (m)
2375 unmap_mft_record(ni);
2376 NInoSetTruncateFailed(ni);
2377 return err;
2378}
2379
2380/**
2381 * ntfs_truncate_vfs - wrapper for ntfs_truncate() that has no return value
2382 * @vi: inode for which the i_size was changed
2383 *
2384 * Wrapper for ntfs_truncate() that has no return value.
2385 *
2386 * See ntfs_truncate() description above for details.
2387 */
2388void ntfs_truncate_vfs(struct inode *vi) {
2389 ntfs_truncate(vi);
2390}
2391
2392/**
2393 * ntfs_setattr - called from notify_change() when an attribute is being changed
2394 * @dentry: dentry whose attributes to change
2395 * @attr: structure describing the attributes and the changes
2396 *
2397 * We have to trap VFS attempts to truncate the file described by @dentry as
2398 * soon as possible, because we do not implement changes in i_size yet. So we
2399 * abort all i_size changes here.
2400 *
2401 * We also abort all changes of user, group, and mode as we do not implement
2402 * the NTFS ACLs yet.
2403 *
2404 * Called with ->i_sem held. For the ATTR_SIZE (i.e. ->truncate) case, also
2405 * called with ->i_alloc_sem held for writing.
2406 *
2407 * Basically this is a copy of generic notify_change() and inode_setattr()
2408 * functionality, except we intercept and abort changes in i_size.
2409 */
2410int ntfs_setattr(struct dentry *dentry, struct iattr *attr)
2411{
2412 struct inode *vi = dentry->d_inode;
2413 int err;
2414 unsigned int ia_valid = attr->ia_valid;
2415
2416 err = inode_change_ok(vi, attr);
2417 if (err)
2418 return err;
2419
2420 /* We do not support NTFS ACLs yet. */
2421 if (ia_valid & (ATTR_UID | ATTR_GID | ATTR_MODE)) {
2422 ntfs_warning(vi->i_sb, "Changes in user/group/mode are not "
2423 "supported yet, ignoring.");
2424 err = -EOPNOTSUPP;
2425 goto out;
2426 }
2427
2428 if (ia_valid & ATTR_SIZE) {
2429 if (attr->ia_size != i_size_read(vi)) {
2430 ntfs_warning(vi->i_sb, "Changes in inode size are not "
2431 "supported yet, ignoring.");
2432 err = -EOPNOTSUPP;
2433 // TODO: Implement...
2434 // err = vmtruncate(vi, attr->ia_size);
2435 if (err || ia_valid == ATTR_SIZE)
2436 goto out;
2437 } else {
2438 /*
2439 * We skipped the truncate but must still update
2440 * timestamps.
2441 */
2442 ia_valid |= ATTR_MTIME|ATTR_CTIME;
2443 }
2444 }
2445
2446 if (ia_valid & ATTR_ATIME)
2447 vi->i_atime = attr->ia_atime;
2448 if (ia_valid & ATTR_MTIME)
2449 vi->i_mtime = attr->ia_mtime;
2450 if (ia_valid & ATTR_CTIME)
2451 vi->i_ctime = attr->ia_ctime;
2452 mark_inode_dirty(vi);
2453out:
2454 return err;
2455}
2456
2457/**
2458 * ntfs_write_inode - write out a dirty inode
2459 * @vi: inode to write out
2460 * @sync: if true, write out synchronously
2461 *
2462 * Write out a dirty inode to disk including any extent inodes if present.
2463 *
2464 * If @sync is true, commit the inode to disk and wait for io completion. This
2465 * is done using write_mft_record().
2466 *
2467 * If @sync is false, just schedule the write to happen but do not wait for i/o
2468 * completion. In 2.6 kernels, scheduling usually happens just by virtue of
2469 * marking the page (and in this case mft record) dirty but we do not implement
2470 * this yet as write_mft_record() largely ignores the @sync parameter and
2471 * always performs synchronous writes.
2472 *
2473 * Return 0 on success and -errno on error.
2474 */
2475int ntfs_write_inode(struct inode *vi, int sync)
2476{
2477 sle64 nt;
2478 ntfs_inode *ni = NTFS_I(vi);
2479 ntfs_attr_search_ctx *ctx;
2480 MFT_RECORD *m;
2481 STANDARD_INFORMATION *si;
2482 int err = 0;
2483 BOOL modified = FALSE;
2484
2485 ntfs_debug("Entering for %sinode 0x%lx.", NInoAttr(ni) ? "attr " : "",
2486 vi->i_ino);
2487 /*
2488 * Dirty attribute inodes are written via their real inodes so just
2489 * clean them here. Access time updates are taken care off when the
2490 * real inode is written.
2491 */
2492 if (NInoAttr(ni)) {
2493 NInoClearDirty(ni);
2494 ntfs_debug("Done.");
2495 return 0;
2496 }
2497 /* Map, pin, and lock the mft record belonging to the inode. */
2498 m = map_mft_record(ni);
2499 if (IS_ERR(m)) {
2500 err = PTR_ERR(m);
2501 goto err_out;
2502 }
2503 /* Update the access times in the standard information attribute. */
2504 ctx = ntfs_attr_get_search_ctx(ni, m);
2505 if (unlikely(!ctx)) {
2506 err = -ENOMEM;
2507 goto unm_err_out;
2508 }
2509 err = ntfs_attr_lookup(AT_STANDARD_INFORMATION, NULL, 0,
2510 CASE_SENSITIVE, 0, NULL, 0, ctx);
2511 if (unlikely(err)) {
2512 ntfs_attr_put_search_ctx(ctx);
2513 goto unm_err_out;
2514 }
2515 si = (STANDARD_INFORMATION*)((u8*)ctx->attr +
2516 le16_to_cpu(ctx->attr->data.resident.value_offset));
2517 /* Update the access times if they have changed. */
2518 nt = utc2ntfs(vi->i_mtime);
2519 if (si->last_data_change_time != nt) {
2520 ntfs_debug("Updating mtime for inode 0x%lx: old = 0x%llx, "
Randy Dunlap89075472005-03-03 11:19:53 +00002521 "new = 0x%llx", vi->i_ino, (long long)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 sle64_to_cpu(si->last_data_change_time),
Randy Dunlap89075472005-03-03 11:19:53 +00002523 (long long)sle64_to_cpu(nt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 si->last_data_change_time = nt;
2525 modified = TRUE;
2526 }
2527 nt = utc2ntfs(vi->i_ctime);
2528 if (si->last_mft_change_time != nt) {
2529 ntfs_debug("Updating ctime for inode 0x%lx: old = 0x%llx, "
Randy Dunlap89075472005-03-03 11:19:53 +00002530 "new = 0x%llx", vi->i_ino, (long long)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 sle64_to_cpu(si->last_mft_change_time),
Randy Dunlap89075472005-03-03 11:19:53 +00002532 (long long)sle64_to_cpu(nt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 si->last_mft_change_time = nt;
2534 modified = TRUE;
2535 }
2536 nt = utc2ntfs(vi->i_atime);
2537 if (si->last_access_time != nt) {
2538 ntfs_debug("Updating atime for inode 0x%lx: old = 0x%llx, "
2539 "new = 0x%llx", vi->i_ino,
Randy Dunlap89075472005-03-03 11:19:53 +00002540 (long long)sle64_to_cpu(si->last_access_time),
2541 (long long)sle64_to_cpu(nt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 si->last_access_time = nt;
2543 modified = TRUE;
2544 }
2545 /*
2546 * If we just modified the standard information attribute we need to
2547 * mark the mft record it is in dirty. We do this manually so that
2548 * mark_inode_dirty() is not called which would redirty the inode and
2549 * hence result in an infinite loop of trying to write the inode.
2550 * There is no need to mark the base inode nor the base mft record
2551 * dirty, since we are going to write this mft record below in any case
2552 * and the base mft record may actually not have been modified so it
2553 * might not need to be written out.
2554 * NOTE: It is not a problem when the inode for $MFT itself is being
2555 * written out as mark_ntfs_record_dirty() will only set I_DIRTY_PAGES
2556 * on the $MFT inode and hence ntfs_write_inode() will not be
2557 * re-invoked because of it which in turn is ok since the dirtied mft
2558 * record will be cleaned and written out to disk below, i.e. before
2559 * this function returns.
2560 */
2561 if (modified && !NInoTestSetDirty(ctx->ntfs_ino))
2562 mark_ntfs_record_dirty(ctx->ntfs_ino->page,
2563 ctx->ntfs_ino->page_ofs);
2564 ntfs_attr_put_search_ctx(ctx);
2565 /* Now the access times are updated, write the base mft record. */
2566 if (NInoDirty(ni))
2567 err = write_mft_record(ni, m, sync);
2568 /* Write all attached extent mft records. */
2569 down(&ni->extent_lock);
2570 if (ni->nr_extents > 0) {
2571 ntfs_inode **extent_nis = ni->ext.extent_ntfs_inos;
2572 int i;
2573
2574 ntfs_debug("Writing %i extent inodes.", ni->nr_extents);
2575 for (i = 0; i < ni->nr_extents; i++) {
2576 ntfs_inode *tni = extent_nis[i];
2577
2578 if (NInoDirty(tni)) {
2579 MFT_RECORD *tm = map_mft_record(tni);
2580 int ret;
2581
2582 if (IS_ERR(tm)) {
2583 if (!err || err == -ENOMEM)
2584 err = PTR_ERR(tm);
2585 continue;
2586 }
2587 ret = write_mft_record(tni, tm, sync);
2588 unmap_mft_record(tni);
2589 if (unlikely(ret)) {
2590 if (!err || err == -ENOMEM)
2591 err = ret;
2592 }
2593 }
2594 }
2595 }
2596 up(&ni->extent_lock);
2597 unmap_mft_record(ni);
2598 if (unlikely(err))
2599 goto err_out;
2600 ntfs_debug("Done.");
2601 return 0;
2602unm_err_out:
2603 unmap_mft_record(ni);
2604err_out:
2605 if (err == -ENOMEM) {
2606 ntfs_warning(vi->i_sb, "Not enough memory to write inode. "
2607 "Marking the inode dirty again, so the VFS "
2608 "retries later.");
2609 mark_inode_dirty(vi);
2610 } else {
2611 ntfs_error(vi->i_sb, "Failed (error code %i): Marking inode "
2612 "as bad. You should run chkdsk.", -err);
2613 make_bad_inode(vi);
2614 NVolSetErrors(ni->vol);
2615 }
2616 return err;
2617}
2618
2619#endif /* NTFS_RW */