NTFS: - Add disable_sparse mount option together with a per volume sparse
[safe/jmp/linux-2.6] / fs / ntfs / inode.c
1 /**
2  * inode.c - NTFS kernel inode handling. Part of the Linux-NTFS project.
3  *
4  * Copyright (c) 2001-2005 Anton Altaparmakov
5  *
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  */
54 int 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  */
98 static 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
142 typedef int (*set_t)(struct inode *, void *);
143 static int ntfs_read_locked_inode(struct inode *vi);
144 static int ntfs_read_locked_attr_inode(struct inode *base_vi, struct inode *vi);
145 static 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  */
164 struct 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);
177         if (unlikely(!vi))
178                 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          */
191         if (unlikely(err == -ENOMEM)) {
192                 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  */
221 struct 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);
238         if (unlikely(!vi))
239                 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          */
253         if (unlikely(err)) {
254                 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  */
279 struct 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);
293         if (unlikely(!vi))
294                 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          */
308         if (unlikely(err)) {
309                 iput(vi);
310                 vi = ERR_PTR(err);
311         }
312         return vi;
313 }
314
315 struct 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
330 void 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
341 static 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
355 static 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  */
376 void __ntfs_init_inode(struct super_block *sb, ntfs_inode *ni)
377 {
378         ntfs_debug("Entering.");
379         rwlock_init(&ni->size_lock);
380         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
402 inline 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  */
431 static 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)) {
456 err_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  */
523 static 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;
528         STANDARD_INFORMATION *si;
529         ntfs_attr_search_ctx *ctx;
530         int err = 0;
531
532         ntfs_debug("Entering for i_ino 0x%lx.", vi->i_ino);
533
534         /* Setup the generic vfs inode parts now. */
535
536         /* This is the optimal IO size (for stat), not the fs block size. */
537         vi->i_blksize = PAGE_CACHE_SIZE;
538         /*
539          * This is for checking whether an inode has changed w.r.t. a file so
540          * that the file can be updated if necessary (compare with f_version).
541          */
542         vi->i_version = 1;
543
544         vi->i_uid = vol->uid;
545         vi->i_gid = vol->gid;
546         vi->i_mode = 0;
547
548         /*
549          * Initialize the ntfs specific part of @vi special casing
550          * FILE_MFT which we need to do at mount time.
551          */
552         if (vi->i_ino != FILE_MFT)
553                 ntfs_init_big_inode(vi);
554         ni = NTFS_I(vi);
555
556         m = map_mft_record(ni);
557         if (IS_ERR(m)) {
558                 err = PTR_ERR(m);
559                 goto err_out;
560         }
561         ctx = ntfs_attr_get_search_ctx(ni, m);
562         if (!ctx) {
563                 err = -ENOMEM;
564                 goto unm_err_out;
565         }
566
567         if (!(m->flags & MFT_RECORD_IN_USE)) {
568                 ntfs_error(vi->i_sb, "Inode is not in use!");
569                 goto unm_err_out;
570         }
571         if (m->base_mft_record) {
572                 ntfs_error(vi->i_sb, "Inode is an extent inode!");
573                 goto unm_err_out;
574         }
575
576         /* Transfer information from mft record into vfs and ntfs inodes. */
577         vi->i_generation = ni->seq_no = le16_to_cpu(m->sequence_number);
578
579         /*
580          * FIXME: Keep in mind that link_count is two for files which have both
581          * a long file name and a short file name as separate entries, so if
582          * we are hiding short file names this will be too high. Either we need
583          * to account for the short file names by subtracting them or we need
584          * to make sure we delete files even though i_nlink is not zero which
585          * might be tricky due to vfs interactions. Need to think about this
586          * some more when implementing the unlink command.
587          */
588         vi->i_nlink = le16_to_cpu(m->link_count);
589         /*
590          * FIXME: Reparse points can have the directory bit set even though
591          * they would be S_IFLNK. Need to deal with this further below when we
592          * implement reparse points / symbolic links but it will do for now.
593          * Also if not a directory, it could be something else, rather than
594          * a regular file. But again, will do for now.
595          */
596         /* Everyone gets all permissions. */
597         vi->i_mode |= S_IRWXUGO;
598         /* If read-only, noone gets write permissions. */
599         if (IS_RDONLY(vi))
600                 vi->i_mode &= ~S_IWUGO;
601         if (m->flags & MFT_RECORD_IS_DIRECTORY) {
602                 vi->i_mode |= S_IFDIR;
603                 /*
604                  * Apply the directory permissions mask set in the mount
605                  * options.
606                  */
607                 vi->i_mode &= ~vol->dmask;
608                 /* Things break without this kludge! */
609                 if (vi->i_nlink > 1)
610                         vi->i_nlink = 1;
611         } else {
612                 vi->i_mode |= S_IFREG;
613                 /* Apply the file permissions mask set in the mount options. */
614                 vi->i_mode &= ~vol->fmask;
615         }
616         /*
617          * Find the standard information attribute in the mft record. At this
618          * stage we haven't setup the attribute list stuff yet, so this could
619          * in fact fail if the standard information is in an extent record, but
620          * I don't think this actually ever happens.
621          */
622         err = ntfs_attr_lookup(AT_STANDARD_INFORMATION, NULL, 0, 0, 0, NULL, 0,
623                         ctx);
624         if (unlikely(err)) {
625                 if (err == -ENOENT) {
626                         /*
627                          * TODO: We should be performing a hot fix here (if the
628                          * recover mount option is set) by creating a new
629                          * attribute.
630                          */
631                         ntfs_error(vi->i_sb, "$STANDARD_INFORMATION attribute "
632                                         "is missing.");
633                 }
634                 goto unm_err_out;
635         }
636         /* Get the standard information attribute value. */
637         si = (STANDARD_INFORMATION*)((char*)ctx->attr +
638                         le16_to_cpu(ctx->attr->data.resident.value_offset));
639
640         /* Transfer information from the standard information into vi. */
641         /*
642          * Note: The i_?times do not quite map perfectly onto the NTFS times,
643          * but they are close enough, and in the end it doesn't really matter
644          * that much...
645          */
646         /*
647          * mtime is the last change of the data within the file. Not changed
648          * when only metadata is changed, e.g. a rename doesn't affect mtime.
649          */
650         vi->i_mtime = ntfs2utc(si->last_data_change_time);
651         /*
652          * ctime is the last change of the metadata of the file. This obviously
653          * always changes, when mtime is changed. ctime can be changed on its
654          * own, mtime is then not changed, e.g. when a file is renamed.
655          */
656         vi->i_ctime = ntfs2utc(si->last_mft_change_time);
657         /*
658          * Last access to the data within the file. Not changed during a rename
659          * for example but changed whenever the file is written to.
660          */
661         vi->i_atime = ntfs2utc(si->last_access_time);
662
663         /* Find the attribute list attribute if present. */
664         ntfs_attr_reinit_search_ctx(ctx);
665         err = ntfs_attr_lookup(AT_ATTRIBUTE_LIST, NULL, 0, 0, 0, NULL, 0, ctx);
666         if (err) {
667                 if (unlikely(err != -ENOENT)) {
668                         ntfs_error(vi->i_sb, "Failed to lookup attribute list "
669                                         "attribute.");
670                         goto unm_err_out;
671                 }
672         } else /* if (!err) */ {
673                 if (vi->i_ino == FILE_MFT)
674                         goto skip_attr_list_load;
675                 ntfs_debug("Attribute list found in inode 0x%lx.", vi->i_ino);
676                 NInoSetAttrList(ni);
677                 if (ctx->attr->flags & ATTR_IS_ENCRYPTED ||
678                                 ctx->attr->flags & ATTR_COMPRESSION_MASK ||
679                                 ctx->attr->flags & ATTR_IS_SPARSE) {
680                         ntfs_error(vi->i_sb, "Attribute list attribute is "
681                                         "compressed/encrypted/sparse.");
682                         goto unm_err_out;
683                 }
684                 /* Now allocate memory for the attribute list. */
685                 ni->attr_list_size = (u32)ntfs_attr_size(ctx->attr);
686                 ni->attr_list = ntfs_malloc_nofs(ni->attr_list_size);
687                 if (!ni->attr_list) {
688                         ntfs_error(vi->i_sb, "Not enough memory to allocate "
689                                         "buffer for attribute list.");
690                         err = -ENOMEM;
691                         goto unm_err_out;
692                 }
693                 if (ctx->attr->non_resident) {
694                         NInoSetAttrListNonResident(ni);
695                         if (ctx->attr->data.non_resident.lowest_vcn) {
696                                 ntfs_error(vi->i_sb, "Attribute list has non "
697                                                 "zero lowest_vcn.");
698                                 goto unm_err_out;
699                         }
700                         /*
701                          * Setup the runlist. No need for locking as we have
702                          * exclusive access to the inode at this time.
703                          */
704                         ni->attr_list_rl.rl = ntfs_mapping_pairs_decompress(vol,
705                                         ctx->attr, NULL);
706                         if (IS_ERR(ni->attr_list_rl.rl)) {
707                                 err = PTR_ERR(ni->attr_list_rl.rl);
708                                 ni->attr_list_rl.rl = NULL;
709                                 ntfs_error(vi->i_sb, "Mapping pairs "
710                                                 "decompression failed.");
711                                 goto unm_err_out;
712                         }
713                         /* Now load the attribute list. */
714                         if ((err = load_attribute_list(vol, &ni->attr_list_rl,
715                                         ni->attr_list, ni->attr_list_size,
716                                         sle64_to_cpu(ctx->attr->data.
717                                         non_resident.initialized_size)))) {
718                                 ntfs_error(vi->i_sb, "Failed to load "
719                                                 "attribute list attribute.");
720                                 goto unm_err_out;
721                         }
722                 } else /* if (!ctx.attr->non_resident) */ {
723                         if ((u8*)ctx->attr + le16_to_cpu(
724                                         ctx->attr->data.resident.value_offset) +
725                                         le32_to_cpu(
726                                         ctx->attr->data.resident.value_length) >
727                                         (u8*)ctx->mrec + vol->mft_record_size) {
728                                 ntfs_error(vi->i_sb, "Corrupt attribute list "
729                                                 "in inode.");
730                                 goto unm_err_out;
731                         }
732                         /* Now copy the attribute list. */
733                         memcpy(ni->attr_list, (u8*)ctx->attr + le16_to_cpu(
734                                         ctx->attr->data.resident.value_offset),
735                                         le32_to_cpu(
736                                         ctx->attr->data.resident.value_length));
737                 }
738         }
739 skip_attr_list_load:
740         /*
741          * If an attribute list is present we now have the attribute list value
742          * in ntfs_ino->attr_list and it is ntfs_ino->attr_list_size bytes.
743          */
744         if (S_ISDIR(vi->i_mode)) {
745                 loff_t bvi_size;
746                 struct inode *bvi;
747                 ntfs_inode *bni;
748                 INDEX_ROOT *ir;
749                 char *ir_end, *index_end;
750
751                 /* It is a directory, find index root attribute. */
752                 ntfs_attr_reinit_search_ctx(ctx);
753                 err = ntfs_attr_lookup(AT_INDEX_ROOT, I30, 4, CASE_SENSITIVE,
754                                 0, NULL, 0, ctx);
755                 if (unlikely(err)) {
756                         if (err == -ENOENT) {
757                                 // FIXME: File is corrupt! Hot-fix with empty
758                                 // index root attribute if recovery option is
759                                 // set.
760                                 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute "
761                                                 "is missing.");
762                         }
763                         goto unm_err_out;
764                 }
765                 /* Set up the state. */
766                 if (unlikely(ctx->attr->non_resident)) {
767                         ntfs_error(vol->sb, "$INDEX_ROOT attribute is not "
768                                         "resident.");
769                         goto unm_err_out;
770                 }
771                 /* Ensure the attribute name is placed before the value. */
772                 if (unlikely(ctx->attr->name_length &&
773                                 (le16_to_cpu(ctx->attr->name_offset) >=
774                                 le16_to_cpu(ctx->attr->data.resident.
775                                 value_offset)))) {
776                         ntfs_error(vol->sb, "$INDEX_ROOT attribute name is "
777                                         "placed after the attribute value.");
778                         goto unm_err_out;
779                 }
780                 /*
781                  * Compressed/encrypted index root just means that the newly
782                  * created files in that directory should be created compressed/
783                  * encrypted. However index root cannot be both compressed and
784                  * encrypted.
785                  */
786                 if (ctx->attr->flags & ATTR_COMPRESSION_MASK)
787                         NInoSetCompressed(ni);
788                 if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
789                         if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
790                                 ntfs_error(vi->i_sb, "Found encrypted and "
791                                                 "compressed attribute.");
792                                 goto unm_err_out;
793                         }
794                         NInoSetEncrypted(ni);
795                 }
796                 if (ctx->attr->flags & ATTR_IS_SPARSE)
797                         NInoSetSparse(ni);
798                 ir = (INDEX_ROOT*)((char*)ctx->attr + le16_to_cpu(
799                                 ctx->attr->data.resident.value_offset));
800                 ir_end = (char*)ir + le32_to_cpu(
801                                 ctx->attr->data.resident.value_length);
802                 if (ir_end > (char*)ctx->mrec + vol->mft_record_size) {
803                         ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is "
804                                         "corrupt.");
805                         goto unm_err_out;
806                 }
807                 index_end = (char*)&ir->index +
808                                 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                 }
894                 if (!ctx->attr->non_resident) {
895                         ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
896                                         "is resident.");
897                         goto unm_err_out;
898                 }
899                 /*
900                  * Ensure the attribute name is placed before the mapping pairs
901                  * array.
902                  */
903                 if (unlikely(ctx->attr->name_length &&
904                                 (le16_to_cpu(ctx->attr->name_offset) >=
905                                 le16_to_cpu(ctx->attr->data.non_resident.
906                                 mapping_pairs_offset)))) {
907                         ntfs_error(vol->sb, "$INDEX_ALLOCATION attribute name "
908                                         "is placed after the mapping pairs "
909                                         "array.");
910                         goto unm_err_out;
911                 }
912                 if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
913                         ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
914                                         "is encrypted.");
915                         goto unm_err_out;
916                 }
917                 if (ctx->attr->flags & ATTR_IS_SPARSE) {
918                         ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
919                                         "is sparse.");
920                         goto unm_err_out;
921                 }
922                 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
923                         ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
924                                         "is compressed.");
925                         goto unm_err_out;
926                 }
927                 if (ctx->attr->data.non_resident.lowest_vcn) {
928                         ntfs_error(vi->i_sb, "First extent of "
929                                         "$INDEX_ALLOCATION attribute has non "
930                                         "zero lowest_vcn.");
931                         goto unm_err_out;
932                 }
933                 vi->i_size = sle64_to_cpu(
934                                 ctx->attr->data.non_resident.data_size);
935                 ni->initialized_size = sle64_to_cpu(
936                                 ctx->attr->data.non_resident.initialized_size);
937                 ni->allocated_size = sle64_to_cpu(
938                                 ctx->attr->data.non_resident.allocated_size);
939                 /*
940                  * We are done with the mft record, so we release it. Otherwise
941                  * we would deadlock in ntfs_attr_iget().
942                  */
943                 ntfs_attr_put_search_ctx(ctx);
944                 unmap_mft_record(ni);
945                 m = NULL;
946                 ctx = NULL;
947                 /* Get the index bitmap attribute inode. */
948                 bvi = ntfs_attr_iget(vi, AT_BITMAP, I30, 4);
949                 if (IS_ERR(bvi)) {
950                         ntfs_error(vi->i_sb, "Failed to get bitmap attribute.");
951                         err = PTR_ERR(bvi);
952                         goto unm_err_out;
953                 }
954                 ni->itype.index.bmp_ino = bvi;
955                 bni = NTFS_I(bvi);
956                 if (NInoCompressed(bni) || NInoEncrypted(bni) ||
957                                 NInoSparse(bni)) {
958                         ntfs_error(vi->i_sb, "$BITMAP attribute is compressed "
959                                         "and/or encrypted and/or sparse.");
960                         goto unm_err_out;
961                 }
962                 /* Consistency check bitmap size vs. index allocation size. */
963                 bvi_size = i_size_read(bvi);
964                 if ((bvi_size << 3) < (vi->i_size >>
965                                 ni->itype.index.block_size_bits)) {
966                         ntfs_error(vi->i_sb, "Index bitmap too small (0x%llx) "
967                                         "for index allocation (0x%llx).",
968                                         bvi_size << 3, vi->i_size);
969                         goto unm_err_out;
970                 }
971 skip_large_dir_stuff:
972                 /* Setup the operations for this inode. */
973                 vi->i_op = &ntfs_dir_inode_ops;
974                 vi->i_fop = &ntfs_dir_ops;
975         } else {
976                 /* It is a file. */
977                 ntfs_attr_reinit_search_ctx(ctx);
978
979                 /* Setup the data attribute, even if not present. */
980                 ni->type = AT_DATA;
981                 ni->name = NULL;
982                 ni->name_len = 0;
983
984                 /* Find first extent of the unnamed data attribute. */
985                 err = ntfs_attr_lookup(AT_DATA, NULL, 0, 0, 0, NULL, 0, ctx);
986                 if (unlikely(err)) {
987                         vi->i_size = ni->initialized_size =
988                                         ni->allocated_size = 0;
989                         if (err != -ENOENT) {
990                                 ntfs_error(vi->i_sb, "Failed to lookup $DATA "
991                                                 "attribute.");
992                                 goto unm_err_out;
993                         }
994                         /*
995                          * FILE_Secure does not have an unnamed $DATA
996                          * attribute, so we special case it here.
997                          */
998                         if (vi->i_ino == FILE_Secure)
999                                 goto no_data_attr_special_case;
1000                         /*
1001                          * Most if not all the system files in the $Extend
1002                          * system directory do not have unnamed data
1003                          * attributes so we need to check if the parent
1004                          * directory of the file is FILE_Extend and if it is
1005                          * ignore this error. To do this we need to get the
1006                          * name of this inode from the mft record as the name
1007                          * contains the back reference to the parent directory.
1008                          */
1009                         if (ntfs_is_extended_system_file(ctx) > 0)
1010                                 goto no_data_attr_special_case;
1011                         // FIXME: File is corrupt! Hot-fix with empty data
1012                         // attribute if recovery option is set.
1013                         ntfs_error(vi->i_sb, "$DATA attribute is missing.");
1014                         goto unm_err_out;
1015                 }
1016                 /* Setup the state. */
1017                 if (ctx->attr->non_resident) {
1018                         NInoSetNonResident(ni);
1019                         if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1020                                 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                                 }
1029                                 if ((ctx->attr->flags & ATTR_COMPRESSION_MASK)
1030                                                 != 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 <<
1037                                                 ctx->attr->data.non_resident.
1038                                                 compression_unit;
1039                                 if (ctx->attr->data.non_resident.
1040                                                 compression_unit != 4) {
1041                                         ntfs_error(vi->i_sb, "Found "
1042                                                 "nonstandard compression unit "
1043                                                 "(%u instead of 4).  Cannot "
1044                                                 "handle this.",
1045                                                 ctx->attr->data.non_resident.
1046                                                 compression_unit);
1047                                         err = -EOPNOTSUPP;
1048                                         goto unm_err_out;
1049                                 }
1050                                 ni->itype.compressed.block_size = 1U << (
1051                                                 ctx->attr->data.non_resident.
1052                                                 compression_unit +
1053                                                 vol->cluster_size_bits);
1054                                 ni->itype.compressed.block_size_bits = ffs(
1055                                         ni->itype.compressed.block_size) - 1;
1056                         }
1057                         if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
1058                                 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1059                                         ntfs_error(vi->i_sb, "Found encrypted "
1060                                                         "and compressed data.");
1061                                         goto unm_err_out;
1062                                 }
1063                                 NInoSetEncrypted(ni);
1064                         }
1065                         if (ctx->attr->flags & ATTR_IS_SPARSE)
1066                                 NInoSetSparse(ni);
1067                         if (ctx->attr->data.non_resident.lowest_vcn) {
1068                                 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(
1075                                         ctx->attr->data.non_resident.data_size);
1076                         ni->initialized_size = sle64_to_cpu(
1077                                         ctx->attr->data.non_resident.
1078                                         initialized_size);
1079                         ni->allocated_size = sle64_to_cpu(
1080                                         ctx->attr->data.non_resident.
1081                                         allocated_size);
1082                         if (NInoCompressed(ni)) {
1083                                 ni->itype.compressed.size = sle64_to_cpu(
1084                                                 ctx->attr->data.non_resident.
1085                                                 compressed_size);
1086                         }
1087                 } else { /* Resident attribute. */
1088                         /*
1089                          * Make all sizes equal for simplicity in read code
1090                          * paths. FIXME: Need to keep this in mind when
1091                          * converting to non-resident attribute in write code
1092                          * path. (Probably only affects truncate().)
1093                          */
1094                         vi->i_size = ni->initialized_size = ni->allocated_size =
1095                                         le32_to_cpu(
1096                                         ctx->attr->data.resident.value_length);
1097                 }
1098 no_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
1131 unm_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);
1138 err_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  */
1167 static 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;
1172         ntfs_attr_search_ctx *ctx;
1173         int err = 0;
1174
1175         ntfs_debug("Entering for i_ino 0x%lx.", vi->i_ino);
1176
1177         ntfs_init_big_inode(vi);
1178
1179         ni      = NTFS_I(vi);
1180         base_ni = NTFS_I(base_vi);
1181
1182         /* Just mirror the values from the base inode. */
1183         vi->i_blksize   = base_vi->i_blksize;
1184         vi->i_version   = base_vi->i_version;
1185         vi->i_uid       = base_vi->i_uid;
1186         vi->i_gid       = base_vi->i_gid;
1187         vi->i_nlink     = base_vi->i_nlink;
1188         vi->i_mtime     = base_vi->i_mtime;
1189         vi->i_ctime     = base_vi->i_ctime;
1190         vi->i_atime     = base_vi->i_atime;
1191         vi->i_generation = ni->seq_no = base_ni->seq_no;
1192
1193         /* Set inode type to zero but preserve permissions. */
1194         vi->i_mode      = base_vi->i_mode & ~S_IFMT;
1195
1196         m = map_mft_record(base_ni);
1197         if (IS_ERR(m)) {
1198                 err = PTR_ERR(m);
1199                 goto err_out;
1200         }
1201         ctx = ntfs_attr_get_search_ctx(base_ni, m);
1202         if (!ctx) {
1203                 err = -ENOMEM;
1204                 goto unm_err_out;
1205         }
1206
1207         /* 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;
1212
1213         if (!ctx->attr->non_resident) {
1214                 /* Ensure the attribute name is placed before the value. */
1215                 if (unlikely(ctx->attr->name_length &&
1216                                 (le16_to_cpu(ctx->attr->name_offset) >=
1217                                 le16_to_cpu(ctx->attr->data.resident.
1218                                 value_offset)))) {
1219                         ntfs_error(vol->sb, "Attribute name is placed after "
1220                                         "the attribute value.");
1221                         goto unm_err_out;
1222                 }
1223                 if (NInoMstProtected(ni) || ctx->attr->flags) {
1224                         ntfs_error(vi->i_sb, "Found mst protected attribute "
1225                                         "or attribute with non-zero flags but "
1226                                         "the attribute is resident.  Please "
1227                                         "report you saw this message to "
1228                                         "linux-ntfs-dev@lists.sourceforge.net");
1229                         goto unm_err_out;
1230                 }
1231                 /*
1232                  * Resident attribute. Make all sizes equal for simplicity in
1233                  * read code paths.
1234                  */
1235                 vi->i_size = ni->initialized_size = ni->allocated_size =
1236                         le32_to_cpu(ctx->attr->data.resident.value_length);
1237         } else {
1238                 NInoSetNonResident(ni);
1239                 /*
1240                  * Ensure the attribute name is placed before the mapping pairs
1241                  * array.
1242                  */
1243                 if (unlikely(ctx->attr->name_length &&
1244                                 (le16_to_cpu(ctx->attr->name_offset) >=
1245                                 le16_to_cpu(ctx->attr->data.non_resident.
1246                                 mapping_pairs_offset)))) {
1247                         ntfs_error(vol->sb, "Attribute name is placed after "
1248                                         "the mapping pairs array.");
1249                         goto unm_err_out;
1250                 }
1251                 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1252                         if (NInoMstProtected(ni)) {
1253                                 ntfs_error(vi->i_sb, "Found mst protected "
1254                                                 "attribute but the attribute "
1255                                                 "is compressed.  Please report "
1256                                                 "you saw this message to "
1257                                                 "linux-ntfs-dev@lists."
1258                                                 "sourceforge.net");
1259                                 goto unm_err_out;
1260                         }
1261                         NInoSetCompressed(ni);
1262                         if ((ni->type != AT_DATA) || (ni->type == AT_DATA &&
1263                                         ni->name_len)) {
1264                                 ntfs_error(vi->i_sb, "Found compressed "
1265                                                 "non-data or named data "
1266                                                 "attribute.  Please report "
1267                                                 "you saw this message to "
1268                                                 "linux-ntfs-dev@lists."
1269                                                 "sourceforge.net");
1270                                 goto unm_err_out;
1271                         }
1272                         if (vol->cluster_size > 4096) {
1273                                 ntfs_error(vi->i_sb, "Found compressed "
1274                                                 "attribute but compression is "
1275                                                 "disabled due to cluster size "
1276                                                 "(%i) > 4kiB.",
1277                                                 vol->cluster_size);
1278                                 goto unm_err_out;
1279                         }
1280                         if ((ctx->attr->flags & ATTR_COMPRESSION_MASK)
1281                                         != ATTR_IS_COMPRESSED) {
1282                                 ntfs_error(vi->i_sb, "Found unknown "
1283                                                 "compression method.");
1284                                 goto unm_err_out;
1285                         }
1286                         ni->itype.compressed.block_clusters = 1U <<
1287                                         ctx->attr->data.non_resident.
1288                                         compression_unit;
1289                         if (ctx->attr->data.non_resident.compression_unit !=
1290                                         4) {
1291                                 ntfs_error(vi->i_sb, "Found nonstandard "
1292                                                 "compression unit (%u instead "
1293                                                 "of 4).  Cannot handle this.",
1294                                                 ctx->attr->data.non_resident.
1295                                                 compression_unit);
1296                                 err = -EOPNOTSUPP;
1297                                 goto unm_err_out;
1298                         }
1299                         ni->itype.compressed.block_size = 1U << (
1300                                         ctx->attr->data.non_resident.
1301                                         compression_unit +
1302                                         vol->cluster_size_bits);
1303                         ni->itype.compressed.block_size_bits = ffs(
1304                                 ni->itype.compressed.block_size) - 1;
1305                 }
1306                 if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
1307                         if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1308                                 ntfs_error(vi->i_sb, "Found encrypted "
1309                                                 "and compressed data.");
1310                                 goto unm_err_out;
1311                         }
1312                         if (NInoMstProtected(ni)) {
1313                                 ntfs_error(vi->i_sb, "Found mst protected "
1314                                                 "attribute but the attribute "
1315                                                 "is encrypted.  Please report "
1316                                                 "you saw this message to "
1317                                                 "linux-ntfs-dev@lists."
1318                                                 "sourceforge.net");
1319                                 goto unm_err_out;
1320                         }
1321                         NInoSetEncrypted(ni);
1322                 }
1323                 if (ctx->attr->flags & ATTR_IS_SPARSE) {
1324                         if (NInoMstProtected(ni)) {
1325                                 ntfs_error(vi->i_sb, "Found mst protected "
1326                                                 "attribute but the attribute "
1327                                                 "is sparse.  Please report "
1328                                                 "you saw this message to "
1329                                                 "linux-ntfs-dev@lists."
1330                                                 "sourceforge.net");
1331                                 goto unm_err_out;
1332                         }
1333                         NInoSetSparse(ni);
1334                 }
1335                 if (ctx->attr->data.non_resident.lowest_vcn) {
1336                         ntfs_error(vi->i_sb, "First extent of attribute has "
1337                                         "non-zero lowest_vcn.");
1338                         goto unm_err_out;
1339                 }
1340                 /* Setup all the sizes. */
1341                 vi->i_size = sle64_to_cpu(
1342                                 ctx->attr->data.non_resident.data_size);
1343                 ni->initialized_size = sle64_to_cpu(
1344                                 ctx->attr->data.non_resident.initialized_size);
1345                 ni->allocated_size = sle64_to_cpu(
1346                                 ctx->attr->data.non_resident.allocated_size);
1347                 if (NInoCompressed(ni)) {
1348                         ni->itype.compressed.size = sle64_to_cpu(
1349                                         ctx->attr->data.non_resident.
1350                                         compressed_size);
1351                 }
1352         }
1353
1354         /* Setup the operations for this attribute inode. */
1355         vi->i_op = NULL;
1356         vi->i_fop = NULL;
1357         if (NInoMstProtected(ni))
1358                 vi->i_mapping->a_ops = &ntfs_mst_aops;
1359         else
1360                 vi->i_mapping->a_ops = &ntfs_aops;
1361
1362         if (!NInoCompressed(ni))
1363                 vi->i_blocks = ni->allocated_size >> 9;
1364         else
1365                 vi->i_blocks = ni->itype.compressed.size >> 9;
1366
1367         /*
1368          * Make sure the base inode doesn't go away and attach it to the
1369          * attribute inode.
1370          */
1371         igrab(base_vi);
1372         ni->ext.base_ntfs_ino = base_ni;
1373         ni->nr_extents = -1;
1374
1375         ntfs_attr_put_search_ctx(ctx);
1376         unmap_mft_record(base_ni);
1377
1378         ntfs_debug("Done.");
1379         return 0;
1380
1381 unm_err_out:
1382         if (!err)
1383                 err = -EIO;
1384         if (ctx)
1385                 ntfs_attr_put_search_ctx(ctx);
1386         unmap_mft_record(base_ni);
1387 err_out:
1388         ntfs_error(vol->sb, "Failed with error code %i while reading attribute "
1389                         "inode (mft_no 0x%lx, type 0x%x, name_len %i).  "
1390                         "Marking corrupt inode and base inode 0x%lx as bad.  "
1391                         "Run chkdsk.", err, vi->i_ino, ni->type, ni->name_len,
1392                         base_vi->i_ino);
1393         make_bad_inode(vi);
1394         make_bad_inode(base_vi);
1395         if (err != -ENOMEM)
1396                 NVolSetErrors(vol);
1397         return err;
1398 }
1399
1400 /**
1401  * ntfs_read_locked_index_inode - read an index inode from its base inode
1402  * @base_vi:    base inode
1403  * @vi:         index inode to read
1404  *
1405  * ntfs_read_locked_index_inode() is called from ntfs_index_iget() to read the
1406  * index inode described by @vi into memory from the base mft record described
1407  * by @base_ni.
1408  *
1409  * ntfs_read_locked_index_inode() maps, pins and locks the base inode for
1410  * reading and looks up the attributes relating to the index described by @vi
1411  * before setting up the necessary fields in @vi as well as initializing the
1412  * ntfs inode.
1413  *
1414  * Note, index inodes are essentially attribute inodes (NInoAttr() is true)
1415  * with the attribute type set to AT_INDEX_ALLOCATION.  Apart from that, they
1416  * are setup like directory inodes since directories are a special case of
1417  * indices ao they need to be treated in much the same way.  Most importantly,
1418  * for small indices the index allocation attribute might not actually exist.
1419  * However, the index root attribute always exists but this does not need to
1420  * have an inode associated with it and this is why we define a new inode type
1421  * index.  Also, like for directories, we need to have an attribute inode for
1422  * the bitmap attribute corresponding to the index allocation attribute and we
1423  * can store this in the appropriate field of the inode, just like we do for
1424  * normal directory inodes.
1425  *
1426  * Q: What locks are held when the function is called?
1427  * A: i_state has I_LOCK set, hence the inode is locked, also
1428  *    i_count is set to 1, so it is not going to go away
1429  *
1430  * Return 0 on success and -errno on error.  In the error case, the inode will
1431  * have had make_bad_inode() executed on it.
1432  */
1433 static int ntfs_read_locked_index_inode(struct inode *base_vi, struct inode *vi)
1434 {
1435         loff_t bvi_size;
1436         ntfs_volume *vol = NTFS_SB(vi->i_sb);
1437         ntfs_inode *ni, *base_ni, *bni;
1438         struct inode *bvi;
1439         MFT_RECORD *m;
1440         ntfs_attr_search_ctx *ctx;
1441         INDEX_ROOT *ir;
1442         u8 *ir_end, *index_end;
1443         int err = 0;
1444
1445         ntfs_debug("Entering for i_ino 0x%lx.", vi->i_ino);
1446         ntfs_init_big_inode(vi);
1447         ni      = NTFS_I(vi);
1448         base_ni = NTFS_I(base_vi);
1449         /* Just mirror the values from the base inode. */
1450         vi->i_blksize   = base_vi->i_blksize;
1451         vi->i_version   = base_vi->i_version;
1452         vi->i_uid       = base_vi->i_uid;
1453         vi->i_gid       = base_vi->i_gid;
1454         vi->i_nlink     = base_vi->i_nlink;
1455         vi->i_mtime     = base_vi->i_mtime;
1456         vi->i_ctime     = base_vi->i_ctime;
1457         vi->i_atime     = base_vi->i_atime;
1458         vi->i_generation = ni->seq_no = base_ni->seq_no;
1459         /* Set inode type to zero but preserve permissions. */
1460         vi->i_mode      = base_vi->i_mode & ~S_IFMT;
1461         /* Map the mft record for the base inode. */
1462         m = map_mft_record(base_ni);
1463         if (IS_ERR(m)) {
1464                 err = PTR_ERR(m);
1465                 goto err_out;
1466         }
1467         ctx = ntfs_attr_get_search_ctx(base_ni, m);
1468         if (!ctx) {
1469                 err = -ENOMEM;
1470                 goto unm_err_out;
1471         }
1472         /* Find the index root attribute. */
1473         err = ntfs_attr_lookup(AT_INDEX_ROOT, ni->name, ni->name_len,
1474                         CASE_SENSITIVE, 0, NULL, 0, ctx);
1475         if (unlikely(err)) {
1476                 if (err == -ENOENT)
1477                         ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is "
1478                                         "missing.");
1479                 goto unm_err_out;
1480         }
1481         /* Set up the state. */
1482         if (unlikely(ctx->attr->non_resident)) {
1483                 ntfs_error(vol->sb, "$INDEX_ROOT attribute is not resident.");
1484                 goto unm_err_out;
1485         }
1486         /* Ensure the attribute name is placed before the value. */
1487         if (unlikely(ctx->attr->name_length &&
1488                         (le16_to_cpu(ctx->attr->name_offset) >=
1489                         le16_to_cpu(ctx->attr->data.resident.
1490                         value_offset)))) {
1491                 ntfs_error(vol->sb, "$INDEX_ROOT attribute name is placed "
1492                                 "after the attribute value.");
1493                 goto unm_err_out;
1494         }
1495         /* Compressed/encrypted/sparse index root is not allowed. */
1496         if (ctx->attr->flags & (ATTR_COMPRESSION_MASK | ATTR_IS_ENCRYPTED |
1497                         ATTR_IS_SPARSE)) {
1498                 ntfs_error(vi->i_sb, "Found compressed/encrypted/sparse index "
1499                                 "root attribute.");
1500                 goto unm_err_out;
1501         }
1502         ir = (INDEX_ROOT*)((u8*)ctx->attr +
1503                         le16_to_cpu(ctx->attr->data.resident.value_offset));
1504         ir_end = (u8*)ir + le32_to_cpu(ctx->attr->data.resident.value_length);
1505         if (ir_end > (u8*)ctx->mrec + vol->mft_record_size) {
1506                 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is corrupt.");
1507                 goto unm_err_out;
1508         }
1509         index_end = (u8*)&ir->index + le32_to_cpu(ir->index.index_length);
1510         if (index_end > ir_end) {
1511                 ntfs_error(vi->i_sb, "Index is corrupt.");
1512                 goto unm_err_out;
1513         }
1514         if (ir->type) {
1515                 ntfs_error(vi->i_sb, "Index type is not 0 (type is 0x%x).",
1516                                 le32_to_cpu(ir->type));
1517                 goto unm_err_out;
1518         }
1519         ni->itype.index.collation_rule = ir->collation_rule;
1520         ntfs_debug("Index collation rule is 0x%x.",
1521                         le32_to_cpu(ir->collation_rule));
1522         ni->itype.index.block_size = le32_to_cpu(ir->index_block_size);
1523         if (ni->itype.index.block_size & (ni->itype.index.block_size - 1)) {
1524                 ntfs_error(vi->i_sb, "Index block size (%u) is not a power of "
1525                                 "two.", ni->itype.index.block_size);
1526                 goto unm_err_out;
1527         }
1528         if (ni->itype.index.block_size > PAGE_CACHE_SIZE) {
1529                 ntfs_error(vi->i_sb, "Index block size (%u) > PAGE_CACHE_SIZE "
1530                                 "(%ld) is not supported.  Sorry.",
1531                                 ni->itype.index.block_size, PAGE_CACHE_SIZE);
1532                 err = -EOPNOTSUPP;
1533                 goto unm_err_out;
1534         }
1535         if (ni->itype.index.block_size < NTFS_BLOCK_SIZE) {
1536                 ntfs_error(vi->i_sb, "Index block size (%u) < NTFS_BLOCK_SIZE "
1537                                 "(%i) is not supported.  Sorry.",
1538                                 ni->itype.index.block_size, NTFS_BLOCK_SIZE);
1539                 err = -EOPNOTSUPP;
1540                 goto unm_err_out;
1541         }
1542         ni->itype.index.block_size_bits = ffs(ni->itype.index.block_size) - 1;
1543         /* Determine the size of a vcn in the index. */
1544         if (vol->cluster_size <= ni->itype.index.block_size) {
1545                 ni->itype.index.vcn_size = vol->cluster_size;
1546                 ni->itype.index.vcn_size_bits = vol->cluster_size_bits;
1547         } else {
1548                 ni->itype.index.vcn_size = vol->sector_size;
1549                 ni->itype.index.vcn_size_bits = vol->sector_size_bits;
1550         }
1551         /* Check for presence of index allocation attribute. */
1552         if (!(ir->index.flags & LARGE_INDEX)) {
1553                 /* No index allocation. */
1554                 vi->i_size = ni->initialized_size = ni->allocated_size = 0;
1555                 /* We are done with the mft record, so we release it. */
1556                 ntfs_attr_put_search_ctx(ctx);
1557                 unmap_mft_record(base_ni);
1558                 m = NULL;
1559                 ctx = NULL;
1560                 goto skip_large_index_stuff;
1561         } /* LARGE_INDEX:  Index allocation present.  Setup state. */
1562         NInoSetIndexAllocPresent(ni);
1563         /* Find index allocation attribute. */
1564         ntfs_attr_reinit_search_ctx(ctx);
1565         err = ntfs_attr_lookup(AT_INDEX_ALLOCATION, ni->name, ni->name_len,
1566                         CASE_SENSITIVE, 0, NULL, 0, ctx);
1567         if (unlikely(err)) {
1568                 if (err == -ENOENT)
1569                         ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1570                                         "not present but $INDEX_ROOT "
1571                                         "indicated it is.");
1572                 else
1573                         ntfs_error(vi->i_sb, "Failed to lookup "
1574                                         "$INDEX_ALLOCATION attribute.");
1575                 goto unm_err_out;
1576         }
1577         if (!ctx->attr->non_resident) {
1578                 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1579                                 "resident.");
1580                 goto unm_err_out;
1581         }
1582         /*
1583          * Ensure the attribute name is placed before the mapping pairs array.
1584          */
1585         if (unlikely(ctx->attr->name_length && (le16_to_cpu(
1586                         ctx->attr->name_offset) >= le16_to_cpu(
1587                         ctx->attr->data.non_resident.mapping_pairs_offset)))) {
1588                 ntfs_error(vol->sb, "$INDEX_ALLOCATION attribute name is "
1589                                 "placed after the mapping pairs array.");
1590                 goto unm_err_out;
1591         }
1592         if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
1593                 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1594                                 "encrypted.");
1595                 goto unm_err_out;
1596         }
1597         if (ctx->attr->flags & ATTR_IS_SPARSE) {
1598                 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is sparse.");
1599                 goto unm_err_out;
1600         }
1601         if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1602                 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1603                                 "compressed.");
1604                 goto unm_err_out;
1605         }
1606         if (ctx->attr->data.non_resident.lowest_vcn) {
1607                 ntfs_error(vi->i_sb, "First extent of $INDEX_ALLOCATION "
1608                                 "attribute has non zero lowest_vcn.");
1609                 goto unm_err_out;
1610         }
1611         vi->i_size = sle64_to_cpu(ctx->attr->data.non_resident.data_size);
1612         ni->initialized_size = sle64_to_cpu(
1613                         ctx->attr->data.non_resident.initialized_size);
1614         ni->allocated_size = sle64_to_cpu(
1615                         ctx->attr->data.non_resident.allocated_size);
1616         /*
1617          * We are done with the mft record, so we release it.  Otherwise
1618          * we would deadlock in ntfs_attr_iget().
1619          */
1620         ntfs_attr_put_search_ctx(ctx);
1621         unmap_mft_record(base_ni);
1622         m = NULL;
1623         ctx = NULL;
1624         /* Get the index bitmap attribute inode. */
1625         bvi = ntfs_attr_iget(base_vi, AT_BITMAP, ni->name, ni->name_len);
1626         if (IS_ERR(bvi)) {
1627                 ntfs_error(vi->i_sb, "Failed to get bitmap attribute.");
1628                 err = PTR_ERR(bvi);
1629                 goto unm_err_out;
1630         }
1631         bni = NTFS_I(bvi);
1632         if (NInoCompressed(bni) || NInoEncrypted(bni) ||
1633                         NInoSparse(bni)) {
1634                 ntfs_error(vi->i_sb, "$BITMAP attribute is compressed and/or "
1635                                 "encrypted and/or sparse.");
1636                 goto iput_unm_err_out;
1637         }
1638         /* Consistency check bitmap size vs. index allocation size. */
1639         bvi_size = i_size_read(bvi);
1640         if ((bvi_size << 3) < (vi->i_size >> ni->itype.index.block_size_bits)) {
1641                 ntfs_error(vi->i_sb, "Index bitmap too small (0x%llx) for "
1642                                 "index allocation (0x%llx).", bvi_size << 3,
1643                                 vi->i_size);
1644                 goto iput_unm_err_out;
1645         }
1646         ni->itype.index.bmp_ino = bvi;
1647 skip_large_index_stuff:
1648         /* Setup the operations for this index inode. */
1649         vi->i_op = NULL;
1650         vi->i_fop = NULL;
1651         vi->i_mapping->a_ops = &ntfs_mst_aops;
1652         vi->i_blocks = ni->allocated_size >> 9;
1653
1654         /*
1655          * Make sure the base inode doesn't go away and attach it to the
1656          * index inode.
1657          */
1658         igrab(base_vi);
1659         ni->ext.base_ntfs_ino = base_ni;
1660         ni->nr_extents = -1;
1661
1662         ntfs_debug("Done.");
1663         return 0;
1664
1665 iput_unm_err_out:
1666         iput(bvi);
1667 unm_err_out:
1668         if (!err)
1669                 err = -EIO;
1670         if (ctx)
1671                 ntfs_attr_put_search_ctx(ctx);
1672         if (m)
1673                 unmap_mft_record(base_ni);
1674 err_out:
1675         ntfs_error(vi->i_sb, "Failed with error code %i while reading index "
1676                         "inode (mft_no 0x%lx, name_len %i.", err, vi->i_ino,
1677                         ni->name_len);
1678         make_bad_inode(vi);
1679         if (err != -EOPNOTSUPP && err != -ENOMEM)
1680                 NVolSetErrors(vol);
1681         return err;
1682 }
1683
1684 /**
1685  * ntfs_read_inode_mount - special read_inode for mount time use only
1686  * @vi:         inode to read
1687  *
1688  * Read inode FILE_MFT at mount time, only called with super_block lock
1689  * held from within the read_super() code path.
1690  *
1691  * This function exists because when it is called the page cache for $MFT/$DATA
1692  * is not initialized and hence we cannot get at the contents of mft records
1693  * by calling map_mft_record*().
1694  *
1695  * Further it needs to cope with the circular references problem, i.e. cannot
1696  * load any attributes other than $ATTRIBUTE_LIST until $DATA is loaded, because
1697  * we do not know where the other extent mft records are yet and again, because
1698  * we cannot call map_mft_record*() yet.  Obviously this applies only when an
1699  * attribute list is actually present in $MFT inode.
1700  *
1701  * We solve these problems by starting with the $DATA attribute before anything
1702  * else and iterating using ntfs_attr_lookup($DATA) over all extents.  As each
1703  * extent is found, we ntfs_mapping_pairs_decompress() including the implied
1704  * ntfs_runlists_merge().  Each step of the iteration necessarily provides
1705  * sufficient information for the next step to complete.
1706  *
1707  * This should work but there are two possible pit falls (see inline comments
1708  * below), but only time will tell if they are real pits or just smoke...
1709  */
1710 int ntfs_read_inode_mount(struct inode *vi)
1711 {
1712         VCN next_vcn, last_vcn, highest_vcn;
1713         s64 block;
1714         struct super_block *sb = vi->i_sb;
1715         ntfs_volume *vol = NTFS_SB(sb);
1716         struct buffer_head *bh;
1717         ntfs_inode *ni;
1718         MFT_RECORD *m = NULL;
1719         ATTR_RECORD *attr;
1720         ntfs_attr_search_ctx *ctx;
1721         unsigned int i, nr_blocks;
1722         int err;
1723
1724         ntfs_debug("Entering.");
1725
1726         /* Initialize the ntfs specific part of @vi. */
1727         ntfs_init_big_inode(vi);
1728
1729         ni = NTFS_I(vi);
1730
1731         /* Setup the data attribute. It is special as it is mst protected. */
1732         NInoSetNonResident(ni);
1733         NInoSetMstProtected(ni);
1734         NInoSetSparseDisabled(ni);
1735         ni->type = AT_DATA;
1736         ni->name = NULL;
1737         ni->name_len = 0;
1738
1739         /*
1740          * This sets up our little cheat allowing us to reuse the async read io
1741          * completion handler for directories.
1742          */
1743         ni->itype.index.block_size = vol->mft_record_size;
1744         ni->itype.index.block_size_bits = vol->mft_record_size_bits;
1745
1746         /* Very important! Needed to be able to call map_mft_record*(). */
1747         vol->mft_ino = vi;
1748
1749         /* Allocate enough memory to read the first mft record. */
1750         if (vol->mft_record_size > 64 * 1024) {
1751                 ntfs_error(sb, "Unsupported mft record size %i (max 64kiB).",
1752                                 vol->mft_record_size);
1753                 goto err_out;
1754         }
1755         i = vol->mft_record_size;
1756         if (i < sb->s_blocksize)
1757                 i = sb->s_blocksize;
1758         m = (MFT_RECORD*)ntfs_malloc_nofs(i);
1759         if (!m) {
1760                 ntfs_error(sb, "Failed to allocate buffer for $MFT record 0.");
1761                 goto err_out;
1762         }
1763
1764         /* Determine the first block of the $MFT/$DATA attribute. */
1765         block = vol->mft_lcn << vol->cluster_size_bits >>
1766                         sb->s_blocksize_bits;
1767         nr_blocks = vol->mft_record_size >> sb->s_blocksize_bits;
1768         if (!nr_blocks)
1769                 nr_blocks = 1;
1770
1771         /* Load $MFT/$DATA's first mft record. */
1772         for (i = 0; i < nr_blocks; i++) {
1773                 bh = sb_bread(sb, block++);
1774                 if (!bh) {
1775                         ntfs_error(sb, "Device read failed.");
1776                         goto err_out;
1777                 }
1778                 memcpy((char*)m + (i << sb->s_blocksize_bits), bh->b_data,
1779                                 sb->s_blocksize);
1780                 brelse(bh);
1781         }
1782
1783         /* Apply the mst fixups. */
1784         if (post_read_mst_fixup((NTFS_RECORD*)m, vol->mft_record_size)) {
1785                 /* FIXME: Try to use the $MFTMirr now. */
1786                 ntfs_error(sb, "MST fixup failed. $MFT is corrupt.");
1787                 goto err_out;
1788         }
1789
1790         /* Need this to sanity check attribute list references to $MFT. */
1791         vi->i_generation = ni->seq_no = le16_to_cpu(m->sequence_number);
1792
1793         /* Provides readpage() and sync_page() for map_mft_record(). */
1794         vi->i_mapping->a_ops = &ntfs_mst_aops;
1795
1796         ctx = ntfs_attr_get_search_ctx(ni, m);
1797         if (!ctx) {
1798                 err = -ENOMEM;
1799                 goto err_out;
1800         }
1801
1802         /* Find the attribute list attribute if present. */
1803         err = ntfs_attr_lookup(AT_ATTRIBUTE_LIST, NULL, 0, 0, 0, NULL, 0, ctx);
1804         if (err) {
1805                 if (unlikely(err != -ENOENT)) {
1806                         ntfs_error(sb, "Failed to lookup attribute list "
1807                                         "attribute. You should run chkdsk.");
1808                         goto put_err_out;
1809                 }
1810         } else /* if (!err) */ {
1811                 ATTR_LIST_ENTRY *al_entry, *next_al_entry;
1812                 u8 *al_end;
1813
1814                 ntfs_debug("Attribute list attribute found in $MFT.");
1815                 NInoSetAttrList(ni);
1816                 if (ctx->attr->flags & ATTR_IS_ENCRYPTED ||
1817                                 ctx->attr->flags & ATTR_COMPRESSION_MASK ||
1818                                 ctx->attr->flags & ATTR_IS_SPARSE) {
1819                         ntfs_error(sb, "Attribute list attribute is "
1820                                         "compressed/encrypted/sparse. Not "
1821                                         "allowed. $MFT is corrupt. You should "
1822                                         "run chkdsk.");
1823                         goto put_err_out;
1824                 }
1825                 /* Now allocate memory for the attribute list. */
1826                 ni->attr_list_size = (u32)ntfs_attr_size(ctx->attr);
1827                 ni->attr_list = ntfs_malloc_nofs(ni->attr_list_size);
1828                 if (!ni->attr_list) {
1829                         ntfs_error(sb, "Not enough memory to allocate buffer "
1830                                         "for attribute list.");
1831                         goto put_err_out;
1832                 }
1833                 if (ctx->attr->non_resident) {
1834                         NInoSetAttrListNonResident(ni);
1835                         if (ctx->attr->data.non_resident.lowest_vcn) {
1836                                 ntfs_error(sb, "Attribute list has non zero "
1837                                                 "lowest_vcn. $MFT is corrupt. "
1838                                                 "You should run chkdsk.");
1839                                 goto put_err_out;
1840                         }
1841                         /* Setup the runlist. */
1842                         ni->attr_list_rl.rl = ntfs_mapping_pairs_decompress(vol,
1843                                         ctx->attr, NULL);
1844                         if (IS_ERR(ni->attr_list_rl.rl)) {
1845                                 err = PTR_ERR(ni->attr_list_rl.rl);
1846                                 ni->attr_list_rl.rl = NULL;
1847                                 ntfs_error(sb, "Mapping pairs decompression "
1848                                                 "failed with error code %i.",
1849                                                 -err);
1850                                 goto put_err_out;
1851                         }
1852                         /* Now load the attribute list. */
1853                         if ((err = load_attribute_list(vol, &ni->attr_list_rl,
1854                                         ni->attr_list, ni->attr_list_size,
1855                                         sle64_to_cpu(ctx->attr->data.
1856                                         non_resident.initialized_size)))) {
1857                                 ntfs_error(sb, "Failed to load attribute list "
1858                                                 "attribute with error code %i.",
1859                                                 -err);
1860                                 goto put_err_out;
1861                         }
1862                 } else /* if (!ctx.attr->non_resident) */ {
1863                         if ((u8*)ctx->attr + le16_to_cpu(
1864                                         ctx->attr->data.resident.value_offset) +
1865                                         le32_to_cpu(
1866                                         ctx->attr->data.resident.value_length) >
1867                                         (u8*)ctx->mrec + vol->mft_record_size) {
1868                                 ntfs_error(sb, "Corrupt attribute list "
1869                                                 "attribute.");
1870                                 goto put_err_out;
1871                         }
1872                         /* Now copy the attribute list. */
1873                         memcpy(ni->attr_list, (u8*)ctx->attr + le16_to_cpu(
1874                                         ctx->attr->data.resident.value_offset),
1875                                         le32_to_cpu(
1876                                         ctx->attr->data.resident.value_length));
1877                 }
1878                 /* The attribute list is now setup in memory. */
1879                 /*
1880                  * FIXME: I don't know if this case is actually possible.
1881                  * According to logic it is not possible but I have seen too
1882                  * many weird things in MS software to rely on logic... Thus we
1883                  * perform a manual search and make sure the first $MFT/$DATA
1884                  * extent is in the base inode. If it is not we abort with an
1885                  * error and if we ever see a report of this error we will need
1886                  * to do some magic in order to have the necessary mft record
1887                  * loaded and in the right place in the page cache. But
1888                  * hopefully logic will prevail and this never happens...
1889                  */
1890                 al_entry = (ATTR_LIST_ENTRY*)ni->attr_list;
1891                 al_end = (u8*)al_entry + ni->attr_list_size;
1892                 for (;; al_entry = next_al_entry) {
1893                         /* Out of bounds check. */
1894                         if ((u8*)al_entry < ni->attr_list ||
1895                                         (u8*)al_entry > al_end)
1896                                 goto em_put_err_out;
1897                         /* Catch the end of the attribute list. */
1898                         if ((u8*)al_entry == al_end)
1899                                 goto em_put_err_out;
1900                         if (!al_entry->length)
1901                                 goto em_put_err_out;
1902                         if ((u8*)al_entry + 6 > al_end || (u8*)al_entry +
1903                                         le16_to_cpu(al_entry->length) > al_end)
1904                                 goto em_put_err_out;
1905                         next_al_entry = (ATTR_LIST_ENTRY*)((u8*)al_entry +
1906                                         le16_to_cpu(al_entry->length));
1907                         if (le32_to_cpu(al_entry->type) >
1908                                         const_le32_to_cpu(AT_DATA))
1909                                 goto em_put_err_out;
1910                         if (AT_DATA != al_entry->type)
1911                                 continue;
1912                         /* We want an unnamed attribute. */
1913                         if (al_entry->name_length)
1914                                 goto em_put_err_out;
1915                         /* Want the first entry, i.e. lowest_vcn == 0. */
1916                         if (al_entry->lowest_vcn)
1917                                 goto em_put_err_out;
1918                         /* First entry has to be in the base mft record. */
1919                         if (MREF_LE(al_entry->mft_reference) != vi->i_ino) {
1920                                 /* MFT references do not match, logic fails. */
1921                                 ntfs_error(sb, "BUG: The first $DATA extent "
1922                                                 "of $MFT is not in the base "
1923                                                 "mft record. Please report "
1924                                                 "you saw this message to "
1925                                                 "linux-ntfs-dev@lists."
1926                                                 "sourceforge.net");
1927                                 goto put_err_out;
1928                         } else {
1929                                 /* Sequence numbers must match. */
1930                                 if (MSEQNO_LE(al_entry->mft_reference) !=
1931                                                 ni->seq_no)
1932                                         goto em_put_err_out;
1933                                 /* Got it. All is ok. We can stop now. */
1934                                 break;
1935                         }
1936                 }
1937         }
1938
1939         ntfs_attr_reinit_search_ctx(ctx);
1940
1941         /* Now load all attribute extents. */
1942         attr = NULL;
1943         next_vcn = last_vcn = highest_vcn = 0;
1944         while (!(err = ntfs_attr_lookup(AT_DATA, NULL, 0, 0, next_vcn, NULL, 0,
1945                         ctx))) {
1946                 runlist_element *nrl;
1947
1948                 /* Cache the current attribute. */
1949                 attr = ctx->attr;
1950                 /* $MFT must be non-resident. */
1951                 if (!attr->non_resident) {
1952                         ntfs_error(sb, "$MFT must be non-resident but a "
1953                                         "resident extent was found. $MFT is "
1954                                         "corrupt. Run chkdsk.");
1955                         goto put_err_out;
1956                 }
1957                 /* $MFT must be uncompressed and unencrypted. */
1958                 if (attr->flags & ATTR_COMPRESSION_MASK ||
1959                                 attr->flags & ATTR_IS_ENCRYPTED ||
1960                                 attr->flags & ATTR_IS_SPARSE) {
1961                         ntfs_error(sb, "$MFT must be uncompressed, "
1962                                         "non-sparse, and unencrypted but a "
1963                                         "compressed/sparse/encrypted extent "
1964                                         "was found. $MFT is corrupt. Run "
1965                                         "chkdsk.");
1966                         goto put_err_out;
1967                 }
1968                 /*
1969                  * Decompress the mapping pairs array of this extent and merge
1970                  * the result into the existing runlist. No need for locking
1971                  * as we have exclusive access to the inode at this time and we
1972                  * are a mount in progress task, too.
1973                  */
1974                 nrl = ntfs_mapping_pairs_decompress(vol, attr, ni->runlist.rl);
1975                 if (IS_ERR(nrl)) {
1976                         ntfs_error(sb, "ntfs_mapping_pairs_decompress() "
1977                                         "failed with error code %ld.  $MFT is "
1978                                         "corrupt.", PTR_ERR(nrl));
1979                         goto put_err_out;
1980                 }
1981                 ni->runlist.rl = nrl;
1982
1983                 /* Are we in the first extent? */
1984                 if (!next_vcn) {
1985                         if (attr->data.non_resident.lowest_vcn) {
1986                                 ntfs_error(sb, "First extent of $DATA "
1987                                                 "attribute has non zero "
1988                                                 "lowest_vcn. $MFT is corrupt. "
1989                                                 "You should run chkdsk.");
1990                                 goto put_err_out;
1991                         }
1992                         /* Get the last vcn in the $DATA attribute. */
1993                         last_vcn = sle64_to_cpu(
1994                                         attr->data.non_resident.allocated_size)
1995                                         >> vol->cluster_size_bits;
1996                         /* Fill in the inode size. */
1997                         vi->i_size = sle64_to_cpu(
1998                                         attr->data.non_resident.data_size);
1999                         ni->initialized_size = sle64_to_cpu(attr->data.
2000                                         non_resident.initialized_size);
2001                         ni->allocated_size = sle64_to_cpu(
2002                                         attr->data.non_resident.allocated_size);
2003                         /*
2004                          * Verify the number of mft records does not exceed
2005                          * 2^32 - 1.
2006                          */
2007                         if ((vi->i_size >> vol->mft_record_size_bits) >=
2008                                         (1ULL << 32)) {
2009                                 ntfs_error(sb, "$MFT is too big! Aborting.");
2010                                 goto put_err_out;
2011                         }
2012                         /*
2013                          * We have got the first extent of the runlist for
2014                          * $MFT which means it is now relatively safe to call
2015                          * the normal ntfs_read_inode() function.
2016                          * Complete reading the inode, this will actually
2017                          * re-read the mft record for $MFT, this time entering
2018                          * it into the page cache with which we complete the
2019                          * kick start of the volume. It should be safe to do
2020                          * this now as the first extent of $MFT/$DATA is
2021                          * already known and we would hope that we don't need
2022                          * further extents in order to find the other
2023                          * attributes belonging to $MFT. Only time will tell if
2024                          * this is really the case. If not we will have to play
2025                          * magic at this point, possibly duplicating a lot of
2026                          * ntfs_read_inode() at this point. We will need to
2027                          * ensure we do enough of its work to be able to call
2028                          * ntfs_read_inode() on extents of $MFT/$DATA. But lets
2029                          * hope this never happens...
2030                          */
2031                         ntfs_read_locked_inode(vi);
2032                         if (is_bad_inode(vi)) {
2033                                 ntfs_error(sb, "ntfs_read_inode() of $MFT "
2034                                                 "failed. BUG or corrupt $MFT. "
2035                                                 "Run chkdsk and if no errors "
2036                                                 "are found, please report you "
2037                                                 "saw this message to "
2038                                                 "linux-ntfs-dev@lists."
2039                                                 "sourceforge.net");
2040                                 ntfs_attr_put_search_ctx(ctx);
2041                                 /* Revert to the safe super operations. */
2042                                 ntfs_free(m);
2043                                 return -1;
2044                         }
2045                         /*
2046                          * Re-initialize some specifics about $MFT's inode as
2047                          * ntfs_read_inode() will have set up the default ones.
2048                          */
2049                         /* Set uid and gid to root. */
2050                         vi->i_uid = vi->i_gid = 0;
2051                         /* Regular file. No access for anyone. */
2052                         vi->i_mode = S_IFREG;
2053                         /* No VFS initiated operations allowed for $MFT. */
2054                         vi->i_op = &ntfs_empty_inode_ops;
2055                         vi->i_fop = &ntfs_empty_file_ops;
2056                 }
2057
2058                 /* Get the lowest vcn for the next extent. */
2059                 highest_vcn = sle64_to_cpu(attr->data.non_resident.highest_vcn);
2060                 next_vcn = highest_vcn + 1;
2061
2062                 /* Only one extent or error, which we catch below. */
2063                 if (next_vcn <= 0)
2064                         break;
2065
2066                 /* Avoid endless loops due to corruption. */
2067                 if (next_vcn < sle64_to_cpu(
2068                                 attr->data.non_resident.lowest_vcn)) {
2069                         ntfs_error(sb, "$MFT has corrupt attribute list "
2070                                         "attribute. Run chkdsk.");
2071                         goto put_err_out;
2072                 }
2073         }
2074         if (err != -ENOENT) {
2075                 ntfs_error(sb, "Failed to lookup $MFT/$DATA attribute extent. "
2076                                 "$MFT is corrupt. Run chkdsk.");
2077                 goto put_err_out;
2078         }
2079         if (!attr) {
2080                 ntfs_error(sb, "$MFT/$DATA attribute not found. $MFT is "
2081                                 "corrupt. Run chkdsk.");
2082                 goto put_err_out;
2083         }
2084         if (highest_vcn && highest_vcn != last_vcn - 1) {
2085                 ntfs_error(sb, "Failed to load the complete runlist for "
2086                                 "$MFT/$DATA. Driver bug or corrupt $MFT. "
2087                                 "Run chkdsk.");
2088                 ntfs_debug("highest_vcn = 0x%llx, last_vcn - 1 = 0x%llx",
2089                                 (unsigned long long)highest_vcn,
2090                                 (unsigned long long)last_vcn - 1);
2091                 goto put_err_out;
2092         }
2093         ntfs_attr_put_search_ctx(ctx);
2094         ntfs_debug("Done.");
2095         ntfs_free(m);
2096         return 0;
2097
2098 em_put_err_out:
2099         ntfs_error(sb, "Couldn't find first extent of $DATA attribute in "
2100                         "attribute list. $MFT is corrupt. Run chkdsk.");
2101 put_err_out:
2102         ntfs_attr_put_search_ctx(ctx);
2103 err_out:
2104         ntfs_error(sb, "Failed. Marking inode as bad.");
2105         make_bad_inode(vi);
2106         ntfs_free(m);
2107         return -1;
2108 }
2109
2110 /**
2111  * ntfs_put_inode - handler for when the inode reference count is decremented
2112  * @vi:         vfs inode
2113  *
2114  * The VFS calls ntfs_put_inode() every time the inode reference count (i_count)
2115  * is about to be decremented (but before the decrement itself.
2116  *
2117  * If the inode @vi is a directory with two references, one of which is being
2118  * dropped, we need to put the attribute inode for the directory index bitmap,
2119  * if it is present, otherwise the directory inode would remain pinned for
2120  * ever.
2121  */
2122 void ntfs_put_inode(struct inode *vi)
2123 {
2124         if (S_ISDIR(vi->i_mode) && atomic_read(&vi->i_count) == 2) {
2125                 ntfs_inode *ni = NTFS_I(vi);
2126                 if (NInoIndexAllocPresent(ni)) {
2127                         struct inode *bvi = NULL;
2128                         down(&vi->i_sem);
2129                         if (atomic_read(&vi->i_count) == 2) {
2130                                 bvi = ni->itype.index.bmp_ino;
2131                                 if (bvi)
2132                                         ni->itype.index.bmp_ino = NULL;
2133                         }
2134                         up(&vi->i_sem);
2135                         if (bvi)
2136                                 iput(bvi);
2137                 }
2138         }
2139 }
2140
2141 static void __ntfs_clear_inode(ntfs_inode *ni)
2142 {
2143         /* Free all alocated memory. */
2144         down_write(&ni->runlist.lock);
2145         if (ni->runlist.rl) {
2146                 ntfs_free(ni->runlist.rl);
2147                 ni->runlist.rl = NULL;
2148         }
2149         up_write(&ni->runlist.lock);
2150
2151         if (ni->attr_list) {
2152                 ntfs_free(ni->attr_list);
2153                 ni->attr_list = NULL;
2154         }
2155
2156         down_write(&ni->attr_list_rl.lock);
2157         if (ni->attr_list_rl.rl) {
2158                 ntfs_free(ni->attr_list_rl.rl);
2159                 ni->attr_list_rl.rl = NULL;
2160         }
2161         up_write(&ni->attr_list_rl.lock);
2162
2163         if (ni->name_len && ni->name != I30) {
2164                 /* Catch bugs... */
2165                 BUG_ON(!ni->name);
2166                 kfree(ni->name);
2167         }
2168 }
2169
2170 void ntfs_clear_extent_inode(ntfs_inode *ni)
2171 {
2172         ntfs_debug("Entering for inode 0x%lx.", ni->mft_no);
2173
2174         BUG_ON(NInoAttr(ni));
2175         BUG_ON(ni->nr_extents != -1);
2176
2177 #ifdef NTFS_RW
2178         if (NInoDirty(ni)) {
2179                 if (!is_bad_inode(VFS_I(ni->ext.base_ntfs_ino)))
2180                         ntfs_error(ni->vol->sb, "Clearing dirty extent inode!  "
2181                                         "Losing data!  This is a BUG!!!");
2182                 // FIXME:  Do something!!!
2183         }
2184 #endif /* NTFS_RW */
2185
2186         __ntfs_clear_inode(ni);
2187
2188         /* Bye, bye... */
2189         ntfs_destroy_extent_inode(ni);
2190 }
2191
2192 /**
2193  * ntfs_clear_big_inode - clean up the ntfs specific part of an inode
2194  * @vi:         vfs inode pending annihilation
2195  *
2196  * When the VFS is going to remove an inode from memory, ntfs_clear_big_inode()
2197  * is called, which deallocates all memory belonging to the NTFS specific part
2198  * of the inode and returns.
2199  *
2200  * If the MFT record is dirty, we commit it before doing anything else.
2201  */
2202 void ntfs_clear_big_inode(struct inode *vi)
2203 {
2204         ntfs_inode *ni = NTFS_I(vi);
2205
2206         /*
2207          * If the inode @vi is an index inode we need to put the attribute
2208          * inode for the index bitmap, if it is present, otherwise the index
2209          * inode would disappear and the attribute inode for the index bitmap
2210          * would no longer be referenced from anywhere and thus it would remain
2211          * pinned for ever.
2212          */
2213         if (NInoAttr(ni) && (ni->type == AT_INDEX_ALLOCATION) &&
2214                         NInoIndexAllocPresent(ni) && ni->itype.index.bmp_ino) {
2215                 iput(ni->itype.index.bmp_ino);
2216                 ni->itype.index.bmp_ino = NULL;
2217         }
2218 #ifdef NTFS_RW
2219         if (NInoDirty(ni)) {
2220                 BOOL was_bad = (is_bad_inode(vi));
2221
2222                 /* Committing the inode also commits all extent inodes. */
2223                 ntfs_commit_inode(vi);
2224
2225                 if (!was_bad && (is_bad_inode(vi) || NInoDirty(ni))) {
2226                         ntfs_error(vi->i_sb, "Failed to commit dirty inode "
2227                                         "0x%lx.  Losing data!", vi->i_ino);
2228                         // FIXME:  Do something!!!
2229                 }
2230         }
2231 #endif /* NTFS_RW */
2232
2233         /* No need to lock at this stage as no one else has a reference. */
2234         if (ni->nr_extents > 0) {
2235                 int i;
2236
2237                 for (i = 0; i < ni->nr_extents; i++)
2238                         ntfs_clear_extent_inode(ni->ext.extent_ntfs_inos[i]);
2239                 kfree(ni->ext.extent_ntfs_inos);
2240         }
2241
2242         __ntfs_clear_inode(ni);
2243
2244         if (NInoAttr(ni)) {
2245                 /* Release the base inode if we are holding it. */
2246                 if (ni->nr_extents == -1) {
2247                         iput(VFS_I(ni->ext.base_ntfs_ino));
2248                         ni->nr_extents = 0;
2249                         ni->ext.base_ntfs_ino = NULL;
2250                 }
2251         }
2252         return;
2253 }
2254
2255 /**
2256  * ntfs_show_options - show mount options in /proc/mounts
2257  * @sf:         seq_file in which to write our mount options
2258  * @mnt:        vfs mount whose mount options to display
2259  *
2260  * Called by the VFS once for each mounted ntfs volume when someone reads
2261  * /proc/mounts in order to display the NTFS specific mount options of each
2262  * mount. The mount options of the vfs mount @mnt are written to the seq file
2263  * @sf and success is returned.
2264  */
2265 int ntfs_show_options(struct seq_file *sf, struct vfsmount *mnt)
2266 {
2267         ntfs_volume *vol = NTFS_SB(mnt->mnt_sb);
2268         int i;
2269
2270         seq_printf(sf, ",uid=%i", vol->uid);
2271         seq_printf(sf, ",gid=%i", vol->gid);
2272         if (vol->fmask == vol->dmask)
2273                 seq_printf(sf, ",umask=0%o", vol->fmask);
2274         else {
2275                 seq_printf(sf, ",fmask=0%o", vol->fmask);
2276                 seq_printf(sf, ",dmask=0%o", vol->dmask);
2277         }
2278         seq_printf(sf, ",nls=%s", vol->nls_map->charset);
2279         if (NVolCaseSensitive(vol))
2280                 seq_printf(sf, ",case_sensitive");
2281         if (NVolShowSystemFiles(vol))
2282                 seq_printf(sf, ",show_sys_files");
2283         if (!NVolSparseEnabled(vol))
2284                 seq_printf(sf, ",disable_sparse");
2285         for (i = 0; on_errors_arr[i].val; i++) {
2286                 if (on_errors_arr[i].val & vol->on_errors)
2287                         seq_printf(sf, ",errors=%s", on_errors_arr[i].str);
2288         }
2289         seq_printf(sf, ",mft_zone_multiplier=%i", vol->mft_zone_multiplier);
2290         return 0;
2291 }
2292
2293 #ifdef NTFS_RW
2294
2295 /**
2296  * ntfs_truncate - called when the i_size of an ntfs inode is changed
2297  * @vi:         inode for which the i_size was changed
2298  *
2299  * We do not support i_size changes yet.
2300  *
2301  * The kernel guarantees that @vi is a regular file (S_ISREG() is true) and
2302  * that the change is allowed.
2303  *
2304  * This implies for us that @vi is a file inode rather than a directory, index,
2305  * or attribute inode as well as that @vi is a base inode.
2306  *
2307  * Returns 0 on success or -errno on error.
2308  *
2309  * Called with ->i_sem held.  In all but one case ->i_alloc_sem is held for
2310  * writing.  The only case where ->i_alloc_sem is not held is
2311  * mm/filemap.c::generic_file_buffered_write() where vmtruncate() is called
2312  * with the current i_size as the offset which means that it is a noop as far
2313  * as ntfs_truncate() is concerned.
2314  */
2315 int ntfs_truncate(struct inode *vi)
2316 {
2317         ntfs_inode *ni = NTFS_I(vi);
2318         ntfs_volume *vol = ni->vol;
2319         ntfs_attr_search_ctx *ctx;
2320         MFT_RECORD *m;
2321         const char *te = "  Leaving file length out of sync with i_size.";
2322         int err;
2323
2324         ntfs_debug("Entering for inode 0x%lx.", vi->i_ino);
2325         BUG_ON(NInoAttr(ni));
2326         BUG_ON(ni->nr_extents < 0);
2327         m = map_mft_record(ni);
2328         if (IS_ERR(m)) {
2329                 err = PTR_ERR(m);
2330                 ntfs_error(vi->i_sb, "Failed to map mft record for inode 0x%lx "
2331                                 "(error code %d).%s", vi->i_ino, err, te);
2332                 ctx = NULL;
2333                 m = NULL;
2334                 goto err_out;
2335         }
2336         ctx = ntfs_attr_get_search_ctx(ni, m);
2337         if (unlikely(!ctx)) {
2338                 ntfs_error(vi->i_sb, "Failed to allocate a search context for "
2339                                 "inode 0x%lx (not enough memory).%s",
2340                                 vi->i_ino, te);
2341                 err = -ENOMEM;
2342                 goto err_out;
2343         }
2344         err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
2345                         CASE_SENSITIVE, 0, NULL, 0, ctx);
2346         if (unlikely(err)) {
2347                 if (err == -ENOENT)
2348                         ntfs_error(vi->i_sb, "Open attribute is missing from "
2349                                         "mft record.  Inode 0x%lx is corrupt.  "
2350                                         "Run chkdsk.", vi->i_ino);
2351                 else
2352                         ntfs_error(vi->i_sb, "Failed to lookup attribute in "
2353                                         "inode 0x%lx (error code %d).",
2354                                         vi->i_ino, err);
2355                 goto err_out;
2356         }
2357         /* If the size has not changed there is nothing to do. */
2358         if (ntfs_attr_size(ctx->attr) == i_size_read(vi))
2359                 goto done;
2360         // TODO: Implement the truncate...
2361         ntfs_error(vi->i_sb, "Inode size has changed but this is not "
2362                         "implemented yet.  Resetting inode size to old value. "
2363                         " This is most likely a bug in the ntfs driver!");
2364         i_size_write(vi, ntfs_attr_size(ctx->attr)); 
2365 done:
2366         ntfs_attr_put_search_ctx(ctx);
2367         unmap_mft_record(ni);
2368         NInoClearTruncateFailed(ni);
2369         ntfs_debug("Done.");
2370         return 0;
2371 err_out:
2372         if (err != -ENOMEM) {
2373                 NVolSetErrors(vol);
2374                 make_bad_inode(vi);
2375         }
2376         if (ctx)
2377                 ntfs_attr_put_search_ctx(ctx);
2378         if (m)
2379                 unmap_mft_record(ni);
2380         NInoSetTruncateFailed(ni);
2381         return err;
2382 }
2383
2384 /**
2385  * ntfs_truncate_vfs - wrapper for ntfs_truncate() that has no return value
2386  * @vi:         inode for which the i_size was changed
2387  *
2388  * Wrapper for ntfs_truncate() that has no return value.
2389  *
2390  * See ntfs_truncate() description above for details.
2391  */
2392 void ntfs_truncate_vfs(struct inode *vi) {
2393         ntfs_truncate(vi);
2394 }
2395
2396 /**
2397  * ntfs_setattr - called from notify_change() when an attribute is being changed
2398  * @dentry:     dentry whose attributes to change
2399  * @attr:       structure describing the attributes and the changes
2400  *
2401  * We have to trap VFS attempts to truncate the file described by @dentry as
2402  * soon as possible, because we do not implement changes in i_size yet.  So we
2403  * abort all i_size changes here.
2404  *
2405  * We also abort all changes of user, group, and mode as we do not implement
2406  * the NTFS ACLs yet.
2407  *
2408  * Called with ->i_sem held.  For the ATTR_SIZE (i.e. ->truncate) case, also
2409  * called with ->i_alloc_sem held for writing.
2410  *
2411  * Basically this is a copy of generic notify_change() and inode_setattr()
2412  * functionality, except we intercept and abort changes in i_size.
2413  */
2414 int ntfs_setattr(struct dentry *dentry, struct iattr *attr)
2415 {
2416         struct inode *vi = dentry->d_inode;
2417         int err;
2418         unsigned int ia_valid = attr->ia_valid;
2419
2420         err = inode_change_ok(vi, attr);
2421         if (err)
2422                 return err;
2423
2424         /* We do not support NTFS ACLs yet. */
2425         if (ia_valid & (ATTR_UID | ATTR_GID | ATTR_MODE)) {
2426                 ntfs_warning(vi->i_sb, "Changes in user/group/mode are not "
2427                                 "supported yet, ignoring.");
2428                 err = -EOPNOTSUPP;
2429                 goto out;
2430         }
2431
2432         if (ia_valid & ATTR_SIZE) {
2433                 if (attr->ia_size != i_size_read(vi)) {
2434                         ntfs_warning(vi->i_sb, "Changes in inode size are not "
2435                                         "supported yet, ignoring.");
2436                         err = -EOPNOTSUPP;
2437                         // TODO: Implement...
2438                         // err = vmtruncate(vi, attr->ia_size);
2439                         if (err || ia_valid == ATTR_SIZE)
2440                                 goto out;
2441                 } else {
2442                         /*
2443                          * We skipped the truncate but must still update
2444                          * timestamps.
2445                          */
2446                         ia_valid |= ATTR_MTIME|ATTR_CTIME;
2447                 }
2448         }
2449
2450         if (ia_valid & ATTR_ATIME)
2451                 vi->i_atime = attr->ia_atime;
2452         if (ia_valid & ATTR_MTIME)
2453                 vi->i_mtime = attr->ia_mtime;
2454         if (ia_valid & ATTR_CTIME)
2455                 vi->i_ctime = attr->ia_ctime;
2456         mark_inode_dirty(vi);
2457 out:
2458         return err;
2459 }
2460
2461 /**
2462  * ntfs_write_inode - write out a dirty inode
2463  * @vi:         inode to write out
2464  * @sync:       if true, write out synchronously
2465  *
2466  * Write out a dirty inode to disk including any extent inodes if present.
2467  *
2468  * If @sync is true, commit the inode to disk and wait for io completion.  This
2469  * is done using write_mft_record().
2470  *
2471  * If @sync is false, just schedule the write to happen but do not wait for i/o
2472  * completion.  In 2.6 kernels, scheduling usually happens just by virtue of
2473  * marking the page (and in this case mft record) dirty but we do not implement
2474  * this yet as write_mft_record() largely ignores the @sync parameter and
2475  * always performs synchronous writes.
2476  *
2477  * Return 0 on success and -errno on error.
2478  */
2479 int ntfs_write_inode(struct inode *vi, int sync)
2480 {
2481         sle64 nt;
2482         ntfs_inode *ni = NTFS_I(vi);
2483         ntfs_attr_search_ctx *ctx;
2484         MFT_RECORD *m;
2485         STANDARD_INFORMATION *si;
2486         int err = 0;
2487         BOOL modified = FALSE;
2488
2489         ntfs_debug("Entering for %sinode 0x%lx.", NInoAttr(ni) ? "attr " : "",
2490                         vi->i_ino);
2491         /*
2492          * Dirty attribute inodes are written via their real inodes so just
2493          * clean them here.  Access time updates are taken care off when the
2494          * real inode is written.
2495          */
2496         if (NInoAttr(ni)) {
2497                 NInoClearDirty(ni);
2498                 ntfs_debug("Done.");
2499                 return 0;
2500         }
2501         /* Map, pin, and lock the mft record belonging to the inode. */
2502         m = map_mft_record(ni);
2503         if (IS_ERR(m)) {
2504                 err = PTR_ERR(m);
2505                 goto err_out;
2506         }
2507         /* Update the access times in the standard information attribute. */
2508         ctx = ntfs_attr_get_search_ctx(ni, m);
2509         if (unlikely(!ctx)) {
2510                 err = -ENOMEM;
2511                 goto unm_err_out;
2512         }
2513         err = ntfs_attr_lookup(AT_STANDARD_INFORMATION, NULL, 0,
2514                         CASE_SENSITIVE, 0, NULL, 0, ctx);
2515         if (unlikely(err)) {
2516                 ntfs_attr_put_search_ctx(ctx);
2517                 goto unm_err_out;
2518         }
2519         si = (STANDARD_INFORMATION*)((u8*)ctx->attr +
2520                         le16_to_cpu(ctx->attr->data.resident.value_offset));
2521         /* Update the access times if they have changed. */
2522         nt = utc2ntfs(vi->i_mtime);
2523         if (si->last_data_change_time != nt) {
2524                 ntfs_debug("Updating mtime for inode 0x%lx: old = 0x%llx, "
2525                                 "new = 0x%llx", vi->i_ino,
2526                                 sle64_to_cpu(si->last_data_change_time),
2527                                 sle64_to_cpu(nt));
2528                 si->last_data_change_time = nt;
2529                 modified = TRUE;
2530         }
2531         nt = utc2ntfs(vi->i_ctime);
2532         if (si->last_mft_change_time != nt) {
2533                 ntfs_debug("Updating ctime for inode 0x%lx: old = 0x%llx, "
2534                                 "new = 0x%llx", vi->i_ino,
2535                                 sle64_to_cpu(si->last_mft_change_time),
2536                                 sle64_to_cpu(nt));
2537                 si->last_mft_change_time = nt;
2538                 modified = TRUE;
2539         }
2540         nt = utc2ntfs(vi->i_atime);
2541         if (si->last_access_time != nt) {
2542                 ntfs_debug("Updating atime for inode 0x%lx: old = 0x%llx, "
2543                                 "new = 0x%llx", vi->i_ino,
2544                                 sle64_to_cpu(si->last_access_time),
2545                                 sle64_to_cpu(nt));
2546                 si->last_access_time = nt;
2547                 modified = TRUE;
2548         }
2549         /*
2550          * If we just modified the standard information attribute we need to
2551          * mark the mft record it is in dirty.  We do this manually so that
2552          * mark_inode_dirty() is not called which would redirty the inode and
2553          * hence result in an infinite loop of trying to write the inode.
2554          * There is no need to mark the base inode nor the base mft record
2555          * dirty, since we are going to write this mft record below in any case
2556          * and the base mft record may actually not have been modified so it
2557          * might not need to be written out.
2558          * NOTE: It is not a problem when the inode for $MFT itself is being
2559          * written out as mark_ntfs_record_dirty() will only set I_DIRTY_PAGES
2560          * on the $MFT inode and hence ntfs_write_inode() will not be
2561          * re-invoked because of it which in turn is ok since the dirtied mft
2562          * record will be cleaned and written out to disk below, i.e. before
2563          * this function returns.
2564          */
2565         if (modified && !NInoTestSetDirty(ctx->ntfs_ino))
2566                 mark_ntfs_record_dirty(ctx->ntfs_ino->page,
2567                                 ctx->ntfs_ino->page_ofs);
2568         ntfs_attr_put_search_ctx(ctx);
2569         /* Now the access times are updated, write the base mft record. */
2570         if (NInoDirty(ni))
2571                 err = write_mft_record(ni, m, sync);
2572         /* Write all attached extent mft records. */
2573         down(&ni->extent_lock);
2574         if (ni->nr_extents > 0) {
2575                 ntfs_inode **extent_nis = ni->ext.extent_ntfs_inos;
2576                 int i;
2577
2578                 ntfs_debug("Writing %i extent inodes.", ni->nr_extents);
2579                 for (i = 0; i < ni->nr_extents; i++) {
2580                         ntfs_inode *tni = extent_nis[i];
2581
2582                         if (NInoDirty(tni)) {
2583                                 MFT_RECORD *tm = map_mft_record(tni);
2584                                 int ret;
2585
2586                                 if (IS_ERR(tm)) {
2587                                         if (!err || err == -ENOMEM)
2588                                                 err = PTR_ERR(tm);
2589                                         continue;
2590                                 }
2591                                 ret = write_mft_record(tni, tm, sync);
2592                                 unmap_mft_record(tni);
2593                                 if (unlikely(ret)) {
2594                                         if (!err || err == -ENOMEM)
2595                                                 err = ret;
2596                                 }
2597                         }
2598                 }
2599         }
2600         up(&ni->extent_lock);
2601         unmap_mft_record(ni);
2602         if (unlikely(err))
2603                 goto err_out;
2604         ntfs_debug("Done.");
2605         return 0;
2606 unm_err_out:
2607         unmap_mft_record(ni);
2608 err_out:
2609         if (err == -ENOMEM) {
2610                 ntfs_warning(vi->i_sb, "Not enough memory to write inode.  "
2611                                 "Marking the inode dirty again, so the VFS "
2612                                 "retries later.");
2613                 mark_inode_dirty(vi);
2614         } else {
2615                 ntfs_error(vi->i_sb, "Failed (error code %i):  Marking inode "
2616                                 "as bad.  You should run chkdsk.", -err);
2617                 make_bad_inode(vi);
2618                 NVolSetErrors(ni->vol);
2619         }
2620         return err;
2621 }
2622
2623 #endif /* NTFS_RW */