1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * File open, close, extend, truncate
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
26 #include <linux/capability.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/highmem.h>
31 #include <linux/pagemap.h>
32 #include <linux/uio.h>
33 #include <linux/sched.h>
34 #include <linux/splice.h>
35 #include <linux/mount.h>
36 #include <linux/writeback.h>
37 #include <linux/falloc.h>
38 #include <linux/quotaops.h>
40 #define MLOG_MASK_PREFIX ML_INODE
41 #include <cluster/masklog.h>
49 #include "extent_map.h"
62 #include "refcounttree.h"
64 #include "buffer_head_io.h"
66 static int ocfs2_sync_inode(struct inode
*inode
)
68 filemap_fdatawrite(inode
->i_mapping
);
69 return sync_mapping_buffers(inode
->i_mapping
);
72 static int ocfs2_init_file_private(struct inode
*inode
, struct file
*file
)
74 struct ocfs2_file_private
*fp
;
76 fp
= kzalloc(sizeof(struct ocfs2_file_private
), GFP_KERNEL
);
81 mutex_init(&fp
->fp_mutex
);
82 ocfs2_file_lock_res_init(&fp
->fp_flock
, fp
);
83 file
->private_data
= fp
;
88 static void ocfs2_free_file_private(struct inode
*inode
, struct file
*file
)
90 struct ocfs2_file_private
*fp
= file
->private_data
;
91 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
94 ocfs2_simple_drop_lockres(osb
, &fp
->fp_flock
);
95 ocfs2_lock_res_free(&fp
->fp_flock
);
97 file
->private_data
= NULL
;
101 static int ocfs2_file_open(struct inode
*inode
, struct file
*file
)
104 int mode
= file
->f_flags
;
105 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
107 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode
, file
,
108 file
->f_path
.dentry
->d_name
.len
, file
->f_path
.dentry
->d_name
.name
);
110 if (file
->f_mode
& FMODE_WRITE
)
111 dquot_initialize(inode
);
113 spin_lock(&oi
->ip_lock
);
115 /* Check that the inode hasn't been wiped from disk by another
116 * node. If it hasn't then we're safe as long as we hold the
117 * spin lock until our increment of open count. */
118 if (OCFS2_I(inode
)->ip_flags
& OCFS2_INODE_DELETED
) {
119 spin_unlock(&oi
->ip_lock
);
126 oi
->ip_flags
|= OCFS2_INODE_OPEN_DIRECT
;
129 spin_unlock(&oi
->ip_lock
);
131 status
= ocfs2_init_file_private(inode
, file
);
134 * We want to set open count back if we're failing the
137 spin_lock(&oi
->ip_lock
);
139 spin_unlock(&oi
->ip_lock
);
147 static int ocfs2_file_release(struct inode
*inode
, struct file
*file
)
149 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
151 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode
, file
,
152 file
->f_path
.dentry
->d_name
.len
,
153 file
->f_path
.dentry
->d_name
.name
);
155 spin_lock(&oi
->ip_lock
);
156 if (!--oi
->ip_open_count
)
157 oi
->ip_flags
&= ~OCFS2_INODE_OPEN_DIRECT
;
158 spin_unlock(&oi
->ip_lock
);
160 ocfs2_free_file_private(inode
, file
);
167 static int ocfs2_dir_open(struct inode
*inode
, struct file
*file
)
169 return ocfs2_init_file_private(inode
, file
);
172 static int ocfs2_dir_release(struct inode
*inode
, struct file
*file
)
174 ocfs2_free_file_private(inode
, file
);
178 static int ocfs2_sync_file(struct file
*file
,
179 struct dentry
*dentry
,
184 struct inode
*inode
= dentry
->d_inode
;
185 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
187 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file
, dentry
, datasync
,
188 dentry
->d_name
.len
, dentry
->d_name
.name
);
190 err
= ocfs2_sync_inode(dentry
->d_inode
);
194 if (datasync
&& !(inode
->i_state
& I_DIRTY_DATASYNC
))
197 journal
= osb
->journal
->j_journal
;
198 err
= jbd2_journal_force_commit(journal
);
203 return (err
< 0) ? -EIO
: 0;
206 int ocfs2_should_update_atime(struct inode
*inode
,
207 struct vfsmount
*vfsmnt
)
210 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
212 if (ocfs2_is_hard_readonly(osb
) || ocfs2_is_soft_readonly(osb
))
215 if ((inode
->i_flags
& S_NOATIME
) ||
216 ((inode
->i_sb
->s_flags
& MS_NODIRATIME
) && S_ISDIR(inode
->i_mode
)))
220 * We can be called with no vfsmnt structure - NFSD will
223 * Note that our action here is different than touch_atime() -
224 * if we can't tell whether this is a noatime mount, then we
225 * don't know whether to trust the value of s_atime_quantum.
230 if ((vfsmnt
->mnt_flags
& MNT_NOATIME
) ||
231 ((vfsmnt
->mnt_flags
& MNT_NODIRATIME
) && S_ISDIR(inode
->i_mode
)))
234 if (vfsmnt
->mnt_flags
& MNT_RELATIME
) {
235 if ((timespec_compare(&inode
->i_atime
, &inode
->i_mtime
) <= 0) ||
236 (timespec_compare(&inode
->i_atime
, &inode
->i_ctime
) <= 0))
243 if ((now
.tv_sec
- inode
->i_atime
.tv_sec
<= osb
->s_atime_quantum
))
249 int ocfs2_update_inode_atime(struct inode
*inode
,
250 struct buffer_head
*bh
)
253 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
255 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*) bh
->b_data
;
259 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
260 if (IS_ERR(handle
)) {
261 ret
= PTR_ERR(handle
);
266 ret
= ocfs2_journal_access_di(handle
, INODE_CACHE(inode
), bh
,
267 OCFS2_JOURNAL_ACCESS_WRITE
);
274 * Don't use ocfs2_mark_inode_dirty() here as we don't always
275 * have i_mutex to guard against concurrent changes to other
278 inode
->i_atime
= CURRENT_TIME
;
279 di
->i_atime
= cpu_to_le64(inode
->i_atime
.tv_sec
);
280 di
->i_atime_nsec
= cpu_to_le32(inode
->i_atime
.tv_nsec
);
282 ret
= ocfs2_journal_dirty(handle
, bh
);
287 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
293 static int ocfs2_set_inode_size(handle_t
*handle
,
295 struct buffer_head
*fe_bh
,
301 i_size_write(inode
, new_i_size
);
302 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
303 inode
->i_ctime
= inode
->i_mtime
= CURRENT_TIME
;
305 status
= ocfs2_mark_inode_dirty(handle
, inode
, fe_bh
);
316 int ocfs2_simple_size_update(struct inode
*inode
,
317 struct buffer_head
*di_bh
,
321 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
322 handle_t
*handle
= NULL
;
324 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
325 if (IS_ERR(handle
)) {
326 ret
= PTR_ERR(handle
);
331 ret
= ocfs2_set_inode_size(handle
, inode
, di_bh
,
336 ocfs2_commit_trans(osb
, handle
);
341 static int ocfs2_cow_file_pos(struct inode
*inode
,
342 struct buffer_head
*fe_bh
,
346 u32 phys
, cpos
= offset
>> OCFS2_SB(inode
->i_sb
)->s_clustersize_bits
;
347 unsigned int num_clusters
= 0;
348 unsigned int ext_flags
= 0;
351 * If the new offset is aligned to the range of the cluster, there is
352 * no space for ocfs2_zero_range_for_truncate to fill, so no need to
355 if ((offset
& (OCFS2_SB(inode
->i_sb
)->s_clustersize
- 1)) == 0)
358 status
= ocfs2_get_clusters(inode
, cpos
, &phys
,
359 &num_clusters
, &ext_flags
);
365 if (!(ext_flags
& OCFS2_EXT_REFCOUNTED
))
368 return ocfs2_refcount_cow(inode
, fe_bh
, cpos
, 1, cpos
+1);
374 static int ocfs2_orphan_for_truncate(struct ocfs2_super
*osb
,
376 struct buffer_head
*fe_bh
,
381 struct ocfs2_dinode
*di
;
387 * We need to CoW the cluster contains the offset if it is reflinked
388 * since we will call ocfs2_zero_range_for_truncate later which will
389 * write "0" from offset to the end of the cluster.
391 status
= ocfs2_cow_file_pos(inode
, fe_bh
, new_i_size
);
397 /* TODO: This needs to actually orphan the inode in this
400 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
401 if (IS_ERR(handle
)) {
402 status
= PTR_ERR(handle
);
407 status
= ocfs2_journal_access_di(handle
, INODE_CACHE(inode
), fe_bh
,
408 OCFS2_JOURNAL_ACCESS_WRITE
);
415 * Do this before setting i_size.
417 cluster_bytes
= ocfs2_align_bytes_to_clusters(inode
->i_sb
, new_i_size
);
418 status
= ocfs2_zero_range_for_truncate(inode
, handle
, new_i_size
,
425 i_size_write(inode
, new_i_size
);
426 inode
->i_ctime
= inode
->i_mtime
= CURRENT_TIME
;
428 di
= (struct ocfs2_dinode
*) fe_bh
->b_data
;
429 di
->i_size
= cpu_to_le64(new_i_size
);
430 di
->i_ctime
= di
->i_mtime
= cpu_to_le64(inode
->i_ctime
.tv_sec
);
431 di
->i_ctime_nsec
= di
->i_mtime_nsec
= cpu_to_le32(inode
->i_ctime
.tv_nsec
);
433 status
= ocfs2_journal_dirty(handle
, fe_bh
);
438 ocfs2_commit_trans(osb
, handle
);
445 static int ocfs2_truncate_file(struct inode
*inode
,
446 struct buffer_head
*di_bh
,
450 struct ocfs2_dinode
*fe
= NULL
;
451 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
452 struct ocfs2_truncate_context
*tc
= NULL
;
454 mlog_entry("(inode = %llu, new_i_size = %llu\n",
455 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
456 (unsigned long long)new_i_size
);
458 /* We trust di_bh because it comes from ocfs2_inode_lock(), which
459 * already validated it */
460 fe
= (struct ocfs2_dinode
*) di_bh
->b_data
;
462 mlog_bug_on_msg(le64_to_cpu(fe
->i_size
) != i_size_read(inode
),
463 "Inode %llu, inode i_size = %lld != di "
464 "i_size = %llu, i_flags = 0x%x\n",
465 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
467 (unsigned long long)le64_to_cpu(fe
->i_size
),
468 le32_to_cpu(fe
->i_flags
));
470 if (new_i_size
> le64_to_cpu(fe
->i_size
)) {
471 mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
472 (unsigned long long)le64_to_cpu(fe
->i_size
),
473 (unsigned long long)new_i_size
);
479 mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
480 (unsigned long long)le64_to_cpu(fe
->i_blkno
),
481 (unsigned long long)le64_to_cpu(fe
->i_size
),
482 (unsigned long long)new_i_size
);
484 /* lets handle the simple truncate cases before doing any more
485 * cluster locking. */
486 if (new_i_size
== le64_to_cpu(fe
->i_size
))
489 down_write(&OCFS2_I(inode
)->ip_alloc_sem
);
492 * The inode lock forced other nodes to sync and drop their
493 * pages, which (correctly) happens even if we have a truncate
494 * without allocation change - ocfs2 cluster sizes can be much
495 * greater than page size, so we have to truncate them
498 unmap_mapping_range(inode
->i_mapping
, new_i_size
+ PAGE_SIZE
- 1, 0, 1);
499 truncate_inode_pages(inode
->i_mapping
, new_i_size
);
501 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
502 status
= ocfs2_truncate_inline(inode
, di_bh
, new_i_size
,
503 i_size_read(inode
), 1);
507 goto bail_unlock_sem
;
510 /* alright, we're going to need to do a full blown alloc size
511 * change. Orphan the inode so that recovery can complete the
512 * truncate if necessary. This does the task of marking
514 status
= ocfs2_orphan_for_truncate(osb
, inode
, di_bh
, new_i_size
);
517 goto bail_unlock_sem
;
520 status
= ocfs2_prepare_truncate(osb
, inode
, di_bh
, &tc
);
523 goto bail_unlock_sem
;
526 status
= ocfs2_commit_truncate(osb
, inode
, di_bh
, tc
);
529 goto bail_unlock_sem
;
532 /* TODO: orphan dir cleanup here. */
534 up_write(&OCFS2_I(inode
)->ip_alloc_sem
);
537 if (!status
&& OCFS2_I(inode
)->ip_clusters
== 0)
538 status
= ocfs2_try_remove_refcount_tree(inode
, di_bh
);
545 * extend file allocation only here.
546 * we'll update all the disk stuff, and oip->alloc_size
548 * expect stuff to be locked, a transaction started and enough data /
549 * metadata reservations in the contexts.
551 * Will return -EAGAIN, and a reason if a restart is needed.
552 * If passed in, *reason will always be set, even in error.
554 int ocfs2_add_inode_data(struct ocfs2_super
*osb
,
559 struct buffer_head
*fe_bh
,
561 struct ocfs2_alloc_context
*data_ac
,
562 struct ocfs2_alloc_context
*meta_ac
,
563 enum ocfs2_alloc_restarted
*reason_ret
)
566 struct ocfs2_extent_tree et
;
568 ocfs2_init_dinode_extent_tree(&et
, INODE_CACHE(inode
), fe_bh
);
569 ret
= ocfs2_add_clusters_in_btree(handle
, &et
, logical_offset
,
570 clusters_to_add
, mark_unwritten
,
571 data_ac
, meta_ac
, reason_ret
);
576 static int __ocfs2_extend_allocation(struct inode
*inode
, u32 logical_start
,
577 u32 clusters_to_add
, int mark_unwritten
)
580 int restart_func
= 0;
583 struct buffer_head
*bh
= NULL
;
584 struct ocfs2_dinode
*fe
= NULL
;
585 handle_t
*handle
= NULL
;
586 struct ocfs2_alloc_context
*data_ac
= NULL
;
587 struct ocfs2_alloc_context
*meta_ac
= NULL
;
588 enum ocfs2_alloc_restarted why
;
589 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
590 struct ocfs2_extent_tree et
;
593 mlog_entry("(clusters_to_add = %u)\n", clusters_to_add
);
596 * This function only exists for file systems which don't
599 BUG_ON(mark_unwritten
&& !ocfs2_sparse_alloc(osb
));
601 status
= ocfs2_read_inode_block(inode
, &bh
);
606 fe
= (struct ocfs2_dinode
*) bh
->b_data
;
609 BUG_ON(le32_to_cpu(fe
->i_clusters
) != OCFS2_I(inode
)->ip_clusters
);
611 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
612 "clusters_to_add = %u\n",
613 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
614 (long long)i_size_read(inode
), le32_to_cpu(fe
->i_clusters
),
616 ocfs2_init_dinode_extent_tree(&et
, INODE_CACHE(inode
), bh
);
617 status
= ocfs2_lock_allocators(inode
, &et
, clusters_to_add
, 0,
624 credits
= ocfs2_calc_extend_credits(osb
->sb
, &fe
->id2
.i_list
,
626 handle
= ocfs2_start_trans(osb
, credits
);
627 if (IS_ERR(handle
)) {
628 status
= PTR_ERR(handle
);
634 restarted_transaction
:
635 status
= dquot_alloc_space_nodirty(inode
,
636 ocfs2_clusters_to_bytes(osb
->sb
, clusters_to_add
));
641 /* reserve a write to the file entry early on - that we if we
642 * run out of credits in the allocation path, we can still
644 status
= ocfs2_journal_access_di(handle
, INODE_CACHE(inode
), bh
,
645 OCFS2_JOURNAL_ACCESS_WRITE
);
651 prev_clusters
= OCFS2_I(inode
)->ip_clusters
;
653 status
= ocfs2_add_inode_data(osb
,
663 if ((status
< 0) && (status
!= -EAGAIN
)) {
664 if (status
!= -ENOSPC
)
669 status
= ocfs2_journal_dirty(handle
, bh
);
675 spin_lock(&OCFS2_I(inode
)->ip_lock
);
676 clusters_to_add
-= (OCFS2_I(inode
)->ip_clusters
- prev_clusters
);
677 spin_unlock(&OCFS2_I(inode
)->ip_lock
);
678 /* Release unused quota reservation */
679 dquot_free_space(inode
,
680 ocfs2_clusters_to_bytes(osb
->sb
, clusters_to_add
));
683 if (why
!= RESTART_NONE
&& clusters_to_add
) {
684 if (why
== RESTART_META
) {
685 mlog(0, "restarting function.\n");
689 BUG_ON(why
!= RESTART_TRANS
);
691 mlog(0, "restarting transaction.\n");
692 /* TODO: This can be more intelligent. */
693 credits
= ocfs2_calc_extend_credits(osb
->sb
,
696 status
= ocfs2_extend_trans(handle
, credits
);
698 /* handle still has to be committed at
704 goto restarted_transaction
;
708 mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
709 le32_to_cpu(fe
->i_clusters
),
710 (unsigned long long)le64_to_cpu(fe
->i_size
));
711 mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
712 OCFS2_I(inode
)->ip_clusters
, (long long)i_size_read(inode
));
715 if (status
< 0 && did_quota
)
716 dquot_free_space(inode
,
717 ocfs2_clusters_to_bytes(osb
->sb
, clusters_to_add
));
719 ocfs2_commit_trans(osb
, handle
);
723 ocfs2_free_alloc_context(data_ac
);
727 ocfs2_free_alloc_context(meta_ac
);
730 if ((!status
) && restart_func
) {
741 /* Some parts of this taken from generic_cont_expand, which turned out
742 * to be too fragile to do exactly what we need without us having to
743 * worry about recursive locking in ->write_begin() and ->write_end(). */
744 static int ocfs2_write_zero_page(struct inode
*inode
,
747 struct address_space
*mapping
= inode
->i_mapping
;
751 handle_t
*handle
= NULL
;
754 offset
= (size
& (PAGE_CACHE_SIZE
-1)); /* Within page */
755 /* ugh. in prepare/commit_write, if from==to==start of block, we
756 ** skip the prepare. make sure we never send an offset for the start
759 if ((offset
& (inode
->i_sb
->s_blocksize
- 1)) == 0) {
762 index
= size
>> PAGE_CACHE_SHIFT
;
764 page
= grab_cache_page(mapping
, index
);
771 ret
= ocfs2_prepare_write_nolock(inode
, page
, offset
, offset
);
777 if (ocfs2_should_order_data(inode
)) {
778 handle
= ocfs2_start_walk_page_trans(inode
, page
, offset
,
780 if (IS_ERR(handle
)) {
781 ret
= PTR_ERR(handle
);
787 /* must not update i_size! */
788 ret
= block_commit_write(page
, offset
, offset
);
795 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
798 page_cache_release(page
);
803 static int ocfs2_zero_extend(struct inode
*inode
,
808 struct super_block
*sb
= inode
->i_sb
;
810 start_off
= ocfs2_align_bytes_to_blocks(sb
, i_size_read(inode
));
811 while (start_off
< zero_to_size
) {
812 ret
= ocfs2_write_zero_page(inode
, start_off
);
818 start_off
+= sb
->s_blocksize
;
821 * Very large extends have the potential to lock up
822 * the cpu for extended periods of time.
831 int ocfs2_extend_no_holes(struct inode
*inode
, u64 new_i_size
, u64 zero_to
)
835 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
837 clusters_to_add
= ocfs2_clusters_for_bytes(inode
->i_sb
, new_i_size
);
838 if (clusters_to_add
< oi
->ip_clusters
)
841 clusters_to_add
-= oi
->ip_clusters
;
843 if (clusters_to_add
) {
844 ret
= __ocfs2_extend_allocation(inode
, oi
->ip_clusters
,
853 * Call this even if we don't add any clusters to the tree. We
854 * still need to zero the area between the old i_size and the
857 ret
= ocfs2_zero_extend(inode
, zero_to
);
865 static int ocfs2_extend_file(struct inode
*inode
,
866 struct buffer_head
*di_bh
,
870 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
874 /* setattr sometimes calls us like this. */
878 if (i_size_read(inode
) == new_i_size
)
880 BUG_ON(new_i_size
< i_size_read(inode
));
883 * Fall through for converting inline data, even if the fs
884 * supports sparse files.
886 * The check for inline data here is legal - nobody can add
887 * the feature since we have i_mutex. We must check it again
888 * after acquiring ip_alloc_sem though, as paths like mmap
889 * might have raced us to converting the inode to extents.
891 if (!(oi
->ip_dyn_features
& OCFS2_INLINE_DATA_FL
)
892 && ocfs2_sparse_alloc(OCFS2_SB(inode
->i_sb
)))
893 goto out_update_size
;
896 * The alloc sem blocks people in read/write from reading our
897 * allocation until we're done changing it. We depend on
898 * i_mutex to block other extend/truncate calls while we're
901 down_write(&oi
->ip_alloc_sem
);
903 if (oi
->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
905 * We can optimize small extends by keeping the inodes
908 if (ocfs2_size_fits_inline_data(di_bh
, new_i_size
)) {
909 up_write(&oi
->ip_alloc_sem
);
910 goto out_update_size
;
913 ret
= ocfs2_convert_inline_data_to_extents(inode
, di_bh
);
915 up_write(&oi
->ip_alloc_sem
);
922 if (!ocfs2_sparse_alloc(OCFS2_SB(inode
->i_sb
)))
923 ret
= ocfs2_extend_no_holes(inode
, new_i_size
, new_i_size
);
925 up_write(&oi
->ip_alloc_sem
);
933 ret
= ocfs2_simple_size_update(inode
, di_bh
, new_i_size
);
941 int ocfs2_setattr(struct dentry
*dentry
, struct iattr
*attr
)
943 int status
= 0, size_change
;
944 struct inode
*inode
= dentry
->d_inode
;
945 struct super_block
*sb
= inode
->i_sb
;
946 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
947 struct buffer_head
*bh
= NULL
;
948 handle_t
*handle
= NULL
;
950 struct dquot
*transfer_from
[MAXQUOTAS
] = { };
951 struct dquot
*transfer_to
[MAXQUOTAS
] = { };
953 mlog_entry("(0x%p, '%.*s')\n", dentry
,
954 dentry
->d_name
.len
, dentry
->d_name
.name
);
956 /* ensuring we don't even attempt to truncate a symlink */
957 if (S_ISLNK(inode
->i_mode
))
958 attr
->ia_valid
&= ~ATTR_SIZE
;
960 if (attr
->ia_valid
& ATTR_MODE
)
961 mlog(0, "mode change: %d\n", attr
->ia_mode
);
962 if (attr
->ia_valid
& ATTR_UID
)
963 mlog(0, "uid change: %d\n", attr
->ia_uid
);
964 if (attr
->ia_valid
& ATTR_GID
)
965 mlog(0, "gid change: %d\n", attr
->ia_gid
);
966 if (attr
->ia_valid
& ATTR_SIZE
)
967 mlog(0, "size change...\n");
968 if (attr
->ia_valid
& (ATTR_ATIME
| ATTR_MTIME
| ATTR_CTIME
))
969 mlog(0, "time change...\n");
971 #define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
972 | ATTR_GID | ATTR_UID | ATTR_MODE)
973 if (!(attr
->ia_valid
& OCFS2_VALID_ATTRS
)) {
974 mlog(0, "can't handle attrs: 0x%x\n", attr
->ia_valid
);
978 status
= inode_change_ok(inode
, attr
);
982 size_change
= S_ISREG(inode
->i_mode
) && attr
->ia_valid
& ATTR_SIZE
;
984 dquot_initialize(inode
);
986 status
= ocfs2_rw_lock(inode
, 1);
993 status
= ocfs2_inode_lock(inode
, &bh
, 1);
995 if (status
!= -ENOENT
)
1000 if (size_change
&& attr
->ia_size
!= i_size_read(inode
)) {
1001 status
= inode_newsize_ok(inode
, attr
->ia_size
);
1005 if (i_size_read(inode
) > attr
->ia_size
) {
1006 if (ocfs2_should_order_data(inode
)) {
1007 status
= ocfs2_begin_ordered_truncate(inode
,
1012 status
= ocfs2_truncate_file(inode
, bh
, attr
->ia_size
);
1014 status
= ocfs2_extend_file(inode
, bh
, attr
->ia_size
);
1016 if (status
!= -ENOSPC
)
1023 if ((attr
->ia_valid
& ATTR_UID
&& attr
->ia_uid
!= inode
->i_uid
) ||
1024 (attr
->ia_valid
& ATTR_GID
&& attr
->ia_gid
!= inode
->i_gid
)) {
1026 * Gather pointers to quota structures so that allocation /
1027 * freeing of quota structures happens here and not inside
1028 * dquot_transfer() where we have problems with lock ordering
1030 if (attr
->ia_valid
& ATTR_UID
&& attr
->ia_uid
!= inode
->i_uid
1031 && OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1032 OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)) {
1033 transfer_to
[USRQUOTA
] = dqget(sb
, attr
->ia_uid
,
1035 transfer_from
[USRQUOTA
] = dqget(sb
, inode
->i_uid
,
1037 if (!transfer_to
[USRQUOTA
] || !transfer_from
[USRQUOTA
]) {
1042 if (attr
->ia_valid
& ATTR_GID
&& attr
->ia_gid
!= inode
->i_gid
1043 && OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1044 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)) {
1045 transfer_to
[GRPQUOTA
] = dqget(sb
, attr
->ia_gid
,
1047 transfer_from
[GRPQUOTA
] = dqget(sb
, inode
->i_gid
,
1049 if (!transfer_to
[GRPQUOTA
] || !transfer_from
[GRPQUOTA
]) {
1054 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
+
1055 2 * ocfs2_quota_trans_credits(sb
));
1056 if (IS_ERR(handle
)) {
1057 status
= PTR_ERR(handle
);
1061 status
= dquot_transfer(inode
, attr
);
1065 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
1066 if (IS_ERR(handle
)) {
1067 status
= PTR_ERR(handle
);
1074 * This will intentionally not wind up calling vmtruncate(),
1075 * since all the work for a size change has been done above.
1076 * Otherwise, we could get into problems with truncate as
1077 * ip_alloc_sem is used there to protect against i_size
1080 status
= inode_setattr(inode
, attr
);
1086 status
= ocfs2_mark_inode_dirty(handle
, inode
, bh
);
1091 ocfs2_commit_trans(osb
, handle
);
1093 ocfs2_inode_unlock(inode
, 1);
1096 ocfs2_rw_unlock(inode
, 1);
1100 /* Release quota pointers in case we acquired them */
1101 for (qtype
= 0; qtype
< MAXQUOTAS
; qtype
++) {
1102 dqput(transfer_to
[qtype
]);
1103 dqput(transfer_from
[qtype
]);
1106 if (!status
&& attr
->ia_valid
& ATTR_MODE
) {
1107 status
= ocfs2_acl_chmod(inode
);
1116 int ocfs2_getattr(struct vfsmount
*mnt
,
1117 struct dentry
*dentry
,
1120 struct inode
*inode
= dentry
->d_inode
;
1121 struct super_block
*sb
= dentry
->d_inode
->i_sb
;
1122 struct ocfs2_super
*osb
= sb
->s_fs_info
;
1127 err
= ocfs2_inode_revalidate(dentry
);
1134 generic_fillattr(inode
, stat
);
1136 /* We set the blksize from the cluster size for performance */
1137 stat
->blksize
= osb
->s_clustersize
;
1145 int ocfs2_permission(struct inode
*inode
, int mask
)
1151 ret
= ocfs2_inode_lock(inode
, NULL
, 0);
1158 ret
= generic_permission(inode
, mask
, ocfs2_check_acl
);
1160 ocfs2_inode_unlock(inode
, 0);
1166 static int __ocfs2_write_remove_suid(struct inode
*inode
,
1167 struct buffer_head
*bh
)
1171 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1172 struct ocfs2_dinode
*di
;
1174 mlog_entry("(Inode %llu, mode 0%o)\n",
1175 (unsigned long long)OCFS2_I(inode
)->ip_blkno
, inode
->i_mode
);
1177 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
1178 if (IS_ERR(handle
)) {
1179 ret
= PTR_ERR(handle
);
1184 ret
= ocfs2_journal_access_di(handle
, INODE_CACHE(inode
), bh
,
1185 OCFS2_JOURNAL_ACCESS_WRITE
);
1191 inode
->i_mode
&= ~S_ISUID
;
1192 if ((inode
->i_mode
& S_ISGID
) && (inode
->i_mode
& S_IXGRP
))
1193 inode
->i_mode
&= ~S_ISGID
;
1195 di
= (struct ocfs2_dinode
*) bh
->b_data
;
1196 di
->i_mode
= cpu_to_le16(inode
->i_mode
);
1198 ret
= ocfs2_journal_dirty(handle
, bh
);
1203 ocfs2_commit_trans(osb
, handle
);
1210 * Will look for holes and unwritten extents in the range starting at
1211 * pos for count bytes (inclusive).
1213 static int ocfs2_check_range_for_holes(struct inode
*inode
, loff_t pos
,
1217 unsigned int extent_flags
;
1218 u32 cpos
, clusters
, extent_len
, phys_cpos
;
1219 struct super_block
*sb
= inode
->i_sb
;
1221 cpos
= pos
>> OCFS2_SB(sb
)->s_clustersize_bits
;
1222 clusters
= ocfs2_clusters_for_bytes(sb
, pos
+ count
) - cpos
;
1225 ret
= ocfs2_get_clusters(inode
, cpos
, &phys_cpos
, &extent_len
,
1232 if (phys_cpos
== 0 || (extent_flags
& OCFS2_EXT_UNWRITTEN
)) {
1237 if (extent_len
> clusters
)
1238 extent_len
= clusters
;
1240 clusters
-= extent_len
;
1247 static int ocfs2_write_remove_suid(struct inode
*inode
)
1250 struct buffer_head
*bh
= NULL
;
1252 ret
= ocfs2_read_inode_block(inode
, &bh
);
1258 ret
= __ocfs2_write_remove_suid(inode
, bh
);
1265 * Allocate enough extents to cover the region starting at byte offset
1266 * start for len bytes. Existing extents are skipped, any extents
1267 * added are marked as "unwritten".
1269 static int ocfs2_allocate_unwritten_extents(struct inode
*inode
,
1273 u32 cpos
, phys_cpos
, clusters
, alloc_size
;
1274 u64 end
= start
+ len
;
1275 struct buffer_head
*di_bh
= NULL
;
1277 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
1278 ret
= ocfs2_read_inode_block(inode
, &di_bh
);
1285 * Nothing to do if the requested reservation range
1286 * fits within the inode.
1288 if (ocfs2_size_fits_inline_data(di_bh
, end
))
1291 ret
= ocfs2_convert_inline_data_to_extents(inode
, di_bh
);
1299 * We consider both start and len to be inclusive.
1301 cpos
= start
>> OCFS2_SB(inode
->i_sb
)->s_clustersize_bits
;
1302 clusters
= ocfs2_clusters_for_bytes(inode
->i_sb
, start
+ len
);
1306 ret
= ocfs2_get_clusters(inode
, cpos
, &phys_cpos
,
1314 * Hole or existing extent len can be arbitrary, so
1315 * cap it to our own allocation request.
1317 if (alloc_size
> clusters
)
1318 alloc_size
= clusters
;
1322 * We already have an allocation at this
1323 * region so we can safely skip it.
1328 ret
= __ocfs2_extend_allocation(inode
, cpos
, alloc_size
, 1);
1337 clusters
-= alloc_size
;
1348 * Truncate a byte range, avoiding pages within partial clusters. This
1349 * preserves those pages for the zeroing code to write to.
1351 static void ocfs2_truncate_cluster_pages(struct inode
*inode
, u64 byte_start
,
1354 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1356 struct address_space
*mapping
= inode
->i_mapping
;
1358 start
= (loff_t
)ocfs2_align_bytes_to_clusters(inode
->i_sb
, byte_start
);
1359 end
= byte_start
+ byte_len
;
1360 end
= end
& ~(osb
->s_clustersize
- 1);
1363 unmap_mapping_range(mapping
, start
, end
- start
, 0);
1364 truncate_inode_pages_range(mapping
, start
, end
- 1);
1368 static int ocfs2_zero_partial_clusters(struct inode
*inode
,
1372 u64 tmpend
, end
= start
+ len
;
1373 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1374 unsigned int csize
= osb
->s_clustersize
;
1378 * The "start" and "end" values are NOT necessarily part of
1379 * the range whose allocation is being deleted. Rather, this
1380 * is what the user passed in with the request. We must zero
1381 * partial clusters here. There's no need to worry about
1382 * physical allocation - the zeroing code knows to skip holes.
1384 mlog(0, "byte start: %llu, end: %llu\n",
1385 (unsigned long long)start
, (unsigned long long)end
);
1388 * If both edges are on a cluster boundary then there's no
1389 * zeroing required as the region is part of the allocation to
1392 if ((start
& (csize
- 1)) == 0 && (end
& (csize
- 1)) == 0)
1395 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
1396 if (IS_ERR(handle
)) {
1397 ret
= PTR_ERR(handle
);
1403 * We want to get the byte offset of the end of the 1st cluster.
1405 tmpend
= (u64
)osb
->s_clustersize
+ (start
& ~(osb
->s_clustersize
- 1));
1409 mlog(0, "1st range: start: %llu, tmpend: %llu\n",
1410 (unsigned long long)start
, (unsigned long long)tmpend
);
1412 ret
= ocfs2_zero_range_for_truncate(inode
, handle
, start
, tmpend
);
1418 * This may make start and end equal, but the zeroing
1419 * code will skip any work in that case so there's no
1420 * need to catch it up here.
1422 start
= end
& ~(osb
->s_clustersize
- 1);
1424 mlog(0, "2nd range: start: %llu, end: %llu\n",
1425 (unsigned long long)start
, (unsigned long long)end
);
1427 ret
= ocfs2_zero_range_for_truncate(inode
, handle
, start
, end
);
1432 ocfs2_commit_trans(osb
, handle
);
1437 static int ocfs2_remove_inode_range(struct inode
*inode
,
1438 struct buffer_head
*di_bh
, u64 byte_start
,
1442 u32 trunc_start
, trunc_len
, cpos
, phys_cpos
, alloc_size
;
1443 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1444 struct ocfs2_cached_dealloc_ctxt dealloc
;
1445 struct address_space
*mapping
= inode
->i_mapping
;
1446 struct ocfs2_extent_tree et
;
1448 ocfs2_init_dinode_extent_tree(&et
, INODE_CACHE(inode
), di_bh
);
1449 ocfs2_init_dealloc_ctxt(&dealloc
);
1454 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
1455 ret
= ocfs2_truncate_inline(inode
, di_bh
, byte_start
,
1456 byte_start
+ byte_len
, 0);
1462 * There's no need to get fancy with the page cache
1463 * truncate of an inline-data inode. We're talking
1464 * about less than a page here, which will be cached
1465 * in the dinode buffer anyway.
1467 unmap_mapping_range(mapping
, 0, 0, 0);
1468 truncate_inode_pages(mapping
, 0);
1472 trunc_start
= ocfs2_clusters_for_bytes(osb
->sb
, byte_start
);
1473 trunc_len
= (byte_start
+ byte_len
) >> osb
->s_clustersize_bits
;
1474 if (trunc_len
>= trunc_start
)
1475 trunc_len
-= trunc_start
;
1479 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u\n",
1480 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
1481 (unsigned long long)byte_start
,
1482 (unsigned long long)byte_len
, trunc_start
, trunc_len
);
1484 ret
= ocfs2_zero_partial_clusters(inode
, byte_start
, byte_len
);
1492 ret
= ocfs2_get_clusters(inode
, cpos
, &phys_cpos
,
1499 if (alloc_size
> trunc_len
)
1500 alloc_size
= trunc_len
;
1502 /* Only do work for non-holes */
1503 if (phys_cpos
!= 0) {
1504 ret
= ocfs2_remove_btree_range(inode
, &et
, cpos
,
1505 phys_cpos
, alloc_size
,
1514 trunc_len
-= alloc_size
;
1517 ocfs2_truncate_cluster_pages(inode
, byte_start
, byte_len
);
1520 ocfs2_schedule_truncate_log_flush(osb
, 1);
1521 ocfs2_run_deallocs(osb
, &dealloc
);
1527 * Parts of this function taken from xfs_change_file_space()
1529 static int __ocfs2_change_file_space(struct file
*file
, struct inode
*inode
,
1530 loff_t f_pos
, unsigned int cmd
,
1531 struct ocfs2_space_resv
*sr
,
1537 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1538 struct buffer_head
*di_bh
= NULL
;
1540 unsigned long long max_off
= inode
->i_sb
->s_maxbytes
;
1542 if (ocfs2_is_hard_readonly(osb
) || ocfs2_is_soft_readonly(osb
))
1545 mutex_lock(&inode
->i_mutex
);
1548 * This prevents concurrent writes on other nodes
1550 ret
= ocfs2_rw_lock(inode
, 1);
1556 ret
= ocfs2_inode_lock(inode
, &di_bh
, 1);
1562 if (inode
->i_flags
& (S_IMMUTABLE
|S_APPEND
)) {
1564 goto out_inode_unlock
;
1567 switch (sr
->l_whence
) {
1568 case 0: /*SEEK_SET*/
1570 case 1: /*SEEK_CUR*/
1571 sr
->l_start
+= f_pos
;
1573 case 2: /*SEEK_END*/
1574 sr
->l_start
+= i_size_read(inode
);
1578 goto out_inode_unlock
;
1582 llen
= sr
->l_len
> 0 ? sr
->l_len
- 1 : sr
->l_len
;
1585 || sr
->l_start
> max_off
1586 || (sr
->l_start
+ llen
) < 0
1587 || (sr
->l_start
+ llen
) > max_off
) {
1589 goto out_inode_unlock
;
1591 size
= sr
->l_start
+ sr
->l_len
;
1593 if (cmd
== OCFS2_IOC_RESVSP
|| cmd
== OCFS2_IOC_RESVSP64
) {
1594 if (sr
->l_len
<= 0) {
1596 goto out_inode_unlock
;
1600 if (file
&& should_remove_suid(file
->f_path
.dentry
)) {
1601 ret
= __ocfs2_write_remove_suid(inode
, di_bh
);
1604 goto out_inode_unlock
;
1608 down_write(&OCFS2_I(inode
)->ip_alloc_sem
);
1610 case OCFS2_IOC_RESVSP
:
1611 case OCFS2_IOC_RESVSP64
:
1613 * This takes unsigned offsets, but the signed ones we
1614 * pass have been checked against overflow above.
1616 ret
= ocfs2_allocate_unwritten_extents(inode
, sr
->l_start
,
1619 case OCFS2_IOC_UNRESVSP
:
1620 case OCFS2_IOC_UNRESVSP64
:
1621 ret
= ocfs2_remove_inode_range(inode
, di_bh
, sr
->l_start
,
1627 up_write(&OCFS2_I(inode
)->ip_alloc_sem
);
1630 goto out_inode_unlock
;
1634 * We update c/mtime for these changes
1636 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
1637 if (IS_ERR(handle
)) {
1638 ret
= PTR_ERR(handle
);
1640 goto out_inode_unlock
;
1643 if (change_size
&& i_size_read(inode
) < size
)
1644 i_size_write(inode
, size
);
1646 inode
->i_ctime
= inode
->i_mtime
= CURRENT_TIME
;
1647 ret
= ocfs2_mark_inode_dirty(handle
, inode
, di_bh
);
1651 ocfs2_commit_trans(osb
, handle
);
1655 ocfs2_inode_unlock(inode
, 1);
1657 ocfs2_rw_unlock(inode
, 1);
1660 mutex_unlock(&inode
->i_mutex
);
1664 int ocfs2_change_file_space(struct file
*file
, unsigned int cmd
,
1665 struct ocfs2_space_resv
*sr
)
1667 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1668 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1670 if ((cmd
== OCFS2_IOC_RESVSP
|| cmd
== OCFS2_IOC_RESVSP64
) &&
1671 !ocfs2_writes_unwritten_extents(osb
))
1673 else if ((cmd
== OCFS2_IOC_UNRESVSP
|| cmd
== OCFS2_IOC_UNRESVSP64
) &&
1674 !ocfs2_sparse_alloc(osb
))
1677 if (!S_ISREG(inode
->i_mode
))
1680 if (!(file
->f_mode
& FMODE_WRITE
))
1683 return __ocfs2_change_file_space(file
, inode
, file
->f_pos
, cmd
, sr
, 0);
1686 static long ocfs2_fallocate(struct inode
*inode
, int mode
, loff_t offset
,
1689 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1690 struct ocfs2_space_resv sr
;
1691 int change_size
= 1;
1693 if (!ocfs2_writes_unwritten_extents(osb
))
1696 if (S_ISDIR(inode
->i_mode
))
1699 if (mode
& FALLOC_FL_KEEP_SIZE
)
1703 sr
.l_start
= (s64
)offset
;
1704 sr
.l_len
= (s64
)len
;
1706 return __ocfs2_change_file_space(NULL
, inode
, offset
,
1707 OCFS2_IOC_RESVSP64
, &sr
, change_size
);
1710 int ocfs2_check_range_for_refcount(struct inode
*inode
, loff_t pos
,
1714 unsigned int extent_flags
;
1715 u32 cpos
, clusters
, extent_len
, phys_cpos
;
1716 struct super_block
*sb
= inode
->i_sb
;
1718 if (!ocfs2_refcount_tree(OCFS2_SB(inode
->i_sb
)) ||
1719 !(OCFS2_I(inode
)->ip_dyn_features
& OCFS2_HAS_REFCOUNT_FL
) ||
1720 OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
)
1723 cpos
= pos
>> OCFS2_SB(sb
)->s_clustersize_bits
;
1724 clusters
= ocfs2_clusters_for_bytes(sb
, pos
+ count
) - cpos
;
1727 ret
= ocfs2_get_clusters(inode
, cpos
, &phys_cpos
, &extent_len
,
1734 if (phys_cpos
&& (extent_flags
& OCFS2_EXT_REFCOUNTED
)) {
1739 if (extent_len
> clusters
)
1740 extent_len
= clusters
;
1742 clusters
-= extent_len
;
1749 static int ocfs2_prepare_inode_for_refcount(struct inode
*inode
,
1750 loff_t pos
, size_t count
,
1754 struct buffer_head
*di_bh
= NULL
;
1755 u32 cpos
= pos
>> OCFS2_SB(inode
->i_sb
)->s_clustersize_bits
;
1757 ocfs2_clusters_for_bytes(inode
->i_sb
, pos
+ count
) - cpos
;
1759 ret
= ocfs2_inode_lock(inode
, &di_bh
, 1);
1767 ret
= ocfs2_refcount_cow(inode
, di_bh
, cpos
, clusters
, UINT_MAX
);
1775 static int ocfs2_prepare_inode_for_write(struct dentry
*dentry
,
1782 int ret
= 0, meta_level
= 0;
1783 struct inode
*inode
= dentry
->d_inode
;
1784 loff_t saved_pos
, end
;
1787 * We start with a read level meta lock and only jump to an ex
1788 * if we need to make modifications here.
1791 ret
= ocfs2_inode_lock(inode
, NULL
, meta_level
);
1798 /* Clear suid / sgid if necessary. We do this here
1799 * instead of later in the write path because
1800 * remove_suid() calls ->setattr without any hint that
1801 * we may have already done our cluster locking. Since
1802 * ocfs2_setattr() *must* take cluster locks to
1803 * proceeed, this will lead us to recursively lock the
1804 * inode. There's also the dinode i_size state which
1805 * can be lost via setattr during extending writes (we
1806 * set inode->i_size at the end of a write. */
1807 if (should_remove_suid(dentry
)) {
1808 if (meta_level
== 0) {
1809 ocfs2_inode_unlock(inode
, meta_level
);
1814 ret
= ocfs2_write_remove_suid(inode
);
1821 /* work on a copy of ppos until we're sure that we won't have
1822 * to recalculate it due to relocking. */
1824 saved_pos
= i_size_read(inode
);
1825 mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos
);
1830 end
= saved_pos
+ count
;
1832 ret
= ocfs2_check_range_for_refcount(inode
, saved_pos
, count
);
1834 ocfs2_inode_unlock(inode
, meta_level
);
1837 ret
= ocfs2_prepare_inode_for_refcount(inode
,
1853 * Skip the O_DIRECT checks if we don't need
1856 if (!direct_io
|| !(*direct_io
))
1860 * There's no sane way to do direct writes to an inode
1863 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
1869 * Allowing concurrent direct writes means
1870 * i_size changes wouldn't be synchronized, so
1871 * one node could wind up truncating another
1874 if (end
> i_size_read(inode
)) {
1880 * We don't fill holes during direct io, so
1881 * check for them here. If any are found, the
1882 * caller will have to retake some cluster
1883 * locks and initiate the io as buffered.
1885 ret
= ocfs2_check_range_for_holes(inode
, saved_pos
, count
);
1898 if (meta_level
>= 0)
1899 ocfs2_inode_unlock(inode
, meta_level
);
1905 static ssize_t
ocfs2_file_aio_write(struct kiocb
*iocb
,
1906 const struct iovec
*iov
,
1907 unsigned long nr_segs
,
1910 int ret
, direct_io
, appending
, rw_level
, have_alloc_sem
= 0;
1911 int can_do_direct
, has_refcount
= 0;
1912 ssize_t written
= 0;
1913 size_t ocount
; /* original count */
1914 size_t count
; /* after file limit checks */
1915 loff_t old_size
, *ppos
= &iocb
->ki_pos
;
1917 struct file
*file
= iocb
->ki_filp
;
1918 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1919 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1921 mlog_entry("(0x%p, %u, '%.*s')\n", file
,
1922 (unsigned int)nr_segs
,
1923 file
->f_path
.dentry
->d_name
.len
,
1924 file
->f_path
.dentry
->d_name
.name
);
1926 if (iocb
->ki_left
== 0)
1929 vfs_check_frozen(inode
->i_sb
, SB_FREEZE_WRITE
);
1931 appending
= file
->f_flags
& O_APPEND
? 1 : 0;
1932 direct_io
= file
->f_flags
& O_DIRECT
? 1 : 0;
1934 mutex_lock(&inode
->i_mutex
);
1937 /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
1939 down_read(&inode
->i_alloc_sem
);
1943 /* concurrent O_DIRECT writes are allowed */
1944 rw_level
= !direct_io
;
1945 ret
= ocfs2_rw_lock(inode
, rw_level
);
1951 can_do_direct
= direct_io
;
1952 ret
= ocfs2_prepare_inode_for_write(file
->f_path
.dentry
, ppos
,
1953 iocb
->ki_left
, appending
,
1954 &can_do_direct
, &has_refcount
);
1961 * We can't complete the direct I/O as requested, fall back to
1964 if (direct_io
&& !can_do_direct
) {
1965 ocfs2_rw_unlock(inode
, rw_level
);
1966 up_read(&inode
->i_alloc_sem
);
1976 * To later detect whether a journal commit for sync writes is
1977 * necessary, we sample i_size, and cluster count here.
1979 old_size
= i_size_read(inode
);
1980 old_clusters
= OCFS2_I(inode
)->ip_clusters
;
1982 /* communicate with ocfs2_dio_end_io */
1983 ocfs2_iocb_set_rw_locked(iocb
, rw_level
);
1985 ret
= generic_segment_checks(iov
, &nr_segs
, &ocount
,
1991 ret
= generic_write_checks(file
, ppos
, &count
,
1992 S_ISBLK(inode
->i_mode
));
1997 written
= generic_file_direct_write(iocb
, iov
, &nr_segs
, *ppos
,
1998 ppos
, count
, ocount
);
2001 * direct write may have instantiated a few
2002 * blocks outside i_size. Trim these off again.
2003 * Don't need i_size_read because we hold i_mutex.
2005 if (*ppos
+ count
> inode
->i_size
)
2006 vmtruncate(inode
, inode
->i_size
);
2011 current
->backing_dev_info
= file
->f_mapping
->backing_dev_info
;
2012 written
= generic_file_buffered_write(iocb
, iov
, nr_segs
, *ppos
,
2014 current
->backing_dev_info
= NULL
;
2018 /* buffered aio wouldn't have proper lock coverage today */
2019 BUG_ON(ret
== -EIOCBQUEUED
&& !(file
->f_flags
& O_DIRECT
));
2021 if (((file
->f_flags
& O_DSYNC
) && !direct_io
) || IS_SYNC(inode
) ||
2022 ((file
->f_flags
& O_DIRECT
) && has_refcount
)) {
2023 ret
= filemap_fdatawrite_range(file
->f_mapping
, pos
,
2028 if (!ret
&& ((old_size
!= i_size_read(inode
)) ||
2029 (old_clusters
!= OCFS2_I(inode
)->ip_clusters
) ||
2031 ret
= jbd2_journal_force_commit(osb
->journal
->j_journal
);
2037 ret
= filemap_fdatawait_range(file
->f_mapping
, pos
,
2042 * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
2043 * function pointer which is called when o_direct io completes so that
2044 * it can unlock our rw lock. (it's the clustered equivalent of
2045 * i_alloc_sem; protects truncate from racing with pending ios).
2046 * Unfortunately there are error cases which call end_io and others
2047 * that don't. so we don't have to unlock the rw_lock if either an
2048 * async dio is going to do it in the future or an end_io after an
2049 * error has already done it.
2051 if ((ret
== -EIOCBQUEUED
) || (!ocfs2_iocb_is_rw_locked(iocb
))) {
2058 ocfs2_rw_unlock(inode
, rw_level
);
2062 up_read(&inode
->i_alloc_sem
);
2064 mutex_unlock(&inode
->i_mutex
);
2072 static int ocfs2_splice_to_file(struct pipe_inode_info
*pipe
,
2074 struct splice_desc
*sd
)
2078 ret
= ocfs2_prepare_inode_for_write(out
->f_path
.dentry
, &sd
->pos
,
2079 sd
->total_len
, 0, NULL
, NULL
);
2085 return splice_from_pipe_feed(pipe
, sd
, pipe_to_file
);
2088 static ssize_t
ocfs2_file_splice_write(struct pipe_inode_info
*pipe
,
2095 struct address_space
*mapping
= out
->f_mapping
;
2096 struct inode
*inode
= mapping
->host
;
2097 struct splice_desc sd
= {
2104 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out
, pipe
,
2106 out
->f_path
.dentry
->d_name
.len
,
2107 out
->f_path
.dentry
->d_name
.name
);
2110 mutex_lock_nested(&pipe
->inode
->i_mutex
, I_MUTEX_PARENT
);
2112 splice_from_pipe_begin(&sd
);
2114 ret
= splice_from_pipe_next(pipe
, &sd
);
2118 mutex_lock_nested(&inode
->i_mutex
, I_MUTEX_CHILD
);
2119 ret
= ocfs2_rw_lock(inode
, 1);
2123 ret
= ocfs2_splice_to_file(pipe
, out
, &sd
);
2124 ocfs2_rw_unlock(inode
, 1);
2126 mutex_unlock(&inode
->i_mutex
);
2128 splice_from_pipe_end(pipe
, &sd
);
2131 mutex_unlock(&pipe
->inode
->i_mutex
);
2134 ret
= sd
.num_spliced
;
2137 unsigned long nr_pages
;
2140 nr_pages
= (ret
+ PAGE_CACHE_SIZE
- 1) >> PAGE_CACHE_SHIFT
;
2142 err
= generic_write_sync(out
, *ppos
, ret
);
2148 balance_dirty_pages_ratelimited_nr(mapping
, nr_pages
);
2155 static ssize_t
ocfs2_file_splice_read(struct file
*in
,
2157 struct pipe_inode_info
*pipe
,
2161 int ret
= 0, lock_level
= 0;
2162 struct inode
*inode
= in
->f_path
.dentry
->d_inode
;
2164 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in
, pipe
,
2166 in
->f_path
.dentry
->d_name
.len
,
2167 in
->f_path
.dentry
->d_name
.name
);
2170 * See the comment in ocfs2_file_aio_read()
2172 ret
= ocfs2_inode_lock_atime(inode
, in
->f_vfsmnt
, &lock_level
);
2177 ocfs2_inode_unlock(inode
, lock_level
);
2179 ret
= generic_file_splice_read(in
, ppos
, pipe
, len
, flags
);
2186 static ssize_t
ocfs2_file_aio_read(struct kiocb
*iocb
,
2187 const struct iovec
*iov
,
2188 unsigned long nr_segs
,
2191 int ret
= 0, rw_level
= -1, have_alloc_sem
= 0, lock_level
= 0;
2192 struct file
*filp
= iocb
->ki_filp
;
2193 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
2195 mlog_entry("(0x%p, %u, '%.*s')\n", filp
,
2196 (unsigned int)nr_segs
,
2197 filp
->f_path
.dentry
->d_name
.len
,
2198 filp
->f_path
.dentry
->d_name
.name
);
2207 * buffered reads protect themselves in ->readpage(). O_DIRECT reads
2208 * need locks to protect pending reads from racing with truncate.
2210 if (filp
->f_flags
& O_DIRECT
) {
2211 down_read(&inode
->i_alloc_sem
);
2214 ret
= ocfs2_rw_lock(inode
, 0);
2220 /* communicate with ocfs2_dio_end_io */
2221 ocfs2_iocb_set_rw_locked(iocb
, rw_level
);
2225 * We're fine letting folks race truncates and extending
2226 * writes with read across the cluster, just like they can
2227 * locally. Hence no rw_lock during read.
2229 * Take and drop the meta data lock to update inode fields
2230 * like i_size. This allows the checks down below
2231 * generic_file_aio_read() a chance of actually working.
2233 ret
= ocfs2_inode_lock_atime(inode
, filp
->f_vfsmnt
, &lock_level
);
2238 ocfs2_inode_unlock(inode
, lock_level
);
2240 ret
= generic_file_aio_read(iocb
, iov
, nr_segs
, iocb
->ki_pos
);
2242 mlog(0, "generic_file_aio_read returned -EINVAL\n");
2244 /* buffered aio wouldn't have proper lock coverage today */
2245 BUG_ON(ret
== -EIOCBQUEUED
&& !(filp
->f_flags
& O_DIRECT
));
2247 /* see ocfs2_file_aio_write */
2248 if (ret
== -EIOCBQUEUED
|| !ocfs2_iocb_is_rw_locked(iocb
)) {
2255 up_read(&inode
->i_alloc_sem
);
2257 ocfs2_rw_unlock(inode
, rw_level
);
2263 const struct inode_operations ocfs2_file_iops
= {
2264 .setattr
= ocfs2_setattr
,
2265 .getattr
= ocfs2_getattr
,
2266 .permission
= ocfs2_permission
,
2267 .setxattr
= generic_setxattr
,
2268 .getxattr
= generic_getxattr
,
2269 .listxattr
= ocfs2_listxattr
,
2270 .removexattr
= generic_removexattr
,
2271 .fallocate
= ocfs2_fallocate
,
2272 .fiemap
= ocfs2_fiemap
,
2275 const struct inode_operations ocfs2_special_file_iops
= {
2276 .setattr
= ocfs2_setattr
,
2277 .getattr
= ocfs2_getattr
,
2278 .permission
= ocfs2_permission
,
2282 * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
2283 * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
2285 const struct file_operations ocfs2_fops
= {
2286 .llseek
= generic_file_llseek
,
2287 .read
= do_sync_read
,
2288 .write
= do_sync_write
,
2290 .fsync
= ocfs2_sync_file
,
2291 .release
= ocfs2_file_release
,
2292 .open
= ocfs2_file_open
,
2293 .aio_read
= ocfs2_file_aio_read
,
2294 .aio_write
= ocfs2_file_aio_write
,
2295 .unlocked_ioctl
= ocfs2_ioctl
,
2296 #ifdef CONFIG_COMPAT
2297 .compat_ioctl
= ocfs2_compat_ioctl
,
2300 .flock
= ocfs2_flock
,
2301 .splice_read
= ocfs2_file_splice_read
,
2302 .splice_write
= ocfs2_file_splice_write
,
2305 const struct file_operations ocfs2_dops
= {
2306 .llseek
= generic_file_llseek
,
2307 .read
= generic_read_dir
,
2308 .readdir
= ocfs2_readdir
,
2309 .fsync
= ocfs2_sync_file
,
2310 .release
= ocfs2_dir_release
,
2311 .open
= ocfs2_dir_open
,
2312 .unlocked_ioctl
= ocfs2_ioctl
,
2313 #ifdef CONFIG_COMPAT
2314 .compat_ioctl
= ocfs2_compat_ioctl
,
2317 .flock
= ocfs2_flock
,
2321 * POSIX-lockless variants of our file_operations.
2323 * These will be used if the underlying cluster stack does not support
2324 * posix file locking, if the user passes the "localflocks" mount
2325 * option, or if we have a local-only fs.
2327 * ocfs2_flock is in here because all stacks handle UNIX file locks,
2328 * so we still want it in the case of no stack support for
2329 * plocks. Internally, it will do the right thing when asked to ignore
2332 const struct file_operations ocfs2_fops_no_plocks
= {
2333 .llseek
= generic_file_llseek
,
2334 .read
= do_sync_read
,
2335 .write
= do_sync_write
,
2337 .fsync
= ocfs2_sync_file
,
2338 .release
= ocfs2_file_release
,
2339 .open
= ocfs2_file_open
,
2340 .aio_read
= ocfs2_file_aio_read
,
2341 .aio_write
= ocfs2_file_aio_write
,
2342 .unlocked_ioctl
= ocfs2_ioctl
,
2343 #ifdef CONFIG_COMPAT
2344 .compat_ioctl
= ocfs2_compat_ioctl
,
2346 .flock
= ocfs2_flock
,
2347 .splice_read
= ocfs2_file_splice_read
,
2348 .splice_write
= ocfs2_file_splice_write
,
2351 const struct file_operations ocfs2_dops_no_plocks
= {
2352 .llseek
= generic_file_llseek
,
2353 .read
= generic_read_dir
,
2354 .readdir
= ocfs2_readdir
,
2355 .fsync
= ocfs2_sync_file
,
2356 .release
= ocfs2_dir_release
,
2357 .open
= ocfs2_dir_open
,
2358 .unlocked_ioctl
= ocfs2_ioctl
,
2359 #ifdef CONFIG_COMPAT
2360 .compat_ioctl
= ocfs2_compat_ioctl
,
2362 .flock
= ocfs2_flock
,