blob: 126198f5a67c0d5e581574cb16a3ff20fd92c4f2 [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)
111 vfs_dq_init(inode);
112
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);
281
282 ret = ocfs2_journal_dirty(handle, bh);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800283 if (ret < 0)
284 mlog_errno(ret);
285
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700286out_commit:
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800287 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
288out:
289 mlog_exit(ret);
290 return ret;
291}
292
Adrian Bunk6cb129f2007-04-26 00:29:35 -0700293static int ocfs2_set_inode_size(handle_t *handle,
294 struct inode *inode,
295 struct buffer_head *fe_bh,
296 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800297{
298 int status;
299
300 mlog_entry_void();
301 i_size_write(inode, new_i_size);
Mark Fasheh8110b072007-03-22 16:53:23 -0700302 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800303 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
304
305 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
306 if (status < 0) {
307 mlog_errno(status);
308 goto bail;
309 }
310
311bail:
312 mlog_exit(status);
313 return status;
314}
315
Jan Kara9e33d692008-08-25 19:56:50 +0200316int ocfs2_simple_size_update(struct inode *inode,
317 struct buffer_head *di_bh,
318 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800319{
320 int ret;
321 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700322 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800323
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700324 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200325 if (IS_ERR(handle)) {
326 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800327 mlog_errno(ret);
328 goto out;
329 }
330
331 ret = ocfs2_set_inode_size(handle, inode, di_bh,
332 new_i_size);
333 if (ret < 0)
334 mlog_errno(ret);
335
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700336 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800337out:
338 return ret;
339}
340
Tao Ma37f8a2b2009-08-26 09:47:28 +0800341static int ocfs2_cow_file_pos(struct inode *inode,
342 struct buffer_head *fe_bh,
343 u64 offset)
344{
345 int status;
346 u32 phys, cpos = offset >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
347 unsigned int num_clusters = 0;
348 unsigned int ext_flags = 0;
349
350 /*
351 * If the new offset is aligned to the range of the cluster, there is
352 * no space for ocfs2_zero_range_for_truncate to fill, so no need to
353 * CoW either.
354 */
355 if ((offset & (OCFS2_SB(inode->i_sb)->s_clustersize - 1)) == 0)
356 return 0;
357
358 status = ocfs2_get_clusters(inode, cpos, &phys,
359 &num_clusters, &ext_flags);
360 if (status) {
361 mlog_errno(status);
362 goto out;
363 }
364
365 if (!(ext_flags & OCFS2_EXT_REFCOUNTED))
366 goto out;
367
368 return ocfs2_refcount_cow(inode, fe_bh, cpos, 1, cpos+1);
369
370out:
371 return status;
372}
373
Mark Fashehccd979b2005-12-15 14:31:24 -0800374static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
375 struct inode *inode,
376 struct buffer_head *fe_bh,
377 u64 new_i_size)
378{
379 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700380 handle_t *handle;
Mark Fasheh60b11392007-02-16 11:46:50 -0800381 struct ocfs2_dinode *di;
Mark Fasheh35edec12007-07-06 14:41:18 -0700382 u64 cluster_bytes;
Mark Fashehccd979b2005-12-15 14:31:24 -0800383
384 mlog_entry_void();
385
Tao Ma37f8a2b2009-08-26 09:47:28 +0800386 /*
387 * We need to CoW the cluster contains the offset if it is reflinked
388 * since we will call ocfs2_zero_range_for_truncate later which will
389 * write "0" from offset to the end of the cluster.
390 */
391 status = ocfs2_cow_file_pos(inode, fe_bh, new_i_size);
392 if (status) {
393 mlog_errno(status);
394 return status;
395 }
396
Mark Fashehccd979b2005-12-15 14:31:24 -0800397 /* TODO: This needs to actually orphan the inode in this
398 * transaction. */
399
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700400 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800401 if (IS_ERR(handle)) {
402 status = PTR_ERR(handle);
403 mlog_errno(status);
404 goto out;
405 }
406
Joel Becker0cf2f762009-02-12 16:41:25 -0800407 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700408 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh60b11392007-02-16 11:46:50 -0800409 if (status < 0) {
410 mlog_errno(status);
411 goto out_commit;
412 }
413
414 /*
415 * Do this before setting i_size.
416 */
Mark Fasheh35edec12007-07-06 14:41:18 -0700417 cluster_bytes = ocfs2_align_bytes_to_clusters(inode->i_sb, new_i_size);
418 status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size,
419 cluster_bytes);
Mark Fasheh60b11392007-02-16 11:46:50 -0800420 if (status) {
421 mlog_errno(status);
422 goto out_commit;
423 }
424
425 i_size_write(inode, new_i_size);
Mark Fasheh60b11392007-02-16 11:46:50 -0800426 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
427
428 di = (struct ocfs2_dinode *) fe_bh->b_data;
429 di->i_size = cpu_to_le64(new_i_size);
430 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
431 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
432
433 status = ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800434 if (status < 0)
435 mlog_errno(status);
436
Mark Fasheh60b11392007-02-16 11:46:50 -0800437out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700438 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800439out:
Mark Fasheh60b11392007-02-16 11:46:50 -0800440
Mark Fashehccd979b2005-12-15 14:31:24 -0800441 mlog_exit(status);
442 return status;
443}
444
445static int ocfs2_truncate_file(struct inode *inode,
446 struct buffer_head *di_bh,
447 u64 new_i_size)
448{
449 int status = 0;
450 struct ocfs2_dinode *fe = NULL;
451 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
452 struct ocfs2_truncate_context *tc = NULL;
453
Mark Fashehb06970532006-03-03 10:24:33 -0800454 mlog_entry("(inode = %llu, new_i_size = %llu\n",
455 (unsigned long long)OCFS2_I(inode)->ip_blkno,
456 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800457
Joel Beckerb657c952008-11-13 14:49:11 -0800458 /* We trust di_bh because it comes from ocfs2_inode_lock(), which
459 * already validated it */
Mark Fashehccd979b2005-12-15 14:31:24 -0800460 fe = (struct ocfs2_dinode *) di_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800461
462 mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800463 "Inode %llu, inode i_size = %lld != di "
464 "i_size = %llu, i_flags = 0x%x\n",
465 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -0800466 i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800467 (unsigned long long)le64_to_cpu(fe->i_size),
468 le32_to_cpu(fe->i_flags));
Mark Fashehccd979b2005-12-15 14:31:24 -0800469
470 if (new_i_size > le64_to_cpu(fe->i_size)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800471 mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
472 (unsigned long long)le64_to_cpu(fe->i_size),
473 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800474 status = -EINVAL;
475 mlog_errno(status);
476 goto bail;
477 }
478
Mark Fashehb06970532006-03-03 10:24:33 -0800479 mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
480 (unsigned long long)le64_to_cpu(fe->i_blkno),
481 (unsigned long long)le64_to_cpu(fe->i_size),
482 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800483
484 /* lets handle the simple truncate cases before doing any more
485 * cluster locking. */
486 if (new_i_size == le64_to_cpu(fe->i_size))
487 goto bail;
488
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700489 down_write(&OCFS2_I(inode)->ip_alloc_sem);
490
Mark Fashehc934a922007-10-18 15:23:46 -0700491 /*
492 * The inode lock forced other nodes to sync and drop their
493 * pages, which (correctly) happens even if we have a truncate
494 * without allocation change - ocfs2 cluster sizes can be much
495 * greater than page size, so we have to truncate them
496 * anyway.
497 */
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700498 unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1);
499 truncate_inode_pages(inode->i_mapping, new_i_size);
500
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700501 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
502 status = ocfs2_truncate_inline(inode, di_bh, new_i_size,
Mark Fashehb1967d02007-11-20 11:56:39 -0800503 i_size_read(inode), 1);
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700504 if (status)
505 mlog_errno(status);
506
Mark Fashehc934a922007-10-18 15:23:46 -0700507 goto bail_unlock_sem;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700508 }
509
Mark Fashehccd979b2005-12-15 14:31:24 -0800510 /* alright, we're going to need to do a full blown alloc size
511 * change. Orphan the inode so that recovery can complete the
512 * truncate if necessary. This does the task of marking
513 * i_size. */
514 status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size);
515 if (status < 0) {
516 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700517 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800518 }
519
520 status = ocfs2_prepare_truncate(osb, inode, di_bh, &tc);
521 if (status < 0) {
522 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700523 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800524 }
525
526 status = ocfs2_commit_truncate(osb, inode, di_bh, tc);
527 if (status < 0) {
528 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700529 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800530 }
531
532 /* TODO: orphan dir cleanup here. */
Mark Fashehc934a922007-10-18 15:23:46 -0700533bail_unlock_sem:
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700534 up_write(&OCFS2_I(inode)->ip_alloc_sem);
535
Mark Fashehccd979b2005-12-15 14:31:24 -0800536bail:
Tao Ma8b2c0db2009-08-18 11:43:49 +0800537 if (!status && OCFS2_I(inode)->ip_clusters == 0)
538 status = ocfs2_try_remove_refcount_tree(inode, di_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800539
540 mlog_exit(status);
541 return status;
542}
543
544/*
Tao Ma0eb8d472008-08-18 17:38:45 +0800545 * extend file allocation only here.
Mark Fashehccd979b2005-12-15 14:31:24 -0800546 * we'll update all the disk stuff, and oip->alloc_size
547 *
548 * expect stuff to be locked, a transaction started and enough data /
549 * metadata reservations in the contexts.
550 *
551 * Will return -EAGAIN, and a reason if a restart is needed.
552 * If passed in, *reason will always be set, even in error.
553 */
Tao Ma0eb8d472008-08-18 17:38:45 +0800554int ocfs2_add_inode_data(struct ocfs2_super *osb,
555 struct inode *inode,
556 u32 *logical_offset,
557 u32 clusters_to_add,
558 int mark_unwritten,
559 struct buffer_head *fe_bh,
560 handle_t *handle,
561 struct ocfs2_alloc_context *data_ac,
562 struct ocfs2_alloc_context *meta_ac,
563 enum ocfs2_alloc_restarted *reason_ret)
Mark Fashehccd979b2005-12-15 14:31:24 -0800564{
Joel Beckerf99b9b72008-08-20 19:36:33 -0700565 int ret;
566 struct ocfs2_extent_tree et;
Mark Fashehccd979b2005-12-15 14:31:24 -0800567
Joel Becker5e404e92009-02-13 03:54:22 -0800568 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), fe_bh);
Joel Beckercbee7e12009-02-13 03:34:15 -0800569 ret = ocfs2_add_clusters_in_btree(handle, &et, logical_offset,
570 clusters_to_add, mark_unwritten,
571 data_ac, meta_ac, reason_ret);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700572
573 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800574}
575
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800576static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
577 u32 clusters_to_add, int mark_unwritten)
Mark Fashehccd979b2005-12-15 14:31:24 -0800578{
579 int status = 0;
580 int restart_func = 0;
Mark Fashehabf8b152007-01-17 13:07:24 -0800581 int credits;
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800582 u32 prev_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -0800583 struct buffer_head *bh = NULL;
584 struct ocfs2_dinode *fe = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700585 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800586 struct ocfs2_alloc_context *data_ac = NULL;
587 struct ocfs2_alloc_context *meta_ac = NULL;
588 enum ocfs2_alloc_restarted why;
589 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700590 struct ocfs2_extent_tree et;
Jan Karaa90714c2008-10-09 19:38:40 +0200591 int did_quota = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800592
593 mlog_entry("(clusters_to_add = %u)\n", clusters_to_add);
594
Mark Fashehdcd05382007-01-16 11:32:23 -0800595 /*
596 * This function only exists for file systems which don't
597 * support holes.
598 */
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800599 BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb));
Mark Fashehdcd05382007-01-16 11:32:23 -0800600
Joel Beckerb657c952008-11-13 14:49:11 -0800601 status = ocfs2_read_inode_block(inode, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800602 if (status < 0) {
603 mlog_errno(status);
604 goto leave;
605 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800606 fe = (struct ocfs2_dinode *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800607
608restart_all:
609 BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
610
Tao Mae7d4cb62008-08-18 17:38:44 +0800611 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
612 "clusters_to_add = %u\n",
613 (unsigned long long)OCFS2_I(inode)->ip_blkno,
614 (long long)i_size_read(inode), le32_to_cpu(fe->i_clusters),
615 clusters_to_add);
Joel Becker5e404e92009-02-13 03:54:22 -0800616 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700617 status = ocfs2_lock_allocators(inode, &et, clusters_to_add, 0,
618 &data_ac, &meta_ac);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800619 if (status) {
620 mlog_errno(status);
621 goto leave;
622 }
623
Tao Ma811f9332008-08-18 17:38:43 +0800624 credits = ocfs2_calc_extend_credits(osb->sb, &fe->id2.i_list,
625 clusters_to_add);
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700626 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800627 if (IS_ERR(handle)) {
628 status = PTR_ERR(handle);
629 handle = NULL;
630 mlog_errno(status);
631 goto leave;
632 }
633
634restarted_transaction:
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500635 status = dquot_alloc_space_nodirty(inode,
636 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
637 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +0200638 goto leave;
Jan Karaa90714c2008-10-09 19:38:40 +0200639 did_quota = 1;
640
Mark Fashehccd979b2005-12-15 14:31:24 -0800641 /* reserve a write to the file entry early on - that we if we
642 * run out of credits in the allocation path, we can still
643 * update i_size. */
Joel Becker0cf2f762009-02-12 16:41:25 -0800644 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -0700645 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800646 if (status < 0) {
647 mlog_errno(status);
648 goto leave;
649 }
650
651 prev_clusters = OCFS2_I(inode)->ip_clusters;
652
Tao Ma0eb8d472008-08-18 17:38:45 +0800653 status = ocfs2_add_inode_data(osb,
654 inode,
655 &logical_start,
656 clusters_to_add,
657 mark_unwritten,
658 bh,
659 handle,
660 data_ac,
661 meta_ac,
662 &why);
Mark Fashehccd979b2005-12-15 14:31:24 -0800663 if ((status < 0) && (status != -EAGAIN)) {
664 if (status != -ENOSPC)
665 mlog_errno(status);
666 goto leave;
667 }
668
669 status = ocfs2_journal_dirty(handle, bh);
670 if (status < 0) {
671 mlog_errno(status);
672 goto leave;
673 }
674
675 spin_lock(&OCFS2_I(inode)->ip_lock);
676 clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
677 spin_unlock(&OCFS2_I(inode)->ip_lock);
Jan Karaa90714c2008-10-09 19:38:40 +0200678 /* Release unused quota reservation */
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500679 dquot_free_space(inode,
Jan Karaa90714c2008-10-09 19:38:40 +0200680 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
681 did_quota = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800682
683 if (why != RESTART_NONE && clusters_to_add) {
684 if (why == RESTART_META) {
685 mlog(0, "restarting function.\n");
686 restart_func = 1;
687 } else {
688 BUG_ON(why != RESTART_TRANS);
689
690 mlog(0, "restarting transaction.\n");
691 /* TODO: This can be more intelligent. */
692 credits = ocfs2_calc_extend_credits(osb->sb,
Tao Ma811f9332008-08-18 17:38:43 +0800693 &fe->id2.i_list,
Mark Fashehccd979b2005-12-15 14:31:24 -0800694 clusters_to_add);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700695 status = ocfs2_extend_trans(handle, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800696 if (status < 0) {
697 /* handle still has to be committed at
698 * this point. */
699 status = -ENOMEM;
700 mlog_errno(status);
701 goto leave;
702 }
703 goto restarted_transaction;
704 }
705 }
706
Mark Fashehb06970532006-03-03 10:24:33 -0800707 mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700708 le32_to_cpu(fe->i_clusters),
709 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -0800710 mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
Jan Kara634bf742007-12-19 15:25:42 +0100711 OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800712
713leave:
Jan Karaa90714c2008-10-09 19:38:40 +0200714 if (status < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500715 dquot_free_space(inode,
Jan Karaa90714c2008-10-09 19:38:40 +0200716 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
Mark Fashehccd979b2005-12-15 14:31:24 -0800717 if (handle) {
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700718 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800719 handle = NULL;
720 }
721 if (data_ac) {
722 ocfs2_free_alloc_context(data_ac);
723 data_ac = NULL;
724 }
725 if (meta_ac) {
726 ocfs2_free_alloc_context(meta_ac);
727 meta_ac = NULL;
728 }
729 if ((!status) && restart_func) {
730 restart_func = 0;
731 goto restart_all;
732 }
Mark Fasheha81cb882008-10-07 14:25:16 -0700733 brelse(bh);
734 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800735
736 mlog_exit(status);
737 return status;
738}
739
740/* Some parts of this taken from generic_cont_expand, which turned out
741 * to be too fragile to do exactly what we need without us having to
Nick Piggin4e02ed42008-10-29 14:00:55 -0700742 * worry about recursive locking in ->write_begin() and ->write_end(). */
Mark Fashehccd979b2005-12-15 14:31:24 -0800743static int ocfs2_write_zero_page(struct inode *inode,
744 u64 size)
745{
746 struct address_space *mapping = inode->i_mapping;
747 struct page *page;
748 unsigned long index;
749 unsigned int offset;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700750 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800751 int ret;
752
753 offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
Sunil Mushran2bd63212010-01-25 16:57:38 -0800754 /* ugh. in prepare/commit_write, if from==to==start of block, we
Mark Fashehccd979b2005-12-15 14:31:24 -0800755 ** skip the prepare. make sure we never send an offset for the start
756 ** of a block
757 */
758 if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
759 offset++;
760 }
761 index = size >> PAGE_CACHE_SHIFT;
762
763 page = grab_cache_page(mapping, index);
764 if (!page) {
765 ret = -ENOMEM;
766 mlog_errno(ret);
767 goto out;
768 }
769
Mark Fasheh53013cb2006-05-05 19:04:03 -0700770 ret = ocfs2_prepare_write_nolock(inode, page, offset, offset);
Mark Fashehccd979b2005-12-15 14:31:24 -0800771 if (ret < 0) {
772 mlog_errno(ret);
773 goto out_unlock;
774 }
775
776 if (ocfs2_should_order_data(inode)) {
777 handle = ocfs2_start_walk_page_trans(inode, page, offset,
778 offset);
779 if (IS_ERR(handle)) {
780 ret = PTR_ERR(handle);
781 handle = NULL;
782 goto out_unlock;
783 }
784 }
785
786 /* must not update i_size! */
787 ret = block_commit_write(page, offset, offset);
788 if (ret < 0)
789 mlog_errno(ret);
790 else
791 ret = 0;
792
793 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700794 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800795out_unlock:
796 unlock_page(page);
797 page_cache_release(page);
798out:
799 return ret;
800}
801
802static int ocfs2_zero_extend(struct inode *inode,
803 u64 zero_to_size)
804{
805 int ret = 0;
806 u64 start_off;
807 struct super_block *sb = inode->i_sb;
808
809 start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode));
810 while (start_off < zero_to_size) {
811 ret = ocfs2_write_zero_page(inode, start_off);
812 if (ret < 0) {
813 mlog_errno(ret);
814 goto out;
815 }
816
817 start_off += sb->s_blocksize;
Mark Fashehe2057c52006-10-03 17:53:05 -0700818
819 /*
820 * Very large extends have the potential to lock up
821 * the cpu for extended periods of time.
822 */
823 cond_resched();
Mark Fashehccd979b2005-12-15 14:31:24 -0800824 }
825
826out:
827 return ret;
828}
829
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700830int ocfs2_extend_no_holes(struct inode *inode, u64 new_i_size, u64 zero_to)
831{
832 int ret;
833 u32 clusters_to_add;
834 struct ocfs2_inode_info *oi = OCFS2_I(inode);
835
836 clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size);
837 if (clusters_to_add < oi->ip_clusters)
838 clusters_to_add = 0;
839 else
840 clusters_to_add -= oi->ip_clusters;
841
842 if (clusters_to_add) {
843 ret = __ocfs2_extend_allocation(inode, oi->ip_clusters,
844 clusters_to_add, 0);
845 if (ret) {
846 mlog_errno(ret);
847 goto out;
848 }
849 }
850
851 /*
852 * Call this even if we don't add any clusters to the tree. We
853 * still need to zero the area between the old i_size and the
854 * new i_size.
855 */
856 ret = ocfs2_zero_extend(inode, zero_to);
857 if (ret < 0)
858 mlog_errno(ret);
859
860out:
861 return ret;
862}
863
Mark Fashehccd979b2005-12-15 14:31:24 -0800864static int ocfs2_extend_file(struct inode *inode,
865 struct buffer_head *di_bh,
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700866 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800867{
Mark Fashehc934a922007-10-18 15:23:46 -0700868 int ret = 0;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700869 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800870
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700871 BUG_ON(!di_bh);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700872
Mark Fashehccd979b2005-12-15 14:31:24 -0800873 /* setattr sometimes calls us like this. */
874 if (new_i_size == 0)
875 goto out;
876
877 if (i_size_read(inode) == new_i_size)
878 goto out;
879 BUG_ON(new_i_size < i_size_read(inode));
880
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700881 /*
882 * Fall through for converting inline data, even if the fs
883 * supports sparse files.
884 *
885 * The check for inline data here is legal - nobody can add
886 * the feature since we have i_mutex. We must check it again
887 * after acquiring ip_alloc_sem though, as paths like mmap
888 * might have raced us to converting the inode to extents.
889 */
890 if (!(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
891 && ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800892 goto out_update_size;
Mark Fashehccd979b2005-12-15 14:31:24 -0800893
Mark Fasheh0effef72006-10-03 17:44:42 -0700894 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700895 * The alloc sem blocks people in read/write from reading our
896 * allocation until we're done changing it. We depend on
897 * i_mutex to block other extend/truncate calls while we're
898 * here.
Mark Fasheh0effef72006-10-03 17:44:42 -0700899 */
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700900 down_write(&oi->ip_alloc_sem);
901
902 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
903 /*
904 * We can optimize small extends by keeping the inodes
905 * inline data.
906 */
907 if (ocfs2_size_fits_inline_data(di_bh, new_i_size)) {
908 up_write(&oi->ip_alloc_sem);
909 goto out_update_size;
910 }
911
912 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
913 if (ret) {
914 up_write(&oi->ip_alloc_sem);
915
916 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700917 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700918 }
919 }
920
921 if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
922 ret = ocfs2_extend_no_holes(inode, new_i_size, new_i_size);
923
924 up_write(&oi->ip_alloc_sem);
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700925
Mark Fasheh0effef72006-10-03 17:44:42 -0700926 if (ret < 0) {
927 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700928 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800929 }
930
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800931out_update_size:
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700932 ret = ocfs2_simple_size_update(inode, di_bh, new_i_size);
933 if (ret < 0)
934 mlog_errno(ret);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700935
Mark Fashehccd979b2005-12-15 14:31:24 -0800936out:
937 return ret;
938}
939
940int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
941{
942 int status = 0, size_change;
943 struct inode *inode = dentry->d_inode;
944 struct super_block *sb = inode->i_sb;
945 struct ocfs2_super *osb = OCFS2_SB(sb);
946 struct buffer_head *bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700947 handle_t *handle = NULL;
Jan Kara65bac572009-06-02 14:24:01 +0200948 int qtype;
949 struct dquot *transfer_from[MAXQUOTAS] = { };
950 struct dquot *transfer_to[MAXQUOTAS] = { };
Mark Fashehccd979b2005-12-15 14:31:24 -0800951
952 mlog_entry("(0x%p, '%.*s')\n", dentry,
953 dentry->d_name.len, dentry->d_name.name);
954
Sunil Mushranbc535802008-04-18 10:23:53 -0700955 /* ensuring we don't even attempt to truncate a symlink */
956 if (S_ISLNK(inode->i_mode))
957 attr->ia_valid &= ~ATTR_SIZE;
958
Mark Fashehccd979b2005-12-15 14:31:24 -0800959 if (attr->ia_valid & ATTR_MODE)
960 mlog(0, "mode change: %d\n", attr->ia_mode);
961 if (attr->ia_valid & ATTR_UID)
962 mlog(0, "uid change: %d\n", attr->ia_uid);
963 if (attr->ia_valid & ATTR_GID)
964 mlog(0, "gid change: %d\n", attr->ia_gid);
965 if (attr->ia_valid & ATTR_SIZE)
966 mlog(0, "size change...\n");
967 if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
968 mlog(0, "time change...\n");
969
970#define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
971 | ATTR_GID | ATTR_UID | ATTR_MODE)
972 if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
973 mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
974 return 0;
975 }
976
977 status = inode_change_ok(inode, attr);
978 if (status)
979 return status;
980
981 size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
982 if (size_change) {
Christoph Hellwig907f4552010-03-03 09:05:06 -0500983 vfs_dq_init(inode);
984
Mark Fashehccd979b2005-12-15 14:31:24 -0800985 status = ocfs2_rw_lock(inode, 1);
986 if (status < 0) {
987 mlog_errno(status);
988 goto bail;
989 }
990 }
991
Mark Fashehe63aecb62007-10-18 15:30:42 -0700992 status = ocfs2_inode_lock(inode, &bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800993 if (status < 0) {
994 if (status != -ENOENT)
995 mlog_errno(status);
996 goto bail_unlock_rw;
997 }
998
999 if (size_change && attr->ia_size != i_size_read(inode)) {
Mark Fashehce76fd32007-07-20 12:02:14 -07001000 if (attr->ia_size > sb->s_maxbytes) {
1001 status = -EFBIG;
1002 goto bail_unlock;
1003 }
1004
Joel Becker2b4e30f2008-09-03 20:03:41 -07001005 if (i_size_read(inode) > attr->ia_size) {
1006 if (ocfs2_should_order_data(inode)) {
1007 status = ocfs2_begin_ordered_truncate(inode,
1008 attr->ia_size);
1009 if (status)
1010 goto bail_unlock;
1011 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001012 status = ocfs2_truncate_file(inode, bh, attr->ia_size);
Joel Becker2b4e30f2008-09-03 20:03:41 -07001013 } else
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001014 status = ocfs2_extend_file(inode, bh, attr->ia_size);
Mark Fashehccd979b2005-12-15 14:31:24 -08001015 if (status < 0) {
1016 if (status != -ENOSPC)
1017 mlog_errno(status);
1018 status = -ENOSPC;
1019 goto bail_unlock;
1020 }
1021 }
1022
Jan Karaa90714c2008-10-09 19:38:40 +02001023 if ((attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
1024 (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
Jan Kara65bac572009-06-02 14:24:01 +02001025 /*
1026 * Gather pointers to quota structures so that allocation /
1027 * freeing of quota structures happens here and not inside
Christoph Hellwigb43fa822010-03-03 09:05:03 -05001028 * dquot_transfer() where we have problems with lock ordering
Jan Kara65bac572009-06-02 14:24:01 +02001029 */
Jan Karaa90714c2008-10-09 19:38:40 +02001030 if (attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid
1031 && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1032 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
Jan Kara65bac572009-06-02 14:24:01 +02001033 transfer_to[USRQUOTA] = dqget(sb, attr->ia_uid,
1034 USRQUOTA);
1035 transfer_from[USRQUOTA] = dqget(sb, inode->i_uid,
1036 USRQUOTA);
1037 if (!transfer_to[USRQUOTA] || !transfer_from[USRQUOTA]) {
1038 status = -ESRCH;
Jan Karaa90714c2008-10-09 19:38:40 +02001039 goto bail_unlock;
Jan Kara65bac572009-06-02 14:24:01 +02001040 }
Jan Karaa90714c2008-10-09 19:38:40 +02001041 }
1042 if (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid
1043 && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1044 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
Jan Kara65bac572009-06-02 14:24:01 +02001045 transfer_to[GRPQUOTA] = dqget(sb, attr->ia_gid,
1046 GRPQUOTA);
1047 transfer_from[GRPQUOTA] = dqget(sb, inode->i_gid,
1048 GRPQUOTA);
1049 if (!transfer_to[GRPQUOTA] || !transfer_from[GRPQUOTA]) {
1050 status = -ESRCH;
Jan Karaa90714c2008-10-09 19:38:40 +02001051 goto bail_unlock;
Jan Kara65bac572009-06-02 14:24:01 +02001052 }
Jan Karaa90714c2008-10-09 19:38:40 +02001053 }
Jan Kara65bac572009-06-02 14:24:01 +02001054 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS +
1055 2 * ocfs2_quota_trans_credits(sb));
Jan Karaa90714c2008-10-09 19:38:40 +02001056 if (IS_ERR(handle)) {
1057 status = PTR_ERR(handle);
1058 mlog_errno(status);
1059 goto bail_unlock;
1060 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05001061 status = dquot_transfer(inode, attr);
Jan Karaa90714c2008-10-09 19:38:40 +02001062 if (status < 0)
1063 goto bail_commit;
1064 } else {
1065 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1066 if (IS_ERR(handle)) {
1067 status = PTR_ERR(handle);
1068 mlog_errno(status);
1069 goto bail_unlock;
1070 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001071 }
1072
Mark Fasheh7307de82007-05-09 15:16:19 -07001073 /*
1074 * This will intentionally not wind up calling vmtruncate(),
1075 * since all the work for a size change has been done above.
1076 * Otherwise, we could get into problems with truncate as
1077 * ip_alloc_sem is used there to protect against i_size
1078 * changes.
1079 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001080 status = inode_setattr(inode, attr);
1081 if (status < 0) {
1082 mlog_errno(status);
1083 goto bail_commit;
1084 }
1085
1086 status = ocfs2_mark_inode_dirty(handle, inode, bh);
1087 if (status < 0)
1088 mlog_errno(status);
1089
1090bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001091 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001092bail_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07001093 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001094bail_unlock_rw:
1095 if (size_change)
1096 ocfs2_rw_unlock(inode, 1);
1097bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001098 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001099
Jan Kara65bac572009-06-02 14:24:01 +02001100 /* Release quota pointers in case we acquired them */
1101 for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
1102 dqput(transfer_to[qtype]);
1103 dqput(transfer_from[qtype]);
1104 }
1105
Tiger Yang060bc662008-11-14 11:17:29 +08001106 if (!status && attr->ia_valid & ATTR_MODE) {
1107 status = ocfs2_acl_chmod(inode);
1108 if (status < 0)
1109 mlog_errno(status);
1110 }
1111
Mark Fashehccd979b2005-12-15 14:31:24 -08001112 mlog_exit(status);
1113 return status;
1114}
1115
1116int ocfs2_getattr(struct vfsmount *mnt,
1117 struct dentry *dentry,
1118 struct kstat *stat)
1119{
1120 struct inode *inode = dentry->d_inode;
1121 struct super_block *sb = dentry->d_inode->i_sb;
1122 struct ocfs2_super *osb = sb->s_fs_info;
1123 int err;
1124
1125 mlog_entry_void();
1126
1127 err = ocfs2_inode_revalidate(dentry);
1128 if (err) {
1129 if (err != -ENOENT)
1130 mlog_errno(err);
1131 goto bail;
1132 }
1133
1134 generic_fillattr(inode, stat);
1135
1136 /* We set the blksize from the cluster size for performance */
1137 stat->blksize = osb->s_clustersize;
1138
1139bail:
1140 mlog_exit(err);
1141
1142 return err;
1143}
1144
Al Viroe6305c42008-07-15 21:03:57 -04001145int ocfs2_permission(struct inode *inode, int mask)
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001146{
1147 int ret;
1148
1149 mlog_entry_void();
1150
Mark Fashehe63aecb62007-10-18 15:30:42 -07001151 ret = ocfs2_inode_lock(inode, NULL, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001152 if (ret) {
Mark Fasheha9f5f702007-04-26 11:43:43 -07001153 if (ret != -ENOENT)
1154 mlog_errno(ret);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001155 goto out;
1156 }
1157
Tiger Yang23fc2702008-11-14 11:17:18 +08001158 ret = generic_permission(inode, mask, ocfs2_check_acl);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001159
Mark Fashehe63aecb62007-10-18 15:30:42 -07001160 ocfs2_inode_unlock(inode, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001161out:
1162 mlog_exit(ret);
1163 return ret;
1164}
1165
Mark Fashehb2580102007-03-09 16:53:21 -08001166static int __ocfs2_write_remove_suid(struct inode *inode,
1167 struct buffer_head *bh)
Mark Fashehccd979b2005-12-15 14:31:24 -08001168{
1169 int ret;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001170 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08001171 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1172 struct ocfs2_dinode *di;
1173
Mark Fashehb06970532006-03-03 10:24:33 -08001174 mlog_entry("(Inode %llu, mode 0%o)\n",
Mark Fashehb2580102007-03-09 16:53:21 -08001175 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001176
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001177 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001178 if (IS_ERR(handle)) {
1179 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001180 mlog_errno(ret);
1181 goto out;
1182 }
1183
Joel Becker0cf2f762009-02-12 16:41:25 -08001184 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -07001185 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001186 if (ret < 0) {
1187 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001188 goto out_trans;
Mark Fashehccd979b2005-12-15 14:31:24 -08001189 }
1190
1191 inode->i_mode &= ~S_ISUID;
1192 if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
1193 inode->i_mode &= ~S_ISGID;
1194
1195 di = (struct ocfs2_dinode *) bh->b_data;
1196 di->i_mode = cpu_to_le16(inode->i_mode);
1197
1198 ret = ocfs2_journal_dirty(handle, bh);
1199 if (ret < 0)
1200 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001201
Mark Fashehccd979b2005-12-15 14:31:24 -08001202out_trans:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001203 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001204out:
1205 mlog_exit(ret);
1206 return ret;
1207}
1208
Mark Fasheh9517bac2007-02-09 20:24:12 -08001209/*
1210 * Will look for holes and unwritten extents in the range starting at
1211 * pos for count bytes (inclusive).
1212 */
1213static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
1214 size_t count)
1215{
1216 int ret = 0;
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001217 unsigned int extent_flags;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001218 u32 cpos, clusters, extent_len, phys_cpos;
1219 struct super_block *sb = inode->i_sb;
1220
1221 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1222 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1223
1224 while (clusters) {
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001225 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1226 &extent_flags);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001227 if (ret < 0) {
1228 mlog_errno(ret);
1229 goto out;
1230 }
1231
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001232 if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001233 ret = 1;
1234 break;
1235 }
1236
1237 if (extent_len > clusters)
1238 extent_len = clusters;
1239
1240 clusters -= extent_len;
1241 cpos += extent_len;
1242 }
1243out:
1244 return ret;
1245}
1246
Mark Fashehb2580102007-03-09 16:53:21 -08001247static int ocfs2_write_remove_suid(struct inode *inode)
1248{
1249 int ret;
1250 struct buffer_head *bh = NULL;
Mark Fashehb2580102007-03-09 16:53:21 -08001251
Joel Beckerb657c952008-11-13 14:49:11 -08001252 ret = ocfs2_read_inode_block(inode, &bh);
Mark Fashehb2580102007-03-09 16:53:21 -08001253 if (ret < 0) {
1254 mlog_errno(ret);
1255 goto out;
1256 }
1257
1258 ret = __ocfs2_write_remove_suid(inode, bh);
1259out:
1260 brelse(bh);
1261 return ret;
1262}
1263
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001264/*
1265 * Allocate enough extents to cover the region starting at byte offset
1266 * start for len bytes. Existing extents are skipped, any extents
1267 * added are marked as "unwritten".
1268 */
1269static int ocfs2_allocate_unwritten_extents(struct inode *inode,
1270 u64 start, u64 len)
1271{
1272 int ret;
1273 u32 cpos, phys_cpos, clusters, alloc_size;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001274 u64 end = start + len;
1275 struct buffer_head *di_bh = NULL;
1276
1277 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
Joel Beckerb657c952008-11-13 14:49:11 -08001278 ret = ocfs2_read_inode_block(inode, &di_bh);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001279 if (ret) {
1280 mlog_errno(ret);
1281 goto out;
1282 }
1283
1284 /*
1285 * Nothing to do if the requested reservation range
1286 * fits within the inode.
1287 */
1288 if (ocfs2_size_fits_inline_data(di_bh, end))
1289 goto out;
1290
1291 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
1292 if (ret) {
1293 mlog_errno(ret);
1294 goto out;
1295 }
1296 }
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001297
1298 /*
1299 * We consider both start and len to be inclusive.
1300 */
1301 cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1302 clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len);
1303 clusters -= cpos;
1304
1305 while (clusters) {
1306 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1307 &alloc_size, NULL);
1308 if (ret) {
1309 mlog_errno(ret);
1310 goto out;
1311 }
1312
1313 /*
1314 * Hole or existing extent len can be arbitrary, so
1315 * cap it to our own allocation request.
1316 */
1317 if (alloc_size > clusters)
1318 alloc_size = clusters;
1319
1320 if (phys_cpos) {
1321 /*
1322 * We already have an allocation at this
1323 * region so we can safely skip it.
1324 */
1325 goto next;
1326 }
1327
1328 ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
1329 if (ret) {
1330 if (ret != -ENOSPC)
1331 mlog_errno(ret);
1332 goto out;
1333 }
1334
1335next:
1336 cpos += alloc_size;
1337 clusters -= alloc_size;
1338 }
1339
1340 ret = 0;
1341out:
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001342
1343 brelse(di_bh);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001344 return ret;
1345}
1346
Mark Fasheh063c4562007-07-03 13:34:11 -07001347/*
1348 * Truncate a byte range, avoiding pages within partial clusters. This
1349 * preserves those pages for the zeroing code to write to.
1350 */
1351static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start,
1352 u64 byte_len)
1353{
1354 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1355 loff_t start, end;
1356 struct address_space *mapping = inode->i_mapping;
1357
1358 start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start);
1359 end = byte_start + byte_len;
1360 end = end & ~(osb->s_clustersize - 1);
1361
1362 if (start < end) {
1363 unmap_mapping_range(mapping, start, end - start, 0);
1364 truncate_inode_pages_range(mapping, start, end - 1);
1365 }
1366}
1367
1368static int ocfs2_zero_partial_clusters(struct inode *inode,
1369 u64 start, u64 len)
1370{
1371 int ret = 0;
1372 u64 tmpend, end = start + len;
1373 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1374 unsigned int csize = osb->s_clustersize;
1375 handle_t *handle;
1376
1377 /*
1378 * The "start" and "end" values are NOT necessarily part of
1379 * the range whose allocation is being deleted. Rather, this
1380 * is what the user passed in with the request. We must zero
1381 * partial clusters here. There's no need to worry about
1382 * physical allocation - the zeroing code knows to skip holes.
1383 */
1384 mlog(0, "byte start: %llu, end: %llu\n",
1385 (unsigned long long)start, (unsigned long long)end);
1386
1387 /*
1388 * If both edges are on a cluster boundary then there's no
1389 * zeroing required as the region is part of the allocation to
1390 * be truncated.
1391 */
1392 if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0)
1393 goto out;
1394
1395 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001396 if (IS_ERR(handle)) {
1397 ret = PTR_ERR(handle);
Mark Fasheh063c4562007-07-03 13:34:11 -07001398 mlog_errno(ret);
1399 goto out;
1400 }
1401
1402 /*
1403 * We want to get the byte offset of the end of the 1st cluster.
1404 */
1405 tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1));
1406 if (tmpend > end)
1407 tmpend = end;
1408
1409 mlog(0, "1st range: start: %llu, tmpend: %llu\n",
1410 (unsigned long long)start, (unsigned long long)tmpend);
1411
1412 ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend);
1413 if (ret)
1414 mlog_errno(ret);
1415
1416 if (tmpend < end) {
1417 /*
1418 * This may make start and end equal, but the zeroing
1419 * code will skip any work in that case so there's no
1420 * need to catch it up here.
1421 */
1422 start = end & ~(osb->s_clustersize - 1);
1423
1424 mlog(0, "2nd range: start: %llu, end: %llu\n",
1425 (unsigned long long)start, (unsigned long long)end);
1426
1427 ret = ocfs2_zero_range_for_truncate(inode, handle, start, end);
1428 if (ret)
1429 mlog_errno(ret);
1430 }
1431
1432 ocfs2_commit_trans(osb, handle);
1433out:
1434 return ret;
1435}
1436
1437static int ocfs2_remove_inode_range(struct inode *inode,
1438 struct buffer_head *di_bh, u64 byte_start,
1439 u64 byte_len)
1440{
1441 int ret = 0;
1442 u32 trunc_start, trunc_len, cpos, phys_cpos, alloc_size;
1443 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1444 struct ocfs2_cached_dealloc_ctxt dealloc;
Mark Fashehb1967d02007-11-20 11:56:39 -08001445 struct address_space *mapping = inode->i_mapping;
Mark Fashehfecc0112008-11-12 15:16:38 -08001446 struct ocfs2_extent_tree et;
Mark Fasheh063c4562007-07-03 13:34:11 -07001447
Joel Becker5e404e92009-02-13 03:54:22 -08001448 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
Mark Fasheh063c4562007-07-03 13:34:11 -07001449 ocfs2_init_dealloc_ctxt(&dealloc);
1450
1451 if (byte_len == 0)
1452 return 0;
1453
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001454 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1455 ret = ocfs2_truncate_inline(inode, di_bh, byte_start,
Mark Fashehb1967d02007-11-20 11:56:39 -08001456 byte_start + byte_len, 0);
1457 if (ret) {
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001458 mlog_errno(ret);
Mark Fashehb1967d02007-11-20 11:56:39 -08001459 goto out;
1460 }
1461 /*
1462 * There's no need to get fancy with the page cache
1463 * truncate of an inline-data inode. We're talking
1464 * about less than a page here, which will be cached
1465 * in the dinode buffer anyway.
1466 */
1467 unmap_mapping_range(mapping, 0, 0, 0);
1468 truncate_inode_pages(mapping, 0);
1469 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001470 }
1471
Mark Fasheh063c4562007-07-03 13:34:11 -07001472 trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start);
1473 trunc_len = (byte_start + byte_len) >> osb->s_clustersize_bits;
1474 if (trunc_len >= trunc_start)
1475 trunc_len -= trunc_start;
1476 else
1477 trunc_len = 0;
1478
1479 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u\n",
1480 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1481 (unsigned long long)byte_start,
1482 (unsigned long long)byte_len, trunc_start, trunc_len);
1483
1484 ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len);
1485 if (ret) {
1486 mlog_errno(ret);
1487 goto out;
1488 }
1489
1490 cpos = trunc_start;
1491 while (trunc_len) {
1492 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1493 &alloc_size, NULL);
1494 if (ret) {
1495 mlog_errno(ret);
1496 goto out;
1497 }
1498
1499 if (alloc_size > trunc_len)
1500 alloc_size = trunc_len;
1501
1502 /* Only do work for non-holes */
1503 if (phys_cpos != 0) {
Mark Fashehfecc0112008-11-12 15:16:38 -08001504 ret = ocfs2_remove_btree_range(inode, &et, cpos,
1505 phys_cpos, alloc_size,
1506 &dealloc);
Mark Fasheh063c4562007-07-03 13:34:11 -07001507 if (ret) {
1508 mlog_errno(ret);
1509 goto out;
1510 }
1511 }
1512
1513 cpos += alloc_size;
1514 trunc_len -= alloc_size;
1515 }
1516
1517 ocfs2_truncate_cluster_pages(inode, byte_start, byte_len);
1518
1519out:
1520 ocfs2_schedule_truncate_log_flush(osb, 1);
1521 ocfs2_run_deallocs(osb, &dealloc);
1522
1523 return ret;
1524}
1525
Mark Fashehb2580102007-03-09 16:53:21 -08001526/*
1527 * Parts of this function taken from xfs_change_file_space()
1528 */
Mark Fasheh385820a2007-07-19 00:14:38 -07001529static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
1530 loff_t f_pos, unsigned int cmd,
1531 struct ocfs2_space_resv *sr,
1532 int change_size)
Mark Fashehb2580102007-03-09 16:53:21 -08001533{
1534 int ret;
1535 s64 llen;
Mark Fasheh385820a2007-07-19 00:14:38 -07001536 loff_t size;
Mark Fashehb2580102007-03-09 16:53:21 -08001537 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1538 struct buffer_head *di_bh = NULL;
1539 handle_t *handle;
Mark Fasheha00cce32007-07-20 11:28:30 -07001540 unsigned long long max_off = inode->i_sb->s_maxbytes;
Mark Fashehb2580102007-03-09 16:53:21 -08001541
Mark Fashehb2580102007-03-09 16:53:21 -08001542 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
1543 return -EROFS;
1544
1545 mutex_lock(&inode->i_mutex);
1546
1547 /*
1548 * This prevents concurrent writes on other nodes
1549 */
1550 ret = ocfs2_rw_lock(inode, 1);
1551 if (ret) {
1552 mlog_errno(ret);
1553 goto out;
1554 }
1555
Mark Fashehe63aecb62007-10-18 15:30:42 -07001556 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001557 if (ret) {
1558 mlog_errno(ret);
1559 goto out_rw_unlock;
1560 }
1561
1562 if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
1563 ret = -EPERM;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001564 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001565 }
1566
1567 switch (sr->l_whence) {
1568 case 0: /*SEEK_SET*/
1569 break;
1570 case 1: /*SEEK_CUR*/
Mark Fasheh385820a2007-07-19 00:14:38 -07001571 sr->l_start += f_pos;
Mark Fashehb2580102007-03-09 16:53:21 -08001572 break;
1573 case 2: /*SEEK_END*/
1574 sr->l_start += i_size_read(inode);
1575 break;
1576 default:
1577 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001578 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001579 }
1580 sr->l_whence = 0;
1581
1582 llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len;
1583
1584 if (sr->l_start < 0
1585 || sr->l_start > max_off
1586 || (sr->l_start + llen) < 0
1587 || (sr->l_start + llen) > max_off) {
1588 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001589 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001590 }
Mark Fasheh385820a2007-07-19 00:14:38 -07001591 size = sr->l_start + sr->l_len;
Mark Fashehb2580102007-03-09 16:53:21 -08001592
1593 if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) {
1594 if (sr->l_len <= 0) {
1595 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001596 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001597 }
1598 }
1599
Mark Fasheh385820a2007-07-19 00:14:38 -07001600 if (file && should_remove_suid(file->f_path.dentry)) {
Mark Fashehb2580102007-03-09 16:53:21 -08001601 ret = __ocfs2_write_remove_suid(inode, di_bh);
1602 if (ret) {
1603 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001604 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001605 }
1606 }
1607
1608 down_write(&OCFS2_I(inode)->ip_alloc_sem);
1609 switch (cmd) {
1610 case OCFS2_IOC_RESVSP:
1611 case OCFS2_IOC_RESVSP64:
1612 /*
1613 * This takes unsigned offsets, but the signed ones we
1614 * pass have been checked against overflow above.
1615 */
1616 ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start,
1617 sr->l_len);
1618 break;
1619 case OCFS2_IOC_UNRESVSP:
1620 case OCFS2_IOC_UNRESVSP64:
1621 ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start,
1622 sr->l_len);
1623 break;
1624 default:
1625 ret = -EINVAL;
1626 }
1627 up_write(&OCFS2_I(inode)->ip_alloc_sem);
1628 if (ret) {
1629 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001630 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001631 }
1632
1633 /*
1634 * We update c/mtime for these changes
1635 */
1636 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1637 if (IS_ERR(handle)) {
1638 ret = PTR_ERR(handle);
1639 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001640 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001641 }
1642
Mark Fasheh385820a2007-07-19 00:14:38 -07001643 if (change_size && i_size_read(inode) < size)
1644 i_size_write(inode, size);
1645
Mark Fashehb2580102007-03-09 16:53:21 -08001646 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1647 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
1648 if (ret < 0)
1649 mlog_errno(ret);
1650
1651 ocfs2_commit_trans(osb, handle);
1652
Mark Fashehe63aecb62007-10-18 15:30:42 -07001653out_inode_unlock:
Mark Fashehb2580102007-03-09 16:53:21 -08001654 brelse(di_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001655 ocfs2_inode_unlock(inode, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001656out_rw_unlock:
1657 ocfs2_rw_unlock(inode, 1);
1658
Mark Fashehb2580102007-03-09 16:53:21 -08001659out:
Julia Lawallc259ae52008-07-21 09:59:15 +02001660 mutex_unlock(&inode->i_mutex);
Mark Fashehb2580102007-03-09 16:53:21 -08001661 return ret;
1662}
1663
Mark Fasheh385820a2007-07-19 00:14:38 -07001664int ocfs2_change_file_space(struct file *file, unsigned int cmd,
1665 struct ocfs2_space_resv *sr)
1666{
1667 struct inode *inode = file->f_path.dentry->d_inode;
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08001668 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh385820a2007-07-19 00:14:38 -07001669
1670 if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
1671 !ocfs2_writes_unwritten_extents(osb))
1672 return -ENOTTY;
1673 else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) &&
1674 !ocfs2_sparse_alloc(osb))
1675 return -ENOTTY;
1676
1677 if (!S_ISREG(inode->i_mode))
1678 return -EINVAL;
1679
1680 if (!(file->f_mode & FMODE_WRITE))
1681 return -EBADF;
1682
1683 return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0);
1684}
1685
1686static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1687 loff_t len)
1688{
1689 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1690 struct ocfs2_space_resv sr;
1691 int change_size = 1;
1692
1693 if (!ocfs2_writes_unwritten_extents(osb))
1694 return -EOPNOTSUPP;
1695
1696 if (S_ISDIR(inode->i_mode))
1697 return -ENODEV;
1698
1699 if (mode & FALLOC_FL_KEEP_SIZE)
1700 change_size = 0;
1701
1702 sr.l_whence = 0;
1703 sr.l_start = (s64)offset;
1704 sr.l_len = (s64)len;
1705
1706 return __ocfs2_change_file_space(NULL, inode, offset,
1707 OCFS2_IOC_RESVSP64, &sr, change_size);
1708}
1709
Tao Ma293b2f72009-08-25 08:02:48 +08001710int ocfs2_check_range_for_refcount(struct inode *inode, loff_t pos,
1711 size_t count)
1712{
1713 int ret = 0;
1714 unsigned int extent_flags;
1715 u32 cpos, clusters, extent_len, phys_cpos;
1716 struct super_block *sb = inode->i_sb;
1717
1718 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)) ||
Tao Ma2f48d592009-10-15 11:10:49 +08001719 !(OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) ||
1720 OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
Tao Ma293b2f72009-08-25 08:02:48 +08001721 return 0;
1722
1723 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1724 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1725
1726 while (clusters) {
1727 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1728 &extent_flags);
1729 if (ret < 0) {
1730 mlog_errno(ret);
1731 goto out;
1732 }
1733
1734 if (phys_cpos && (extent_flags & OCFS2_EXT_REFCOUNTED)) {
1735 ret = 1;
1736 break;
1737 }
1738
1739 if (extent_len > clusters)
1740 extent_len = clusters;
1741
1742 clusters -= extent_len;
1743 cpos += extent_len;
1744 }
1745out:
1746 return ret;
1747}
1748
1749static int ocfs2_prepare_inode_for_refcount(struct inode *inode,
1750 loff_t pos, size_t count,
1751 int *meta_level)
1752{
1753 int ret;
1754 struct buffer_head *di_bh = NULL;
1755 u32 cpos = pos >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1756 u32 clusters =
1757 ocfs2_clusters_for_bytes(inode->i_sb, pos + count) - cpos;
1758
1759 ret = ocfs2_inode_lock(inode, &di_bh, 1);
1760 if (ret) {
1761 mlog_errno(ret);
1762 goto out;
1763 }
1764
1765 *meta_level = 1;
1766
Tao Ma37f8a2b2009-08-26 09:47:28 +08001767 ret = ocfs2_refcount_cow(inode, di_bh, cpos, clusters, UINT_MAX);
Tao Ma293b2f72009-08-25 08:02:48 +08001768 if (ret)
1769 mlog_errno(ret);
1770out:
1771 brelse(di_bh);
1772 return ret;
1773}
1774
Tiger Yang8659ac22006-10-17 18:29:52 -07001775static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
1776 loff_t *ppos,
1777 size_t count,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001778 int appending,
Tao Ma86470e92009-12-03 21:55:05 +08001779 int *direct_io,
1780 int *has_refcount)
Mark Fashehccd979b2005-12-15 14:31:24 -08001781{
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001782 int ret = 0, meta_level = 0;
Tiger Yang8659ac22006-10-17 18:29:52 -07001783 struct inode *inode = dentry->d_inode;
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001784 loff_t saved_pos, end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001785
Sunil Mushran2bd63212010-01-25 16:57:38 -08001786 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001787 * We start with a read level meta lock and only jump to an ex
1788 * if we need to make modifications here.
Mark Fashehccd979b2005-12-15 14:31:24 -08001789 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001790 for(;;) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001791 ret = ocfs2_inode_lock(inode, NULL, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001792 if (ret < 0) {
1793 meta_level = -1;
1794 mlog_errno(ret);
1795 goto out;
1796 }
1797
1798 /* Clear suid / sgid if necessary. We do this here
1799 * instead of later in the write path because
1800 * remove_suid() calls ->setattr without any hint that
1801 * we may have already done our cluster locking. Since
1802 * ocfs2_setattr() *must* take cluster locks to
1803 * proceeed, this will lead us to recursively lock the
1804 * inode. There's also the dinode i_size state which
1805 * can be lost via setattr during extending writes (we
1806 * set inode->i_size at the end of a write. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001807 if (should_remove_suid(dentry)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001808 if (meta_level == 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001809 ocfs2_inode_unlock(inode, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001810 meta_level = 1;
1811 continue;
1812 }
1813
1814 ret = ocfs2_write_remove_suid(inode);
1815 if (ret < 0) {
1816 mlog_errno(ret);
Tiger Yang8659ac22006-10-17 18:29:52 -07001817 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08001818 }
1819 }
1820
1821 /* work on a copy of ppos until we're sure that we won't have
1822 * to recalculate it due to relocking. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001823 if (appending) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001824 saved_pos = i_size_read(inode);
1825 mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
1826 } else {
Tiger Yang8659ac22006-10-17 18:29:52 -07001827 saved_pos = *ppos;
Mark Fashehccd979b2005-12-15 14:31:24 -08001828 }
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001829
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001830 end = saved_pos + count;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001831
Tao Ma293b2f72009-08-25 08:02:48 +08001832 ret = ocfs2_check_range_for_refcount(inode, saved_pos, count);
1833 if (ret == 1) {
1834 ocfs2_inode_unlock(inode, meta_level);
1835 meta_level = -1;
1836
1837 ret = ocfs2_prepare_inode_for_refcount(inode,
1838 saved_pos,
1839 count,
1840 &meta_level);
Tao Ma86470e92009-12-03 21:55:05 +08001841 if (has_refcount)
1842 *has_refcount = 1;
Tao Ma293b2f72009-08-25 08:02:48 +08001843 }
1844
1845 if (ret < 0) {
1846 mlog_errno(ret);
1847 goto out_unlock;
1848 }
1849
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001850 /*
1851 * Skip the O_DIRECT checks if we don't need
1852 * them.
1853 */
1854 if (!direct_io || !(*direct_io))
1855 break;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001856
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001857 /*
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001858 * There's no sane way to do direct writes to an inode
1859 * with inline data.
1860 */
1861 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1862 *direct_io = 0;
1863 break;
1864 }
1865
Tao Ma86470e92009-12-03 21:55:05 +08001866 if (has_refcount && *has_refcount == 1) {
1867 *direct_io = 0;
1868 break;
1869 }
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001870 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001871 * Allowing concurrent direct writes means
1872 * i_size changes wouldn't be synchronized, so
1873 * one node could wind up truncating another
1874 * nodes writes.
1875 */
1876 if (end > i_size_read(inode)) {
1877 *direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001878 break;
1879 }
1880
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001881 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001882 * We don't fill holes during direct io, so
1883 * check for them here. If any are found, the
1884 * caller will have to retake some cluster
1885 * locks and initiate the io as buffered.
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001886 */
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001887 ret = ocfs2_check_range_for_holes(inode, saved_pos, count);
1888 if (ret == 1) {
1889 *direct_io = 0;
1890 ret = 0;
1891 } else if (ret < 0)
1892 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -08001893 break;
1894 }
1895
Tiger Yang8659ac22006-10-17 18:29:52 -07001896 if (appending)
1897 *ppos = saved_pos;
1898
1899out_unlock:
Tao Ma293b2f72009-08-25 08:02:48 +08001900 if (meta_level >= 0)
1901 ocfs2_inode_unlock(inode, meta_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07001902
1903out:
1904 return ret;
1905}
1906
1907static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
1908 const struct iovec *iov,
1909 unsigned long nr_segs,
1910 loff_t pos)
1911{
Mark Fasheh9517bac2007-02-09 20:24:12 -08001912 int ret, direct_io, appending, rw_level, have_alloc_sem = 0;
Tao Ma86470e92009-12-03 21:55:05 +08001913 int can_do_direct, has_refcount = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001914 ssize_t written = 0;
1915 size_t ocount; /* original count */
1916 size_t count; /* after file limit checks */
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001917 loff_t old_size, *ppos = &iocb->ki_pos;
1918 u32 old_clusters;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001919 struct file *file = iocb->ki_filp;
1920 struct inode *inode = file->f_path.dentry->d_inode;
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001921 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang8659ac22006-10-17 18:29:52 -07001922
Mark Fasheh9517bac2007-02-09 20:24:12 -08001923 mlog_entry("(0x%p, %u, '%.*s')\n", file,
Tiger Yang8659ac22006-10-17 18:29:52 -07001924 (unsigned int)nr_segs,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001925 file->f_path.dentry->d_name.len,
1926 file->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07001927
Tiger Yang8659ac22006-10-17 18:29:52 -07001928 if (iocb->ki_left == 0)
1929 return 0;
1930
Mark Fasheh9517bac2007-02-09 20:24:12 -08001931 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1932
1933 appending = file->f_flags & O_APPEND ? 1 : 0;
1934 direct_io = file->f_flags & O_DIRECT ? 1 : 0;
1935
Tiger Yang8659ac22006-10-17 18:29:52 -07001936 mutex_lock(&inode->i_mutex);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001937
1938relock:
Tiger Yang8659ac22006-10-17 18:29:52 -07001939 /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001940 if (direct_io) {
Tiger Yang8659ac22006-10-17 18:29:52 -07001941 down_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001942 have_alloc_sem = 1;
Tiger Yang8659ac22006-10-17 18:29:52 -07001943 }
1944
1945 /* concurrent O_DIRECT writes are allowed */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001946 rw_level = !direct_io;
Tiger Yang8659ac22006-10-17 18:29:52 -07001947 ret = ocfs2_rw_lock(inode, rw_level);
1948 if (ret < 0) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001949 mlog_errno(ret);
1950 goto out_sems;
1951 }
1952
1953 can_do_direct = direct_io;
1954 ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
1955 iocb->ki_left, appending,
Tao Ma86470e92009-12-03 21:55:05 +08001956 &can_do_direct, &has_refcount);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001957 if (ret < 0) {
Tiger Yang8659ac22006-10-17 18:29:52 -07001958 mlog_errno(ret);
1959 goto out;
1960 }
1961
Mark Fasheh9517bac2007-02-09 20:24:12 -08001962 /*
1963 * We can't complete the direct I/O as requested, fall back to
1964 * buffered I/O.
1965 */
1966 if (direct_io && !can_do_direct) {
1967 ocfs2_rw_unlock(inode, rw_level);
1968 up_read(&inode->i_alloc_sem);
1969
1970 have_alloc_sem = 0;
1971 rw_level = -1;
1972
1973 direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001974 goto relock;
Tiger Yang8659ac22006-10-17 18:29:52 -07001975 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001976
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001977 /*
1978 * To later detect whether a journal commit for sync writes is
1979 * necessary, we sample i_size, and cluster count here.
1980 */
1981 old_size = i_size_read(inode);
1982 old_clusters = OCFS2_I(inode)->ip_clusters;
1983
Mark Fashehccd979b2005-12-15 14:31:24 -08001984 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07001985 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001986
Mark Fasheh9517bac2007-02-09 20:24:12 -08001987 if (direct_io) {
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001988 ret = generic_segment_checks(iov, &nr_segs, &ocount,
1989 VERIFY_READ);
1990 if (ret)
1991 goto out_dio;
1992
Goldwyn Rodriguescefcb802009-07-11 10:57:27 -05001993 count = ocount;
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001994 ret = generic_write_checks(file, ppos, &count,
1995 S_ISBLK(inode->i_mode));
1996 if (ret)
1997 goto out_dio;
1998
Mark Fasheh9517bac2007-02-09 20:24:12 -08001999 written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
2000 ppos, count, ocount);
2001 if (written < 0) {
Dmitri Monakhovc4354002008-10-27 13:01:49 -07002002 /*
2003 * direct write may have instantiated a few
2004 * blocks outside i_size. Trim these off again.
2005 * Don't need i_size_read because we hold i_mutex.
2006 */
2007 if (*ppos + count > inode->i_size)
2008 vmtruncate(inode, inode->i_size);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002009 ret = written;
2010 goto out_dio;
2011 }
2012 } else {
Jan Kara918941a2009-08-17 18:50:08 +02002013 written = __generic_file_aio_write(iocb, iov, nr_segs, ppos);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002014 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002015
Mark Fasheh9517bac2007-02-09 20:24:12 -08002016out_dio:
Mark Fashehccd979b2005-12-15 14:31:24 -08002017 /* buffered aio wouldn't have proper lock coverage today */
Mark Fasheh9517bac2007-02-09 20:24:12 -08002018 BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
Mark Fashehccd979b2005-12-15 14:31:24 -08002019
Tao Ma60c48672010-02-03 09:56:04 +08002020 if (((file->f_flags & O_DSYNC) && !direct_io) || IS_SYNC(inode) ||
2021 ((file->f_flags & O_DIRECT) && has_refcount)) {
Jan Kara918941a2009-08-17 18:50:08 +02002022 ret = filemap_fdatawrite_range(file->f_mapping, pos,
2023 pos + count - 1);
2024 if (ret < 0)
2025 written = ret;
2026
2027 if (!ret && (old_size != i_size_read(inode) ||
Tao Ma86470e92009-12-03 21:55:05 +08002028 old_clusters != OCFS2_I(inode)->ip_clusters ||
2029 has_refcount)) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07002030 ret = jbd2_journal_force_commit(osb->journal->j_journal);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002031 if (ret < 0)
2032 written = ret;
2033 }
Jan Kara918941a2009-08-17 18:50:08 +02002034
2035 if (!ret)
2036 ret = filemap_fdatawait_range(file->f_mapping, pos,
2037 pos + count - 1);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002038 }
2039
Sunil Mushran2bd63212010-01-25 16:57:38 -08002040 /*
Mark Fashehccd979b2005-12-15 14:31:24 -08002041 * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
2042 * function pointer which is called when o_direct io completes so that
2043 * it can unlock our rw lock. (it's the clustered equivalent of
2044 * i_alloc_sem; protects truncate from racing with pending ios).
2045 * Unfortunately there are error cases which call end_io and others
2046 * that don't. so we don't have to unlock the rw_lock if either an
2047 * async dio is going to do it in the future or an end_io after an
2048 * error has already done it.
2049 */
2050 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
2051 rw_level = -1;
2052 have_alloc_sem = 0;
2053 }
2054
2055out:
Mark Fasheh9517bac2007-02-09 20:24:12 -08002056 if (rw_level != -1)
2057 ocfs2_rw_unlock(inode, rw_level);
2058
2059out_sems:
Mark Fashehccd979b2005-12-15 14:31:24 -08002060 if (have_alloc_sem)
2061 up_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002062
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002063 mutex_unlock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08002064
Wengang Wang812e7a62009-07-10 13:26:04 +08002065 if (written)
2066 ret = written;
Mark Fashehccd979b2005-12-15 14:31:24 -08002067 mlog_exit(ret);
Wengang Wang812e7a62009-07-10 13:26:04 +08002068 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08002069}
2070
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002071static int ocfs2_splice_to_file(struct pipe_inode_info *pipe,
2072 struct file *out,
2073 struct splice_desc *sd)
2074{
2075 int ret;
2076
2077 ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, &sd->pos,
Tao Ma86470e92009-12-03 21:55:05 +08002078 sd->total_len, 0, NULL, NULL);
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002079 if (ret < 0) {
2080 mlog_errno(ret);
2081 return ret;
2082 }
2083
2084 return splice_from_pipe_feed(pipe, sd, pipe_to_file);
2085}
2086
Tiger Yang8659ac22006-10-17 18:29:52 -07002087static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
2088 struct file *out,
2089 loff_t *ppos,
2090 size_t len,
2091 unsigned int flags)
2092{
2093 int ret;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002094 struct address_space *mapping = out->f_mapping;
2095 struct inode *inode = mapping->host;
2096 struct splice_desc sd = {
2097 .total_len = len,
2098 .flags = flags,
2099 .pos = *ppos,
2100 .u.file = out,
2101 };
Tiger Yang8659ac22006-10-17 18:29:52 -07002102
2103 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
2104 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08002105 out->f_path.dentry->d_name.len,
2106 out->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002107
Miklos Szeredi7bfac9e2009-04-06 17:41:00 +02002108 if (pipe->inode)
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002109 mutex_lock_nested(&pipe->inode->i_mutex, I_MUTEX_PARENT);
2110
2111 splice_from_pipe_begin(&sd);
2112 do {
2113 ret = splice_from_pipe_next(pipe, &sd);
2114 if (ret <= 0)
2115 break;
2116
2117 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
2118 ret = ocfs2_rw_lock(inode, 1);
2119 if (ret < 0)
2120 mlog_errno(ret);
2121 else {
2122 ret = ocfs2_splice_to_file(pipe, out, &sd);
2123 ocfs2_rw_unlock(inode, 1);
2124 }
2125 mutex_unlock(&inode->i_mutex);
2126 } while (ret > 0);
2127 splice_from_pipe_end(pipe, &sd);
2128
Miklos Szeredi7bfac9e2009-04-06 17:41:00 +02002129 if (pipe->inode)
2130 mutex_unlock(&pipe->inode->i_mutex);
Tiger Yang8659ac22006-10-17 18:29:52 -07002131
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002132 if (sd.num_spliced)
2133 ret = sd.num_spliced;
2134
2135 if (ret > 0) {
2136 unsigned long nr_pages;
Jan Karad23c9372009-08-18 18:24:31 +02002137 int err;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002138
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002139 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
2140
Jan Karad23c9372009-08-18 18:24:31 +02002141 err = generic_write_sync(out, *ppos, ret);
2142 if (err)
2143 ret = err;
2144 else
2145 *ppos += ret;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002146
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002147 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
2148 }
Tiger Yang8659ac22006-10-17 18:29:52 -07002149
2150 mlog_exit(ret);
2151 return ret;
2152}
2153
2154static ssize_t ocfs2_file_splice_read(struct file *in,
2155 loff_t *ppos,
2156 struct pipe_inode_info *pipe,
2157 size_t len,
2158 unsigned int flags)
2159{
Tao Ma1962f392009-06-19 15:36:52 +08002160 int ret = 0, lock_level = 0;
Josef Sipekd28c9172006-12-08 02:37:25 -08002161 struct inode *inode = in->f_path.dentry->d_inode;
Tiger Yang8659ac22006-10-17 18:29:52 -07002162
2163 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
2164 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08002165 in->f_path.dentry->d_name.len,
2166 in->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002167
2168 /*
2169 * See the comment in ocfs2_file_aio_read()
2170 */
Tao Ma1962f392009-06-19 15:36:52 +08002171 ret = ocfs2_inode_lock_atime(inode, in->f_vfsmnt, &lock_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002172 if (ret < 0) {
2173 mlog_errno(ret);
2174 goto bail;
2175 }
Tao Ma1962f392009-06-19 15:36:52 +08002176 ocfs2_inode_unlock(inode, lock_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002177
2178 ret = generic_file_splice_read(in, ppos, pipe, len, flags);
2179
2180bail:
2181 mlog_exit(ret);
2182 return ret;
2183}
2184
Mark Fashehccd979b2005-12-15 14:31:24 -08002185static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -07002186 const struct iovec *iov,
2187 unsigned long nr_segs,
Mark Fashehccd979b2005-12-15 14:31:24 -08002188 loff_t pos)
2189{
Tiger Yang25899de2006-11-15 15:49:02 +08002190 int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002191 struct file *filp = iocb->ki_filp;
Josef Sipekd28c9172006-12-08 02:37:25 -08002192 struct inode *inode = filp->f_path.dentry->d_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08002193
Badari Pulavarty027445c2006-09-30 23:28:46 -07002194 mlog_entry("(0x%p, %u, '%.*s')\n", filp,
2195 (unsigned int)nr_segs,
Josef Sipekd28c9172006-12-08 02:37:25 -08002196 filp->f_path.dentry->d_name.len,
2197 filp->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08002198
2199 if (!inode) {
2200 ret = -EINVAL;
2201 mlog_errno(ret);
2202 goto bail;
2203 }
2204
Sunil Mushran2bd63212010-01-25 16:57:38 -08002205 /*
Mark Fashehccd979b2005-12-15 14:31:24 -08002206 * buffered reads protect themselves in ->readpage(). O_DIRECT reads
2207 * need locks to protect pending reads from racing with truncate.
2208 */
2209 if (filp->f_flags & O_DIRECT) {
2210 down_read(&inode->i_alloc_sem);
2211 have_alloc_sem = 1;
2212
2213 ret = ocfs2_rw_lock(inode, 0);
2214 if (ret < 0) {
2215 mlog_errno(ret);
2216 goto bail;
2217 }
2218 rw_level = 0;
2219 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07002220 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08002221 }
2222
Mark Fashehc4374f82006-05-05 19:04:35 -07002223 /*
2224 * We're fine letting folks race truncates and extending
2225 * writes with read across the cluster, just like they can
2226 * locally. Hence no rw_lock during read.
Sunil Mushran2bd63212010-01-25 16:57:38 -08002227 *
Mark Fashehc4374f82006-05-05 19:04:35 -07002228 * Take and drop the meta data lock to update inode fields
2229 * like i_size. This allows the checks down below
Sunil Mushran2bd63212010-01-25 16:57:38 -08002230 * generic_file_aio_read() a chance of actually working.
Mark Fashehc4374f82006-05-05 19:04:35 -07002231 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07002232 ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002233 if (ret < 0) {
2234 mlog_errno(ret);
2235 goto bail;
2236 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07002237 ocfs2_inode_unlock(inode, lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002238
Badari Pulavarty027445c2006-09-30 23:28:46 -07002239 ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
Mark Fashehccd979b2005-12-15 14:31:24 -08002240 if (ret == -EINVAL)
Sunil Mushran56753bd2008-06-09 11:24:41 -07002241 mlog(0, "generic_file_aio_read returned -EINVAL\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08002242
2243 /* buffered aio wouldn't have proper lock coverage today */
2244 BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
2245
2246 /* see ocfs2_file_aio_write */
2247 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
2248 rw_level = -1;
2249 have_alloc_sem = 0;
2250 }
2251
2252bail:
2253 if (have_alloc_sem)
2254 up_read(&inode->i_alloc_sem);
Sunil Mushran2bd63212010-01-25 16:57:38 -08002255 if (rw_level != -1)
Mark Fashehccd979b2005-12-15 14:31:24 -08002256 ocfs2_rw_unlock(inode, rw_level);
2257 mlog_exit(ret);
2258
2259 return ret;
2260}
2261
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002262const struct inode_operations ocfs2_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002263 .setattr = ocfs2_setattr,
2264 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002265 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002266 .setxattr = generic_setxattr,
2267 .getxattr = generic_getxattr,
2268 .listxattr = ocfs2_listxattr,
2269 .removexattr = generic_removexattr,
Mark Fasheh385820a2007-07-19 00:14:38 -07002270 .fallocate = ocfs2_fallocate,
Mark Fasheh00dc4172008-10-03 17:32:11 -04002271 .fiemap = ocfs2_fiemap,
Mark Fashehccd979b2005-12-15 14:31:24 -08002272};
2273
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002274const struct inode_operations ocfs2_special_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002275 .setattr = ocfs2_setattr,
2276 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002277 .permission = ocfs2_permission,
Mark Fashehccd979b2005-12-15 14:31:24 -08002278};
2279
Mark Fasheh53da4932008-07-21 14:29:16 -07002280/*
2281 * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
2282 * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
2283 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002284const struct file_operations ocfs2_fops = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002285 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002286 .read = do_sync_read,
2287 .write = do_sync_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002288 .mmap = ocfs2_mmap,
2289 .fsync = ocfs2_sync_file,
2290 .release = ocfs2_file_release,
2291 .open = ocfs2_file_open,
2292 .aio_read = ocfs2_file_aio_read,
2293 .aio_write = ocfs2_file_aio_write,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002294 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002295#ifdef CONFIG_COMPAT
2296 .compat_ioctl = ocfs2_compat_ioctl,
2297#endif
Mark Fasheh53da4932008-07-21 14:29:16 -07002298 .lock = ocfs2_lock,
2299 .flock = ocfs2_flock,
2300 .splice_read = ocfs2_file_splice_read,
2301 .splice_write = ocfs2_file_splice_write,
2302};
2303
2304const struct file_operations ocfs2_dops = {
2305 .llseek = generic_file_llseek,
2306 .read = generic_read_dir,
2307 .readdir = ocfs2_readdir,
2308 .fsync = ocfs2_sync_file,
2309 .release = ocfs2_dir_release,
2310 .open = ocfs2_dir_open,
2311 .unlocked_ioctl = ocfs2_ioctl,
2312#ifdef CONFIG_COMPAT
2313 .compat_ioctl = ocfs2_compat_ioctl,
2314#endif
2315 .lock = ocfs2_lock,
2316 .flock = ocfs2_flock,
2317};
2318
2319/*
2320 * POSIX-lockless variants of our file_operations.
2321 *
2322 * These will be used if the underlying cluster stack does not support
2323 * posix file locking, if the user passes the "localflocks" mount
2324 * option, or if we have a local-only fs.
2325 *
2326 * ocfs2_flock is in here because all stacks handle UNIX file locks,
2327 * so we still want it in the case of no stack support for
2328 * plocks. Internally, it will do the right thing when asked to ignore
2329 * the cluster.
2330 */
2331const struct file_operations ocfs2_fops_no_plocks = {
2332 .llseek = generic_file_llseek,
2333 .read = do_sync_read,
2334 .write = do_sync_write,
2335 .mmap = ocfs2_mmap,
2336 .fsync = ocfs2_sync_file,
2337 .release = ocfs2_file_release,
2338 .open = ocfs2_file_open,
2339 .aio_read = ocfs2_file_aio_read,
2340 .aio_write = ocfs2_file_aio_write,
2341 .unlocked_ioctl = ocfs2_ioctl,
2342#ifdef CONFIG_COMPAT
2343 .compat_ioctl = ocfs2_compat_ioctl,
2344#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002345 .flock = ocfs2_flock,
Tiger Yang8659ac22006-10-17 18:29:52 -07002346 .splice_read = ocfs2_file_splice_read,
2347 .splice_write = ocfs2_file_splice_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002348};
2349
Mark Fasheh53da4932008-07-21 14:29:16 -07002350const struct file_operations ocfs2_dops_no_plocks = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002351 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002352 .read = generic_read_dir,
2353 .readdir = ocfs2_readdir,
2354 .fsync = ocfs2_sync_file,
Mark Fasheh53fc6222007-12-20 16:49:04 -08002355 .release = ocfs2_dir_release,
2356 .open = ocfs2_dir_open,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002357 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002358#ifdef CONFIG_COMPAT
2359 .compat_ioctl = ocfs2_compat_ioctl,
2360#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002361 .flock = ocfs2_flock,
Mark Fashehccd979b2005-12-15 14:31:24 -08002362};