blob: a02d8d9f043957cb53db363c6d236ee8718008e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * inode.c - NTFS kernel inode handling. Part of the Linux-NTFS project.
3 *
4 * Copyright (c) 2001-2004 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 */
54int ntfs_test_inode(struct inode *vi, ntfs_attr *na)
55{
56 ntfs_inode *ni;
57
58 if (vi->i_ino != na->mft_no)
59 return 0;
60 ni = NTFS_I(vi);
61 /* If !NInoAttr(ni), @vi is a normal file or directory inode. */
62 if (likely(!NInoAttr(ni))) {
63 /* If not looking for a normal inode this is a mismatch. */
64 if (unlikely(na->type != AT_UNUSED))
65 return 0;
66 } else {
67 /* A fake inode describing an attribute. */
68 if (ni->type != na->type)
69 return 0;
70 if (ni->name_len != na->name_len)
71 return 0;
72 if (na->name_len && memcmp(ni->name, na->name,
73 na->name_len * sizeof(ntfschar)))
74 return 0;
75 }
76 /* Match! */
77 return 1;
78}
79
80/**
81 * ntfs_init_locked_inode - initialize an inode
82 * @vi: vfs inode to initialize
83 * @na: ntfs attribute which to initialize @vi to
84 *
85 * Initialize the vfs inode @vi with the values from the ntfs attribute @na in
86 * order to enable ntfs_test_inode() to do its work.
87 *
88 * If initializing the normal file/directory inode, set @na->type to AT_UNUSED.
89 * In that case, @na->name and @na->name_len should be set to NULL and 0,
90 * respectively. Although that is not strictly necessary as
91 * ntfs_read_inode_locked() will fill them in later.
92 *
93 * Return 0 on success and -errno on error.
94 *
95 * NOTE: This function runs with the inode_lock spin lock held so it is not
96 * allowed to sleep. (Hence the GFP_ATOMIC allocation.)
97 */
98static int ntfs_init_locked_inode(struct inode *vi, ntfs_attr *na)
99{
100 ntfs_inode *ni = NTFS_I(vi);
101
102 vi->i_ino = na->mft_no;
103
104 ni->type = na->type;
105 if (na->type == AT_INDEX_ALLOCATION)
106 NInoSetMstProtected(ni);
107
108 ni->name = na->name;
109 ni->name_len = na->name_len;
110
111 /* If initializing a normal inode, we are done. */
112 if (likely(na->type == AT_UNUSED)) {
113 BUG_ON(na->name);
114 BUG_ON(na->name_len);
115 return 0;
116 }
117
118 /* It is a fake inode. */
119 NInoSetAttr(ni);
120
121 /*
122 * We have I30 global constant as an optimization as it is the name
123 * in >99.9% of named attributes! The other <0.1% incur a GFP_ATOMIC
124 * allocation but that is ok. And most attributes are unnamed anyway,
125 * thus the fraction of named attributes with name != I30 is actually
126 * absolutely tiny.
127 */
128 if (na->name_len && na->name != I30) {
129 unsigned int i;
130
131 BUG_ON(!na->name);
132 i = na->name_len * sizeof(ntfschar);
133 ni->name = (ntfschar*)kmalloc(i + sizeof(ntfschar), GFP_ATOMIC);
134 if (!ni->name)
135 return -ENOMEM;
136 memcpy(ni->name, na->name, i);
137 ni->name[i] = 0;
138 }
139 return 0;
140}
141
142typedef int (*set_t)(struct inode *, void *);
143static int ntfs_read_locked_inode(struct inode *vi);
144static int ntfs_read_locked_attr_inode(struct inode *base_vi, struct inode *vi);
145static int ntfs_read_locked_index_inode(struct inode *base_vi,
146 struct inode *vi);
147
148/**
149 * ntfs_iget - obtain a struct inode corresponding to a specific normal inode
150 * @sb: super block of mounted volume
151 * @mft_no: mft record number / inode number to obtain
152 *
153 * Obtain the struct inode corresponding to a specific normal inode (i.e. a
154 * file or directory).
155 *
156 * If the inode is in the cache, it is just returned with an increased
157 * reference count. Otherwise, a new struct inode is allocated and initialized,
158 * and finally ntfs_read_locked_inode() is called to read in the inode and
159 * fill in the remainder of the inode structure.
160 *
161 * Return the struct inode on success. Check the return value with IS_ERR() and
162 * if true, the function failed and the error code is obtained from PTR_ERR().
163 */
164struct inode *ntfs_iget(struct super_block *sb, unsigned long mft_no)
165{
166 struct inode *vi;
167 ntfs_attr na;
168 int err;
169
170 na.mft_no = mft_no;
171 na.type = AT_UNUSED;
172 na.name = NULL;
173 na.name_len = 0;
174
175 vi = iget5_locked(sb, mft_no, (test_t)ntfs_test_inode,
176 (set_t)ntfs_init_locked_inode, &na);
177 if (!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 (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 */
221struct inode *ntfs_attr_iget(struct inode *base_vi, ATTR_TYPE type,
222 ntfschar *name, u32 name_len)
223{
224 struct inode *vi;
225 ntfs_attr na;
226 int err;
227
228 /* Make sure no one calls ntfs_attr_iget() for indices. */
229 BUG_ON(type == AT_INDEX_ALLOCATION);
230
231 na.mft_no = base_vi->i_ino;
232 na.type = type;
233 na.name = name;
234 na.name_len = name_len;
235
236 vi = iget5_locked(base_vi->i_sb, na.mft_no, (test_t)ntfs_test_inode,
237 (set_t)ntfs_init_locked_inode, &na);
238 if (!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 (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 */
279struct inode *ntfs_index_iget(struct inode *base_vi, ntfschar *name,
280 u32 name_len)
281{
282 struct inode *vi;
283 ntfs_attr na;
284 int err;
285
286 na.mft_no = base_vi->i_ino;
287 na.type = AT_INDEX_ALLOCATION;
288 na.name = name;
289 na.name_len = name_len;
290
291 vi = iget5_locked(base_vi->i_sb, na.mft_no, (test_t)ntfs_test_inode,
292 (set_t)ntfs_init_locked_inode, &na);
293 if (!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 (err) {
309 iput(vi);
310 vi = ERR_PTR(err);
311 }
312 return vi;
313}
314
315struct inode *ntfs_alloc_big_inode(struct super_block *sb)
316{
317 ntfs_inode *ni;
318
319 ntfs_debug("Entering.");
320 ni = (ntfs_inode *)kmem_cache_alloc(ntfs_big_inode_cache,
321 SLAB_NOFS);
322 if (likely(ni != NULL)) {
323 ni->state = 0;
324 return VFS_I(ni);
325 }
326 ntfs_error(sb, "Allocation of NTFS big inode structure failed.");
327 return NULL;
328}
329
330void ntfs_destroy_big_inode(struct inode *inode)
331{
332 ntfs_inode *ni = NTFS_I(inode);
333
334 ntfs_debug("Entering.");
335 BUG_ON(ni->page);
336 if (!atomic_dec_and_test(&ni->count))
337 BUG();
338 kmem_cache_free(ntfs_big_inode_cache, NTFS_I(inode));
339}
340
341static inline ntfs_inode *ntfs_alloc_extent_inode(void)
342{
343 ntfs_inode *ni;
344
345 ntfs_debug("Entering.");
346 ni = (ntfs_inode *)kmem_cache_alloc(ntfs_inode_cache, SLAB_NOFS);
347 if (likely(ni != NULL)) {
348 ni->state = 0;
349 return ni;
350 }
351 ntfs_error(NULL, "Allocation of NTFS inode structure failed.");
352 return NULL;
353}
354
355static void ntfs_destroy_extent_inode(ntfs_inode *ni)
356{
357 ntfs_debug("Entering.");
358 BUG_ON(ni->page);
359 if (!atomic_dec_and_test(&ni->count))
360 BUG();
361 kmem_cache_free(ntfs_inode_cache, ni);
362}
363
364/**
365 * __ntfs_init_inode - initialize ntfs specific part of an inode
366 * @sb: super block of mounted volume
367 * @ni: freshly allocated ntfs inode which to initialize
368 *
369 * Initialize an ntfs inode to defaults.
370 *
371 * NOTE: ni->mft_no, ni->state, ni->type, ni->name, and ni->name_len are left
372 * untouched. Make sure to initialize them elsewhere.
373 *
374 * Return zero on success and -ENOMEM on error.
375 */
376void __ntfs_init_inode(struct super_block *sb, ntfs_inode *ni)
377{
378 ntfs_debug("Entering.");
Anton Altaparmakov36763672004-11-18 13:46:45 +0000379 rwlock_init(&ni->size_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 ni->initialized_size = ni->allocated_size = 0;
381 ni->seq_no = 0;
382 atomic_set(&ni->count, 1);
383 ni->vol = NTFS_SB(sb);
384 ntfs_init_runlist(&ni->runlist);
385 init_MUTEX(&ni->mrec_lock);
386 ni->page = NULL;
387 ni->page_ofs = 0;
388 ni->attr_list_size = 0;
389 ni->attr_list = NULL;
390 ntfs_init_runlist(&ni->attr_list_rl);
391 ni->itype.index.bmp_ino = NULL;
392 ni->itype.index.block_size = 0;
393 ni->itype.index.vcn_size = 0;
394 ni->itype.index.collation_rule = 0;
395 ni->itype.index.block_size_bits = 0;
396 ni->itype.index.vcn_size_bits = 0;
397 init_MUTEX(&ni->extent_lock);
398 ni->nr_extents = 0;
399 ni->ext.base_ntfs_ino = NULL;
400}
401
402inline ntfs_inode *ntfs_new_extent_inode(struct super_block *sb,
403 unsigned long mft_no)
404{
405 ntfs_inode *ni = ntfs_alloc_extent_inode();
406
407 ntfs_debug("Entering.");
408 if (likely(ni != NULL)) {
409 __ntfs_init_inode(sb, ni);
410 ni->mft_no = mft_no;
411 ni->type = AT_UNUSED;
412 ni->name = NULL;
413 ni->name_len = 0;
414 }
415 return ni;
416}
417
418/**
419 * ntfs_is_extended_system_file - check if a file is in the $Extend directory
420 * @ctx: initialized attribute search context
421 *
422 * Search all file name attributes in the inode described by the attribute
423 * search context @ctx and check if any of the names are in the $Extend system
424 * directory.
425 *
426 * Return values:
427 * 1: file is in $Extend directory
428 * 0: file is not in $Extend directory
429 * -errno: failed to determine if the file is in the $Extend directory
430 */
431static int ntfs_is_extended_system_file(ntfs_attr_search_ctx *ctx)
432{
433 int nr_links, err;
434
435 /* Restart search. */
436 ntfs_attr_reinit_search_ctx(ctx);
437
438 /* Get number of hard links. */
439 nr_links = le16_to_cpu(ctx->mrec->link_count);
440
441 /* Loop through all hard links. */
442 while (!(err = ntfs_attr_lookup(AT_FILE_NAME, NULL, 0, 0, 0, NULL, 0,
443 ctx))) {
444 FILE_NAME_ATTR *file_name_attr;
445 ATTR_RECORD *attr = ctx->attr;
446 u8 *p, *p2;
447
448 nr_links--;
449 /*
450 * Maximum sanity checking as we are called on an inode that
451 * we suspect might be corrupt.
452 */
453 p = (u8*)attr + le32_to_cpu(attr->length);
454 if (p < (u8*)ctx->mrec || (u8*)p > (u8*)ctx->mrec +
455 le32_to_cpu(ctx->mrec->bytes_in_use)) {
456err_corrupt_attr:
457 ntfs_error(ctx->ntfs_ino->vol->sb, "Corrupt file name "
458 "attribute. You should run chkdsk.");
459 return -EIO;
460 }
461 if (attr->non_resident) {
462 ntfs_error(ctx->ntfs_ino->vol->sb, "Non-resident file "
463 "name. You should run chkdsk.");
464 return -EIO;
465 }
466 if (attr->flags) {
467 ntfs_error(ctx->ntfs_ino->vol->sb, "File name with "
468 "invalid flags. You should run "
469 "chkdsk.");
470 return -EIO;
471 }
472 if (!(attr->data.resident.flags & RESIDENT_ATTR_IS_INDEXED)) {
473 ntfs_error(ctx->ntfs_ino->vol->sb, "Unindexed file "
474 "name. You should run chkdsk.");
475 return -EIO;
476 }
477 file_name_attr = (FILE_NAME_ATTR*)((u8*)attr +
478 le16_to_cpu(attr->data.resident.value_offset));
479 p2 = (u8*)attr + le32_to_cpu(attr->data.resident.value_length);
480 if (p2 < (u8*)attr || p2 > p)
481 goto err_corrupt_attr;
482 /* This attribute is ok, but is it in the $Extend directory? */
483 if (MREF_LE(file_name_attr->parent_directory) == FILE_Extend)
484 return 1; /* YES, it's an extended system file. */
485 }
486 if (unlikely(err != -ENOENT))
487 return err;
488 if (unlikely(nr_links)) {
489 ntfs_error(ctx->ntfs_ino->vol->sb, "Inode hard link count "
490 "doesn't match number of name attributes. You "
491 "should run chkdsk.");
492 return -EIO;
493 }
494 return 0; /* NO, it is not an extended system file. */
495}
496
497/**
498 * ntfs_read_locked_inode - read an inode from its device
499 * @vi: inode to read
500 *
501 * ntfs_read_locked_inode() is called from ntfs_iget() to read the inode
502 * described by @vi into memory from the device.
503 *
504 * The only fields in @vi that we need to/can look at when the function is
505 * called are i_sb, pointing to the mounted device's super block, and i_ino,
506 * the number of the inode to load.
507 *
508 * ntfs_read_locked_inode() maps, pins and locks the mft record number i_ino
509 * for reading and sets up the necessary @vi fields as well as initializing
510 * the ntfs inode.
511 *
512 * Q: What locks are held when the function is called?
513 * A: i_state has I_LOCK set, hence the inode is locked, also
514 * i_count is set to 1, so it is not going to go away
515 * i_flags is set to 0 and we have no business touching it. Only an ioctl()
516 * is allowed to write to them. We should of course be honouring them but
517 * we need to do that using the IS_* macros defined in include/linux/fs.h.
518 * In any case ntfs_read_locked_inode() has nothing to do with i_flags.
519 *
520 * Return 0 on success and -errno on error. In the error case, the inode will
521 * have had make_bad_inode() executed on it.
522 */
523static int ntfs_read_locked_inode(struct inode *vi)
524{
525 ntfs_volume *vol = NTFS_SB(vi->i_sb);
526 ntfs_inode *ni;
527 MFT_RECORD *m;
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 }
739skip_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 struct inode *bvi;
746 ntfs_inode *bni;
747 INDEX_ROOT *ir;
748 char *ir_end, *index_end;
749
750 /* It is a directory, find index root attribute. */
751 ntfs_attr_reinit_search_ctx(ctx);
752 err = ntfs_attr_lookup(AT_INDEX_ROOT, I30, 4, CASE_SENSITIVE,
753 0, NULL, 0, ctx);
754 if (unlikely(err)) {
755 if (err == -ENOENT) {
756 // FIXME: File is corrupt! Hot-fix with empty
757 // index root attribute if recovery option is
758 // set.
759 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute "
760 "is missing.");
761 }
762 goto unm_err_out;
763 }
764 /* Set up the state. */
765 if (unlikely(ctx->attr->non_resident)) {
766 ntfs_error(vol->sb, "$INDEX_ROOT attribute is not "
767 "resident.");
768 goto unm_err_out;
769 }
770 /* Ensure the attribute name is placed before the value. */
771 if (unlikely(ctx->attr->name_length &&
772 (le16_to_cpu(ctx->attr->name_offset) >=
773 le16_to_cpu(ctx->attr->data.resident.
774 value_offset)))) {
775 ntfs_error(vol->sb, "$INDEX_ROOT attribute name is "
776 "placed after the attribute value.");
777 goto unm_err_out;
778 }
779 /*
780 * Compressed/encrypted index root just means that the newly
781 * created files in that directory should be created compressed/
782 * encrypted. However index root cannot be both compressed and
783 * encrypted.
784 */
785 if (ctx->attr->flags & ATTR_COMPRESSION_MASK)
786 NInoSetCompressed(ni);
787 if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
788 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
789 ntfs_error(vi->i_sb, "Found encrypted and "
790 "compressed attribute.");
791 goto unm_err_out;
792 }
793 NInoSetEncrypted(ni);
794 }
795 if (ctx->attr->flags & ATTR_IS_SPARSE)
796 NInoSetSparse(ni);
797 ir = (INDEX_ROOT*)((char*)ctx->attr + le16_to_cpu(
798 ctx->attr->data.resident.value_offset));
799 ir_end = (char*)ir + le32_to_cpu(
800 ctx->attr->data.resident.value_length);
801 if (ir_end > (char*)ctx->mrec + vol->mft_record_size) {
802 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is "
803 "corrupt.");
804 goto unm_err_out;
805 }
806 index_end = (char*)&ir->index +
807 le32_to_cpu(ir->index.index_length);
808 if (index_end > ir_end) {
809 ntfs_error(vi->i_sb, "Directory index is corrupt.");
810 goto unm_err_out;
811 }
812 if (ir->type != AT_FILE_NAME) {
813 ntfs_error(vi->i_sb, "Indexed attribute is not "
814 "$FILE_NAME.");
815 goto unm_err_out;
816 }
817 if (ir->collation_rule != COLLATION_FILE_NAME) {
818 ntfs_error(vi->i_sb, "Index collation rule is not "
819 "COLLATION_FILE_NAME.");
820 goto unm_err_out;
821 }
822 ni->itype.index.collation_rule = ir->collation_rule;
823 ni->itype.index.block_size = le32_to_cpu(ir->index_block_size);
824 if (ni->itype.index.block_size &
825 (ni->itype.index.block_size - 1)) {
826 ntfs_error(vi->i_sb, "Index block size (%u) is not a "
827 "power of two.",
828 ni->itype.index.block_size);
829 goto unm_err_out;
830 }
831 if (ni->itype.index.block_size > PAGE_CACHE_SIZE) {
832 ntfs_error(vi->i_sb, "Index block size (%u) > "
833 "PAGE_CACHE_SIZE (%ld) is not "
834 "supported. Sorry.",
835 ni->itype.index.block_size,
836 PAGE_CACHE_SIZE);
837 err = -EOPNOTSUPP;
838 goto unm_err_out;
839 }
840 if (ni->itype.index.block_size < NTFS_BLOCK_SIZE) {
841 ntfs_error(vi->i_sb, "Index block size (%u) < "
842 "NTFS_BLOCK_SIZE (%i) is not "
843 "supported. Sorry.",
844 ni->itype.index.block_size,
845 NTFS_BLOCK_SIZE);
846 err = -EOPNOTSUPP;
847 goto unm_err_out;
848 }
849 ni->itype.index.block_size_bits =
850 ffs(ni->itype.index.block_size) - 1;
851 /* Determine the size of a vcn in the directory index. */
852 if (vol->cluster_size <= ni->itype.index.block_size) {
853 ni->itype.index.vcn_size = vol->cluster_size;
854 ni->itype.index.vcn_size_bits = vol->cluster_size_bits;
855 } else {
856 ni->itype.index.vcn_size = vol->sector_size;
857 ni->itype.index.vcn_size_bits = vol->sector_size_bits;
858 }
859
860 /* Setup the index allocation attribute, even if not present. */
861 NInoSetMstProtected(ni);
862 ni->type = AT_INDEX_ALLOCATION;
863 ni->name = I30;
864 ni->name_len = 4;
865
866 if (!(ir->index.flags & LARGE_INDEX)) {
867 /* No index allocation. */
868 vi->i_size = ni->initialized_size =
869 ni->allocated_size = 0;
870 /* We are done with the mft record, so we release it. */
871 ntfs_attr_put_search_ctx(ctx);
872 unmap_mft_record(ni);
873 m = NULL;
874 ctx = NULL;
875 goto skip_large_dir_stuff;
876 } /* LARGE_INDEX: Index allocation present. Setup state. */
877 NInoSetIndexAllocPresent(ni);
878 /* Find index allocation attribute. */
879 ntfs_attr_reinit_search_ctx(ctx);
880 err = ntfs_attr_lookup(AT_INDEX_ALLOCATION, I30, 4,
881 CASE_SENSITIVE, 0, NULL, 0, ctx);
882 if (unlikely(err)) {
883 if (err == -ENOENT)
884 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION "
885 "attribute is not present but "
886 "$INDEX_ROOT indicated it is.");
887 else
888 ntfs_error(vi->i_sb, "Failed to lookup "
889 "$INDEX_ALLOCATION "
890 "attribute.");
891 goto unm_err_out;
892 }
893 if (!ctx->attr->non_resident) {
894 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
895 "is resident.");
896 goto unm_err_out;
897 }
898 /*
899 * Ensure the attribute name is placed before the mapping pairs
900 * array.
901 */
902 if (unlikely(ctx->attr->name_length &&
903 (le16_to_cpu(ctx->attr->name_offset) >=
904 le16_to_cpu(ctx->attr->data.non_resident.
905 mapping_pairs_offset)))) {
906 ntfs_error(vol->sb, "$INDEX_ALLOCATION attribute name "
907 "is placed after the mapping pairs "
908 "array.");
909 goto unm_err_out;
910 }
911 if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
912 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
913 "is encrypted.");
914 goto unm_err_out;
915 }
916 if (ctx->attr->flags & ATTR_IS_SPARSE) {
917 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
918 "is sparse.");
919 goto unm_err_out;
920 }
921 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
922 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute "
923 "is compressed.");
924 goto unm_err_out;
925 }
926 if (ctx->attr->data.non_resident.lowest_vcn) {
927 ntfs_error(vi->i_sb, "First extent of "
928 "$INDEX_ALLOCATION attribute has non "
929 "zero lowest_vcn.");
930 goto unm_err_out;
931 }
932 vi->i_size = sle64_to_cpu(
933 ctx->attr->data.non_resident.data_size);
934 ni->initialized_size = sle64_to_cpu(
935 ctx->attr->data.non_resident.initialized_size);
936 ni->allocated_size = sle64_to_cpu(
937 ctx->attr->data.non_resident.allocated_size);
938 /*
939 * We are done with the mft record, so we release it. Otherwise
940 * we would deadlock in ntfs_attr_iget().
941 */
942 ntfs_attr_put_search_ctx(ctx);
943 unmap_mft_record(ni);
944 m = NULL;
945 ctx = NULL;
946 /* Get the index bitmap attribute inode. */
947 bvi = ntfs_attr_iget(vi, AT_BITMAP, I30, 4);
948 if (IS_ERR(bvi)) {
949 ntfs_error(vi->i_sb, "Failed to get bitmap attribute.");
950 err = PTR_ERR(bvi);
951 goto unm_err_out;
952 }
953 ni->itype.index.bmp_ino = bvi;
954 bni = NTFS_I(bvi);
955 if (NInoCompressed(bni) || NInoEncrypted(bni) ||
956 NInoSparse(bni)) {
957 ntfs_error(vi->i_sb, "$BITMAP attribute is compressed "
958 "and/or encrypted and/or sparse.");
959 goto unm_err_out;
960 }
961 /* Consistency check bitmap size vs. index allocation size. */
962 if ((bvi->i_size << 3) < (vi->i_size >>
963 ni->itype.index.block_size_bits)) {
964 ntfs_error(vi->i_sb, "Index bitmap too small (0x%llx) "
965 "for index allocation (0x%llx).",
966 bvi->i_size << 3, vi->i_size);
967 goto unm_err_out;
968 }
969skip_large_dir_stuff:
970 /* Setup the operations for this inode. */
971 vi->i_op = &ntfs_dir_inode_ops;
972 vi->i_fop = &ntfs_dir_ops;
973 } else {
974 /* It is a file. */
975 ntfs_attr_reinit_search_ctx(ctx);
976
977 /* Setup the data attribute, even if not present. */
978 ni->type = AT_DATA;
979 ni->name = NULL;
980 ni->name_len = 0;
981
982 /* Find first extent of the unnamed data attribute. */
983 err = ntfs_attr_lookup(AT_DATA, NULL, 0, 0, 0, NULL, 0, ctx);
984 if (unlikely(err)) {
985 vi->i_size = ni->initialized_size =
986 ni->allocated_size = 0;
987 if (err != -ENOENT) {
988 ntfs_error(vi->i_sb, "Failed to lookup $DATA "
989 "attribute.");
990 goto unm_err_out;
991 }
992 /*
993 * FILE_Secure does not have an unnamed $DATA
994 * attribute, so we special case it here.
995 */
996 if (vi->i_ino == FILE_Secure)
997 goto no_data_attr_special_case;
998 /*
999 * Most if not all the system files in the $Extend
1000 * system directory do not have unnamed data
1001 * attributes so we need to check if the parent
1002 * directory of the file is FILE_Extend and if it is
1003 * ignore this error. To do this we need to get the
1004 * name of this inode from the mft record as the name
1005 * contains the back reference to the parent directory.
1006 */
1007 if (ntfs_is_extended_system_file(ctx) > 0)
1008 goto no_data_attr_special_case;
1009 // FIXME: File is corrupt! Hot-fix with empty data
1010 // attribute if recovery option is set.
1011 ntfs_error(vi->i_sb, "$DATA attribute is missing.");
1012 goto unm_err_out;
1013 }
1014 /* Setup the state. */
1015 if (ctx->attr->non_resident) {
1016 NInoSetNonResident(ni);
1017 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1018 NInoSetCompressed(ni);
1019 if (vol->cluster_size > 4096) {
1020 ntfs_error(vi->i_sb, "Found "
1021 "compressed data but "
1022 "compression is disabled due "
1023 "to cluster size (%i) > 4kiB.",
1024 vol->cluster_size);
1025 goto unm_err_out;
1026 }
1027 if ((ctx->attr->flags & ATTR_COMPRESSION_MASK)
1028 != ATTR_IS_COMPRESSED) {
1029 ntfs_error(vi->i_sb, "Found "
1030 "unknown compression method or "
1031 "corrupt file.");
1032 goto unm_err_out;
1033 }
1034 ni->itype.compressed.block_clusters = 1U <<
1035 ctx->attr->data.non_resident.
1036 compression_unit;
1037 if (ctx->attr->data.non_resident.
1038 compression_unit != 4) {
1039 ntfs_error(vi->i_sb, "Found "
1040 "nonstandard compression unit "
1041 "(%u instead of 4). Cannot "
1042 "handle this.",
1043 ctx->attr->data.non_resident.
1044 compression_unit);
1045 err = -EOPNOTSUPP;
1046 goto unm_err_out;
1047 }
1048 ni->itype.compressed.block_size = 1U << (
1049 ctx->attr->data.non_resident.
1050 compression_unit +
1051 vol->cluster_size_bits);
1052 ni->itype.compressed.block_size_bits = ffs(
1053 ni->itype.compressed.block_size) - 1;
1054 }
1055 if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
1056 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1057 ntfs_error(vi->i_sb, "Found encrypted "
1058 "and compressed data.");
1059 goto unm_err_out;
1060 }
1061 NInoSetEncrypted(ni);
1062 }
1063 if (ctx->attr->flags & ATTR_IS_SPARSE)
1064 NInoSetSparse(ni);
1065 if (ctx->attr->data.non_resident.lowest_vcn) {
1066 ntfs_error(vi->i_sb, "First extent of $DATA "
1067 "attribute has non zero "
1068 "lowest_vcn.");
1069 goto unm_err_out;
1070 }
1071 /* Setup all the sizes. */
1072 vi->i_size = sle64_to_cpu(
1073 ctx->attr->data.non_resident.data_size);
1074 ni->initialized_size = sle64_to_cpu(
1075 ctx->attr->data.non_resident.
1076 initialized_size);
1077 ni->allocated_size = sle64_to_cpu(
1078 ctx->attr->data.non_resident.
1079 allocated_size);
1080 if (NInoCompressed(ni)) {
1081 ni->itype.compressed.size = sle64_to_cpu(
1082 ctx->attr->data.non_resident.
1083 compressed_size);
1084 }
1085 } else { /* Resident attribute. */
1086 /*
1087 * Make all sizes equal for simplicity in read code
1088 * paths. FIXME: Need to keep this in mind when
1089 * converting to non-resident attribute in write code
1090 * path. (Probably only affects truncate().)
1091 */
1092 vi->i_size = ni->initialized_size = ni->allocated_size =
1093 le32_to_cpu(
1094 ctx->attr->data.resident.value_length);
1095 }
1096no_data_attr_special_case:
1097 /* We are done with the mft record, so we release it. */
1098 ntfs_attr_put_search_ctx(ctx);
1099 unmap_mft_record(ni);
1100 m = NULL;
1101 ctx = NULL;
1102 /* Setup the operations for this inode. */
1103 vi->i_op = &ntfs_file_inode_ops;
1104 vi->i_fop = &ntfs_file_ops;
1105 }
1106 if (NInoMstProtected(ni))
1107 vi->i_mapping->a_ops = &ntfs_mst_aops;
1108 else
1109 vi->i_mapping->a_ops = &ntfs_aops;
1110 /*
1111 * The number of 512-byte blocks used on disk (for stat). This is in so
1112 * far inaccurate as it doesn't account for any named streams or other
1113 * special non-resident attributes, but that is how Windows works, too,
1114 * so we are at least consistent with Windows, if not entirely
1115 * consistent with the Linux Way. Doing it the Linux Way would cause a
1116 * significant slowdown as it would involve iterating over all
1117 * attributes in the mft record and adding the allocated/compressed
1118 * sizes of all non-resident attributes present to give us the Linux
1119 * correct size that should go into i_blocks (after division by 512).
1120 */
1121 if (S_ISDIR(vi->i_mode) || !NInoCompressed(ni))
1122 vi->i_blocks = ni->allocated_size >> 9;
1123 else
1124 vi->i_blocks = ni->itype.compressed.size >> 9;
1125
1126 ntfs_debug("Done.");
1127 return 0;
1128
1129unm_err_out:
1130 if (!err)
1131 err = -EIO;
1132 if (ctx)
1133 ntfs_attr_put_search_ctx(ctx);
1134 if (m)
1135 unmap_mft_record(ni);
1136err_out:
1137 ntfs_error(vol->sb, "Failed with error code %i. Marking corrupt "
1138 "inode 0x%lx as bad. Run chkdsk.", err, vi->i_ino);
1139 make_bad_inode(vi);
1140 if (err != -EOPNOTSUPP && err != -ENOMEM)
1141 NVolSetErrors(vol);
1142 return err;
1143}
1144
1145/**
1146 * ntfs_read_locked_attr_inode - read an attribute inode from its base inode
1147 * @base_vi: base inode
1148 * @vi: attribute inode to read
1149 *
1150 * ntfs_read_locked_attr_inode() is called from ntfs_attr_iget() to read the
1151 * attribute inode described by @vi into memory from the base mft record
1152 * described by @base_ni.
1153 *
1154 * ntfs_read_locked_attr_inode() maps, pins and locks the base inode for
1155 * reading and looks up the attribute described by @vi before setting up the
1156 * necessary fields in @vi as well as initializing the ntfs inode.
1157 *
1158 * Q: What locks are held when the function is called?
1159 * A: i_state has I_LOCK set, hence the inode is locked, also
1160 * i_count is set to 1, so it is not going to go away
1161 *
1162 * Return 0 on success and -errno on error. In the error case, the inode will
1163 * have had make_bad_inode() executed on it.
1164 */
1165static int ntfs_read_locked_attr_inode(struct inode *base_vi, struct inode *vi)
1166{
1167 ntfs_volume *vol = NTFS_SB(vi->i_sb);
1168 ntfs_inode *ni, *base_ni;
1169 MFT_RECORD *m;
1170 ntfs_attr_search_ctx *ctx;
1171 int err = 0;
1172
1173 ntfs_debug("Entering for i_ino 0x%lx.", vi->i_ino);
1174
1175 ntfs_init_big_inode(vi);
1176
1177 ni = NTFS_I(vi);
1178 base_ni = NTFS_I(base_vi);
1179
1180 /* Just mirror the values from the base inode. */
1181 vi->i_blksize = base_vi->i_blksize;
1182 vi->i_version = base_vi->i_version;
1183 vi->i_uid = base_vi->i_uid;
1184 vi->i_gid = base_vi->i_gid;
1185 vi->i_nlink = base_vi->i_nlink;
1186 vi->i_mtime = base_vi->i_mtime;
1187 vi->i_ctime = base_vi->i_ctime;
1188 vi->i_atime = base_vi->i_atime;
1189 vi->i_generation = ni->seq_no = base_ni->seq_no;
1190
1191 /* Set inode type to zero but preserve permissions. */
1192 vi->i_mode = base_vi->i_mode & ~S_IFMT;
1193
1194 m = map_mft_record(base_ni);
1195 if (IS_ERR(m)) {
1196 err = PTR_ERR(m);
1197 goto err_out;
1198 }
1199 ctx = ntfs_attr_get_search_ctx(base_ni, m);
1200 if (!ctx) {
1201 err = -ENOMEM;
1202 goto unm_err_out;
1203 }
1204
1205 /* Find the attribute. */
1206 err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
1207 CASE_SENSITIVE, 0, NULL, 0, ctx);
1208 if (unlikely(err))
1209 goto unm_err_out;
1210
1211 if (!ctx->attr->non_resident) {
1212 /* Ensure the attribute name is placed before the value. */
1213 if (unlikely(ctx->attr->name_length &&
1214 (le16_to_cpu(ctx->attr->name_offset) >=
1215 le16_to_cpu(ctx->attr->data.resident.
1216 value_offset)))) {
1217 ntfs_error(vol->sb, "Attribute name is placed after "
1218 "the attribute value.");
1219 goto unm_err_out;
1220 }
1221 if (NInoMstProtected(ni) || ctx->attr->flags) {
1222 ntfs_error(vi->i_sb, "Found mst protected attribute "
1223 "or attribute with non-zero flags but "
1224 "the attribute is resident. Please "
1225 "report you saw this message to "
1226 "linux-ntfs-dev@lists.sourceforge.net");
1227 goto unm_err_out;
1228 }
1229 /*
1230 * Resident attribute. Make all sizes equal for simplicity in
1231 * read code paths.
1232 */
1233 vi->i_size = ni->initialized_size = ni->allocated_size =
1234 le32_to_cpu(ctx->attr->data.resident.value_length);
1235 } else {
1236 NInoSetNonResident(ni);
1237 /*
1238 * Ensure the attribute name is placed before the mapping pairs
1239 * array.
1240 */
1241 if (unlikely(ctx->attr->name_length &&
1242 (le16_to_cpu(ctx->attr->name_offset) >=
1243 le16_to_cpu(ctx->attr->data.non_resident.
1244 mapping_pairs_offset)))) {
1245 ntfs_error(vol->sb, "Attribute name is placed after "
1246 "the mapping pairs array.");
1247 goto unm_err_out;
1248 }
1249 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1250 if (NInoMstProtected(ni)) {
1251 ntfs_error(vi->i_sb, "Found mst protected "
1252 "attribute but the attribute "
1253 "is compressed. Please report "
1254 "you saw this message to "
1255 "linux-ntfs-dev@lists."
1256 "sourceforge.net");
1257 goto unm_err_out;
1258 }
1259 NInoSetCompressed(ni);
1260 if ((ni->type != AT_DATA) || (ni->type == AT_DATA &&
1261 ni->name_len)) {
1262 ntfs_error(vi->i_sb, "Found compressed "
1263 "non-data or named data "
1264 "attribute. Please report "
1265 "you saw this message to "
1266 "linux-ntfs-dev@lists."
1267 "sourceforge.net");
1268 goto unm_err_out;
1269 }
1270 if (vol->cluster_size > 4096) {
1271 ntfs_error(vi->i_sb, "Found compressed "
1272 "attribute but compression is "
1273 "disabled due to cluster size "
1274 "(%i) > 4kiB.",
1275 vol->cluster_size);
1276 goto unm_err_out;
1277 }
1278 if ((ctx->attr->flags & ATTR_COMPRESSION_MASK)
1279 != ATTR_IS_COMPRESSED) {
1280 ntfs_error(vi->i_sb, "Found unknown "
1281 "compression method.");
1282 goto unm_err_out;
1283 }
1284 ni->itype.compressed.block_clusters = 1U <<
1285 ctx->attr->data.non_resident.
1286 compression_unit;
1287 if (ctx->attr->data.non_resident.compression_unit !=
1288 4) {
1289 ntfs_error(vi->i_sb, "Found nonstandard "
1290 "compression unit (%u instead "
1291 "of 4). Cannot handle this.",
1292 ctx->attr->data.non_resident.
1293 compression_unit);
1294 err = -EOPNOTSUPP;
1295 goto unm_err_out;
1296 }
1297 ni->itype.compressed.block_size = 1U << (
1298 ctx->attr->data.non_resident.
1299 compression_unit +
1300 vol->cluster_size_bits);
1301 ni->itype.compressed.block_size_bits = ffs(
1302 ni->itype.compressed.block_size) - 1;
1303 }
1304 if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
1305 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1306 ntfs_error(vi->i_sb, "Found encrypted "
1307 "and compressed data.");
1308 goto unm_err_out;
1309 }
1310 if (NInoMstProtected(ni)) {
1311 ntfs_error(vi->i_sb, "Found mst protected "
1312 "attribute but the attribute "
1313 "is encrypted. Please report "
1314 "you saw this message to "
1315 "linux-ntfs-dev@lists."
1316 "sourceforge.net");
1317 goto unm_err_out;
1318 }
1319 NInoSetEncrypted(ni);
1320 }
1321 if (ctx->attr->flags & ATTR_IS_SPARSE) {
1322 if (NInoMstProtected(ni)) {
1323 ntfs_error(vi->i_sb, "Found mst protected "
1324 "attribute but the attribute "
1325 "is sparse. Please report "
1326 "you saw this message to "
1327 "linux-ntfs-dev@lists."
1328 "sourceforge.net");
1329 goto unm_err_out;
1330 }
1331 NInoSetSparse(ni);
1332 }
1333 if (ctx->attr->data.non_resident.lowest_vcn) {
1334 ntfs_error(vi->i_sb, "First extent of attribute has "
1335 "non-zero lowest_vcn.");
1336 goto unm_err_out;
1337 }
1338 /* Setup all the sizes. */
1339 vi->i_size = sle64_to_cpu(
1340 ctx->attr->data.non_resident.data_size);
1341 ni->initialized_size = sle64_to_cpu(
1342 ctx->attr->data.non_resident.initialized_size);
1343 ni->allocated_size = sle64_to_cpu(
1344 ctx->attr->data.non_resident.allocated_size);
1345 if (NInoCompressed(ni)) {
1346 ni->itype.compressed.size = sle64_to_cpu(
1347 ctx->attr->data.non_resident.
1348 compressed_size);
1349 }
1350 }
1351
1352 /* Setup the operations for this attribute inode. */
1353 vi->i_op = NULL;
1354 vi->i_fop = NULL;
1355 if (NInoMstProtected(ni))
1356 vi->i_mapping->a_ops = &ntfs_mst_aops;
1357 else
1358 vi->i_mapping->a_ops = &ntfs_aops;
1359
1360 if (!NInoCompressed(ni))
1361 vi->i_blocks = ni->allocated_size >> 9;
1362 else
1363 vi->i_blocks = ni->itype.compressed.size >> 9;
1364
1365 /*
1366 * Make sure the base inode doesn't go away and attach it to the
1367 * attribute inode.
1368 */
1369 igrab(base_vi);
1370 ni->ext.base_ntfs_ino = base_ni;
1371 ni->nr_extents = -1;
1372
1373 ntfs_attr_put_search_ctx(ctx);
1374 unmap_mft_record(base_ni);
1375
1376 ntfs_debug("Done.");
1377 return 0;
1378
1379unm_err_out:
1380 if (!err)
1381 err = -EIO;
1382 if (ctx)
1383 ntfs_attr_put_search_ctx(ctx);
1384 unmap_mft_record(base_ni);
1385err_out:
1386 ntfs_error(vol->sb, "Failed with error code %i while reading attribute "
1387 "inode (mft_no 0x%lx, type 0x%x, name_len %i). "
1388 "Marking corrupt inode and base inode 0x%lx as bad. "
1389 "Run chkdsk.", err, vi->i_ino, ni->type, ni->name_len,
1390 base_vi->i_ino);
1391 make_bad_inode(vi);
1392 make_bad_inode(base_vi);
1393 if (err != -ENOMEM)
1394 NVolSetErrors(vol);
1395 return err;
1396}
1397
1398/**
1399 * ntfs_read_locked_index_inode - read an index inode from its base inode
1400 * @base_vi: base inode
1401 * @vi: index inode to read
1402 *
1403 * ntfs_read_locked_index_inode() is called from ntfs_index_iget() to read the
1404 * index inode described by @vi into memory from the base mft record described
1405 * by @base_ni.
1406 *
1407 * ntfs_read_locked_index_inode() maps, pins and locks the base inode for
1408 * reading and looks up the attributes relating to the index described by @vi
1409 * before setting up the necessary fields in @vi as well as initializing the
1410 * ntfs inode.
1411 *
1412 * Note, index inodes are essentially attribute inodes (NInoAttr() is true)
1413 * with the attribute type set to AT_INDEX_ALLOCATION. Apart from that, they
1414 * are setup like directory inodes since directories are a special case of
1415 * indices ao they need to be treated in much the same way. Most importantly,
1416 * for small indices the index allocation attribute might not actually exist.
1417 * However, the index root attribute always exists but this does not need to
1418 * have an inode associated with it and this is why we define a new inode type
1419 * index. Also, like for directories, we need to have an attribute inode for
1420 * the bitmap attribute corresponding to the index allocation attribute and we
1421 * can store this in the appropriate field of the inode, just like we do for
1422 * normal directory inodes.
1423 *
1424 * Q: What locks are held when the function is called?
1425 * A: i_state has I_LOCK set, hence the inode is locked, also
1426 * i_count is set to 1, so it is not going to go away
1427 *
1428 * Return 0 on success and -errno on error. In the error case, the inode will
1429 * have had make_bad_inode() executed on it.
1430 */
1431static int ntfs_read_locked_index_inode(struct inode *base_vi, struct inode *vi)
1432{
1433 ntfs_volume *vol = NTFS_SB(vi->i_sb);
1434 ntfs_inode *ni, *base_ni, *bni;
1435 struct inode *bvi;
1436 MFT_RECORD *m;
1437 ntfs_attr_search_ctx *ctx;
1438 INDEX_ROOT *ir;
1439 u8 *ir_end, *index_end;
1440 int err = 0;
1441
1442 ntfs_debug("Entering for i_ino 0x%lx.", vi->i_ino);
1443 ntfs_init_big_inode(vi);
1444 ni = NTFS_I(vi);
1445 base_ni = NTFS_I(base_vi);
1446 /* Just mirror the values from the base inode. */
1447 vi->i_blksize = base_vi->i_blksize;
1448 vi->i_version = base_vi->i_version;
1449 vi->i_uid = base_vi->i_uid;
1450 vi->i_gid = base_vi->i_gid;
1451 vi->i_nlink = base_vi->i_nlink;
1452 vi->i_mtime = base_vi->i_mtime;
1453 vi->i_ctime = base_vi->i_ctime;
1454 vi->i_atime = base_vi->i_atime;
1455 vi->i_generation = ni->seq_no = base_ni->seq_no;
1456 /* Set inode type to zero but preserve permissions. */
1457 vi->i_mode = base_vi->i_mode & ~S_IFMT;
1458 /* Map the mft record for the base inode. */
1459 m = map_mft_record(base_ni);
1460 if (IS_ERR(m)) {
1461 err = PTR_ERR(m);
1462 goto err_out;
1463 }
1464 ctx = ntfs_attr_get_search_ctx(base_ni, m);
1465 if (!ctx) {
1466 err = -ENOMEM;
1467 goto unm_err_out;
1468 }
1469 /* Find the index root attribute. */
1470 err = ntfs_attr_lookup(AT_INDEX_ROOT, ni->name, ni->name_len,
1471 CASE_SENSITIVE, 0, NULL, 0, ctx);
1472 if (unlikely(err)) {
1473 if (err == -ENOENT)
1474 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is "
1475 "missing.");
1476 goto unm_err_out;
1477 }
1478 /* Set up the state. */
1479 if (unlikely(ctx->attr->non_resident)) {
1480 ntfs_error(vol->sb, "$INDEX_ROOT attribute is not resident.");
1481 goto unm_err_out;
1482 }
1483 /* Ensure the attribute name is placed before the value. */
1484 if (unlikely(ctx->attr->name_length &&
1485 (le16_to_cpu(ctx->attr->name_offset) >=
1486 le16_to_cpu(ctx->attr->data.resident.
1487 value_offset)))) {
1488 ntfs_error(vol->sb, "$INDEX_ROOT attribute name is placed "
1489 "after the attribute value.");
1490 goto unm_err_out;
1491 }
1492 /* Compressed/encrypted/sparse index root is not allowed. */
1493 if (ctx->attr->flags & (ATTR_COMPRESSION_MASK | ATTR_IS_ENCRYPTED |
1494 ATTR_IS_SPARSE)) {
1495 ntfs_error(vi->i_sb, "Found compressed/encrypted/sparse index "
1496 "root attribute.");
1497 goto unm_err_out;
1498 }
1499 ir = (INDEX_ROOT*)((u8*)ctx->attr +
1500 le16_to_cpu(ctx->attr->data.resident.value_offset));
1501 ir_end = (u8*)ir + le32_to_cpu(ctx->attr->data.resident.value_length);
1502 if (ir_end > (u8*)ctx->mrec + vol->mft_record_size) {
1503 ntfs_error(vi->i_sb, "$INDEX_ROOT attribute is corrupt.");
1504 goto unm_err_out;
1505 }
1506 index_end = (u8*)&ir->index + le32_to_cpu(ir->index.index_length);
1507 if (index_end > ir_end) {
1508 ntfs_error(vi->i_sb, "Index is corrupt.");
1509 goto unm_err_out;
1510 }
1511 if (ir->type) {
1512 ntfs_error(vi->i_sb, "Index type is not 0 (type is 0x%x).",
1513 le32_to_cpu(ir->type));
1514 goto unm_err_out;
1515 }
1516 ni->itype.index.collation_rule = ir->collation_rule;
1517 ntfs_debug("Index collation rule is 0x%x.",
1518 le32_to_cpu(ir->collation_rule));
1519 ni->itype.index.block_size = le32_to_cpu(ir->index_block_size);
1520 if (ni->itype.index.block_size & (ni->itype.index.block_size - 1)) {
1521 ntfs_error(vi->i_sb, "Index block size (%u) is not a power of "
1522 "two.", ni->itype.index.block_size);
1523 goto unm_err_out;
1524 }
1525 if (ni->itype.index.block_size > PAGE_CACHE_SIZE) {
1526 ntfs_error(vi->i_sb, "Index block size (%u) > PAGE_CACHE_SIZE "
1527 "(%ld) is not supported. Sorry.",
1528 ni->itype.index.block_size, PAGE_CACHE_SIZE);
1529 err = -EOPNOTSUPP;
1530 goto unm_err_out;
1531 }
1532 if (ni->itype.index.block_size < NTFS_BLOCK_SIZE) {
1533 ntfs_error(vi->i_sb, "Index block size (%u) < NTFS_BLOCK_SIZE "
1534 "(%i) is not supported. Sorry.",
1535 ni->itype.index.block_size, NTFS_BLOCK_SIZE);
1536 err = -EOPNOTSUPP;
1537 goto unm_err_out;
1538 }
1539 ni->itype.index.block_size_bits = ffs(ni->itype.index.block_size) - 1;
1540 /* Determine the size of a vcn in the index. */
1541 if (vol->cluster_size <= ni->itype.index.block_size) {
1542 ni->itype.index.vcn_size = vol->cluster_size;
1543 ni->itype.index.vcn_size_bits = vol->cluster_size_bits;
1544 } else {
1545 ni->itype.index.vcn_size = vol->sector_size;
1546 ni->itype.index.vcn_size_bits = vol->sector_size_bits;
1547 }
1548 /* Check for presence of index allocation attribute. */
1549 if (!(ir->index.flags & LARGE_INDEX)) {
1550 /* No index allocation. */
1551 vi->i_size = ni->initialized_size = ni->allocated_size = 0;
1552 /* We are done with the mft record, so we release it. */
1553 ntfs_attr_put_search_ctx(ctx);
1554 unmap_mft_record(base_ni);
1555 m = NULL;
1556 ctx = NULL;
1557 goto skip_large_index_stuff;
1558 } /* LARGE_INDEX: Index allocation present. Setup state. */
1559 NInoSetIndexAllocPresent(ni);
1560 /* Find index allocation attribute. */
1561 ntfs_attr_reinit_search_ctx(ctx);
1562 err = ntfs_attr_lookup(AT_INDEX_ALLOCATION, ni->name, ni->name_len,
1563 CASE_SENSITIVE, 0, NULL, 0, ctx);
1564 if (unlikely(err)) {
1565 if (err == -ENOENT)
1566 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1567 "not present but $INDEX_ROOT "
1568 "indicated it is.");
1569 else
1570 ntfs_error(vi->i_sb, "Failed to lookup "
1571 "$INDEX_ALLOCATION attribute.");
1572 goto unm_err_out;
1573 }
1574 if (!ctx->attr->non_resident) {
1575 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1576 "resident.");
1577 goto unm_err_out;
1578 }
1579 /*
1580 * Ensure the attribute name is placed before the mapping pairs array.
1581 */
1582 if (unlikely(ctx->attr->name_length && (le16_to_cpu(
1583 ctx->attr->name_offset) >= le16_to_cpu(
1584 ctx->attr->data.non_resident.mapping_pairs_offset)))) {
1585 ntfs_error(vol->sb, "$INDEX_ALLOCATION attribute name is "
1586 "placed after the mapping pairs array.");
1587 goto unm_err_out;
1588 }
1589 if (ctx->attr->flags & ATTR_IS_ENCRYPTED) {
1590 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1591 "encrypted.");
1592 goto unm_err_out;
1593 }
1594 if (ctx->attr->flags & ATTR_IS_SPARSE) {
1595 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is sparse.");
1596 goto unm_err_out;
1597 }
1598 if (ctx->attr->flags & ATTR_COMPRESSION_MASK) {
1599 ntfs_error(vi->i_sb, "$INDEX_ALLOCATION attribute is "
1600 "compressed.");
1601 goto unm_err_out;
1602 }
1603 if (ctx->attr->data.non_resident.lowest_vcn) {
1604 ntfs_error(vi->i_sb, "First extent of $INDEX_ALLOCATION "
1605 "attribute has non zero lowest_vcn.");
1606 goto unm_err_out;
1607 }
1608 vi->i_size = sle64_to_cpu(ctx->attr->data.non_resident.data_size);
1609 ni->initialized_size = sle64_to_cpu(
1610 ctx->attr->data.non_resident.initialized_size);
1611 ni->allocated_size = sle64_to_cpu(
1612 ctx->attr->data.non_resident.allocated_size);
1613 /*
1614 * We are done with the mft record, so we release it. Otherwise
1615 * we would deadlock in ntfs_attr_iget().
1616 */
1617 ntfs_attr_put_search_ctx(ctx);
1618 unmap_mft_record(base_ni);
1619 m = NULL;
1620 ctx = NULL;
1621 /* Get the index bitmap attribute inode. */
1622 bvi = ntfs_attr_iget(base_vi, AT_BITMAP, ni->name, ni->name_len);
1623 if (IS_ERR(bvi)) {
1624 ntfs_error(vi->i_sb, "Failed to get bitmap attribute.");
1625 err = PTR_ERR(bvi);
1626 goto unm_err_out;
1627 }
1628 bni = NTFS_I(bvi);
1629 if (NInoCompressed(bni) || NInoEncrypted(bni) ||
1630 NInoSparse(bni)) {
1631 ntfs_error(vi->i_sb, "$BITMAP attribute is compressed and/or "
1632 "encrypted and/or sparse.");
1633 goto iput_unm_err_out;
1634 }
1635 /* Consistency check bitmap size vs. index allocation size. */
1636 if ((bvi->i_size << 3) < (vi->i_size >>
1637 ni->itype.index.block_size_bits)) {
1638 ntfs_error(vi->i_sb, "Index bitmap too small (0x%llx) for "
1639 "index allocation (0x%llx).", bvi->i_size << 3,
1640 vi->i_size);
1641 goto iput_unm_err_out;
1642 }
1643 ni->itype.index.bmp_ino = bvi;
1644skip_large_index_stuff:
1645 /* Setup the operations for this index inode. */
1646 vi->i_op = NULL;
1647 vi->i_fop = NULL;
1648 vi->i_mapping->a_ops = &ntfs_mst_aops;
1649 vi->i_blocks = ni->allocated_size >> 9;
1650
1651 /*
1652 * Make sure the base inode doesn't go away and attach it to the
1653 * index inode.
1654 */
1655 igrab(base_vi);
1656 ni->ext.base_ntfs_ino = base_ni;
1657 ni->nr_extents = -1;
1658
1659 ntfs_debug("Done.");
1660 return 0;
1661
1662iput_unm_err_out:
1663 iput(bvi);
1664unm_err_out:
1665 if (!err)
1666 err = -EIO;
1667 if (ctx)
1668 ntfs_attr_put_search_ctx(ctx);
1669 if (m)
1670 unmap_mft_record(base_ni);
1671err_out:
1672 ntfs_error(vi->i_sb, "Failed with error code %i while reading index "
1673 "inode (mft_no 0x%lx, name_len %i.", err, vi->i_ino,
1674 ni->name_len);
1675 make_bad_inode(vi);
1676 if (err != -EOPNOTSUPP && err != -ENOMEM)
1677 NVolSetErrors(vol);
1678 return err;
1679}
1680
1681/**
1682 * ntfs_read_inode_mount - special read_inode for mount time use only
1683 * @vi: inode to read
1684 *
1685 * Read inode FILE_MFT at mount time, only called with super_block lock
1686 * held from within the read_super() code path.
1687 *
1688 * This function exists because when it is called the page cache for $MFT/$DATA
1689 * is not initialized and hence we cannot get at the contents of mft records
1690 * by calling map_mft_record*().
1691 *
1692 * Further it needs to cope with the circular references problem, i.e. cannot
1693 * load any attributes other than $ATTRIBUTE_LIST until $DATA is loaded, because
1694 * we do not know where the other extent mft records are yet and again, because
1695 * we cannot call map_mft_record*() yet. Obviously this applies only when an
1696 * attribute list is actually present in $MFT inode.
1697 *
1698 * We solve these problems by starting with the $DATA attribute before anything
1699 * else and iterating using ntfs_attr_lookup($DATA) over all extents. As each
1700 * extent is found, we ntfs_mapping_pairs_decompress() including the implied
1701 * ntfs_runlists_merge(). Each step of the iteration necessarily provides
1702 * sufficient information for the next step to complete.
1703 *
1704 * This should work but there are two possible pit falls (see inline comments
1705 * below), but only time will tell if they are real pits or just smoke...
1706 */
1707int ntfs_read_inode_mount(struct inode *vi)
1708{
1709 VCN next_vcn, last_vcn, highest_vcn;
1710 s64 block;
1711 struct super_block *sb = vi->i_sb;
1712 ntfs_volume *vol = NTFS_SB(sb);
1713 struct buffer_head *bh;
1714 ntfs_inode *ni;
1715 MFT_RECORD *m = NULL;
1716 ATTR_RECORD *attr;
1717 ntfs_attr_search_ctx *ctx;
1718 unsigned int i, nr_blocks;
1719 int err;
1720
1721 ntfs_debug("Entering.");
1722
1723 /* Initialize the ntfs specific part of @vi. */
1724 ntfs_init_big_inode(vi);
1725
1726 ni = NTFS_I(vi);
1727
1728 /* Setup the data attribute. It is special as it is mst protected. */
1729 NInoSetNonResident(ni);
1730 NInoSetMstProtected(ni);
1731 ni->type = AT_DATA;
1732 ni->name = NULL;
1733 ni->name_len = 0;
1734
1735 /*
1736 * This sets up our little cheat allowing us to reuse the async read io
1737 * completion handler for directories.
1738 */
1739 ni->itype.index.block_size = vol->mft_record_size;
1740 ni->itype.index.block_size_bits = vol->mft_record_size_bits;
1741
1742 /* Very important! Needed to be able to call map_mft_record*(). */
1743 vol->mft_ino = vi;
1744
1745 /* Allocate enough memory to read the first mft record. */
1746 if (vol->mft_record_size > 64 * 1024) {
1747 ntfs_error(sb, "Unsupported mft record size %i (max 64kiB).",
1748 vol->mft_record_size);
1749 goto err_out;
1750 }
1751 i = vol->mft_record_size;
1752 if (i < sb->s_blocksize)
1753 i = sb->s_blocksize;
1754 m = (MFT_RECORD*)ntfs_malloc_nofs(i);
1755 if (!m) {
1756 ntfs_error(sb, "Failed to allocate buffer for $MFT record 0.");
1757 goto err_out;
1758 }
1759
1760 /* Determine the first block of the $MFT/$DATA attribute. */
1761 block = vol->mft_lcn << vol->cluster_size_bits >>
1762 sb->s_blocksize_bits;
1763 nr_blocks = vol->mft_record_size >> sb->s_blocksize_bits;
1764 if (!nr_blocks)
1765 nr_blocks = 1;
1766
1767 /* Load $MFT/$DATA's first mft record. */
1768 for (i = 0; i < nr_blocks; i++) {
1769 bh = sb_bread(sb, block++);
1770 if (!bh) {
1771 ntfs_error(sb, "Device read failed.");
1772 goto err_out;
1773 }
1774 memcpy((char*)m + (i << sb->s_blocksize_bits), bh->b_data,
1775 sb->s_blocksize);
1776 brelse(bh);
1777 }
1778
1779 /* Apply the mst fixups. */
1780 if (post_read_mst_fixup((NTFS_RECORD*)m, vol->mft_record_size)) {
1781 /* FIXME: Try to use the $MFTMirr now. */
1782 ntfs_error(sb, "MST fixup failed. $MFT is corrupt.");
1783 goto err_out;
1784 }
1785
1786 /* Need this to sanity check attribute list references to $MFT. */
1787 vi->i_generation = ni->seq_no = le16_to_cpu(m->sequence_number);
1788
1789 /* Provides readpage() and sync_page() for map_mft_record(). */
1790 vi->i_mapping->a_ops = &ntfs_mst_aops;
1791
1792 ctx = ntfs_attr_get_search_ctx(ni, m);
1793 if (!ctx) {
1794 err = -ENOMEM;
1795 goto err_out;
1796 }
1797
1798 /* Find the attribute list attribute if present. */
1799 err = ntfs_attr_lookup(AT_ATTRIBUTE_LIST, NULL, 0, 0, 0, NULL, 0, ctx);
1800 if (err) {
1801 if (unlikely(err != -ENOENT)) {
1802 ntfs_error(sb, "Failed to lookup attribute list "
1803 "attribute. You should run chkdsk.");
1804 goto put_err_out;
1805 }
1806 } else /* if (!err) */ {
1807 ATTR_LIST_ENTRY *al_entry, *next_al_entry;
1808 u8 *al_end;
1809
1810 ntfs_debug("Attribute list attribute found in $MFT.");
1811 NInoSetAttrList(ni);
1812 if (ctx->attr->flags & ATTR_IS_ENCRYPTED ||
1813 ctx->attr->flags & ATTR_COMPRESSION_MASK ||
1814 ctx->attr->flags & ATTR_IS_SPARSE) {
1815 ntfs_error(sb, "Attribute list attribute is "
1816 "compressed/encrypted/sparse. Not "
1817 "allowed. $MFT is corrupt. You should "
1818 "run chkdsk.");
1819 goto put_err_out;
1820 }
1821 /* Now allocate memory for the attribute list. */
1822 ni->attr_list_size = (u32)ntfs_attr_size(ctx->attr);
1823 ni->attr_list = ntfs_malloc_nofs(ni->attr_list_size);
1824 if (!ni->attr_list) {
1825 ntfs_error(sb, "Not enough memory to allocate buffer "
1826 "for attribute list.");
1827 goto put_err_out;
1828 }
1829 if (ctx->attr->non_resident) {
1830 NInoSetAttrListNonResident(ni);
1831 if (ctx->attr->data.non_resident.lowest_vcn) {
1832 ntfs_error(sb, "Attribute list has non zero "
1833 "lowest_vcn. $MFT is corrupt. "
1834 "You should run chkdsk.");
1835 goto put_err_out;
1836 }
1837 /* Setup the runlist. */
1838 ni->attr_list_rl.rl = ntfs_mapping_pairs_decompress(vol,
1839 ctx->attr, NULL);
1840 if (IS_ERR(ni->attr_list_rl.rl)) {
1841 err = PTR_ERR(ni->attr_list_rl.rl);
1842 ni->attr_list_rl.rl = NULL;
1843 ntfs_error(sb, "Mapping pairs decompression "
1844 "failed with error code %i.",
1845 -err);
1846 goto put_err_out;
1847 }
1848 /* Now load the attribute list. */
1849 if ((err = load_attribute_list(vol, &ni->attr_list_rl,
1850 ni->attr_list, ni->attr_list_size,
1851 sle64_to_cpu(ctx->attr->data.
1852 non_resident.initialized_size)))) {
1853 ntfs_error(sb, "Failed to load attribute list "
1854 "attribute with error code %i.",
1855 -err);
1856 goto put_err_out;
1857 }
1858 } else /* if (!ctx.attr->non_resident) */ {
1859 if ((u8*)ctx->attr + le16_to_cpu(
1860 ctx->attr->data.resident.value_offset) +
1861 le32_to_cpu(
1862 ctx->attr->data.resident.value_length) >
1863 (u8*)ctx->mrec + vol->mft_record_size) {
1864 ntfs_error(sb, "Corrupt attribute list "
1865 "attribute.");
1866 goto put_err_out;
1867 }
1868 /* Now copy the attribute list. */
1869 memcpy(ni->attr_list, (u8*)ctx->attr + le16_to_cpu(
1870 ctx->attr->data.resident.value_offset),
1871 le32_to_cpu(
1872 ctx->attr->data.resident.value_length));
1873 }
1874 /* The attribute list is now setup in memory. */
1875 /*
1876 * FIXME: I don't know if this case is actually possible.
1877 * According to logic it is not possible but I have seen too
1878 * many weird things in MS software to rely on logic... Thus we
1879 * perform a manual search and make sure the first $MFT/$DATA
1880 * extent is in the base inode. If it is not we abort with an
1881 * error and if we ever see a report of this error we will need
1882 * to do some magic in order to have the necessary mft record
1883 * loaded and in the right place in the page cache. But
1884 * hopefully logic will prevail and this never happens...
1885 */
1886 al_entry = (ATTR_LIST_ENTRY*)ni->attr_list;
1887 al_end = (u8*)al_entry + ni->attr_list_size;
1888 for (;; al_entry = next_al_entry) {
1889 /* Out of bounds check. */
1890 if ((u8*)al_entry < ni->attr_list ||
1891 (u8*)al_entry > al_end)
1892 goto em_put_err_out;
1893 /* Catch the end of the attribute list. */
1894 if ((u8*)al_entry == al_end)
1895 goto em_put_err_out;
1896 if (!al_entry->length)
1897 goto em_put_err_out;
1898 if ((u8*)al_entry + 6 > al_end || (u8*)al_entry +
1899 le16_to_cpu(al_entry->length) > al_end)
1900 goto em_put_err_out;
1901 next_al_entry = (ATTR_LIST_ENTRY*)((u8*)al_entry +
1902 le16_to_cpu(al_entry->length));
1903 if (le32_to_cpu(al_entry->type) >
1904 const_le32_to_cpu(AT_DATA))
1905 goto em_put_err_out;
1906 if (AT_DATA != al_entry->type)
1907 continue;
1908 /* We want an unnamed attribute. */
1909 if (al_entry->name_length)
1910 goto em_put_err_out;
1911 /* Want the first entry, i.e. lowest_vcn == 0. */
1912 if (al_entry->lowest_vcn)
1913 goto em_put_err_out;
1914 /* First entry has to be in the base mft record. */
1915 if (MREF_LE(al_entry->mft_reference) != vi->i_ino) {
1916 /* MFT references do not match, logic fails. */
1917 ntfs_error(sb, "BUG: The first $DATA extent "
1918 "of $MFT is not in the base "
1919 "mft record. Please report "
1920 "you saw this message to "
1921 "linux-ntfs-dev@lists."
1922 "sourceforge.net");
1923 goto put_err_out;
1924 } else {
1925 /* Sequence numbers must match. */
1926 if (MSEQNO_LE(al_entry->mft_reference) !=
1927 ni->seq_no)
1928 goto em_put_err_out;
1929 /* Got it. All is ok. We can stop now. */
1930 break;
1931 }
1932 }
1933 }
1934
1935 ntfs_attr_reinit_search_ctx(ctx);
1936
1937 /* Now load all attribute extents. */
1938 attr = NULL;
1939 next_vcn = last_vcn = highest_vcn = 0;
1940 while (!(err = ntfs_attr_lookup(AT_DATA, NULL, 0, 0, next_vcn, NULL, 0,
1941 ctx))) {
1942 runlist_element *nrl;
1943
1944 /* Cache the current attribute. */
1945 attr = ctx->attr;
1946 /* $MFT must be non-resident. */
1947 if (!attr->non_resident) {
1948 ntfs_error(sb, "$MFT must be non-resident but a "
1949 "resident extent was found. $MFT is "
1950 "corrupt. Run chkdsk.");
1951 goto put_err_out;
1952 }
1953 /* $MFT must be uncompressed and unencrypted. */
1954 if (attr->flags & ATTR_COMPRESSION_MASK ||
1955 attr->flags & ATTR_IS_ENCRYPTED ||
1956 attr->flags & ATTR_IS_SPARSE) {
1957 ntfs_error(sb, "$MFT must be uncompressed, "
1958 "non-sparse, and unencrypted but a "
1959 "compressed/sparse/encrypted extent "
1960 "was found. $MFT is corrupt. Run "
1961 "chkdsk.");
1962 goto put_err_out;
1963 }
1964 /*
1965 * Decompress the mapping pairs array of this extent and merge
1966 * the result into the existing runlist. No need for locking
1967 * as we have exclusive access to the inode at this time and we
1968 * are a mount in progress task, too.
1969 */
1970 nrl = ntfs_mapping_pairs_decompress(vol, attr, ni->runlist.rl);
1971 if (IS_ERR(nrl)) {
1972 ntfs_error(sb, "ntfs_mapping_pairs_decompress() "
1973 "failed with error code %ld. $MFT is "
1974 "corrupt.", PTR_ERR(nrl));
1975 goto put_err_out;
1976 }
1977 ni->runlist.rl = nrl;
1978
1979 /* Are we in the first extent? */
1980 if (!next_vcn) {
1981 if (attr->data.non_resident.lowest_vcn) {
1982 ntfs_error(sb, "First extent of $DATA "
1983 "attribute has non zero "
1984 "lowest_vcn. $MFT is corrupt. "
1985 "You should run chkdsk.");
1986 goto put_err_out;
1987 }
1988 /* Get the last vcn in the $DATA attribute. */
1989 last_vcn = sle64_to_cpu(
1990 attr->data.non_resident.allocated_size)
1991 >> vol->cluster_size_bits;
1992 /* Fill in the inode size. */
1993 vi->i_size = sle64_to_cpu(
1994 attr->data.non_resident.data_size);
1995 ni->initialized_size = sle64_to_cpu(attr->data.
1996 non_resident.initialized_size);
1997 ni->allocated_size = sle64_to_cpu(
1998 attr->data.non_resident.allocated_size);
1999 /*
2000 * Verify the number of mft records does not exceed
2001 * 2^32 - 1.
2002 */
2003 if ((vi->i_size >> vol->mft_record_size_bits) >=
2004 (1ULL << 32)) {
2005 ntfs_error(sb, "$MFT is too big! Aborting.");
2006 goto put_err_out;
2007 }
2008 /*
2009 * We have got the first extent of the runlist for
2010 * $MFT which means it is now relatively safe to call
2011 * the normal ntfs_read_inode() function.
2012 * Complete reading the inode, this will actually
2013 * re-read the mft record for $MFT, this time entering
2014 * it into the page cache with which we complete the
2015 * kick start of the volume. It should be safe to do
2016 * this now as the first extent of $MFT/$DATA is
2017 * already known and we would hope that we don't need
2018 * further extents in order to find the other
2019 * attributes belonging to $MFT. Only time will tell if
2020 * this is really the case. If not we will have to play
2021 * magic at this point, possibly duplicating a lot of
2022 * ntfs_read_inode() at this point. We will need to
2023 * ensure we do enough of its work to be able to call
2024 * ntfs_read_inode() on extents of $MFT/$DATA. But lets
2025 * hope this never happens...
2026 */
2027 ntfs_read_locked_inode(vi);
2028 if (is_bad_inode(vi)) {
2029 ntfs_error(sb, "ntfs_read_inode() of $MFT "
2030 "failed. BUG or corrupt $MFT. "
2031 "Run chkdsk and if no errors "
2032 "are found, please report you "
2033 "saw this message to "
2034 "linux-ntfs-dev@lists."
2035 "sourceforge.net");
2036 ntfs_attr_put_search_ctx(ctx);
2037 /* Revert to the safe super operations. */
2038 ntfs_free(m);
2039 return -1;
2040 }
2041 /*
2042 * Re-initialize some specifics about $MFT's inode as
2043 * ntfs_read_inode() will have set up the default ones.
2044 */
2045 /* Set uid and gid to root. */
2046 vi->i_uid = vi->i_gid = 0;
2047 /* Regular file. No access for anyone. */
2048 vi->i_mode = S_IFREG;
2049 /* No VFS initiated operations allowed for $MFT. */
2050 vi->i_op = &ntfs_empty_inode_ops;
2051 vi->i_fop = &ntfs_empty_file_ops;
2052 }
2053
2054 /* Get the lowest vcn for the next extent. */
2055 highest_vcn = sle64_to_cpu(attr->data.non_resident.highest_vcn);
2056 next_vcn = highest_vcn + 1;
2057
2058 /* Only one extent or error, which we catch below. */
2059 if (next_vcn <= 0)
2060 break;
2061
2062 /* Avoid endless loops due to corruption. */
2063 if (next_vcn < sle64_to_cpu(
2064 attr->data.non_resident.lowest_vcn)) {
2065 ntfs_error(sb, "$MFT has corrupt attribute list "
2066 "attribute. Run chkdsk.");
2067 goto put_err_out;
2068 }
2069 }
2070 if (err != -ENOENT) {
2071 ntfs_error(sb, "Failed to lookup $MFT/$DATA attribute extent. "
2072 "$MFT is corrupt. Run chkdsk.");
2073 goto put_err_out;
2074 }
2075 if (!attr) {
2076 ntfs_error(sb, "$MFT/$DATA attribute not found. $MFT is "
2077 "corrupt. Run chkdsk.");
2078 goto put_err_out;
2079 }
2080 if (highest_vcn && highest_vcn != last_vcn - 1) {
2081 ntfs_error(sb, "Failed to load the complete runlist for "
2082 "$MFT/$DATA. Driver bug or corrupt $MFT. "
2083 "Run chkdsk.");
2084 ntfs_debug("highest_vcn = 0x%llx, last_vcn - 1 = 0x%llx",
2085 (unsigned long long)highest_vcn,
2086 (unsigned long long)last_vcn - 1);
2087 goto put_err_out;
2088 }
2089 ntfs_attr_put_search_ctx(ctx);
2090 ntfs_debug("Done.");
2091 ntfs_free(m);
2092 return 0;
2093
2094em_put_err_out:
2095 ntfs_error(sb, "Couldn't find first extent of $DATA attribute in "
2096 "attribute list. $MFT is corrupt. Run chkdsk.");
2097put_err_out:
2098 ntfs_attr_put_search_ctx(ctx);
2099err_out:
2100 ntfs_error(sb, "Failed. Marking inode as bad.");
2101 make_bad_inode(vi);
2102 ntfs_free(m);
2103 return -1;
2104}
2105
2106/**
2107 * ntfs_put_inode - handler for when the inode reference count is decremented
2108 * @vi: vfs inode
2109 *
2110 * The VFS calls ntfs_put_inode() every time the inode reference count (i_count)
2111 * is about to be decremented (but before the decrement itself.
2112 *
2113 * If the inode @vi is a directory with two references, one of which is being
2114 * dropped, we need to put the attribute inode for the directory index bitmap,
2115 * if it is present, otherwise the directory inode would remain pinned for
2116 * ever.
2117 */
2118void ntfs_put_inode(struct inode *vi)
2119{
2120 if (S_ISDIR(vi->i_mode) && atomic_read(&vi->i_count) == 2) {
2121 ntfs_inode *ni = NTFS_I(vi);
2122 if (NInoIndexAllocPresent(ni)) {
2123 struct inode *bvi = NULL;
2124 down(&vi->i_sem);
2125 if (atomic_read(&vi->i_count) == 2) {
2126 bvi = ni->itype.index.bmp_ino;
2127 if (bvi)
2128 ni->itype.index.bmp_ino = NULL;
2129 }
2130 up(&vi->i_sem);
2131 if (bvi)
2132 iput(bvi);
2133 }
2134 }
2135}
2136
2137static void __ntfs_clear_inode(ntfs_inode *ni)
2138{
2139 /* Free all alocated memory. */
2140 down_write(&ni->runlist.lock);
2141 if (ni->runlist.rl) {
2142 ntfs_free(ni->runlist.rl);
2143 ni->runlist.rl = NULL;
2144 }
2145 up_write(&ni->runlist.lock);
2146
2147 if (ni->attr_list) {
2148 ntfs_free(ni->attr_list);
2149 ni->attr_list = NULL;
2150 }
2151
2152 down_write(&ni->attr_list_rl.lock);
2153 if (ni->attr_list_rl.rl) {
2154 ntfs_free(ni->attr_list_rl.rl);
2155 ni->attr_list_rl.rl = NULL;
2156 }
2157 up_write(&ni->attr_list_rl.lock);
2158
2159 if (ni->name_len && ni->name != I30) {
2160 /* Catch bugs... */
2161 BUG_ON(!ni->name);
2162 kfree(ni->name);
2163 }
2164}
2165
2166void ntfs_clear_extent_inode(ntfs_inode *ni)
2167{
2168 ntfs_debug("Entering for inode 0x%lx.", ni->mft_no);
2169
2170 BUG_ON(NInoAttr(ni));
2171 BUG_ON(ni->nr_extents != -1);
2172
2173#ifdef NTFS_RW
2174 if (NInoDirty(ni)) {
2175 if (!is_bad_inode(VFS_I(ni->ext.base_ntfs_ino)))
2176 ntfs_error(ni->vol->sb, "Clearing dirty extent inode! "
2177 "Losing data! This is a BUG!!!");
2178 // FIXME: Do something!!!
2179 }
2180#endif /* NTFS_RW */
2181
2182 __ntfs_clear_inode(ni);
2183
2184 /* Bye, bye... */
2185 ntfs_destroy_extent_inode(ni);
2186}
2187
2188/**
2189 * ntfs_clear_big_inode - clean up the ntfs specific part of an inode
2190 * @vi: vfs inode pending annihilation
2191 *
2192 * When the VFS is going to remove an inode from memory, ntfs_clear_big_inode()
2193 * is called, which deallocates all memory belonging to the NTFS specific part
2194 * of the inode and returns.
2195 *
2196 * If the MFT record is dirty, we commit it before doing anything else.
2197 */
2198void ntfs_clear_big_inode(struct inode *vi)
2199{
2200 ntfs_inode *ni = NTFS_I(vi);
2201
2202 /*
2203 * If the inode @vi is an index inode we need to put the attribute
2204 * inode for the index bitmap, if it is present, otherwise the index
2205 * inode would disappear and the attribute inode for the index bitmap
2206 * would no longer be referenced from anywhere and thus it would remain
2207 * pinned for ever.
2208 */
2209 if (NInoAttr(ni) && (ni->type == AT_INDEX_ALLOCATION) &&
2210 NInoIndexAllocPresent(ni) && ni->itype.index.bmp_ino) {
2211 iput(ni->itype.index.bmp_ino);
2212 ni->itype.index.bmp_ino = NULL;
2213 }
2214#ifdef NTFS_RW
2215 if (NInoDirty(ni)) {
2216 BOOL was_bad = (is_bad_inode(vi));
2217
2218 /* Committing the inode also commits all extent inodes. */
2219 ntfs_commit_inode(vi);
2220
2221 if (!was_bad && (is_bad_inode(vi) || NInoDirty(ni))) {
2222 ntfs_error(vi->i_sb, "Failed to commit dirty inode "
2223 "0x%lx. Losing data!", vi->i_ino);
2224 // FIXME: Do something!!!
2225 }
2226 }
2227#endif /* NTFS_RW */
2228
2229 /* No need to lock at this stage as no one else has a reference. */
2230 if (ni->nr_extents > 0) {
2231 int i;
2232
2233 for (i = 0; i < ni->nr_extents; i++)
2234 ntfs_clear_extent_inode(ni->ext.extent_ntfs_inos[i]);
2235 kfree(ni->ext.extent_ntfs_inos);
2236 }
2237
2238 __ntfs_clear_inode(ni);
2239
2240 if (NInoAttr(ni)) {
2241 /* Release the base inode if we are holding it. */
2242 if (ni->nr_extents == -1) {
2243 iput(VFS_I(ni->ext.base_ntfs_ino));
2244 ni->nr_extents = 0;
2245 ni->ext.base_ntfs_ino = NULL;
2246 }
2247 }
2248 return;
2249}
2250
2251/**
2252 * ntfs_show_options - show mount options in /proc/mounts
2253 * @sf: seq_file in which to write our mount options
2254 * @mnt: vfs mount whose mount options to display
2255 *
2256 * Called by the VFS once for each mounted ntfs volume when someone reads
2257 * /proc/mounts in order to display the NTFS specific mount options of each
2258 * mount. The mount options of the vfs mount @mnt are written to the seq file
2259 * @sf and success is returned.
2260 */
2261int ntfs_show_options(struct seq_file *sf, struct vfsmount *mnt)
2262{
2263 ntfs_volume *vol = NTFS_SB(mnt->mnt_sb);
2264 int i;
2265
2266 seq_printf(sf, ",uid=%i", vol->uid);
2267 seq_printf(sf, ",gid=%i", vol->gid);
2268 if (vol->fmask == vol->dmask)
2269 seq_printf(sf, ",umask=0%o", vol->fmask);
2270 else {
2271 seq_printf(sf, ",fmask=0%o", vol->fmask);
2272 seq_printf(sf, ",dmask=0%o", vol->dmask);
2273 }
2274 seq_printf(sf, ",nls=%s", vol->nls_map->charset);
2275 if (NVolCaseSensitive(vol))
2276 seq_printf(sf, ",case_sensitive");
2277 if (NVolShowSystemFiles(vol))
2278 seq_printf(sf, ",show_sys_files");
2279 for (i = 0; on_errors_arr[i].val; i++) {
2280 if (on_errors_arr[i].val & vol->on_errors)
2281 seq_printf(sf, ",errors=%s", on_errors_arr[i].str);
2282 }
2283 seq_printf(sf, ",mft_zone_multiplier=%i", vol->mft_zone_multiplier);
2284 return 0;
2285}
2286
2287#ifdef NTFS_RW
2288
2289/**
2290 * ntfs_truncate - called when the i_size of an ntfs inode is changed
2291 * @vi: inode for which the i_size was changed
2292 *
2293 * We do not support i_size changes yet.
2294 *
2295 * The kernel guarantees that @vi is a regular file (S_ISREG() is true) and
2296 * that the change is allowed.
2297 *
2298 * This implies for us that @vi is a file inode rather than a directory, index,
2299 * or attribute inode as well as that @vi is a base inode.
2300 *
2301 * Returns 0 on success or -errno on error.
2302 *
2303 * Called with ->i_sem held. In all but one case ->i_alloc_sem is held for
2304 * writing. The only case where ->i_alloc_sem is not held is
2305 * mm/filemap.c::generic_file_buffered_write() where vmtruncate() is called
2306 * with the current i_size as the offset which means that it is a noop as far
2307 * as ntfs_truncate() is concerned.
2308 */
2309int ntfs_truncate(struct inode *vi)
2310{
2311 ntfs_inode *ni = NTFS_I(vi);
2312 ntfs_volume *vol = ni->vol;
2313 ntfs_attr_search_ctx *ctx;
2314 MFT_RECORD *m;
2315 const char *te = " Leaving file length out of sync with i_size.";
2316 int err;
2317
2318 ntfs_debug("Entering for inode 0x%lx.", vi->i_ino);
2319 BUG_ON(NInoAttr(ni));
2320 BUG_ON(ni->nr_extents < 0);
2321 m = map_mft_record(ni);
2322 if (IS_ERR(m)) {
2323 err = PTR_ERR(m);
2324 ntfs_error(vi->i_sb, "Failed to map mft record for inode 0x%lx "
2325 "(error code %d).%s", vi->i_ino, err, te);
2326 ctx = NULL;
2327 m = NULL;
2328 goto err_out;
2329 }
2330 ctx = ntfs_attr_get_search_ctx(ni, m);
2331 if (unlikely(!ctx)) {
2332 ntfs_error(vi->i_sb, "Failed to allocate a search context for "
2333 "inode 0x%lx (not enough memory).%s",
2334 vi->i_ino, te);
2335 err = -ENOMEM;
2336 goto err_out;
2337 }
2338 err = ntfs_attr_lookup(ni->type, ni->name, ni->name_len,
2339 CASE_SENSITIVE, 0, NULL, 0, ctx);
2340 if (unlikely(err)) {
2341 if (err == -ENOENT)
2342 ntfs_error(vi->i_sb, "Open attribute is missing from "
2343 "mft record. Inode 0x%lx is corrupt. "
2344 "Run chkdsk.", vi->i_ino);
2345 else
2346 ntfs_error(vi->i_sb, "Failed to lookup attribute in "
2347 "inode 0x%lx (error code %d).",
2348 vi->i_ino, err);
2349 goto err_out;
2350 }
2351 /* If the size has not changed there is nothing to do. */
2352 if (ntfs_attr_size(ctx->attr) == i_size_read(vi))
2353 goto done;
2354 // TODO: Implement the truncate...
2355 ntfs_error(vi->i_sb, "Inode size has changed but this is not "
2356 "implemented yet. Resetting inode size to old value. "
2357 " This is most likely a bug in the ntfs driver!");
2358 i_size_write(vi, ntfs_attr_size(ctx->attr));
2359done:
2360 ntfs_attr_put_search_ctx(ctx);
2361 unmap_mft_record(ni);
2362 NInoClearTruncateFailed(ni);
2363 ntfs_debug("Done.");
2364 return 0;
2365err_out:
2366 if (err != -ENOMEM) {
2367 NVolSetErrors(vol);
2368 make_bad_inode(vi);
2369 }
2370 if (ctx)
2371 ntfs_attr_put_search_ctx(ctx);
2372 if (m)
2373 unmap_mft_record(ni);
2374 NInoSetTruncateFailed(ni);
2375 return err;
2376}
2377
2378/**
2379 * ntfs_truncate_vfs - wrapper for ntfs_truncate() that has no return value
2380 * @vi: inode for which the i_size was changed
2381 *
2382 * Wrapper for ntfs_truncate() that has no return value.
2383 *
2384 * See ntfs_truncate() description above for details.
2385 */
2386void ntfs_truncate_vfs(struct inode *vi) {
2387 ntfs_truncate(vi);
2388}
2389
2390/**
2391 * ntfs_setattr - called from notify_change() when an attribute is being changed
2392 * @dentry: dentry whose attributes to change
2393 * @attr: structure describing the attributes and the changes
2394 *
2395 * We have to trap VFS attempts to truncate the file described by @dentry as
2396 * soon as possible, because we do not implement changes in i_size yet. So we
2397 * abort all i_size changes here.
2398 *
2399 * We also abort all changes of user, group, and mode as we do not implement
2400 * the NTFS ACLs yet.
2401 *
2402 * Called with ->i_sem held. For the ATTR_SIZE (i.e. ->truncate) case, also
2403 * called with ->i_alloc_sem held for writing.
2404 *
2405 * Basically this is a copy of generic notify_change() and inode_setattr()
2406 * functionality, except we intercept and abort changes in i_size.
2407 */
2408int ntfs_setattr(struct dentry *dentry, struct iattr *attr)
2409{
2410 struct inode *vi = dentry->d_inode;
2411 int err;
2412 unsigned int ia_valid = attr->ia_valid;
2413
2414 err = inode_change_ok(vi, attr);
2415 if (err)
2416 return err;
2417
2418 /* We do not support NTFS ACLs yet. */
2419 if (ia_valid & (ATTR_UID | ATTR_GID | ATTR_MODE)) {
2420 ntfs_warning(vi->i_sb, "Changes in user/group/mode are not "
2421 "supported yet, ignoring.");
2422 err = -EOPNOTSUPP;
2423 goto out;
2424 }
2425
2426 if (ia_valid & ATTR_SIZE) {
2427 if (attr->ia_size != i_size_read(vi)) {
2428 ntfs_warning(vi->i_sb, "Changes in inode size are not "
2429 "supported yet, ignoring.");
2430 err = -EOPNOTSUPP;
2431 // TODO: Implement...
2432 // err = vmtruncate(vi, attr->ia_size);
2433 if (err || ia_valid == ATTR_SIZE)
2434 goto out;
2435 } else {
2436 /*
2437 * We skipped the truncate but must still update
2438 * timestamps.
2439 */
2440 ia_valid |= ATTR_MTIME|ATTR_CTIME;
2441 }
2442 }
2443
2444 if (ia_valid & ATTR_ATIME)
2445 vi->i_atime = attr->ia_atime;
2446 if (ia_valid & ATTR_MTIME)
2447 vi->i_mtime = attr->ia_mtime;
2448 if (ia_valid & ATTR_CTIME)
2449 vi->i_ctime = attr->ia_ctime;
2450 mark_inode_dirty(vi);
2451out:
2452 return err;
2453}
2454
2455/**
2456 * ntfs_write_inode - write out a dirty inode
2457 * @vi: inode to write out
2458 * @sync: if true, write out synchronously
2459 *
2460 * Write out a dirty inode to disk including any extent inodes if present.
2461 *
2462 * If @sync is true, commit the inode to disk and wait for io completion. This
2463 * is done using write_mft_record().
2464 *
2465 * If @sync is false, just schedule the write to happen but do not wait for i/o
2466 * completion. In 2.6 kernels, scheduling usually happens just by virtue of
2467 * marking the page (and in this case mft record) dirty but we do not implement
2468 * this yet as write_mft_record() largely ignores the @sync parameter and
2469 * always performs synchronous writes.
2470 *
2471 * Return 0 on success and -errno on error.
2472 */
2473int ntfs_write_inode(struct inode *vi, int sync)
2474{
2475 sle64 nt;
2476 ntfs_inode *ni = NTFS_I(vi);
2477 ntfs_attr_search_ctx *ctx;
2478 MFT_RECORD *m;
2479 STANDARD_INFORMATION *si;
2480 int err = 0;
2481 BOOL modified = FALSE;
2482
2483 ntfs_debug("Entering for %sinode 0x%lx.", NInoAttr(ni) ? "attr " : "",
2484 vi->i_ino);
2485 /*
2486 * Dirty attribute inodes are written via their real inodes so just
2487 * clean them here. Access time updates are taken care off when the
2488 * real inode is written.
2489 */
2490 if (NInoAttr(ni)) {
2491 NInoClearDirty(ni);
2492 ntfs_debug("Done.");
2493 return 0;
2494 }
2495 /* Map, pin, and lock the mft record belonging to the inode. */
2496 m = map_mft_record(ni);
2497 if (IS_ERR(m)) {
2498 err = PTR_ERR(m);
2499 goto err_out;
2500 }
2501 /* Update the access times in the standard information attribute. */
2502 ctx = ntfs_attr_get_search_ctx(ni, m);
2503 if (unlikely(!ctx)) {
2504 err = -ENOMEM;
2505 goto unm_err_out;
2506 }
2507 err = ntfs_attr_lookup(AT_STANDARD_INFORMATION, NULL, 0,
2508 CASE_SENSITIVE, 0, NULL, 0, ctx);
2509 if (unlikely(err)) {
2510 ntfs_attr_put_search_ctx(ctx);
2511 goto unm_err_out;
2512 }
2513 si = (STANDARD_INFORMATION*)((u8*)ctx->attr +
2514 le16_to_cpu(ctx->attr->data.resident.value_offset));
2515 /* Update the access times if they have changed. */
2516 nt = utc2ntfs(vi->i_mtime);
2517 if (si->last_data_change_time != nt) {
2518 ntfs_debug("Updating mtime for inode 0x%lx: old = 0x%llx, "
2519 "new = 0x%llx", vi->i_ino,
2520 sle64_to_cpu(si->last_data_change_time),
2521 sle64_to_cpu(nt));
2522 si->last_data_change_time = nt;
2523 modified = TRUE;
2524 }
2525 nt = utc2ntfs(vi->i_ctime);
2526 if (si->last_mft_change_time != nt) {
2527 ntfs_debug("Updating ctime for inode 0x%lx: old = 0x%llx, "
2528 "new = 0x%llx", vi->i_ino,
2529 sle64_to_cpu(si->last_mft_change_time),
2530 sle64_to_cpu(nt));
2531 si->last_mft_change_time = nt;
2532 modified = TRUE;
2533 }
2534 nt = utc2ntfs(vi->i_atime);
2535 if (si->last_access_time != nt) {
2536 ntfs_debug("Updating atime for inode 0x%lx: old = 0x%llx, "
2537 "new = 0x%llx", vi->i_ino,
2538 sle64_to_cpu(si->last_access_time),
2539 sle64_to_cpu(nt));
2540 si->last_access_time = nt;
2541 modified = TRUE;
2542 }
2543 /*
2544 * If we just modified the standard information attribute we need to
2545 * mark the mft record it is in dirty. We do this manually so that
2546 * mark_inode_dirty() is not called which would redirty the inode and
2547 * hence result in an infinite loop of trying to write the inode.
2548 * There is no need to mark the base inode nor the base mft record
2549 * dirty, since we are going to write this mft record below in any case
2550 * and the base mft record may actually not have been modified so it
2551 * might not need to be written out.
2552 * NOTE: It is not a problem when the inode for $MFT itself is being
2553 * written out as mark_ntfs_record_dirty() will only set I_DIRTY_PAGES
2554 * on the $MFT inode and hence ntfs_write_inode() will not be
2555 * re-invoked because of it which in turn is ok since the dirtied mft
2556 * record will be cleaned and written out to disk below, i.e. before
2557 * this function returns.
2558 */
2559 if (modified && !NInoTestSetDirty(ctx->ntfs_ino))
2560 mark_ntfs_record_dirty(ctx->ntfs_ino->page,
2561 ctx->ntfs_ino->page_ofs);
2562 ntfs_attr_put_search_ctx(ctx);
2563 /* Now the access times are updated, write the base mft record. */
2564 if (NInoDirty(ni))
2565 err = write_mft_record(ni, m, sync);
2566 /* Write all attached extent mft records. */
2567 down(&ni->extent_lock);
2568 if (ni->nr_extents > 0) {
2569 ntfs_inode **extent_nis = ni->ext.extent_ntfs_inos;
2570 int i;
2571
2572 ntfs_debug("Writing %i extent inodes.", ni->nr_extents);
2573 for (i = 0; i < ni->nr_extents; i++) {
2574 ntfs_inode *tni = extent_nis[i];
2575
2576 if (NInoDirty(tni)) {
2577 MFT_RECORD *tm = map_mft_record(tni);
2578 int ret;
2579
2580 if (IS_ERR(tm)) {
2581 if (!err || err == -ENOMEM)
2582 err = PTR_ERR(tm);
2583 continue;
2584 }
2585 ret = write_mft_record(tni, tm, sync);
2586 unmap_mft_record(tni);
2587 if (unlikely(ret)) {
2588 if (!err || err == -ENOMEM)
2589 err = ret;
2590 }
2591 }
2592 }
2593 }
2594 up(&ni->extent_lock);
2595 unmap_mft_record(ni);
2596 if (unlikely(err))
2597 goto err_out;
2598 ntfs_debug("Done.");
2599 return 0;
2600unm_err_out:
2601 unmap_mft_record(ni);
2602err_out:
2603 if (err == -ENOMEM) {
2604 ntfs_warning(vi->i_sb, "Not enough memory to write inode. "
2605 "Marking the inode dirty again, so the VFS "
2606 "retries later.");
2607 mark_inode_dirty(vi);
2608 } else {
2609 ntfs_error(vi->i_sb, "Failed (error code %i): Marking inode "
2610 "as bad. You should run chkdsk.", -err);
2611 make_bad_inode(vi);
2612 NVolSetErrors(ni->vol);
2613 }
2614 return err;
2615}
2616
2617#endif /* NTFS_RW */