blob: e6e8281628a60542dc115d21fbbd9cb4f58b1f35 [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * file.c
5 *
6 * File open, close, extend, truncate
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
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.
14 *
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.
19 *
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.
24 */
25
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080026#include <linux/capability.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080027#include <linux/fs.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>
Mark Fashehe2057c52006-10-03 17:53:05 -070033#include <linux/sched.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020034#include <linux/splice.h>
Tiger Yang7f1a37e2006-11-15 15:48:42 +080035#include <linux/mount.h>
Mark Fasheh9517bac2007-02-09 20:24:12 -080036#include <linux/writeback.h>
Mark Fasheh385820a2007-07-19 00:14:38 -070037#include <linux/falloc.h>
Jan Karaa90714c2008-10-09 19:38:40 +020038#include <linux/quotaops.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080039
40#define MLOG_MASK_PREFIX ML_INODE
41#include <cluster/masklog.h>
42
43#include "ocfs2.h"
44
45#include "alloc.h"
46#include "aops.h"
47#include "dir.h"
48#include "dlmglue.h"
49#include "extent_map.h"
50#include "file.h"
51#include "sysfile.h"
52#include "inode.h"
Herbert Poetzlca4d1472006-07-03 17:27:12 -070053#include "ioctl.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080054#include "journal.h"
Mark Fasheh53fc6222007-12-20 16:49:04 -080055#include "locks.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080056#include "mmap.h"
57#include "suballoc.h"
58#include "super.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080059#include "xattr.h"
Tiger Yang23fc2702008-11-14 11:17:18 +080060#include "acl.h"
Jan Karaa90714c2008-10-09 19:38:40 +020061#include "quota.h"
Tao Ma293b2f72009-08-25 08:02:48 +080062#include "refcounttree.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080063
64#include "buffer_head_io.h"
65
66static int ocfs2_sync_inode(struct inode *inode)
67{
68 filemap_fdatawrite(inode->i_mapping);
69 return sync_mapping_buffers(inode->i_mapping);
70}
71
Mark Fasheh53fc6222007-12-20 16:49:04 -080072static int ocfs2_init_file_private(struct inode *inode, struct file *file)
73{
74 struct ocfs2_file_private *fp;
75
76 fp = kzalloc(sizeof(struct ocfs2_file_private), GFP_KERNEL);
77 if (!fp)
78 return -ENOMEM;
79
80 fp->fp_file = file;
81 mutex_init(&fp->fp_mutex);
82 ocfs2_file_lock_res_init(&fp->fp_flock, fp);
83 file->private_data = fp;
84
85 return 0;
86}
87
88static void ocfs2_free_file_private(struct inode *inode, struct file *file)
89{
90 struct ocfs2_file_private *fp = file->private_data;
91 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
92
93 if (fp) {
94 ocfs2_simple_drop_lockres(osb, &fp->fp_flock);
95 ocfs2_lock_res_free(&fp->fp_flock);
96 kfree(fp);
97 file->private_data = NULL;
98 }
99}
100
Mark Fashehccd979b2005-12-15 14:31:24 -0800101static int ocfs2_file_open(struct inode *inode, struct file *file)
102{
103 int status;
104 int mode = file->f_flags;
105 struct ocfs2_inode_info *oi = OCFS2_I(inode);
106
107 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
Josef Sipekd28c9172006-12-08 02:37:25 -0800108 file->f_path.dentry->d_name.len, file->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -0800109
Christoph Hellwig907f4552010-03-03 09:05:06 -0500110 if (file->f_mode & FMODE_WRITE)
Christoph Hellwig871a2932010-03-03 09:05:07 -0500111 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500112
Mark Fashehccd979b2005-12-15 14:31:24 -0800113 spin_lock(&oi->ip_lock);
114
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);
120
121 status = -ENOENT;
122 goto leave;
123 }
124
125 if (mode & O_DIRECT)
126 oi->ip_flags |= OCFS2_INODE_OPEN_DIRECT;
127
128 oi->ip_open_count++;
129 spin_unlock(&oi->ip_lock);
Mark Fasheh53fc6222007-12-20 16:49:04 -0800130
131 status = ocfs2_init_file_private(inode, file);
132 if (status) {
133 /*
134 * We want to set open count back if we're failing the
135 * open.
136 */
137 spin_lock(&oi->ip_lock);
138 oi->ip_open_count--;
139 spin_unlock(&oi->ip_lock);
140 }
141
Mark Fashehccd979b2005-12-15 14:31:24 -0800142leave:
143 mlog_exit(status);
144 return status;
145}
146
147static int ocfs2_file_release(struct inode *inode, struct file *file)
148{
149 struct ocfs2_inode_info *oi = OCFS2_I(inode);
150
151 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
Josef Sipekd28c9172006-12-08 02:37:25 -0800152 file->f_path.dentry->d_name.len,
153 file->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -0800154
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);
159
Mark Fasheh53fc6222007-12-20 16:49:04 -0800160 ocfs2_free_file_private(inode, file);
161
Mark Fashehccd979b2005-12-15 14:31:24 -0800162 mlog_exit(0);
163
164 return 0;
165}
166
Mark Fasheh53fc6222007-12-20 16:49:04 -0800167static int ocfs2_dir_open(struct inode *inode, struct file *file)
168{
169 return ocfs2_init_file_private(inode, file);
170}
171
172static int ocfs2_dir_release(struct inode *inode, struct file *file)
173{
174 ocfs2_free_file_private(inode, file);
175 return 0;
176}
177
Mark Fashehccd979b2005-12-15 14:31:24 -0800178static int ocfs2_sync_file(struct file *file,
179 struct dentry *dentry,
180 int datasync)
181{
182 int err = 0;
183 journal_t *journal;
184 struct inode *inode = dentry->d_inode;
185 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
186
187 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync,
188 dentry->d_name.len, dentry->d_name.name);
189
190 err = ocfs2_sync_inode(dentry->d_inode);
191 if (err)
192 goto bail;
193
Hisashi Hifumie04cc152009-06-09 16:47:45 +0900194 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
195 goto bail;
196
Mark Fashehccd979b2005-12-15 14:31:24 -0800197 journal = osb->journal->j_journal;
Joel Becker2b4e30f2008-09-03 20:03:41 -0700198 err = jbd2_journal_force_commit(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -0800199
200bail:
201 mlog_exit(err);
202
203 return (err < 0) ? -EIO : 0;
204}
205
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800206int ocfs2_should_update_atime(struct inode *inode,
207 struct vfsmount *vfsmnt)
208{
209 struct timespec now;
210 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
211
212 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
213 return 0;
214
215 if ((inode->i_flags & S_NOATIME) ||
216 ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode)))
217 return 0;
218
Mark Fasheh6c2aad02006-12-19 15:25:52 -0800219 /*
220 * We can be called with no vfsmnt structure - NFSD will
221 * sometimes do this.
222 *
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.
226 */
227 if (vfsmnt == NULL)
228 return 0;
229
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800230 if ((vfsmnt->mnt_flags & MNT_NOATIME) ||
231 ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
232 return 0;
233
Mark Fasheh7e913c52006-12-13 00:34:35 -0800234 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))
237 return 1;
238
239 return 0;
240 }
241
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800242 now = CURRENT_TIME;
243 if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum))
244 return 0;
245 else
246 return 1;
247}
248
249int ocfs2_update_inode_atime(struct inode *inode,
250 struct buffer_head *bh)
251{
252 int ret;
253 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
254 handle_t *handle;
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700255 struct ocfs2_dinode *di = (struct ocfs2_dinode *) bh->b_data;
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800256
257 mlog_entry_void();
258
259 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200260 if (IS_ERR(handle)) {
261 ret = PTR_ERR(handle);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800262 mlog_errno(ret);
263 goto out;
264 }
265
Joel Becker0cf2f762009-02-12 16:41:25 -0800266 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -0700267 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700268 if (ret) {
269 mlog_errno(ret);
270 goto out_commit;
271 }
272
273 /*
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
276 * inode fields.
277 */
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800278 inode->i_atime = CURRENT_TIME;
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700279 di->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
280 di->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
Joel Beckerec20cec2010-03-19 14:13:52 -0700281 ocfs2_journal_dirty(handle, bh);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800282
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700283out_commit:
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800284 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
285out:
286 mlog_exit(ret);
287 return ret;
288}
289
Adrian Bunk6cb129f2007-04-26 00:29:35 -0700290static int ocfs2_set_inode_size(handle_t *handle,
291 struct inode *inode,
292 struct buffer_head *fe_bh,
293 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800294{
295 int status;
296
297 mlog_entry_void();
298 i_size_write(inode, new_i_size);
Mark Fasheh8110b072007-03-22 16:53:23 -0700299 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800300 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
301
302 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
303 if (status < 0) {
304 mlog_errno(status);
305 goto bail;
306 }
307
308bail:
309 mlog_exit(status);
310 return status;
311}
312
Jan Kara9e33d692008-08-25 19:56:50 +0200313int ocfs2_simple_size_update(struct inode *inode,
314 struct buffer_head *di_bh,
315 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800316{
317 int ret;
318 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700319 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800320
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700321 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200322 if (IS_ERR(handle)) {
323 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800324 mlog_errno(ret);
325 goto out;
326 }
327
328 ret = ocfs2_set_inode_size(handle, inode, di_bh,
329 new_i_size);
330 if (ret < 0)
331 mlog_errno(ret);
332
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700333 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800334out:
335 return ret;
336}
337
Tao Ma37f8a2b2009-08-26 09:47:28 +0800338static int ocfs2_cow_file_pos(struct inode *inode,
339 struct buffer_head *fe_bh,
340 u64 offset)
341{
342 int status;
343 u32 phys, cpos = offset >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
344 unsigned int num_clusters = 0;
345 unsigned int ext_flags = 0;
346
347 /*
348 * If the new offset is aligned to the range of the cluster, there is
349 * no space for ocfs2_zero_range_for_truncate to fill, so no need to
350 * CoW either.
351 */
352 if ((offset & (OCFS2_SB(inode->i_sb)->s_clustersize - 1)) == 0)
353 return 0;
354
355 status = ocfs2_get_clusters(inode, cpos, &phys,
356 &num_clusters, &ext_flags);
357 if (status) {
358 mlog_errno(status);
359 goto out;
360 }
361
362 if (!(ext_flags & OCFS2_EXT_REFCOUNTED))
363 goto out;
364
365 return ocfs2_refcount_cow(inode, fe_bh, cpos, 1, cpos+1);
366
367out:
368 return status;
369}
370
Mark Fashehccd979b2005-12-15 14:31:24 -0800371static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
372 struct inode *inode,
373 struct buffer_head *fe_bh,
374 u64 new_i_size)
375{
376 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700377 handle_t *handle;
Mark Fasheh60b11392007-02-16 11:46:50 -0800378 struct ocfs2_dinode *di;
Mark Fasheh35edec12007-07-06 14:41:18 -0700379 u64 cluster_bytes;
Mark Fashehccd979b2005-12-15 14:31:24 -0800380
381 mlog_entry_void();
382
Tao Ma37f8a2b2009-08-26 09:47:28 +0800383 /*
384 * We need to CoW the cluster contains the offset if it is reflinked
385 * since we will call ocfs2_zero_range_for_truncate later which will
386 * write "0" from offset to the end of the cluster.
387 */
388 status = ocfs2_cow_file_pos(inode, fe_bh, new_i_size);
389 if (status) {
390 mlog_errno(status);
391 return status;
392 }
393
Mark Fashehccd979b2005-12-15 14:31:24 -0800394 /* TODO: This needs to actually orphan the inode in this
395 * transaction. */
396
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700397 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800398 if (IS_ERR(handle)) {
399 status = PTR_ERR(handle);
400 mlog_errno(status);
401 goto out;
402 }
403
Joel Becker0cf2f762009-02-12 16:41:25 -0800404 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700405 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh60b11392007-02-16 11:46:50 -0800406 if (status < 0) {
407 mlog_errno(status);
408 goto out_commit;
409 }
410
411 /*
412 * Do this before setting i_size.
413 */
Mark Fasheh35edec12007-07-06 14:41:18 -0700414 cluster_bytes = ocfs2_align_bytes_to_clusters(inode->i_sb, new_i_size);
415 status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size,
416 cluster_bytes);
Mark Fasheh60b11392007-02-16 11:46:50 -0800417 if (status) {
418 mlog_errno(status);
419 goto out_commit;
420 }
421
422 i_size_write(inode, new_i_size);
Mark Fasheh60b11392007-02-16 11:46:50 -0800423 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
424
425 di = (struct ocfs2_dinode *) fe_bh->b_data;
426 di->i_size = cpu_to_le64(new_i_size);
427 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
428 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
429
Joel Beckerec20cec2010-03-19 14:13:52 -0700430 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800431
Mark Fasheh60b11392007-02-16 11:46:50 -0800432out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700433 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800434out:
Mark Fasheh60b11392007-02-16 11:46:50 -0800435
Mark Fashehccd979b2005-12-15 14:31:24 -0800436 mlog_exit(status);
437 return status;
438}
439
440static int ocfs2_truncate_file(struct inode *inode,
441 struct buffer_head *di_bh,
442 u64 new_i_size)
443{
444 int status = 0;
445 struct ocfs2_dinode *fe = NULL;
446 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
447 struct ocfs2_truncate_context *tc = NULL;
448
Mark Fashehb06970532006-03-03 10:24:33 -0800449 mlog_entry("(inode = %llu, new_i_size = %llu\n",
450 (unsigned long long)OCFS2_I(inode)->ip_blkno,
451 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800452
Joel Beckerb657c952008-11-13 14:49:11 -0800453 /* We trust di_bh because it comes from ocfs2_inode_lock(), which
454 * already validated it */
Mark Fashehccd979b2005-12-15 14:31:24 -0800455 fe = (struct ocfs2_dinode *) di_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800456
457 mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800458 "Inode %llu, inode i_size = %lld != di "
459 "i_size = %llu, i_flags = 0x%x\n",
460 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -0800461 i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800462 (unsigned long long)le64_to_cpu(fe->i_size),
463 le32_to_cpu(fe->i_flags));
Mark Fashehccd979b2005-12-15 14:31:24 -0800464
465 if (new_i_size > le64_to_cpu(fe->i_size)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800466 mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
467 (unsigned long long)le64_to_cpu(fe->i_size),
468 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800469 status = -EINVAL;
470 mlog_errno(status);
471 goto bail;
472 }
473
Mark Fashehb06970532006-03-03 10:24:33 -0800474 mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
475 (unsigned long long)le64_to_cpu(fe->i_blkno),
476 (unsigned long long)le64_to_cpu(fe->i_size),
477 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800478
479 /* lets handle the simple truncate cases before doing any more
480 * cluster locking. */
481 if (new_i_size == le64_to_cpu(fe->i_size))
482 goto bail;
483
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700484 down_write(&OCFS2_I(inode)->ip_alloc_sem);
485
Mark Fashehc934a922007-10-18 15:23:46 -0700486 /*
487 * The inode lock forced other nodes to sync and drop their
488 * pages, which (correctly) happens even if we have a truncate
489 * without allocation change - ocfs2 cluster sizes can be much
490 * greater than page size, so we have to truncate them
491 * anyway.
492 */
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700493 unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1);
494 truncate_inode_pages(inode->i_mapping, new_i_size);
495
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700496 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
497 status = ocfs2_truncate_inline(inode, di_bh, new_i_size,
Mark Fashehb1967d02007-11-20 11:56:39 -0800498 i_size_read(inode), 1);
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700499 if (status)
500 mlog_errno(status);
501
Mark Fashehc934a922007-10-18 15:23:46 -0700502 goto bail_unlock_sem;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700503 }
504
Mark Fashehccd979b2005-12-15 14:31:24 -0800505 /* alright, we're going to need to do a full blown alloc size
506 * change. Orphan the inode so that recovery can complete the
507 * truncate if necessary. This does the task of marking
508 * i_size. */
509 status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size);
510 if (status < 0) {
511 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700512 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800513 }
514
515 status = ocfs2_prepare_truncate(osb, inode, di_bh, &tc);
516 if (status < 0) {
517 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700518 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800519 }
520
521 status = ocfs2_commit_truncate(osb, inode, di_bh, tc);
522 if (status < 0) {
523 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700524 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800525 }
526
527 /* TODO: orphan dir cleanup here. */
Mark Fashehc934a922007-10-18 15:23:46 -0700528bail_unlock_sem:
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700529 up_write(&OCFS2_I(inode)->ip_alloc_sem);
530
Mark Fashehccd979b2005-12-15 14:31:24 -0800531bail:
Tao Ma8b2c0db2009-08-18 11:43:49 +0800532 if (!status && OCFS2_I(inode)->ip_clusters == 0)
533 status = ocfs2_try_remove_refcount_tree(inode, di_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800534
535 mlog_exit(status);
536 return status;
537}
538
539/*
Tao Ma0eb8d472008-08-18 17:38:45 +0800540 * extend file allocation only here.
Mark Fashehccd979b2005-12-15 14:31:24 -0800541 * we'll update all the disk stuff, and oip->alloc_size
542 *
543 * expect stuff to be locked, a transaction started and enough data /
544 * metadata reservations in the contexts.
545 *
546 * Will return -EAGAIN, and a reason if a restart is needed.
547 * If passed in, *reason will always be set, even in error.
548 */
Tao Ma0eb8d472008-08-18 17:38:45 +0800549int ocfs2_add_inode_data(struct ocfs2_super *osb,
550 struct inode *inode,
551 u32 *logical_offset,
552 u32 clusters_to_add,
553 int mark_unwritten,
554 struct buffer_head *fe_bh,
555 handle_t *handle,
556 struct ocfs2_alloc_context *data_ac,
557 struct ocfs2_alloc_context *meta_ac,
558 enum ocfs2_alloc_restarted *reason_ret)
Mark Fashehccd979b2005-12-15 14:31:24 -0800559{
Joel Beckerf99b9b72008-08-20 19:36:33 -0700560 int ret;
561 struct ocfs2_extent_tree et;
Mark Fashehccd979b2005-12-15 14:31:24 -0800562
Joel Becker5e404e92009-02-13 03:54:22 -0800563 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), fe_bh);
Joel Beckercbee7e12009-02-13 03:34:15 -0800564 ret = ocfs2_add_clusters_in_btree(handle, &et, logical_offset,
565 clusters_to_add, mark_unwritten,
566 data_ac, meta_ac, reason_ret);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700567
568 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800569}
570
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800571static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
572 u32 clusters_to_add, int mark_unwritten)
Mark Fashehccd979b2005-12-15 14:31:24 -0800573{
574 int status = 0;
575 int restart_func = 0;
Mark Fashehabf8b152007-01-17 13:07:24 -0800576 int credits;
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800577 u32 prev_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -0800578 struct buffer_head *bh = NULL;
579 struct ocfs2_dinode *fe = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700580 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800581 struct ocfs2_alloc_context *data_ac = NULL;
582 struct ocfs2_alloc_context *meta_ac = NULL;
583 enum ocfs2_alloc_restarted why;
584 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700585 struct ocfs2_extent_tree et;
Jan Karaa90714c2008-10-09 19:38:40 +0200586 int did_quota = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800587
588 mlog_entry("(clusters_to_add = %u)\n", clusters_to_add);
589
Mark Fashehdcd05382007-01-16 11:32:23 -0800590 /*
591 * This function only exists for file systems which don't
592 * support holes.
593 */
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800594 BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb));
Mark Fashehdcd05382007-01-16 11:32:23 -0800595
Joel Beckerb657c952008-11-13 14:49:11 -0800596 status = ocfs2_read_inode_block(inode, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800597 if (status < 0) {
598 mlog_errno(status);
599 goto leave;
600 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800601 fe = (struct ocfs2_dinode *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800602
603restart_all:
604 BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
605
Tao Mae7d4cb62008-08-18 17:38:44 +0800606 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
607 "clusters_to_add = %u\n",
608 (unsigned long long)OCFS2_I(inode)->ip_blkno,
609 (long long)i_size_read(inode), le32_to_cpu(fe->i_clusters),
610 clusters_to_add);
Joel Becker5e404e92009-02-13 03:54:22 -0800611 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700612 status = ocfs2_lock_allocators(inode, &et, clusters_to_add, 0,
613 &data_ac, &meta_ac);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800614 if (status) {
615 mlog_errno(status);
616 goto leave;
617 }
618
Tao Ma811f9332008-08-18 17:38:43 +0800619 credits = ocfs2_calc_extend_credits(osb->sb, &fe->id2.i_list,
620 clusters_to_add);
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700621 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800622 if (IS_ERR(handle)) {
623 status = PTR_ERR(handle);
624 handle = NULL;
625 mlog_errno(status);
626 goto leave;
627 }
628
629restarted_transaction:
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500630 status = dquot_alloc_space_nodirty(inode,
631 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
632 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +0200633 goto leave;
Jan Karaa90714c2008-10-09 19:38:40 +0200634 did_quota = 1;
635
Mark Fashehccd979b2005-12-15 14:31:24 -0800636 /* reserve a write to the file entry early on - that we if we
637 * run out of credits in the allocation path, we can still
638 * update i_size. */
Joel Becker0cf2f762009-02-12 16:41:25 -0800639 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -0700640 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800641 if (status < 0) {
642 mlog_errno(status);
643 goto leave;
644 }
645
646 prev_clusters = OCFS2_I(inode)->ip_clusters;
647
Tao Ma0eb8d472008-08-18 17:38:45 +0800648 status = ocfs2_add_inode_data(osb,
649 inode,
650 &logical_start,
651 clusters_to_add,
652 mark_unwritten,
653 bh,
654 handle,
655 data_ac,
656 meta_ac,
657 &why);
Mark Fashehccd979b2005-12-15 14:31:24 -0800658 if ((status < 0) && (status != -EAGAIN)) {
659 if (status != -ENOSPC)
660 mlog_errno(status);
661 goto leave;
662 }
663
Joel Beckerec20cec2010-03-19 14:13:52 -0700664 ocfs2_journal_dirty(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800665
666 spin_lock(&OCFS2_I(inode)->ip_lock);
667 clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
668 spin_unlock(&OCFS2_I(inode)->ip_lock);
Jan Karaa90714c2008-10-09 19:38:40 +0200669 /* Release unused quota reservation */
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500670 dquot_free_space(inode,
Jan Karaa90714c2008-10-09 19:38:40 +0200671 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
672 did_quota = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800673
674 if (why != RESTART_NONE && clusters_to_add) {
675 if (why == RESTART_META) {
676 mlog(0, "restarting function.\n");
677 restart_func = 1;
678 } else {
679 BUG_ON(why != RESTART_TRANS);
680
681 mlog(0, "restarting transaction.\n");
682 /* TODO: This can be more intelligent. */
683 credits = ocfs2_calc_extend_credits(osb->sb,
Tao Ma811f9332008-08-18 17:38:43 +0800684 &fe->id2.i_list,
Mark Fashehccd979b2005-12-15 14:31:24 -0800685 clusters_to_add);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700686 status = ocfs2_extend_trans(handle, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800687 if (status < 0) {
688 /* handle still has to be committed at
689 * this point. */
690 status = -ENOMEM;
691 mlog_errno(status);
692 goto leave;
693 }
694 goto restarted_transaction;
695 }
696 }
697
Mark Fashehb06970532006-03-03 10:24:33 -0800698 mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700699 le32_to_cpu(fe->i_clusters),
700 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -0800701 mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
Jan Kara634bf742007-12-19 15:25:42 +0100702 OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800703
704leave:
Jan Karaa90714c2008-10-09 19:38:40 +0200705 if (status < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500706 dquot_free_space(inode,
Jan Karaa90714c2008-10-09 19:38:40 +0200707 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
Mark Fashehccd979b2005-12-15 14:31:24 -0800708 if (handle) {
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700709 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800710 handle = NULL;
711 }
712 if (data_ac) {
713 ocfs2_free_alloc_context(data_ac);
714 data_ac = NULL;
715 }
716 if (meta_ac) {
717 ocfs2_free_alloc_context(meta_ac);
718 meta_ac = NULL;
719 }
720 if ((!status) && restart_func) {
721 restart_func = 0;
722 goto restart_all;
723 }
Mark Fasheha81cb882008-10-07 14:25:16 -0700724 brelse(bh);
725 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800726
727 mlog_exit(status);
728 return status;
729}
730
731/* Some parts of this taken from generic_cont_expand, which turned out
732 * to be too fragile to do exactly what we need without us having to
Nick Piggin4e02ed42008-10-29 14:00:55 -0700733 * worry about recursive locking in ->write_begin() and ->write_end(). */
Mark Fashehccd979b2005-12-15 14:31:24 -0800734static int ocfs2_write_zero_page(struct inode *inode,
735 u64 size)
736{
737 struct address_space *mapping = inode->i_mapping;
738 struct page *page;
739 unsigned long index;
740 unsigned int offset;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700741 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800742 int ret;
743
744 offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
Sunil Mushran2bd63212010-01-25 16:57:38 -0800745 /* ugh. in prepare/commit_write, if from==to==start of block, we
Mark Fashehccd979b2005-12-15 14:31:24 -0800746 ** skip the prepare. make sure we never send an offset for the start
747 ** of a block
748 */
749 if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
750 offset++;
751 }
752 index = size >> PAGE_CACHE_SHIFT;
753
754 page = grab_cache_page(mapping, index);
755 if (!page) {
756 ret = -ENOMEM;
757 mlog_errno(ret);
758 goto out;
759 }
760
Mark Fasheh53013cb2006-05-05 19:04:03 -0700761 ret = ocfs2_prepare_write_nolock(inode, page, offset, offset);
Mark Fashehccd979b2005-12-15 14:31:24 -0800762 if (ret < 0) {
763 mlog_errno(ret);
764 goto out_unlock;
765 }
766
767 if (ocfs2_should_order_data(inode)) {
768 handle = ocfs2_start_walk_page_trans(inode, page, offset,
769 offset);
770 if (IS_ERR(handle)) {
771 ret = PTR_ERR(handle);
772 handle = NULL;
773 goto out_unlock;
774 }
775 }
776
777 /* must not update i_size! */
778 ret = block_commit_write(page, offset, offset);
779 if (ret < 0)
780 mlog_errno(ret);
781 else
782 ret = 0;
783
784 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700785 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800786out_unlock:
787 unlock_page(page);
788 page_cache_release(page);
789out:
790 return ret;
791}
792
793static int ocfs2_zero_extend(struct inode *inode,
794 u64 zero_to_size)
795{
796 int ret = 0;
797 u64 start_off;
798 struct super_block *sb = inode->i_sb;
799
800 start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode));
801 while (start_off < zero_to_size) {
802 ret = ocfs2_write_zero_page(inode, start_off);
803 if (ret < 0) {
804 mlog_errno(ret);
805 goto out;
806 }
807
808 start_off += sb->s_blocksize;
Mark Fashehe2057c52006-10-03 17:53:05 -0700809
810 /*
811 * Very large extends have the potential to lock up
812 * the cpu for extended periods of time.
813 */
814 cond_resched();
Mark Fashehccd979b2005-12-15 14:31:24 -0800815 }
816
817out:
818 return ret;
819}
820
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700821int ocfs2_extend_no_holes(struct inode *inode, u64 new_i_size, u64 zero_to)
822{
823 int ret;
824 u32 clusters_to_add;
825 struct ocfs2_inode_info *oi = OCFS2_I(inode);
826
827 clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size);
828 if (clusters_to_add < oi->ip_clusters)
829 clusters_to_add = 0;
830 else
831 clusters_to_add -= oi->ip_clusters;
832
833 if (clusters_to_add) {
834 ret = __ocfs2_extend_allocation(inode, oi->ip_clusters,
835 clusters_to_add, 0);
836 if (ret) {
837 mlog_errno(ret);
838 goto out;
839 }
840 }
841
842 /*
843 * Call this even if we don't add any clusters to the tree. We
844 * still need to zero the area between the old i_size and the
845 * new i_size.
846 */
847 ret = ocfs2_zero_extend(inode, zero_to);
848 if (ret < 0)
849 mlog_errno(ret);
850
851out:
852 return ret;
853}
854
Mark Fashehccd979b2005-12-15 14:31:24 -0800855static int ocfs2_extend_file(struct inode *inode,
856 struct buffer_head *di_bh,
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700857 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800858{
Mark Fashehc934a922007-10-18 15:23:46 -0700859 int ret = 0;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700860 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800861
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700862 BUG_ON(!di_bh);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700863
Mark Fashehccd979b2005-12-15 14:31:24 -0800864 /* setattr sometimes calls us like this. */
865 if (new_i_size == 0)
866 goto out;
867
868 if (i_size_read(inode) == new_i_size)
869 goto out;
870 BUG_ON(new_i_size < i_size_read(inode));
871
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700872 /*
873 * Fall through for converting inline data, even if the fs
874 * supports sparse files.
875 *
876 * The check for inline data here is legal - nobody can add
877 * the feature since we have i_mutex. We must check it again
878 * after acquiring ip_alloc_sem though, as paths like mmap
879 * might have raced us to converting the inode to extents.
880 */
881 if (!(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
882 && ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800883 goto out_update_size;
Mark Fashehccd979b2005-12-15 14:31:24 -0800884
Mark Fasheh0effef72006-10-03 17:44:42 -0700885 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700886 * The alloc sem blocks people in read/write from reading our
887 * allocation until we're done changing it. We depend on
888 * i_mutex to block other extend/truncate calls while we're
889 * here.
Mark Fasheh0effef72006-10-03 17:44:42 -0700890 */
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700891 down_write(&oi->ip_alloc_sem);
892
893 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
894 /*
895 * We can optimize small extends by keeping the inodes
896 * inline data.
897 */
898 if (ocfs2_size_fits_inline_data(di_bh, new_i_size)) {
899 up_write(&oi->ip_alloc_sem);
900 goto out_update_size;
901 }
902
903 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
904 if (ret) {
905 up_write(&oi->ip_alloc_sem);
906
907 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700908 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700909 }
910 }
911
912 if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
913 ret = ocfs2_extend_no_holes(inode, new_i_size, new_i_size);
914
915 up_write(&oi->ip_alloc_sem);
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700916
Mark Fasheh0effef72006-10-03 17:44:42 -0700917 if (ret < 0) {
918 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700919 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800920 }
921
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800922out_update_size:
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700923 ret = ocfs2_simple_size_update(inode, di_bh, new_i_size);
924 if (ret < 0)
925 mlog_errno(ret);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700926
Mark Fashehccd979b2005-12-15 14:31:24 -0800927out:
928 return ret;
929}
930
931int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
932{
933 int status = 0, size_change;
934 struct inode *inode = dentry->d_inode;
935 struct super_block *sb = inode->i_sb;
936 struct ocfs2_super *osb = OCFS2_SB(sb);
937 struct buffer_head *bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700938 handle_t *handle = NULL;
Jan Kara65bac572009-06-02 14:24:01 +0200939 int qtype;
940 struct dquot *transfer_from[MAXQUOTAS] = { };
941 struct dquot *transfer_to[MAXQUOTAS] = { };
Mark Fashehccd979b2005-12-15 14:31:24 -0800942
943 mlog_entry("(0x%p, '%.*s')\n", dentry,
944 dentry->d_name.len, dentry->d_name.name);
945
Sunil Mushranbc535802008-04-18 10:23:53 -0700946 /* ensuring we don't even attempt to truncate a symlink */
947 if (S_ISLNK(inode->i_mode))
948 attr->ia_valid &= ~ATTR_SIZE;
949
Mark Fashehccd979b2005-12-15 14:31:24 -0800950 if (attr->ia_valid & ATTR_MODE)
951 mlog(0, "mode change: %d\n", attr->ia_mode);
952 if (attr->ia_valid & ATTR_UID)
953 mlog(0, "uid change: %d\n", attr->ia_uid);
954 if (attr->ia_valid & ATTR_GID)
955 mlog(0, "gid change: %d\n", attr->ia_gid);
956 if (attr->ia_valid & ATTR_SIZE)
957 mlog(0, "size change...\n");
958 if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
959 mlog(0, "time change...\n");
960
961#define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
962 | ATTR_GID | ATTR_UID | ATTR_MODE)
963 if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
964 mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
965 return 0;
966 }
967
968 status = inode_change_ok(inode, attr);
969 if (status)
970 return status;
971
972 size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
973 if (size_change) {
Christoph Hellwig871a2932010-03-03 09:05:07 -0500974 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500975
Mark Fashehccd979b2005-12-15 14:31:24 -0800976 status = ocfs2_rw_lock(inode, 1);
977 if (status < 0) {
978 mlog_errno(status);
979 goto bail;
980 }
981 }
982
Mark Fashehe63aecb62007-10-18 15:30:42 -0700983 status = ocfs2_inode_lock(inode, &bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800984 if (status < 0) {
985 if (status != -ENOENT)
986 mlog_errno(status);
987 goto bail_unlock_rw;
988 }
989
990 if (size_change && attr->ia_size != i_size_read(inode)) {
Wengang Wang5051f762010-02-26 18:18:25 +0800991 status = inode_newsize_ok(inode, attr->ia_size);
992 if (status)
Mark Fashehce76fd32007-07-20 12:02:14 -0700993 goto bail_unlock;
Mark Fashehce76fd32007-07-20 12:02:14 -0700994
Joel Becker2b4e30f2008-09-03 20:03:41 -0700995 if (i_size_read(inode) > attr->ia_size) {
996 if (ocfs2_should_order_data(inode)) {
997 status = ocfs2_begin_ordered_truncate(inode,
998 attr->ia_size);
999 if (status)
1000 goto bail_unlock;
1001 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001002 status = ocfs2_truncate_file(inode, bh, attr->ia_size);
Joel Becker2b4e30f2008-09-03 20:03:41 -07001003 } else
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001004 status = ocfs2_extend_file(inode, bh, attr->ia_size);
Mark Fashehccd979b2005-12-15 14:31:24 -08001005 if (status < 0) {
1006 if (status != -ENOSPC)
1007 mlog_errno(status);
1008 status = -ENOSPC;
1009 goto bail_unlock;
1010 }
1011 }
1012
Jan Karaa90714c2008-10-09 19:38:40 +02001013 if ((attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
1014 (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
Jan Kara65bac572009-06-02 14:24:01 +02001015 /*
1016 * Gather pointers to quota structures so that allocation /
1017 * freeing of quota structures happens here and not inside
Christoph Hellwigb43fa822010-03-03 09:05:03 -05001018 * dquot_transfer() where we have problems with lock ordering
Jan Kara65bac572009-06-02 14:24:01 +02001019 */
Jan Karaa90714c2008-10-09 19:38:40 +02001020 if (attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid
1021 && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1022 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
Jan Kara65bac572009-06-02 14:24:01 +02001023 transfer_to[USRQUOTA] = dqget(sb, attr->ia_uid,
1024 USRQUOTA);
1025 transfer_from[USRQUOTA] = dqget(sb, inode->i_uid,
1026 USRQUOTA);
1027 if (!transfer_to[USRQUOTA] || !transfer_from[USRQUOTA]) {
1028 status = -ESRCH;
Jan Karaa90714c2008-10-09 19:38:40 +02001029 goto bail_unlock;
Jan Kara65bac572009-06-02 14:24:01 +02001030 }
Jan Karaa90714c2008-10-09 19:38:40 +02001031 }
1032 if (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid
1033 && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1034 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
Jan Kara65bac572009-06-02 14:24:01 +02001035 transfer_to[GRPQUOTA] = dqget(sb, attr->ia_gid,
1036 GRPQUOTA);
1037 transfer_from[GRPQUOTA] = dqget(sb, inode->i_gid,
1038 GRPQUOTA);
1039 if (!transfer_to[GRPQUOTA] || !transfer_from[GRPQUOTA]) {
1040 status = -ESRCH;
Jan Karaa90714c2008-10-09 19:38:40 +02001041 goto bail_unlock;
Jan Kara65bac572009-06-02 14:24:01 +02001042 }
Jan Karaa90714c2008-10-09 19:38:40 +02001043 }
Jan Kara65bac572009-06-02 14:24:01 +02001044 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS +
1045 2 * ocfs2_quota_trans_credits(sb));
Jan Karaa90714c2008-10-09 19:38:40 +02001046 if (IS_ERR(handle)) {
1047 status = PTR_ERR(handle);
1048 mlog_errno(status);
1049 goto bail_unlock;
1050 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05001051 status = dquot_transfer(inode, attr);
Jan Karaa90714c2008-10-09 19:38:40 +02001052 if (status < 0)
1053 goto bail_commit;
1054 } else {
1055 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1056 if (IS_ERR(handle)) {
1057 status = PTR_ERR(handle);
1058 mlog_errno(status);
1059 goto bail_unlock;
1060 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001061 }
1062
Mark Fasheh7307de82007-05-09 15:16:19 -07001063 /*
1064 * This will intentionally not wind up calling vmtruncate(),
1065 * since all the work for a size change has been done above.
1066 * Otherwise, we could get into problems with truncate as
1067 * ip_alloc_sem is used there to protect against i_size
1068 * changes.
1069 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001070 status = inode_setattr(inode, attr);
1071 if (status < 0) {
1072 mlog_errno(status);
1073 goto bail_commit;
1074 }
1075
1076 status = ocfs2_mark_inode_dirty(handle, inode, bh);
1077 if (status < 0)
1078 mlog_errno(status);
1079
1080bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001081 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001082bail_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07001083 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001084bail_unlock_rw:
1085 if (size_change)
1086 ocfs2_rw_unlock(inode, 1);
1087bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001088 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001089
Jan Kara65bac572009-06-02 14:24:01 +02001090 /* Release quota pointers in case we acquired them */
1091 for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
1092 dqput(transfer_to[qtype]);
1093 dqput(transfer_from[qtype]);
1094 }
1095
Tiger Yang060bc662008-11-14 11:17:29 +08001096 if (!status && attr->ia_valid & ATTR_MODE) {
1097 status = ocfs2_acl_chmod(inode);
1098 if (status < 0)
1099 mlog_errno(status);
1100 }
1101
Mark Fashehccd979b2005-12-15 14:31:24 -08001102 mlog_exit(status);
1103 return status;
1104}
1105
1106int ocfs2_getattr(struct vfsmount *mnt,
1107 struct dentry *dentry,
1108 struct kstat *stat)
1109{
1110 struct inode *inode = dentry->d_inode;
1111 struct super_block *sb = dentry->d_inode->i_sb;
1112 struct ocfs2_super *osb = sb->s_fs_info;
1113 int err;
1114
1115 mlog_entry_void();
1116
1117 err = ocfs2_inode_revalidate(dentry);
1118 if (err) {
1119 if (err != -ENOENT)
1120 mlog_errno(err);
1121 goto bail;
1122 }
1123
1124 generic_fillattr(inode, stat);
1125
1126 /* We set the blksize from the cluster size for performance */
1127 stat->blksize = osb->s_clustersize;
1128
1129bail:
1130 mlog_exit(err);
1131
1132 return err;
1133}
1134
Al Viroe6305c42008-07-15 21:03:57 -04001135int ocfs2_permission(struct inode *inode, int mask)
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001136{
1137 int ret;
1138
1139 mlog_entry_void();
1140
Mark Fashehe63aecb62007-10-18 15:30:42 -07001141 ret = ocfs2_inode_lock(inode, NULL, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001142 if (ret) {
Mark Fasheha9f5f702007-04-26 11:43:43 -07001143 if (ret != -ENOENT)
1144 mlog_errno(ret);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001145 goto out;
1146 }
1147
Tiger Yang23fc2702008-11-14 11:17:18 +08001148 ret = generic_permission(inode, mask, ocfs2_check_acl);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001149
Mark Fashehe63aecb62007-10-18 15:30:42 -07001150 ocfs2_inode_unlock(inode, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001151out:
1152 mlog_exit(ret);
1153 return ret;
1154}
1155
Mark Fashehb2580102007-03-09 16:53:21 -08001156static int __ocfs2_write_remove_suid(struct inode *inode,
1157 struct buffer_head *bh)
Mark Fashehccd979b2005-12-15 14:31:24 -08001158{
1159 int ret;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001160 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08001161 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1162 struct ocfs2_dinode *di;
1163
Mark Fashehb06970532006-03-03 10:24:33 -08001164 mlog_entry("(Inode %llu, mode 0%o)\n",
Mark Fashehb2580102007-03-09 16:53:21 -08001165 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001166
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001167 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001168 if (IS_ERR(handle)) {
1169 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001170 mlog_errno(ret);
1171 goto out;
1172 }
1173
Joel Becker0cf2f762009-02-12 16:41:25 -08001174 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -07001175 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001176 if (ret < 0) {
1177 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001178 goto out_trans;
Mark Fashehccd979b2005-12-15 14:31:24 -08001179 }
1180
1181 inode->i_mode &= ~S_ISUID;
1182 if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
1183 inode->i_mode &= ~S_ISGID;
1184
1185 di = (struct ocfs2_dinode *) bh->b_data;
1186 di->i_mode = cpu_to_le16(inode->i_mode);
1187
Joel Beckerec20cec2010-03-19 14:13:52 -07001188 ocfs2_journal_dirty(handle, bh);
Mark Fashehb2580102007-03-09 16:53:21 -08001189
Mark Fashehccd979b2005-12-15 14:31:24 -08001190out_trans:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001191 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001192out:
1193 mlog_exit(ret);
1194 return ret;
1195}
1196
Mark Fasheh9517bac2007-02-09 20:24:12 -08001197/*
1198 * Will look for holes and unwritten extents in the range starting at
1199 * pos for count bytes (inclusive).
1200 */
1201static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
1202 size_t count)
1203{
1204 int ret = 0;
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001205 unsigned int extent_flags;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001206 u32 cpos, clusters, extent_len, phys_cpos;
1207 struct super_block *sb = inode->i_sb;
1208
1209 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1210 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1211
1212 while (clusters) {
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001213 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1214 &extent_flags);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001215 if (ret < 0) {
1216 mlog_errno(ret);
1217 goto out;
1218 }
1219
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001220 if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001221 ret = 1;
1222 break;
1223 }
1224
1225 if (extent_len > clusters)
1226 extent_len = clusters;
1227
1228 clusters -= extent_len;
1229 cpos += extent_len;
1230 }
1231out:
1232 return ret;
1233}
1234
Mark Fashehb2580102007-03-09 16:53:21 -08001235static int ocfs2_write_remove_suid(struct inode *inode)
1236{
1237 int ret;
1238 struct buffer_head *bh = NULL;
Mark Fashehb2580102007-03-09 16:53:21 -08001239
Joel Beckerb657c952008-11-13 14:49:11 -08001240 ret = ocfs2_read_inode_block(inode, &bh);
Mark Fashehb2580102007-03-09 16:53:21 -08001241 if (ret < 0) {
1242 mlog_errno(ret);
1243 goto out;
1244 }
1245
1246 ret = __ocfs2_write_remove_suid(inode, bh);
1247out:
1248 brelse(bh);
1249 return ret;
1250}
1251
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001252/*
1253 * Allocate enough extents to cover the region starting at byte offset
1254 * start for len bytes. Existing extents are skipped, any extents
1255 * added are marked as "unwritten".
1256 */
1257static int ocfs2_allocate_unwritten_extents(struct inode *inode,
1258 u64 start, u64 len)
1259{
1260 int ret;
1261 u32 cpos, phys_cpos, clusters, alloc_size;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001262 u64 end = start + len;
1263 struct buffer_head *di_bh = NULL;
1264
1265 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
Joel Beckerb657c952008-11-13 14:49:11 -08001266 ret = ocfs2_read_inode_block(inode, &di_bh);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001267 if (ret) {
1268 mlog_errno(ret);
1269 goto out;
1270 }
1271
1272 /*
1273 * Nothing to do if the requested reservation range
1274 * fits within the inode.
1275 */
1276 if (ocfs2_size_fits_inline_data(di_bh, end))
1277 goto out;
1278
1279 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
1280 if (ret) {
1281 mlog_errno(ret);
1282 goto out;
1283 }
1284 }
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001285
1286 /*
1287 * We consider both start and len to be inclusive.
1288 */
1289 cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1290 clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len);
1291 clusters -= cpos;
1292
1293 while (clusters) {
1294 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1295 &alloc_size, NULL);
1296 if (ret) {
1297 mlog_errno(ret);
1298 goto out;
1299 }
1300
1301 /*
1302 * Hole or existing extent len can be arbitrary, so
1303 * cap it to our own allocation request.
1304 */
1305 if (alloc_size > clusters)
1306 alloc_size = clusters;
1307
1308 if (phys_cpos) {
1309 /*
1310 * We already have an allocation at this
1311 * region so we can safely skip it.
1312 */
1313 goto next;
1314 }
1315
1316 ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
1317 if (ret) {
1318 if (ret != -ENOSPC)
1319 mlog_errno(ret);
1320 goto out;
1321 }
1322
1323next:
1324 cpos += alloc_size;
1325 clusters -= alloc_size;
1326 }
1327
1328 ret = 0;
1329out:
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001330
1331 brelse(di_bh);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001332 return ret;
1333}
1334
Mark Fasheh063c4562007-07-03 13:34:11 -07001335/*
1336 * Truncate a byte range, avoiding pages within partial clusters. This
1337 * preserves those pages for the zeroing code to write to.
1338 */
1339static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start,
1340 u64 byte_len)
1341{
1342 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1343 loff_t start, end;
1344 struct address_space *mapping = inode->i_mapping;
1345
1346 start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start);
1347 end = byte_start + byte_len;
1348 end = end & ~(osb->s_clustersize - 1);
1349
1350 if (start < end) {
1351 unmap_mapping_range(mapping, start, end - start, 0);
1352 truncate_inode_pages_range(mapping, start, end - 1);
1353 }
1354}
1355
1356static int ocfs2_zero_partial_clusters(struct inode *inode,
1357 u64 start, u64 len)
1358{
1359 int ret = 0;
1360 u64 tmpend, end = start + len;
1361 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1362 unsigned int csize = osb->s_clustersize;
1363 handle_t *handle;
1364
1365 /*
1366 * The "start" and "end" values are NOT necessarily part of
1367 * the range whose allocation is being deleted. Rather, this
1368 * is what the user passed in with the request. We must zero
1369 * partial clusters here. There's no need to worry about
1370 * physical allocation - the zeroing code knows to skip holes.
1371 */
1372 mlog(0, "byte start: %llu, end: %llu\n",
1373 (unsigned long long)start, (unsigned long long)end);
1374
1375 /*
1376 * If both edges are on a cluster boundary then there's no
1377 * zeroing required as the region is part of the allocation to
1378 * be truncated.
1379 */
1380 if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0)
1381 goto out;
1382
1383 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001384 if (IS_ERR(handle)) {
1385 ret = PTR_ERR(handle);
Mark Fasheh063c4562007-07-03 13:34:11 -07001386 mlog_errno(ret);
1387 goto out;
1388 }
1389
1390 /*
1391 * We want to get the byte offset of the end of the 1st cluster.
1392 */
1393 tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1));
1394 if (tmpend > end)
1395 tmpend = end;
1396
1397 mlog(0, "1st range: start: %llu, tmpend: %llu\n",
1398 (unsigned long long)start, (unsigned long long)tmpend);
1399
1400 ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend);
1401 if (ret)
1402 mlog_errno(ret);
1403
1404 if (tmpend < end) {
1405 /*
1406 * This may make start and end equal, but the zeroing
1407 * code will skip any work in that case so there's no
1408 * need to catch it up here.
1409 */
1410 start = end & ~(osb->s_clustersize - 1);
1411
1412 mlog(0, "2nd range: start: %llu, end: %llu\n",
1413 (unsigned long long)start, (unsigned long long)end);
1414
1415 ret = ocfs2_zero_range_for_truncate(inode, handle, start, end);
1416 if (ret)
1417 mlog_errno(ret);
1418 }
1419
1420 ocfs2_commit_trans(osb, handle);
1421out:
1422 return ret;
1423}
1424
1425static int ocfs2_remove_inode_range(struct inode *inode,
1426 struct buffer_head *di_bh, u64 byte_start,
1427 u64 byte_len)
1428{
1429 int ret = 0;
1430 u32 trunc_start, trunc_len, cpos, phys_cpos, alloc_size;
1431 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1432 struct ocfs2_cached_dealloc_ctxt dealloc;
Mark Fashehb1967d02007-11-20 11:56:39 -08001433 struct address_space *mapping = inode->i_mapping;
Mark Fashehfecc0112008-11-12 15:16:38 -08001434 struct ocfs2_extent_tree et;
Mark Fasheh063c4562007-07-03 13:34:11 -07001435
Joel Becker5e404e92009-02-13 03:54:22 -08001436 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
Mark Fasheh063c4562007-07-03 13:34:11 -07001437 ocfs2_init_dealloc_ctxt(&dealloc);
1438
1439 if (byte_len == 0)
1440 return 0;
1441
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001442 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1443 ret = ocfs2_truncate_inline(inode, di_bh, byte_start,
Mark Fashehb1967d02007-11-20 11:56:39 -08001444 byte_start + byte_len, 0);
1445 if (ret) {
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001446 mlog_errno(ret);
Mark Fashehb1967d02007-11-20 11:56:39 -08001447 goto out;
1448 }
1449 /*
1450 * There's no need to get fancy with the page cache
1451 * truncate of an inline-data inode. We're talking
1452 * about less than a page here, which will be cached
1453 * in the dinode buffer anyway.
1454 */
1455 unmap_mapping_range(mapping, 0, 0, 0);
1456 truncate_inode_pages(mapping, 0);
1457 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001458 }
1459
Mark Fasheh063c4562007-07-03 13:34:11 -07001460 trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start);
1461 trunc_len = (byte_start + byte_len) >> osb->s_clustersize_bits;
1462 if (trunc_len >= trunc_start)
1463 trunc_len -= trunc_start;
1464 else
1465 trunc_len = 0;
1466
1467 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u\n",
1468 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1469 (unsigned long long)byte_start,
1470 (unsigned long long)byte_len, trunc_start, trunc_len);
1471
1472 ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len);
1473 if (ret) {
1474 mlog_errno(ret);
1475 goto out;
1476 }
1477
1478 cpos = trunc_start;
1479 while (trunc_len) {
1480 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1481 &alloc_size, NULL);
1482 if (ret) {
1483 mlog_errno(ret);
1484 goto out;
1485 }
1486
1487 if (alloc_size > trunc_len)
1488 alloc_size = trunc_len;
1489
1490 /* Only do work for non-holes */
1491 if (phys_cpos != 0) {
Mark Fashehfecc0112008-11-12 15:16:38 -08001492 ret = ocfs2_remove_btree_range(inode, &et, cpos,
1493 phys_cpos, alloc_size,
1494 &dealloc);
Mark Fasheh063c4562007-07-03 13:34:11 -07001495 if (ret) {
1496 mlog_errno(ret);
1497 goto out;
1498 }
1499 }
1500
1501 cpos += alloc_size;
1502 trunc_len -= alloc_size;
1503 }
1504
1505 ocfs2_truncate_cluster_pages(inode, byte_start, byte_len);
1506
1507out:
1508 ocfs2_schedule_truncate_log_flush(osb, 1);
1509 ocfs2_run_deallocs(osb, &dealloc);
1510
1511 return ret;
1512}
1513
Mark Fashehb2580102007-03-09 16:53:21 -08001514/*
1515 * Parts of this function taken from xfs_change_file_space()
1516 */
Mark Fasheh385820a2007-07-19 00:14:38 -07001517static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
1518 loff_t f_pos, unsigned int cmd,
1519 struct ocfs2_space_resv *sr,
1520 int change_size)
Mark Fashehb2580102007-03-09 16:53:21 -08001521{
1522 int ret;
1523 s64 llen;
Mark Fasheh385820a2007-07-19 00:14:38 -07001524 loff_t size;
Mark Fashehb2580102007-03-09 16:53:21 -08001525 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1526 struct buffer_head *di_bh = NULL;
1527 handle_t *handle;
Mark Fasheha00cce32007-07-20 11:28:30 -07001528 unsigned long long max_off = inode->i_sb->s_maxbytes;
Mark Fashehb2580102007-03-09 16:53:21 -08001529
Mark Fashehb2580102007-03-09 16:53:21 -08001530 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
1531 return -EROFS;
1532
1533 mutex_lock(&inode->i_mutex);
1534
1535 /*
1536 * This prevents concurrent writes on other nodes
1537 */
1538 ret = ocfs2_rw_lock(inode, 1);
1539 if (ret) {
1540 mlog_errno(ret);
1541 goto out;
1542 }
1543
Mark Fashehe63aecb62007-10-18 15:30:42 -07001544 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001545 if (ret) {
1546 mlog_errno(ret);
1547 goto out_rw_unlock;
1548 }
1549
1550 if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
1551 ret = -EPERM;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001552 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001553 }
1554
1555 switch (sr->l_whence) {
1556 case 0: /*SEEK_SET*/
1557 break;
1558 case 1: /*SEEK_CUR*/
Mark Fasheh385820a2007-07-19 00:14:38 -07001559 sr->l_start += f_pos;
Mark Fashehb2580102007-03-09 16:53:21 -08001560 break;
1561 case 2: /*SEEK_END*/
1562 sr->l_start += i_size_read(inode);
1563 break;
1564 default:
1565 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001566 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001567 }
1568 sr->l_whence = 0;
1569
1570 llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len;
1571
1572 if (sr->l_start < 0
1573 || sr->l_start > max_off
1574 || (sr->l_start + llen) < 0
1575 || (sr->l_start + llen) > max_off) {
1576 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001577 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001578 }
Mark Fasheh385820a2007-07-19 00:14:38 -07001579 size = sr->l_start + sr->l_len;
Mark Fashehb2580102007-03-09 16:53:21 -08001580
1581 if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) {
1582 if (sr->l_len <= 0) {
1583 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001584 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001585 }
1586 }
1587
Mark Fasheh385820a2007-07-19 00:14:38 -07001588 if (file && should_remove_suid(file->f_path.dentry)) {
Mark Fashehb2580102007-03-09 16:53:21 -08001589 ret = __ocfs2_write_remove_suid(inode, di_bh);
1590 if (ret) {
1591 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001592 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001593 }
1594 }
1595
1596 down_write(&OCFS2_I(inode)->ip_alloc_sem);
1597 switch (cmd) {
1598 case OCFS2_IOC_RESVSP:
1599 case OCFS2_IOC_RESVSP64:
1600 /*
1601 * This takes unsigned offsets, but the signed ones we
1602 * pass have been checked against overflow above.
1603 */
1604 ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start,
1605 sr->l_len);
1606 break;
1607 case OCFS2_IOC_UNRESVSP:
1608 case OCFS2_IOC_UNRESVSP64:
1609 ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start,
1610 sr->l_len);
1611 break;
1612 default:
1613 ret = -EINVAL;
1614 }
1615 up_write(&OCFS2_I(inode)->ip_alloc_sem);
1616 if (ret) {
1617 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001618 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001619 }
1620
1621 /*
1622 * We update c/mtime for these changes
1623 */
1624 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1625 if (IS_ERR(handle)) {
1626 ret = PTR_ERR(handle);
1627 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001628 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001629 }
1630
Mark Fasheh385820a2007-07-19 00:14:38 -07001631 if (change_size && i_size_read(inode) < size)
1632 i_size_write(inode, size);
1633
Mark Fashehb2580102007-03-09 16:53:21 -08001634 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1635 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
1636 if (ret < 0)
1637 mlog_errno(ret);
1638
1639 ocfs2_commit_trans(osb, handle);
1640
Mark Fashehe63aecb62007-10-18 15:30:42 -07001641out_inode_unlock:
Mark Fashehb2580102007-03-09 16:53:21 -08001642 brelse(di_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001643 ocfs2_inode_unlock(inode, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001644out_rw_unlock:
1645 ocfs2_rw_unlock(inode, 1);
1646
Mark Fashehb2580102007-03-09 16:53:21 -08001647out:
Julia Lawallc259ae52008-07-21 09:59:15 +02001648 mutex_unlock(&inode->i_mutex);
Mark Fashehb2580102007-03-09 16:53:21 -08001649 return ret;
1650}
1651
Mark Fasheh385820a2007-07-19 00:14:38 -07001652int ocfs2_change_file_space(struct file *file, unsigned int cmd,
1653 struct ocfs2_space_resv *sr)
1654{
1655 struct inode *inode = file->f_path.dentry->d_inode;
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08001656 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh385820a2007-07-19 00:14:38 -07001657
1658 if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
1659 !ocfs2_writes_unwritten_extents(osb))
1660 return -ENOTTY;
1661 else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) &&
1662 !ocfs2_sparse_alloc(osb))
1663 return -ENOTTY;
1664
1665 if (!S_ISREG(inode->i_mode))
1666 return -EINVAL;
1667
1668 if (!(file->f_mode & FMODE_WRITE))
1669 return -EBADF;
1670
1671 return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0);
1672}
1673
1674static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1675 loff_t len)
1676{
1677 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1678 struct ocfs2_space_resv sr;
1679 int change_size = 1;
1680
1681 if (!ocfs2_writes_unwritten_extents(osb))
1682 return -EOPNOTSUPP;
1683
1684 if (S_ISDIR(inode->i_mode))
1685 return -ENODEV;
1686
1687 if (mode & FALLOC_FL_KEEP_SIZE)
1688 change_size = 0;
1689
1690 sr.l_whence = 0;
1691 sr.l_start = (s64)offset;
1692 sr.l_len = (s64)len;
1693
1694 return __ocfs2_change_file_space(NULL, inode, offset,
1695 OCFS2_IOC_RESVSP64, &sr, change_size);
1696}
1697
Tao Ma293b2f72009-08-25 08:02:48 +08001698int ocfs2_check_range_for_refcount(struct inode *inode, loff_t pos,
1699 size_t count)
1700{
1701 int ret = 0;
1702 unsigned int extent_flags;
1703 u32 cpos, clusters, extent_len, phys_cpos;
1704 struct super_block *sb = inode->i_sb;
1705
1706 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)) ||
Tao Ma2f48d592009-10-15 11:10:49 +08001707 !(OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) ||
1708 OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
Tao Ma293b2f72009-08-25 08:02:48 +08001709 return 0;
1710
1711 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1712 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1713
1714 while (clusters) {
1715 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1716 &extent_flags);
1717 if (ret < 0) {
1718 mlog_errno(ret);
1719 goto out;
1720 }
1721
1722 if (phys_cpos && (extent_flags & OCFS2_EXT_REFCOUNTED)) {
1723 ret = 1;
1724 break;
1725 }
1726
1727 if (extent_len > clusters)
1728 extent_len = clusters;
1729
1730 clusters -= extent_len;
1731 cpos += extent_len;
1732 }
1733out:
1734 return ret;
1735}
1736
1737static int ocfs2_prepare_inode_for_refcount(struct inode *inode,
1738 loff_t pos, size_t count,
1739 int *meta_level)
1740{
1741 int ret;
1742 struct buffer_head *di_bh = NULL;
1743 u32 cpos = pos >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1744 u32 clusters =
1745 ocfs2_clusters_for_bytes(inode->i_sb, pos + count) - cpos;
1746
1747 ret = ocfs2_inode_lock(inode, &di_bh, 1);
1748 if (ret) {
1749 mlog_errno(ret);
1750 goto out;
1751 }
1752
1753 *meta_level = 1;
1754
Tao Ma37f8a2b2009-08-26 09:47:28 +08001755 ret = ocfs2_refcount_cow(inode, di_bh, cpos, clusters, UINT_MAX);
Tao Ma293b2f72009-08-25 08:02:48 +08001756 if (ret)
1757 mlog_errno(ret);
1758out:
1759 brelse(di_bh);
1760 return ret;
1761}
1762
Tiger Yang8659ac22006-10-17 18:29:52 -07001763static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
1764 loff_t *ppos,
1765 size_t count,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001766 int appending,
Tao Ma86470e92009-12-03 21:55:05 +08001767 int *direct_io,
1768 int *has_refcount)
Mark Fashehccd979b2005-12-15 14:31:24 -08001769{
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001770 int ret = 0, meta_level = 0;
Tiger Yang8659ac22006-10-17 18:29:52 -07001771 struct inode *inode = dentry->d_inode;
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001772 loff_t saved_pos, end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001773
Sunil Mushran2bd63212010-01-25 16:57:38 -08001774 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001775 * We start with a read level meta lock and only jump to an ex
1776 * if we need to make modifications here.
Mark Fashehccd979b2005-12-15 14:31:24 -08001777 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001778 for(;;) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001779 ret = ocfs2_inode_lock(inode, NULL, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001780 if (ret < 0) {
1781 meta_level = -1;
1782 mlog_errno(ret);
1783 goto out;
1784 }
1785
1786 /* Clear suid / sgid if necessary. We do this here
1787 * instead of later in the write path because
1788 * remove_suid() calls ->setattr without any hint that
1789 * we may have already done our cluster locking. Since
1790 * ocfs2_setattr() *must* take cluster locks to
1791 * proceeed, this will lead us to recursively lock the
1792 * inode. There's also the dinode i_size state which
1793 * can be lost via setattr during extending writes (we
1794 * set inode->i_size at the end of a write. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001795 if (should_remove_suid(dentry)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001796 if (meta_level == 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001797 ocfs2_inode_unlock(inode, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001798 meta_level = 1;
1799 continue;
1800 }
1801
1802 ret = ocfs2_write_remove_suid(inode);
1803 if (ret < 0) {
1804 mlog_errno(ret);
Tiger Yang8659ac22006-10-17 18:29:52 -07001805 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08001806 }
1807 }
1808
1809 /* work on a copy of ppos until we're sure that we won't have
1810 * to recalculate it due to relocking. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001811 if (appending) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001812 saved_pos = i_size_read(inode);
1813 mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
1814 } else {
Tiger Yang8659ac22006-10-17 18:29:52 -07001815 saved_pos = *ppos;
Mark Fashehccd979b2005-12-15 14:31:24 -08001816 }
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001817
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001818 end = saved_pos + count;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001819
Tao Ma293b2f72009-08-25 08:02:48 +08001820 ret = ocfs2_check_range_for_refcount(inode, saved_pos, count);
1821 if (ret == 1) {
1822 ocfs2_inode_unlock(inode, meta_level);
1823 meta_level = -1;
1824
1825 ret = ocfs2_prepare_inode_for_refcount(inode,
1826 saved_pos,
1827 count,
1828 &meta_level);
Tao Ma86470e92009-12-03 21:55:05 +08001829 if (has_refcount)
1830 *has_refcount = 1;
Wengang Wang96a1cc72010-02-09 14:57:45 +08001831 if (direct_io)
1832 *direct_io = 0;
Tao Ma293b2f72009-08-25 08:02:48 +08001833 }
1834
1835 if (ret < 0) {
1836 mlog_errno(ret);
1837 goto out_unlock;
1838 }
1839
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001840 /*
1841 * Skip the O_DIRECT checks if we don't need
1842 * them.
1843 */
1844 if (!direct_io || !(*direct_io))
1845 break;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001846
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001847 /*
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001848 * There's no sane way to do direct writes to an inode
1849 * with inline data.
1850 */
1851 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1852 *direct_io = 0;
1853 break;
1854 }
1855
1856 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001857 * Allowing concurrent direct writes means
1858 * i_size changes wouldn't be synchronized, so
1859 * one node could wind up truncating another
1860 * nodes writes.
1861 */
1862 if (end > i_size_read(inode)) {
1863 *direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001864 break;
1865 }
1866
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001867 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001868 * We don't fill holes during direct io, so
1869 * check for them here. If any are found, the
1870 * caller will have to retake some cluster
1871 * locks and initiate the io as buffered.
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001872 */
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001873 ret = ocfs2_check_range_for_holes(inode, saved_pos, count);
1874 if (ret == 1) {
1875 *direct_io = 0;
1876 ret = 0;
1877 } else if (ret < 0)
1878 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -08001879 break;
1880 }
1881
Tiger Yang8659ac22006-10-17 18:29:52 -07001882 if (appending)
1883 *ppos = saved_pos;
1884
1885out_unlock:
Tao Ma293b2f72009-08-25 08:02:48 +08001886 if (meta_level >= 0)
1887 ocfs2_inode_unlock(inode, meta_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07001888
1889out:
1890 return ret;
1891}
1892
1893static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
1894 const struct iovec *iov,
1895 unsigned long nr_segs,
1896 loff_t pos)
1897{
Mark Fasheh9517bac2007-02-09 20:24:12 -08001898 int ret, direct_io, appending, rw_level, have_alloc_sem = 0;
Tao Ma86470e92009-12-03 21:55:05 +08001899 int can_do_direct, has_refcount = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001900 ssize_t written = 0;
1901 size_t ocount; /* original count */
1902 size_t count; /* after file limit checks */
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001903 loff_t old_size, *ppos = &iocb->ki_pos;
1904 u32 old_clusters;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001905 struct file *file = iocb->ki_filp;
1906 struct inode *inode = file->f_path.dentry->d_inode;
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001907 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang8659ac22006-10-17 18:29:52 -07001908
Mark Fasheh9517bac2007-02-09 20:24:12 -08001909 mlog_entry("(0x%p, %u, '%.*s')\n", file,
Tiger Yang8659ac22006-10-17 18:29:52 -07001910 (unsigned int)nr_segs,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001911 file->f_path.dentry->d_name.len,
1912 file->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07001913
Tiger Yang8659ac22006-10-17 18:29:52 -07001914 if (iocb->ki_left == 0)
1915 return 0;
1916
Mark Fasheh9517bac2007-02-09 20:24:12 -08001917 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1918
1919 appending = file->f_flags & O_APPEND ? 1 : 0;
1920 direct_io = file->f_flags & O_DIRECT ? 1 : 0;
1921
Tiger Yang8659ac22006-10-17 18:29:52 -07001922 mutex_lock(&inode->i_mutex);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001923
1924relock:
Tiger Yang8659ac22006-10-17 18:29:52 -07001925 /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001926 if (direct_io) {
Tiger Yang8659ac22006-10-17 18:29:52 -07001927 down_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001928 have_alloc_sem = 1;
Tiger Yang8659ac22006-10-17 18:29:52 -07001929 }
1930
1931 /* concurrent O_DIRECT writes are allowed */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001932 rw_level = !direct_io;
Tiger Yang8659ac22006-10-17 18:29:52 -07001933 ret = ocfs2_rw_lock(inode, rw_level);
1934 if (ret < 0) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001935 mlog_errno(ret);
1936 goto out_sems;
1937 }
1938
1939 can_do_direct = direct_io;
1940 ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
1941 iocb->ki_left, appending,
Tao Ma86470e92009-12-03 21:55:05 +08001942 &can_do_direct, &has_refcount);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001943 if (ret < 0) {
Tiger Yang8659ac22006-10-17 18:29:52 -07001944 mlog_errno(ret);
1945 goto out;
1946 }
1947
Mark Fasheh9517bac2007-02-09 20:24:12 -08001948 /*
1949 * We can't complete the direct I/O as requested, fall back to
1950 * buffered I/O.
1951 */
1952 if (direct_io && !can_do_direct) {
1953 ocfs2_rw_unlock(inode, rw_level);
1954 up_read(&inode->i_alloc_sem);
1955
1956 have_alloc_sem = 0;
1957 rw_level = -1;
1958
1959 direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001960 goto relock;
Tiger Yang8659ac22006-10-17 18:29:52 -07001961 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001962
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001963 /*
1964 * To later detect whether a journal commit for sync writes is
1965 * necessary, we sample i_size, and cluster count here.
1966 */
1967 old_size = i_size_read(inode);
1968 old_clusters = OCFS2_I(inode)->ip_clusters;
1969
Mark Fashehccd979b2005-12-15 14:31:24 -08001970 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07001971 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001972
Mark Fasheh9517bac2007-02-09 20:24:12 -08001973 if (direct_io) {
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001974 ret = generic_segment_checks(iov, &nr_segs, &ocount,
1975 VERIFY_READ);
1976 if (ret)
1977 goto out_dio;
1978
Goldwyn Rodriguescefcb802009-07-11 10:57:27 -05001979 count = ocount;
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001980 ret = generic_write_checks(file, ppos, &count,
1981 S_ISBLK(inode->i_mode));
1982 if (ret)
1983 goto out_dio;
1984
Mark Fasheh9517bac2007-02-09 20:24:12 -08001985 written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
1986 ppos, count, ocount);
1987 if (written < 0) {
Dmitri Monakhovc4354002008-10-27 13:01:49 -07001988 /*
1989 * direct write may have instantiated a few
1990 * blocks outside i_size. Trim these off again.
1991 * Don't need i_size_read because we hold i_mutex.
1992 */
1993 if (*ppos + count > inode->i_size)
1994 vmtruncate(inode, inode->i_size);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001995 ret = written;
1996 goto out_dio;
1997 }
1998 } else {
Jan Kara918941a2009-08-17 18:50:08 +02001999 written = __generic_file_aio_write(iocb, iov, nr_segs, ppos);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002000 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002001
Mark Fasheh9517bac2007-02-09 20:24:12 -08002002out_dio:
Mark Fashehccd979b2005-12-15 14:31:24 -08002003 /* buffered aio wouldn't have proper lock coverage today */
Mark Fasheh9517bac2007-02-09 20:24:12 -08002004 BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
Mark Fashehccd979b2005-12-15 14:31:24 -08002005
Tao Ma60c48672010-02-03 09:56:04 +08002006 if (((file->f_flags & O_DSYNC) && !direct_io) || IS_SYNC(inode) ||
2007 ((file->f_flags & O_DIRECT) && has_refcount)) {
Jan Kara918941a2009-08-17 18:50:08 +02002008 ret = filemap_fdatawrite_range(file->f_mapping, pos,
2009 pos + count - 1);
2010 if (ret < 0)
2011 written = ret;
2012
2013 if (!ret && (old_size != i_size_read(inode) ||
Tao Ma86470e92009-12-03 21:55:05 +08002014 old_clusters != OCFS2_I(inode)->ip_clusters ||
2015 has_refcount)) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07002016 ret = jbd2_journal_force_commit(osb->journal->j_journal);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002017 if (ret < 0)
2018 written = ret;
2019 }
Jan Kara918941a2009-08-17 18:50:08 +02002020
2021 if (!ret)
2022 ret = filemap_fdatawait_range(file->f_mapping, pos,
2023 pos + count - 1);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002024 }
2025
Sunil Mushran2bd63212010-01-25 16:57:38 -08002026 /*
Mark Fashehccd979b2005-12-15 14:31:24 -08002027 * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
2028 * function pointer which is called when o_direct io completes so that
2029 * it can unlock our rw lock. (it's the clustered equivalent of
2030 * i_alloc_sem; protects truncate from racing with pending ios).
2031 * Unfortunately there are error cases which call end_io and others
2032 * that don't. so we don't have to unlock the rw_lock if either an
2033 * async dio is going to do it in the future or an end_io after an
2034 * error has already done it.
2035 */
Coly Li66b116c2010-02-25 14:57:13 +08002036 if ((ret == -EIOCBQUEUED) || (!ocfs2_iocb_is_rw_locked(iocb))) {
Mark Fashehccd979b2005-12-15 14:31:24 -08002037 rw_level = -1;
2038 have_alloc_sem = 0;
2039 }
2040
2041out:
Mark Fasheh9517bac2007-02-09 20:24:12 -08002042 if (rw_level != -1)
2043 ocfs2_rw_unlock(inode, rw_level);
2044
2045out_sems:
Mark Fashehccd979b2005-12-15 14:31:24 -08002046 if (have_alloc_sem)
2047 up_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002048
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002049 mutex_unlock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08002050
Wengang Wang812e7a62009-07-10 13:26:04 +08002051 if (written)
2052 ret = written;
Mark Fashehccd979b2005-12-15 14:31:24 -08002053 mlog_exit(ret);
Wengang Wang812e7a62009-07-10 13:26:04 +08002054 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08002055}
2056
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002057static int ocfs2_splice_to_file(struct pipe_inode_info *pipe,
2058 struct file *out,
2059 struct splice_desc *sd)
2060{
2061 int ret;
2062
2063 ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, &sd->pos,
Tao Ma86470e92009-12-03 21:55:05 +08002064 sd->total_len, 0, NULL, NULL);
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002065 if (ret < 0) {
2066 mlog_errno(ret);
2067 return ret;
2068 }
2069
2070 return splice_from_pipe_feed(pipe, sd, pipe_to_file);
2071}
2072
Tiger Yang8659ac22006-10-17 18:29:52 -07002073static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
2074 struct file *out,
2075 loff_t *ppos,
2076 size_t len,
2077 unsigned int flags)
2078{
2079 int ret;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002080 struct address_space *mapping = out->f_mapping;
2081 struct inode *inode = mapping->host;
2082 struct splice_desc sd = {
2083 .total_len = len,
2084 .flags = flags,
2085 .pos = *ppos,
2086 .u.file = out,
2087 };
Tiger Yang8659ac22006-10-17 18:29:52 -07002088
2089 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
2090 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08002091 out->f_path.dentry->d_name.len,
2092 out->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002093
Miklos Szeredi7bfac9e2009-04-06 17:41:00 +02002094 if (pipe->inode)
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002095 mutex_lock_nested(&pipe->inode->i_mutex, I_MUTEX_PARENT);
2096
2097 splice_from_pipe_begin(&sd);
2098 do {
2099 ret = splice_from_pipe_next(pipe, &sd);
2100 if (ret <= 0)
2101 break;
2102
2103 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
2104 ret = ocfs2_rw_lock(inode, 1);
2105 if (ret < 0)
2106 mlog_errno(ret);
2107 else {
2108 ret = ocfs2_splice_to_file(pipe, out, &sd);
2109 ocfs2_rw_unlock(inode, 1);
2110 }
2111 mutex_unlock(&inode->i_mutex);
2112 } while (ret > 0);
2113 splice_from_pipe_end(pipe, &sd);
2114
Miklos Szeredi7bfac9e2009-04-06 17:41:00 +02002115 if (pipe->inode)
2116 mutex_unlock(&pipe->inode->i_mutex);
Tiger Yang8659ac22006-10-17 18:29:52 -07002117
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002118 if (sd.num_spliced)
2119 ret = sd.num_spliced;
2120
2121 if (ret > 0) {
2122 unsigned long nr_pages;
Jan Karad23c9372009-08-18 18:24:31 +02002123 int err;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002124
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002125 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
2126
Jan Karad23c9372009-08-18 18:24:31 +02002127 err = generic_write_sync(out, *ppos, ret);
2128 if (err)
2129 ret = err;
2130 else
2131 *ppos += ret;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002132
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002133 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
2134 }
Tiger Yang8659ac22006-10-17 18:29:52 -07002135
2136 mlog_exit(ret);
2137 return ret;
2138}
2139
2140static ssize_t ocfs2_file_splice_read(struct file *in,
2141 loff_t *ppos,
2142 struct pipe_inode_info *pipe,
2143 size_t len,
2144 unsigned int flags)
2145{
Tao Ma1962f392009-06-19 15:36:52 +08002146 int ret = 0, lock_level = 0;
Josef Sipekd28c9172006-12-08 02:37:25 -08002147 struct inode *inode = in->f_path.dentry->d_inode;
Tiger Yang8659ac22006-10-17 18:29:52 -07002148
2149 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
2150 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08002151 in->f_path.dentry->d_name.len,
2152 in->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002153
2154 /*
2155 * See the comment in ocfs2_file_aio_read()
2156 */
Tao Ma1962f392009-06-19 15:36:52 +08002157 ret = ocfs2_inode_lock_atime(inode, in->f_vfsmnt, &lock_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002158 if (ret < 0) {
2159 mlog_errno(ret);
2160 goto bail;
2161 }
Tao Ma1962f392009-06-19 15:36:52 +08002162 ocfs2_inode_unlock(inode, lock_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002163
2164 ret = generic_file_splice_read(in, ppos, pipe, len, flags);
2165
2166bail:
2167 mlog_exit(ret);
2168 return ret;
2169}
2170
Mark Fashehccd979b2005-12-15 14:31:24 -08002171static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -07002172 const struct iovec *iov,
2173 unsigned long nr_segs,
Mark Fashehccd979b2005-12-15 14:31:24 -08002174 loff_t pos)
2175{
Tiger Yang25899de2006-11-15 15:49:02 +08002176 int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002177 struct file *filp = iocb->ki_filp;
Josef Sipekd28c9172006-12-08 02:37:25 -08002178 struct inode *inode = filp->f_path.dentry->d_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08002179
Badari Pulavarty027445c2006-09-30 23:28:46 -07002180 mlog_entry("(0x%p, %u, '%.*s')\n", filp,
2181 (unsigned int)nr_segs,
Josef Sipekd28c9172006-12-08 02:37:25 -08002182 filp->f_path.dentry->d_name.len,
2183 filp->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08002184
2185 if (!inode) {
2186 ret = -EINVAL;
2187 mlog_errno(ret);
2188 goto bail;
2189 }
2190
Sunil Mushran2bd63212010-01-25 16:57:38 -08002191 /*
Mark Fashehccd979b2005-12-15 14:31:24 -08002192 * buffered reads protect themselves in ->readpage(). O_DIRECT reads
2193 * need locks to protect pending reads from racing with truncate.
2194 */
2195 if (filp->f_flags & O_DIRECT) {
2196 down_read(&inode->i_alloc_sem);
2197 have_alloc_sem = 1;
2198
2199 ret = ocfs2_rw_lock(inode, 0);
2200 if (ret < 0) {
2201 mlog_errno(ret);
2202 goto bail;
2203 }
2204 rw_level = 0;
2205 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07002206 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08002207 }
2208
Mark Fashehc4374f82006-05-05 19:04:35 -07002209 /*
2210 * We're fine letting folks race truncates and extending
2211 * writes with read across the cluster, just like they can
2212 * locally. Hence no rw_lock during read.
Sunil Mushran2bd63212010-01-25 16:57:38 -08002213 *
Mark Fashehc4374f82006-05-05 19:04:35 -07002214 * Take and drop the meta data lock to update inode fields
2215 * like i_size. This allows the checks down below
Sunil Mushran2bd63212010-01-25 16:57:38 -08002216 * generic_file_aio_read() a chance of actually working.
Mark Fashehc4374f82006-05-05 19:04:35 -07002217 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07002218 ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002219 if (ret < 0) {
2220 mlog_errno(ret);
2221 goto bail;
2222 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07002223 ocfs2_inode_unlock(inode, lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002224
Badari Pulavarty027445c2006-09-30 23:28:46 -07002225 ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
Mark Fashehccd979b2005-12-15 14:31:24 -08002226 if (ret == -EINVAL)
Sunil Mushran56753bd2008-06-09 11:24:41 -07002227 mlog(0, "generic_file_aio_read returned -EINVAL\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08002228
2229 /* buffered aio wouldn't have proper lock coverage today */
2230 BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
2231
2232 /* see ocfs2_file_aio_write */
2233 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
2234 rw_level = -1;
2235 have_alloc_sem = 0;
2236 }
2237
2238bail:
2239 if (have_alloc_sem)
2240 up_read(&inode->i_alloc_sem);
Sunil Mushran2bd63212010-01-25 16:57:38 -08002241 if (rw_level != -1)
Mark Fashehccd979b2005-12-15 14:31:24 -08002242 ocfs2_rw_unlock(inode, rw_level);
2243 mlog_exit(ret);
2244
2245 return ret;
2246}
2247
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002248const struct inode_operations ocfs2_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002249 .setattr = ocfs2_setattr,
2250 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002251 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002252 .setxattr = generic_setxattr,
2253 .getxattr = generic_getxattr,
2254 .listxattr = ocfs2_listxattr,
2255 .removexattr = generic_removexattr,
Mark Fasheh385820a2007-07-19 00:14:38 -07002256 .fallocate = ocfs2_fallocate,
Mark Fasheh00dc4172008-10-03 17:32:11 -04002257 .fiemap = ocfs2_fiemap,
Mark Fashehccd979b2005-12-15 14:31:24 -08002258};
2259
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002260const struct inode_operations ocfs2_special_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002261 .setattr = ocfs2_setattr,
2262 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002263 .permission = ocfs2_permission,
Mark Fashehccd979b2005-12-15 14:31:24 -08002264};
2265
Mark Fasheh53da4932008-07-21 14:29:16 -07002266/*
2267 * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
2268 * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
2269 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002270const struct file_operations ocfs2_fops = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002271 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002272 .read = do_sync_read,
2273 .write = do_sync_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002274 .mmap = ocfs2_mmap,
2275 .fsync = ocfs2_sync_file,
2276 .release = ocfs2_file_release,
2277 .open = ocfs2_file_open,
2278 .aio_read = ocfs2_file_aio_read,
2279 .aio_write = ocfs2_file_aio_write,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002280 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002281#ifdef CONFIG_COMPAT
2282 .compat_ioctl = ocfs2_compat_ioctl,
2283#endif
Mark Fasheh53da4932008-07-21 14:29:16 -07002284 .lock = ocfs2_lock,
2285 .flock = ocfs2_flock,
2286 .splice_read = ocfs2_file_splice_read,
2287 .splice_write = ocfs2_file_splice_write,
2288};
2289
2290const struct file_operations ocfs2_dops = {
2291 .llseek = generic_file_llseek,
2292 .read = generic_read_dir,
2293 .readdir = ocfs2_readdir,
2294 .fsync = ocfs2_sync_file,
2295 .release = ocfs2_dir_release,
2296 .open = ocfs2_dir_open,
2297 .unlocked_ioctl = ocfs2_ioctl,
2298#ifdef CONFIG_COMPAT
2299 .compat_ioctl = ocfs2_compat_ioctl,
2300#endif
2301 .lock = ocfs2_lock,
2302 .flock = ocfs2_flock,
2303};
2304
2305/*
2306 * POSIX-lockless variants of our file_operations.
2307 *
2308 * These will be used if the underlying cluster stack does not support
2309 * posix file locking, if the user passes the "localflocks" mount
2310 * option, or if we have a local-only fs.
2311 *
2312 * ocfs2_flock is in here because all stacks handle UNIX file locks,
2313 * so we still want it in the case of no stack support for
2314 * plocks. Internally, it will do the right thing when asked to ignore
2315 * the cluster.
2316 */
2317const struct file_operations ocfs2_fops_no_plocks = {
2318 .llseek = generic_file_llseek,
2319 .read = do_sync_read,
2320 .write = do_sync_write,
2321 .mmap = ocfs2_mmap,
2322 .fsync = ocfs2_sync_file,
2323 .release = ocfs2_file_release,
2324 .open = ocfs2_file_open,
2325 .aio_read = ocfs2_file_aio_read,
2326 .aio_write = ocfs2_file_aio_write,
2327 .unlocked_ioctl = ocfs2_ioctl,
2328#ifdef CONFIG_COMPAT
2329 .compat_ioctl = ocfs2_compat_ioctl,
2330#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002331 .flock = ocfs2_flock,
Tiger Yang8659ac22006-10-17 18:29:52 -07002332 .splice_read = ocfs2_file_splice_read,
2333 .splice_write = ocfs2_file_splice_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002334};
2335
Mark Fasheh53da4932008-07-21 14:29:16 -07002336const struct file_operations ocfs2_dops_no_plocks = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002337 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002338 .read = generic_read_dir,
2339 .readdir = ocfs2_readdir,
2340 .fsync = ocfs2_sync_file,
Mark Fasheh53fc6222007-12-20 16:49:04 -08002341 .release = ocfs2_dir_release,
2342 .open = ocfs2_dir_open,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002343 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002344#ifdef CONFIG_COMPAT
2345 .compat_ioctl = ocfs2_compat_ioctl,
2346#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002347 .flock = ocfs2_flock,
Mark Fashehccd979b2005-12-15 14:31:24 -08002348};