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>
38 #define MLOG_MASK_PREFIX ML_INODE
39 #include <cluster/masklog.h>
47 #include "extent_map.h"
57 #include "buffer_head_io.h"
59 static int ocfs2_sync_inode(struct inode *inode)
61 filemap_fdatawrite(inode->i_mapping);
62 return sync_mapping_buffers(inode->i_mapping);
65 static int ocfs2_file_open(struct inode *inode, struct file *file)
68 int mode = file->f_flags;
69 struct ocfs2_inode_info *oi = OCFS2_I(inode);
71 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
72 file->f_path.dentry->d_name.len, file->f_path.dentry->d_name.name);
74 spin_lock(&oi->ip_lock);
76 /* Check that the inode hasn't been wiped from disk by another
77 * node. If it hasn't then we're safe as long as we hold the
78 * spin lock until our increment of open count. */
79 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
80 spin_unlock(&oi->ip_lock);
87 oi->ip_flags |= OCFS2_INODE_OPEN_DIRECT;
90 spin_unlock(&oi->ip_lock);
97 static int ocfs2_file_release(struct inode *inode, struct file *file)
99 struct ocfs2_inode_info *oi = OCFS2_I(inode);
101 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
102 file->f_path.dentry->d_name.len,
103 file->f_path.dentry->d_name.name);
105 spin_lock(&oi->ip_lock);
106 if (!--oi->ip_open_count)
107 oi->ip_flags &= ~OCFS2_INODE_OPEN_DIRECT;
108 spin_unlock(&oi->ip_lock);
115 static int ocfs2_sync_file(struct file *file,
116 struct dentry *dentry,
121 struct inode *inode = dentry->d_inode;
122 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
124 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync,
125 dentry->d_name.len, dentry->d_name.name);
127 err = ocfs2_sync_inode(dentry->d_inode);
131 journal = osb->journal->j_journal;
132 err = journal_force_commit(journal);
137 return (err < 0) ? -EIO : 0;
140 int ocfs2_should_update_atime(struct inode *inode,
141 struct vfsmount *vfsmnt)
144 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
146 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
149 if ((inode->i_flags & S_NOATIME) ||
150 ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode)))
154 * We can be called with no vfsmnt structure - NFSD will
157 * Note that our action here is different than touch_atime() -
158 * if we can't tell whether this is a noatime mount, then we
159 * don't know whether to trust the value of s_atime_quantum.
164 if ((vfsmnt->mnt_flags & MNT_NOATIME) ||
165 ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
168 if (vfsmnt->mnt_flags & MNT_RELATIME) {
169 if ((timespec_compare(&inode->i_atime, &inode->i_mtime) <= 0) ||
170 (timespec_compare(&inode->i_atime, &inode->i_ctime) <= 0))
177 if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum))
183 int ocfs2_update_inode_atime(struct inode *inode,
184 struct buffer_head *bh)
187 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
192 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
193 if (handle == NULL) {
199 inode->i_atime = CURRENT_TIME;
200 ret = ocfs2_mark_inode_dirty(handle, inode, bh);
204 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
210 static int ocfs2_set_inode_size(handle_t *handle,
212 struct buffer_head *fe_bh,
218 i_size_write(inode, new_i_size);
219 inode->i_blocks = ocfs2_inode_sector_count(inode);
220 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
222 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
233 static int ocfs2_simple_size_update(struct inode *inode,
234 struct buffer_head *di_bh,
238 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
239 handle_t *handle = NULL;
241 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
242 if (handle == NULL) {
248 ret = ocfs2_set_inode_size(handle, inode, di_bh,
253 ocfs2_commit_trans(osb, handle);
258 static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
260 struct buffer_head *fe_bh,
265 struct ocfs2_dinode *di;
269 /* TODO: This needs to actually orphan the inode in this
272 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
273 if (IS_ERR(handle)) {
274 status = PTR_ERR(handle);
279 status = ocfs2_journal_access(handle, inode, fe_bh,
280 OCFS2_JOURNAL_ACCESS_WRITE);
287 * Do this before setting i_size.
289 status = ocfs2_zero_tail_for_truncate(inode, handle, new_i_size);
295 i_size_write(inode, new_i_size);
296 inode->i_blocks = ocfs2_align_bytes_to_sectors(new_i_size);
297 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
299 di = (struct ocfs2_dinode *) fe_bh->b_data;
300 di->i_size = cpu_to_le64(new_i_size);
301 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
302 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
304 status = ocfs2_journal_dirty(handle, fe_bh);
309 ocfs2_commit_trans(osb, handle);
316 static int ocfs2_truncate_file(struct inode *inode,
317 struct buffer_head *di_bh,
321 struct ocfs2_dinode *fe = NULL;
322 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
323 struct ocfs2_truncate_context *tc = NULL;
325 mlog_entry("(inode = %llu, new_i_size = %llu\n",
326 (unsigned long long)OCFS2_I(inode)->ip_blkno,
327 (unsigned long long)new_i_size);
329 unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1);
330 truncate_inode_pages(inode->i_mapping, new_i_size);
332 fe = (struct ocfs2_dinode *) di_bh->b_data;
333 if (!OCFS2_IS_VALID_DINODE(fe)) {
334 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
339 mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode),
340 "Inode %llu, inode i_size = %lld != di "
341 "i_size = %llu, i_flags = 0x%x\n",
342 (unsigned long long)OCFS2_I(inode)->ip_blkno,
344 (unsigned long long)le64_to_cpu(fe->i_size),
345 le32_to_cpu(fe->i_flags));
347 if (new_i_size > le64_to_cpu(fe->i_size)) {
348 mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
349 (unsigned long long)le64_to_cpu(fe->i_size),
350 (unsigned long long)new_i_size);
356 mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
357 (unsigned long long)le64_to_cpu(fe->i_blkno),
358 (unsigned long long)le64_to_cpu(fe->i_size),
359 (unsigned long long)new_i_size);
361 /* lets handle the simple truncate cases before doing any more
362 * cluster locking. */
363 if (new_i_size == le64_to_cpu(fe->i_size))
366 /* This forces other nodes to sync and drop their pages. Do
367 * this even if we have a truncate without allocation change -
368 * ocfs2 cluster sizes can be much greater than page size, so
369 * we have to truncate them anyway. */
370 status = ocfs2_data_lock(inode, 1);
376 /* alright, we're going to need to do a full blown alloc size
377 * change. Orphan the inode so that recovery can complete the
378 * truncate if necessary. This does the task of marking
380 status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size);
383 goto bail_unlock_data;
386 status = ocfs2_prepare_truncate(osb, inode, di_bh, &tc);
389 goto bail_unlock_data;
392 status = ocfs2_commit_truncate(osb, inode, di_bh, tc);
395 goto bail_unlock_data;
398 /* TODO: orphan dir cleanup here. */
400 ocfs2_data_unlock(inode, 1);
409 * extend allocation only here.
410 * we'll update all the disk stuff, and oip->alloc_size
412 * expect stuff to be locked, a transaction started and enough data /
413 * metadata reservations in the contexts.
415 * Will return -EAGAIN, and a reason if a restart is needed.
416 * If passed in, *reason will always be set, even in error.
418 int ocfs2_do_extend_allocation(struct ocfs2_super *osb,
422 struct buffer_head *fe_bh,
424 struct ocfs2_alloc_context *data_ac,
425 struct ocfs2_alloc_context *meta_ac,
426 enum ocfs2_alloc_restarted *reason_ret)
430 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data;
431 enum ocfs2_alloc_restarted reason = RESTART_NONE;
432 u32 bit_off, num_bits;
435 BUG_ON(!clusters_to_add);
437 free_extents = ocfs2_num_free_extents(osb, inode, fe);
438 if (free_extents < 0) {
439 status = free_extents;
444 /* there are two cases which could cause us to EAGAIN in the
445 * we-need-more-metadata case:
446 * 1) we haven't reserved *any*
447 * 2) we are so fragmented, we've needed to add metadata too
449 if (!free_extents && !meta_ac) {
450 mlog(0, "we haven't reserved any metadata!\n");
452 reason = RESTART_META;
454 } else if ((!free_extents)
455 && (ocfs2_alloc_context_bits_left(meta_ac)
456 < ocfs2_extend_meta_needed(fe))) {
457 mlog(0, "filesystem is really fragmented...\n");
459 reason = RESTART_META;
463 status = ocfs2_claim_clusters(osb, handle, data_ac, 1,
464 &bit_off, &num_bits);
466 if (status != -ENOSPC)
471 BUG_ON(num_bits > clusters_to_add);
473 /* reserve our write early -- insert_extent may update the inode */
474 status = ocfs2_journal_access(handle, inode, fe_bh,
475 OCFS2_JOURNAL_ACCESS_WRITE);
481 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
482 mlog(0, "Allocating %u clusters at block %u for inode %llu\n",
483 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
484 status = ocfs2_insert_extent(osb, handle, inode, fe_bh,
485 *logical_offset, block, num_bits,
492 status = ocfs2_journal_dirty(handle, fe_bh);
498 clusters_to_add -= num_bits;
499 *logical_offset += num_bits;
501 if (clusters_to_add) {
502 mlog(0, "need to alloc once more, clusters = %u, wanted = "
503 "%u\n", fe->i_clusters, clusters_to_add);
505 reason = RESTART_TRANS;
511 *reason_ret = reason;
516 * For a given allocation, determine which allocators will need to be
517 * accessed, and lock them, reserving the appropriate number of bits.
519 * Called from ocfs2_extend_allocation() for file systems which don't
520 * support holes, and from ocfs2_write() for file systems which
521 * understand sparse inodes.
523 int ocfs2_lock_allocators(struct inode *inode, struct ocfs2_dinode *di,
525 struct ocfs2_alloc_context **data_ac,
526 struct ocfs2_alloc_context **meta_ac)
528 int ret, num_free_extents;
529 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
534 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
535 "clusters_to_add = %u\n",
536 (unsigned long long)OCFS2_I(inode)->ip_blkno, i_size_read(inode),
537 le32_to_cpu(di->i_clusters), clusters_to_add);
539 num_free_extents = ocfs2_num_free_extents(osb, inode, di);
540 if (num_free_extents < 0) {
541 ret = num_free_extents;
547 * Sparse allocation file systems need to be more conservative
548 * with reserving room for expansion - the actual allocation
549 * happens while we've got a journal handle open so re-taking
550 * a cluster lock (because we ran out of room for another
551 * extent) will violate ordering rules.
553 * Most of the time we'll only be seeing this 1 cluster at a time
556 if (!num_free_extents ||
557 (ocfs2_sparse_alloc(osb) && num_free_extents < clusters_to_add)) {
558 ret = ocfs2_reserve_new_metadata(osb, di, meta_ac);
566 ret = ocfs2_reserve_clusters(osb, clusters_to_add, data_ac);
576 ocfs2_free_alloc_context(*meta_ac);
581 * We cannot have an error and a non null *data_ac.
588 static int ocfs2_extend_allocation(struct inode *inode,
592 int restart_func = 0;
593 int drop_alloc_sem = 0;
595 u32 prev_clusters, logical_start;
596 struct buffer_head *bh = NULL;
597 struct ocfs2_dinode *fe = NULL;
598 handle_t *handle = NULL;
599 struct ocfs2_alloc_context *data_ac = NULL;
600 struct ocfs2_alloc_context *meta_ac = NULL;
601 enum ocfs2_alloc_restarted why;
602 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
604 mlog_entry("(clusters_to_add = %u)\n", clusters_to_add);
607 * This function only exists for file systems which don't
610 BUG_ON(ocfs2_sparse_alloc(osb));
612 status = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &bh,
613 OCFS2_BH_CACHED, inode);
619 fe = (struct ocfs2_dinode *) bh->b_data;
620 if (!OCFS2_IS_VALID_DINODE(fe)) {
621 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
626 logical_start = OCFS2_I(inode)->ip_clusters;
629 BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
631 /* blocks peope in read/write from reading our allocation
632 * until we're done changing it. We depend on i_mutex to block
633 * other extend/truncate calls while we're here. Ordering wrt
634 * start_trans is important here -- always do it before! */
635 down_write(&OCFS2_I(inode)->ip_alloc_sem);
638 status = ocfs2_lock_allocators(inode, fe, clusters_to_add, &data_ac,
645 credits = ocfs2_calc_extend_credits(osb->sb, fe, clusters_to_add);
646 handle = ocfs2_start_trans(osb, credits);
647 if (IS_ERR(handle)) {
648 status = PTR_ERR(handle);
654 restarted_transaction:
655 /* reserve a write to the file entry early on - that we if we
656 * run out of credits in the allocation path, we can still
658 status = ocfs2_journal_access(handle, inode, bh,
659 OCFS2_JOURNAL_ACCESS_WRITE);
665 prev_clusters = OCFS2_I(inode)->ip_clusters;
667 status = ocfs2_do_extend_allocation(osb,
676 if ((status < 0) && (status != -EAGAIN)) {
677 if (status != -ENOSPC)
682 status = ocfs2_journal_dirty(handle, bh);
688 spin_lock(&OCFS2_I(inode)->ip_lock);
689 clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
690 spin_unlock(&OCFS2_I(inode)->ip_lock);
692 if (why != RESTART_NONE && clusters_to_add) {
693 if (why == RESTART_META) {
694 mlog(0, "restarting function.\n");
697 BUG_ON(why != RESTART_TRANS);
699 mlog(0, "restarting transaction.\n");
700 /* TODO: This can be more intelligent. */
701 credits = ocfs2_calc_extend_credits(osb->sb,
704 status = ocfs2_extend_trans(handle, credits);
706 /* handle still has to be committed at
712 goto restarted_transaction;
716 mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
717 le32_to_cpu(fe->i_clusters),
718 (unsigned long long)le64_to_cpu(fe->i_size));
719 mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
720 OCFS2_I(inode)->ip_clusters, i_size_read(inode));
723 if (drop_alloc_sem) {
724 up_write(&OCFS2_I(inode)->ip_alloc_sem);
728 ocfs2_commit_trans(osb, handle);
732 ocfs2_free_alloc_context(data_ac);
736 ocfs2_free_alloc_context(meta_ac);
739 if ((!status) && restart_func) {
752 /* Some parts of this taken from generic_cont_expand, which turned out
753 * to be too fragile to do exactly what we need without us having to
754 * worry about recursive locking in ->prepare_write() and
755 * ->commit_write(). */
756 static int ocfs2_write_zero_page(struct inode *inode,
759 struct address_space *mapping = inode->i_mapping;
763 handle_t *handle = NULL;
766 offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
767 /* ugh. in prepare/commit_write, if from==to==start of block, we
768 ** skip the prepare. make sure we never send an offset for the start
771 if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
774 index = size >> PAGE_CACHE_SHIFT;
776 page = grab_cache_page(mapping, index);
783 ret = ocfs2_prepare_write_nolock(inode, page, offset, offset);
789 if (ocfs2_should_order_data(inode)) {
790 handle = ocfs2_start_walk_page_trans(inode, page, offset,
792 if (IS_ERR(handle)) {
793 ret = PTR_ERR(handle);
799 /* must not update i_size! */
800 ret = block_commit_write(page, offset, offset);
807 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
810 page_cache_release(page);
815 static int ocfs2_zero_extend(struct inode *inode,
820 struct super_block *sb = inode->i_sb;
822 start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode));
823 while (start_off < zero_to_size) {
824 ret = ocfs2_write_zero_page(inode, start_off);
830 start_off += sb->s_blocksize;
833 * Very large extends have the potential to lock up
834 * the cpu for extended periods of time.
844 * A tail_to_skip value > 0 indicates that we're being called from
845 * ocfs2_file_aio_write(). This has the following implications:
847 * - we don't want to update i_size
848 * - di_bh will be NULL, which is fine because it's only used in the
849 * case where we want to update i_size.
850 * - ocfs2_zero_extend() will then only be filling the hole created
851 * between i_size and the start of the write.
853 static int ocfs2_extend_file(struct inode *inode,
854 struct buffer_head *di_bh,
859 u32 clusters_to_add = 0;
861 BUG_ON(!tail_to_skip && !di_bh);
863 /* setattr sometimes calls us like this. */
867 if (i_size_read(inode) == new_i_size)
869 BUG_ON(new_i_size < i_size_read(inode));
871 if (ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb))) {
872 BUG_ON(tail_to_skip != 0);
873 goto out_update_size;
876 clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size) -
877 OCFS2_I(inode)->ip_clusters;
880 * protect the pages that ocfs2_zero_extend is going to be
881 * pulling into the page cache.. we do this before the
882 * metadata extend so that we don't get into the situation
883 * where we've extended the metadata but can't get the data
886 ret = ocfs2_data_lock(inode, 1);
892 if (clusters_to_add) {
893 ret = ocfs2_extend_allocation(inode, clusters_to_add);
901 * Call this even if we don't add any clusters to the tree. We
902 * still need to zero the area between the old i_size and the
905 ret = ocfs2_zero_extend(inode, (u64)new_i_size - tail_to_skip);
913 /* We're being called from ocfs2_setattr() which wants
914 * us to update i_size */
915 ret = ocfs2_simple_size_update(inode, di_bh, new_i_size);
921 if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
922 ocfs2_data_unlock(inode, 1);
928 int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
930 int status = 0, size_change;
931 struct inode *inode = dentry->d_inode;
932 struct super_block *sb = inode->i_sb;
933 struct ocfs2_super *osb = OCFS2_SB(sb);
934 struct buffer_head *bh = NULL;
935 handle_t *handle = NULL;
937 mlog_entry("(0x%p, '%.*s')\n", dentry,
938 dentry->d_name.len, dentry->d_name.name);
940 if (attr->ia_valid & ATTR_MODE)
941 mlog(0, "mode change: %d\n", attr->ia_mode);
942 if (attr->ia_valid & ATTR_UID)
943 mlog(0, "uid change: %d\n", attr->ia_uid);
944 if (attr->ia_valid & ATTR_GID)
945 mlog(0, "gid change: %d\n", attr->ia_gid);
946 if (attr->ia_valid & ATTR_SIZE)
947 mlog(0, "size change...\n");
948 if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
949 mlog(0, "time change...\n");
951 #define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
952 | ATTR_GID | ATTR_UID | ATTR_MODE)
953 if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
954 mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
958 status = inode_change_ok(inode, attr);
962 size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
964 status = ocfs2_rw_lock(inode, 1);
971 status = ocfs2_meta_lock(inode, &bh, 1);
973 if (status != -ENOENT)
978 if (size_change && attr->ia_size != i_size_read(inode)) {
979 if (i_size_read(inode) > attr->ia_size)
980 status = ocfs2_truncate_file(inode, bh, attr->ia_size);
982 status = ocfs2_extend_file(inode, bh, attr->ia_size, 0);
984 if (status != -ENOSPC)
991 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
992 if (IS_ERR(handle)) {
993 status = PTR_ERR(handle);
998 status = inode_setattr(inode, attr);
1004 status = ocfs2_mark_inode_dirty(handle, inode, bh);
1009 ocfs2_commit_trans(osb, handle);
1011 ocfs2_meta_unlock(inode, 1);
1014 ocfs2_rw_unlock(inode, 1);
1023 int ocfs2_getattr(struct vfsmount *mnt,
1024 struct dentry *dentry,
1027 struct inode *inode = dentry->d_inode;
1028 struct super_block *sb = dentry->d_inode->i_sb;
1029 struct ocfs2_super *osb = sb->s_fs_info;
1034 err = ocfs2_inode_revalidate(dentry);
1041 generic_fillattr(inode, stat);
1043 /* We set the blksize from the cluster size for performance */
1044 stat->blksize = osb->s_clustersize;
1052 int ocfs2_permission(struct inode *inode, int mask, struct nameidata *nd)
1058 ret = ocfs2_meta_lock(inode, NULL, 0);
1065 ret = generic_permission(inode, mask, NULL);
1067 ocfs2_meta_unlock(inode, 0);
1073 static int ocfs2_write_remove_suid(struct inode *inode)
1076 struct buffer_head *bh = NULL;
1077 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1079 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1080 struct ocfs2_dinode *di;
1082 mlog_entry("(Inode %llu, mode 0%o)\n",
1083 (unsigned long long)oi->ip_blkno, inode->i_mode);
1085 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1086 if (handle == NULL) {
1092 ret = ocfs2_read_block(osb, oi->ip_blkno, &bh, OCFS2_BH_CACHED, inode);
1098 ret = ocfs2_journal_access(handle, inode, bh,
1099 OCFS2_JOURNAL_ACCESS_WRITE);
1105 inode->i_mode &= ~S_ISUID;
1106 if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
1107 inode->i_mode &= ~S_ISGID;
1109 di = (struct ocfs2_dinode *) bh->b_data;
1110 di->i_mode = cpu_to_le16(inode->i_mode);
1112 ret = ocfs2_journal_dirty(handle, bh);
1118 ocfs2_commit_trans(osb, handle);
1125 * Will look for holes and unwritten extents in the range starting at
1126 * pos for count bytes (inclusive).
1128 static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
1132 unsigned int extent_flags;
1133 u32 cpos, clusters, extent_len, phys_cpos;
1134 struct super_block *sb = inode->i_sb;
1136 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1137 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1140 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1147 if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
1152 if (extent_len > clusters)
1153 extent_len = clusters;
1155 clusters -= extent_len;
1162 static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
1168 int ret = 0, meta_level = appending;
1169 struct inode *inode = dentry->d_inode;
1171 loff_t newsize, saved_pos;
1174 * We sample i_size under a read level meta lock to see if our write
1175 * is extending the file, if it is we back off and get a write level
1179 ret = ocfs2_meta_lock(inode, NULL, meta_level);
1186 /* Clear suid / sgid if necessary. We do this here
1187 * instead of later in the write path because
1188 * remove_suid() calls ->setattr without any hint that
1189 * we may have already done our cluster locking. Since
1190 * ocfs2_setattr() *must* take cluster locks to
1191 * proceeed, this will lead us to recursively lock the
1192 * inode. There's also the dinode i_size state which
1193 * can be lost via setattr during extending writes (we
1194 * set inode->i_size at the end of a write. */
1195 if (should_remove_suid(dentry)) {
1196 if (meta_level == 0) {
1197 ocfs2_meta_unlock(inode, meta_level);
1202 ret = ocfs2_write_remove_suid(inode);
1209 /* work on a copy of ppos until we're sure that we won't have
1210 * to recalculate it due to relocking. */
1212 saved_pos = i_size_read(inode);
1213 mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
1218 if (ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb))) {
1219 loff_t end = saved_pos + count;
1222 * Skip the O_DIRECT checks if we don't need
1225 if (!direct_io || !(*direct_io))
1229 * Allowing concurrent direct writes means
1230 * i_size changes wouldn't be synchronized, so
1231 * one node could wind up truncating another
1234 if (end > i_size_read(inode)) {
1240 * We don't fill holes during direct io, so
1241 * check for them here. If any are found, the
1242 * caller will have to retake some cluster
1243 * locks and initiate the io as buffered.
1245 ret = ocfs2_check_range_for_holes(inode, saved_pos,
1256 * The rest of this loop is concerned with legacy file
1257 * systems which don't support sparse files.
1260 newsize = count + saved_pos;
1262 mlog(0, "pos=%lld newsize=%lld cursize=%lld\n",
1263 (long long) saved_pos, (long long) newsize,
1264 (long long) i_size_read(inode));
1266 /* No need for a higher level metadata lock if we're
1267 * never going past i_size. */
1268 if (newsize <= i_size_read(inode))
1271 if (meta_level == 0) {
1272 ocfs2_meta_unlock(inode, meta_level);
1277 spin_lock(&OCFS2_I(inode)->ip_lock);
1278 clusters = ocfs2_clusters_for_bytes(inode->i_sb, newsize) -
1279 OCFS2_I(inode)->ip_clusters;
1280 spin_unlock(&OCFS2_I(inode)->ip_lock);
1282 mlog(0, "Writing at EOF, may need more allocation: "
1283 "i_size = %lld, newsize = %lld, need %u clusters\n",
1284 (long long) i_size_read(inode), (long long) newsize,
1287 /* We only want to continue the rest of this loop if
1288 * our extend will actually require more
1293 ret = ocfs2_extend_file(inode, NULL, newsize, count);
1306 ocfs2_meta_unlock(inode, meta_level);
1313 ocfs2_set_next_iovec(const struct iovec **iovp, size_t *basep, size_t bytes)
1315 const struct iovec *iov = *iovp;
1316 size_t base = *basep;
1319 int copy = min(bytes, iov->iov_len - base);
1323 if (iov->iov_len == base) {
1332 static struct page * ocfs2_get_write_source(struct ocfs2_buffered_write_priv *bp,
1333 const struct iovec *cur_iov,
1338 struct page *src_page = NULL;
1340 buf = cur_iov->iov_base + iov_offset;
1342 if (!segment_eq(get_fs(), KERNEL_DS)) {
1344 * Pull in the user page. We want to do this outside
1345 * of the meta data locks in order to preserve locking
1346 * order in case of page fault.
1348 ret = get_user_pages(current, current->mm,
1349 (unsigned long)buf & PAGE_CACHE_MASK, 1,
1350 0, 0, &src_page, NULL);
1352 bp->b_src_buf = kmap(src_page);
1354 src_page = ERR_PTR(-EFAULT);
1356 bp->b_src_buf = buf;
1362 static void ocfs2_put_write_source(struct ocfs2_buffered_write_priv *bp,
1367 page_cache_release(page);
1371 static ssize_t ocfs2_file_buffered_write(struct file *file, loff_t *ppos,
1372 const struct iovec *iov,
1373 unsigned long nr_segs,
1375 ssize_t o_direct_written)
1378 ssize_t copied, total = 0;
1379 size_t iov_offset = 0;
1380 const struct iovec *cur_iov = iov;
1381 struct ocfs2_buffered_write_priv bp;
1385 * handle partial DIO write. Adjust cur_iov if needed.
1387 ocfs2_set_next_iovec(&cur_iov, &iov_offset, o_direct_written);
1390 bp.b_cur_off = iov_offset;
1391 bp.b_cur_iov = cur_iov;
1393 page = ocfs2_get_write_source(&bp, cur_iov, iov_offset);
1395 ret = PTR_ERR(page);
1399 copied = ocfs2_buffered_write_cluster(file, *ppos, count,
1400 ocfs2_map_and_write_user_data,
1403 ocfs2_put_write_source(&bp, page);
1412 *ppos = *ppos + copied;
1415 ocfs2_set_next_iovec(&cur_iov, &iov_offset, copied);
1419 return total ? total : ret;
1422 static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
1423 const struct iovec *iov,
1424 unsigned long nr_segs,
1427 int ret, direct_io, appending, rw_level, have_alloc_sem = 0;
1428 int can_do_direct, sync = 0;
1429 ssize_t written = 0;
1430 size_t ocount; /* original count */
1431 size_t count; /* after file limit checks */
1432 loff_t *ppos = &iocb->ki_pos;
1433 struct file *file = iocb->ki_filp;
1434 struct inode *inode = file->f_path.dentry->d_inode;
1436 mlog_entry("(0x%p, %u, '%.*s')\n", file,
1437 (unsigned int)nr_segs,
1438 file->f_path.dentry->d_name.len,
1439 file->f_path.dentry->d_name.name);
1441 if (iocb->ki_left == 0)
1444 ret = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1450 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1452 appending = file->f_flags & O_APPEND ? 1 : 0;
1453 direct_io = file->f_flags & O_DIRECT ? 1 : 0;
1455 mutex_lock(&inode->i_mutex);
1458 /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
1460 down_read(&inode->i_alloc_sem);
1464 /* concurrent O_DIRECT writes are allowed */
1465 rw_level = !direct_io;
1466 ret = ocfs2_rw_lock(inode, rw_level);
1472 can_do_direct = direct_io;
1473 ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
1474 iocb->ki_left, appending,
1482 * We can't complete the direct I/O as requested, fall back to
1485 if (direct_io && !can_do_direct) {
1486 ocfs2_rw_unlock(inode, rw_level);
1487 up_read(&inode->i_alloc_sem);
1497 if (!sync && ((file->f_flags & O_SYNC) || IS_SYNC(inode)))
1501 * XXX: Is it ok to execute these checks a second time?
1503 ret = generic_write_checks(file, ppos, &count, S_ISBLK(inode->i_mode));
1508 * Set pos so that sync_page_range_nolock() below understands
1509 * where to start from. We might've moved it around via the
1510 * calls above. The range we want to actually sync starts from
1516 /* communicate with ocfs2_dio_end_io */
1517 ocfs2_iocb_set_rw_locked(iocb, rw_level);
1520 written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
1521 ppos, count, ocount);
1527 written = ocfs2_file_buffered_write(file, ppos, iov, nr_segs,
1531 if (ret != -EFAULT || ret != -ENOSPC)
1538 /* buffered aio wouldn't have proper lock coverage today */
1539 BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
1542 * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
1543 * function pointer which is called when o_direct io completes so that
1544 * it can unlock our rw lock. (it's the clustered equivalent of
1545 * i_alloc_sem; protects truncate from racing with pending ios).
1546 * Unfortunately there are error cases which call end_io and others
1547 * that don't. so we don't have to unlock the rw_lock if either an
1548 * async dio is going to do it in the future or an end_io after an
1549 * error has already done it.
1551 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
1558 ocfs2_rw_unlock(inode, rw_level);
1562 up_read(&inode->i_alloc_sem);
1564 if (written > 0 && sync) {
1567 err = sync_page_range_nolock(inode, file->f_mapping, pos, count);
1572 mutex_unlock(&inode->i_mutex);
1575 return written ? written : ret;
1578 static int ocfs2_splice_write_actor(struct pipe_inode_info *pipe,
1579 struct pipe_buffer *buf,
1580 struct splice_desc *sd)
1582 int ret, count, total = 0;
1584 struct ocfs2_splice_write_priv sp;
1586 ret = buf->ops->confirm(pipe, buf);
1593 sp.s_offset = sd->pos & ~PAGE_CACHE_MASK;
1594 sp.s_buf_offset = buf->offset;
1597 if (count + sp.s_offset > PAGE_CACHE_SIZE)
1598 count = PAGE_CACHE_SIZE - sp.s_offset;
1602 * splice wants us to copy up to one page at a
1603 * time. For pagesize > cluster size, this means we
1604 * might enter ocfs2_buffered_write_cluster() more
1605 * than once, so keep track of our progress here.
1607 copied = ocfs2_buffered_write_cluster(sd->u.file,
1608 (loff_t)sd->pos + total,
1610 ocfs2_map_and_write_splice_data,
1619 sp.s_offset += copied;
1620 sp.s_buf_offset += copied;
1627 return total ? total : ret;
1630 static ssize_t __ocfs2_file_splice_write(struct pipe_inode_info *pipe,
1637 struct address_space *mapping = out->f_mapping;
1638 struct inode *inode = mapping->host;
1639 struct splice_desc sd = {
1646 ret = __splice_from_pipe(pipe, &sd, ocfs2_splice_write_actor);
1650 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(inode))) {
1651 err = generic_osync_inode(inode, mapping,
1652 OSYNC_METADATA|OSYNC_DATA);
1661 static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
1668 struct inode *inode = out->f_path.dentry->d_inode;
1670 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
1672 out->f_path.dentry->d_name.len,
1673 out->f_path.dentry->d_name.name);
1675 inode_double_lock(inode, pipe->inode);
1677 ret = ocfs2_rw_lock(inode, 1);
1683 ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, ppos, len, 0,
1690 /* ok, we're done with i_size and alloc work */
1691 ret = __ocfs2_file_splice_write(pipe, out, ppos, len, flags);
1694 ocfs2_rw_unlock(inode, 1);
1696 inode_double_unlock(inode, pipe->inode);
1702 static ssize_t ocfs2_file_splice_read(struct file *in,
1704 struct pipe_inode_info *pipe,
1709 struct inode *inode = in->f_path.dentry->d_inode;
1711 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
1713 in->f_path.dentry->d_name.len,
1714 in->f_path.dentry->d_name.name);
1717 * See the comment in ocfs2_file_aio_read()
1719 ret = ocfs2_meta_lock(inode, NULL, 0);
1724 ocfs2_meta_unlock(inode, 0);
1726 ret = generic_file_splice_read(in, ppos, pipe, len, flags);
1733 static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
1734 const struct iovec *iov,
1735 unsigned long nr_segs,
1738 int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
1739 struct file *filp = iocb->ki_filp;
1740 struct inode *inode = filp->f_path.dentry->d_inode;
1742 mlog_entry("(0x%p, %u, '%.*s')\n", filp,
1743 (unsigned int)nr_segs,
1744 filp->f_path.dentry->d_name.len,
1745 filp->f_path.dentry->d_name.name);
1754 * buffered reads protect themselves in ->readpage(). O_DIRECT reads
1755 * need locks to protect pending reads from racing with truncate.
1757 if (filp->f_flags & O_DIRECT) {
1758 down_read(&inode->i_alloc_sem);
1761 ret = ocfs2_rw_lock(inode, 0);
1767 /* communicate with ocfs2_dio_end_io */
1768 ocfs2_iocb_set_rw_locked(iocb, rw_level);
1772 * We're fine letting folks race truncates and extending
1773 * writes with read across the cluster, just like they can
1774 * locally. Hence no rw_lock during read.
1776 * Take and drop the meta data lock to update inode fields
1777 * like i_size. This allows the checks down below
1778 * generic_file_aio_read() a chance of actually working.
1780 ret = ocfs2_meta_lock_atime(inode, filp->f_vfsmnt, &lock_level);
1785 ocfs2_meta_unlock(inode, lock_level);
1787 ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
1789 mlog(ML_ERROR, "generic_file_aio_read returned -EINVAL\n");
1791 /* buffered aio wouldn't have proper lock coverage today */
1792 BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
1794 /* see ocfs2_file_aio_write */
1795 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
1802 up_read(&inode->i_alloc_sem);
1804 ocfs2_rw_unlock(inode, rw_level);
1810 const struct inode_operations ocfs2_file_iops = {
1811 .setattr = ocfs2_setattr,
1812 .getattr = ocfs2_getattr,
1813 .permission = ocfs2_permission,
1816 const struct inode_operations ocfs2_special_file_iops = {
1817 .setattr = ocfs2_setattr,
1818 .getattr = ocfs2_getattr,
1819 .permission = ocfs2_permission,
1822 const struct file_operations ocfs2_fops = {
1823 .read = do_sync_read,
1824 .write = do_sync_write,
1826 .fsync = ocfs2_sync_file,
1827 .release = ocfs2_file_release,
1828 .open = ocfs2_file_open,
1829 .aio_read = ocfs2_file_aio_read,
1830 .aio_write = ocfs2_file_aio_write,
1831 .ioctl = ocfs2_ioctl,
1832 #ifdef CONFIG_COMPAT
1833 .compat_ioctl = ocfs2_compat_ioctl,
1835 .splice_read = ocfs2_file_splice_read,
1836 .splice_write = ocfs2_file_splice_write,
1839 const struct file_operations ocfs2_dops = {
1840 .read = generic_read_dir,
1841 .readdir = ocfs2_readdir,
1842 .fsync = ocfs2_sync_file,
1843 .ioctl = ocfs2_ioctl,
1844 #ifdef CONFIG_COMPAT
1845 .compat_ioctl = ocfs2_compat_ioctl,