file.c 4.4 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3
 *   Copyright (C) International Business Machines Corp., 2000-2002
 *   Portions Copyright (C) Christoph Hellwig, 2001-2002
L
Linus Torvalds 已提交
4 5 6
 *
 *   This program is free software;  you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
D
Dave Kleikamp 已提交
7
 *   the Free Software Foundation; either version 2 of the License, or
L
Linus Torvalds 已提交
8
 *   (at your option) any later version.
D
Dave Kleikamp 已提交
9
 *
L
Linus Torvalds 已提交
10 11 12 13 14 15
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 *   the GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
D
Dave Kleikamp 已提交
16
 *   along with this program;  if not, write to the Free Software
L
Linus Torvalds 已提交
17 18 19
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

C
Christoph Hellwig 已提交
20
#include <linux/mm.h>
L
Linus Torvalds 已提交
21
#include <linux/fs.h>
22
#include <linux/posix_acl.h>
23
#include <linux/quotaops.h>
L
Linus Torvalds 已提交
24
#include "jfs_incore.h"
25
#include "jfs_inode.h"
L
Linus Torvalds 已提交
26 27 28 29 30 31
#include "jfs_dmap.h"
#include "jfs_txnmgr.h"
#include "jfs_xattr.h"
#include "jfs_acl.h"
#include "jfs_debug.h"

32
int jfs_fsync(struct file *file, loff_t start, loff_t end, int datasync)
L
Linus Torvalds 已提交
33
{
34
	struct inode *inode = file->f_mapping->host;
L
Linus Torvalds 已提交
35 36
	int rc = 0;

37 38 39 40 41
	rc = filemap_write_and_wait_range(inode->i_mapping, start, end);
	if (rc)
		return rc;

	mutex_lock(&inode->i_mutex);
42
	if (!(inode->i_state & I_DIRTY_ALL) ||
L
Linus Torvalds 已提交
43 44 45
	    (datasync && !(inode->i_state & I_DIRTY_DATASYNC))) {
		/* Make sure committed changes hit the disk */
		jfs_flush_journal(JFS_SBI(inode->i_sb)->log, 1);
46
		mutex_unlock(&inode->i_mutex);
L
Linus Torvalds 已提交
47 48 49 50
		return rc;
	}

	rc |= jfs_commit_inode(inode, 1);
51
	mutex_unlock(&inode->i_mutex);
L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59

	return rc ? -EIO : 0;
}

static int jfs_open(struct inode *inode, struct file *file)
{
	int rc;

60
	if ((rc = dquot_file_open(inode, file)))
L
Linus Torvalds 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
		return rc;

	/*
	 * We attempt to allow only one "active" file open per aggregate
	 * group.  Otherwise, appending to files in parallel can cause
	 * fragmentation within the files.
	 *
	 * If the file is empty, it was probably just created and going
	 * to be written to.  If it has a size, we'll hold off until the
	 * file is actually grown.
	 */
	if (S_ISREG(inode->i_mode) && file->f_mode & FMODE_WRITE &&
	    (inode->i_size == 0)) {
		struct jfs_inode_info *ji = JFS_IP(inode);
		spin_lock_irq(&ji->ag_lock);
		if (ji->active_ag == -1) {
77 78
			struct jfs_sb_info *jfs_sb = JFS_SBI(inode->i_sb);
			ji->active_ag = BLKTOAG(addressPXD(&ji->ixpxd), jfs_sb);
79
			atomic_inc(&jfs_sb->bmap->db_active[ji->active_ag]);
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
		}
		spin_unlock_irq(&ji->ag_lock);
	}

	return 0;
}
static int jfs_release(struct inode *inode, struct file *file)
{
	struct jfs_inode_info *ji = JFS_IP(inode);

	spin_lock_irq(&ji->ag_lock);
	if (ji->active_ag != -1) {
		struct bmap *bmap = JFS_SBI(inode->i_sb)->bmap;
		atomic_dec(&bmap->db_active[ji->active_ag]);
		ji->active_ag = -1;
	}
	spin_unlock_irq(&ji->ag_lock);

	return 0;
}

101 102
int jfs_setattr(struct dentry *dentry, struct iattr *iattr)
{
103
	struct inode *inode = d_inode(dentry);
104 105 106 107 108 109
	int rc;

	rc = inode_change_ok(inode, iattr);
	if (rc)
		return rc;

110
	if (is_quota_modification(inode, iattr))
111
		dquot_initialize(inode);
112 113
	if ((iattr->ia_valid & ATTR_UID && !uid_eq(iattr->ia_uid, inode->i_uid)) ||
	    (iattr->ia_valid & ATTR_GID && !gid_eq(iattr->ia_gid, inode->i_gid))) {
114 115 116
		rc = dquot_transfer(inode, iattr);
		if (rc)
			return rc;
117 118
	}

C
Christoph Hellwig 已提交
119 120
	if ((iattr->ia_valid & ATTR_SIZE) &&
	    iattr->ia_size != i_size_read(inode)) {
121 122
		inode_dio_wait(inode);

M
Marco Stornelli 已提交
123
		rc = inode_newsize_ok(inode, iattr->ia_size);
C
Christoph Hellwig 已提交
124 125
		if (rc)
			return rc;
M
Marco Stornelli 已提交
126 127 128

		truncate_setsize(inode, iattr->ia_size);
		jfs_truncate(inode);
C
Christoph Hellwig 已提交
129
	}
130

C
Christoph Hellwig 已提交
131 132
	setattr_copy(inode, iattr);
	mark_inode_dirty(inode);
133

C
Christoph Hellwig 已提交
134
	if (iattr->ia_valid & ATTR_MODE)
135
		rc = posix_acl_chmod(inode, inode->i_mode);
136 137 138
	return rc;
}

139
const struct inode_operations jfs_file_inode_operations = {
L
Linus Torvalds 已提交
140 141 142 143 144
	.setxattr	= jfs_setxattr,
	.getxattr	= jfs_getxattr,
	.listxattr	= jfs_listxattr,
	.removexattr	= jfs_removexattr,
	.setattr	= jfs_setattr,
145
#ifdef CONFIG_JFS_POSIX_ACL
146
	.get_acl	= jfs_get_acl,
147
	.set_acl	= jfs_set_acl,
L
Linus Torvalds 已提交
148 149 150
#endif
};

151
const struct file_operations jfs_file_operations = {
L
Linus Torvalds 已提交
152 153
	.open		= jfs_open,
	.llseek		= generic_file_llseek,
154
	.read_iter	= generic_file_read_iter,
155
	.write_iter	= generic_file_write_iter,
L
Linus Torvalds 已提交
156
	.mmap		= generic_file_mmap,
D
Daniel Drake 已提交
157
	.splice_read	= generic_file_splice_read,
A
Al Viro 已提交
158
	.splice_write	= iter_file_splice_write,
L
Linus Torvalds 已提交
159 160
	.fsync		= jfs_fsync,
	.release	= jfs_release,
161
	.unlocked_ioctl = jfs_ioctl,
162 163 164
#ifdef CONFIG_COMPAT
	.compat_ioctl	= jfs_compat_ioctl,
#endif
L
Linus Torvalds 已提交
165
};