blob: 1c6220a8e07280104dd53ac86d95c4fc3a25aa4d [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
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200178static int ocfs2_sync_file(struct file *file, int datasync)
Mark Fashehccd979b2005-12-15 14:31:24 -0800179{
180 int err = 0;
181 journal_t *journal;
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200182 struct dentry *dentry = file->f_path.dentry;
183 struct inode *inode = file->f_mapping->host;
Mark Fashehccd979b2005-12-15 14:31:24 -0800184 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
185
186 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync,
187 dentry->d_name.len, dentry->d_name.name);
188
189 err = ocfs2_sync_inode(dentry->d_inode);
190 if (err)
191 goto bail;
192
Hisashi Hifumie04cc152009-06-09 16:47:45 +0900193 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
194 goto bail;
195
Mark Fashehccd979b2005-12-15 14:31:24 -0800196 journal = osb->journal->j_journal;
Joel Becker2b4e30f2008-09-03 20:03:41 -0700197 err = jbd2_journal_force_commit(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -0800198
199bail:
200 mlog_exit(err);
201
202 return (err < 0) ? -EIO : 0;
203}
204
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800205int ocfs2_should_update_atime(struct inode *inode,
206 struct vfsmount *vfsmnt)
207{
208 struct timespec now;
209 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
210
211 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
212 return 0;
213
214 if ((inode->i_flags & S_NOATIME) ||
215 ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode)))
216 return 0;
217
Mark Fasheh6c2aad02006-12-19 15:25:52 -0800218 /*
219 * We can be called with no vfsmnt structure - NFSD will
220 * sometimes do this.
221 *
222 * Note that our action here is different than touch_atime() -
223 * if we can't tell whether this is a noatime mount, then we
224 * don't know whether to trust the value of s_atime_quantum.
225 */
226 if (vfsmnt == NULL)
227 return 0;
228
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800229 if ((vfsmnt->mnt_flags & MNT_NOATIME) ||
230 ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
231 return 0;
232
Mark Fasheh7e913c52006-12-13 00:34:35 -0800233 if (vfsmnt->mnt_flags & MNT_RELATIME) {
234 if ((timespec_compare(&inode->i_atime, &inode->i_mtime) <= 0) ||
235 (timespec_compare(&inode->i_atime, &inode->i_ctime) <= 0))
236 return 1;
237
238 return 0;
239 }
240
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800241 now = CURRENT_TIME;
242 if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum))
243 return 0;
244 else
245 return 1;
246}
247
248int ocfs2_update_inode_atime(struct inode *inode,
249 struct buffer_head *bh)
250{
251 int ret;
252 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
253 handle_t *handle;
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700254 struct ocfs2_dinode *di = (struct ocfs2_dinode *) bh->b_data;
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800255
256 mlog_entry_void();
257
258 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200259 if (IS_ERR(handle)) {
260 ret = PTR_ERR(handle);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800261 mlog_errno(ret);
262 goto out;
263 }
264
Joel Becker0cf2f762009-02-12 16:41:25 -0800265 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -0700266 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700267 if (ret) {
268 mlog_errno(ret);
269 goto out_commit;
270 }
271
272 /*
273 * Don't use ocfs2_mark_inode_dirty() here as we don't always
274 * have i_mutex to guard against concurrent changes to other
275 * inode fields.
276 */
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800277 inode->i_atime = CURRENT_TIME;
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700278 di->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
279 di->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
Joel Beckerec20cec2010-03-19 14:13:52 -0700280 ocfs2_journal_dirty(handle, bh);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800281
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700282out_commit:
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800283 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
284out:
285 mlog_exit(ret);
286 return ret;
287}
288
Adrian Bunk6cb129f2007-04-26 00:29:35 -0700289static int ocfs2_set_inode_size(handle_t *handle,
290 struct inode *inode,
291 struct buffer_head *fe_bh,
292 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800293{
294 int status;
295
296 mlog_entry_void();
297 i_size_write(inode, new_i_size);
Mark Fasheh8110b072007-03-22 16:53:23 -0700298 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800299 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
300
301 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
302 if (status < 0) {
303 mlog_errno(status);
304 goto bail;
305 }
306
307bail:
308 mlog_exit(status);
309 return status;
310}
311
Jan Kara9e33d692008-08-25 19:56:50 +0200312int ocfs2_simple_size_update(struct inode *inode,
313 struct buffer_head *di_bh,
314 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800315{
316 int ret;
317 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700318 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800319
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700320 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200321 if (IS_ERR(handle)) {
322 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800323 mlog_errno(ret);
324 goto out;
325 }
326
327 ret = ocfs2_set_inode_size(handle, inode, di_bh,
328 new_i_size);
329 if (ret < 0)
330 mlog_errno(ret);
331
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700332 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800333out:
334 return ret;
335}
336
Tao Ma37f8a2b2009-08-26 09:47:28 +0800337static int ocfs2_cow_file_pos(struct inode *inode,
338 struct buffer_head *fe_bh,
339 u64 offset)
340{
341 int status;
342 u32 phys, cpos = offset >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
343 unsigned int num_clusters = 0;
344 unsigned int ext_flags = 0;
345
346 /*
347 * If the new offset is aligned to the range of the cluster, there is
348 * no space for ocfs2_zero_range_for_truncate to fill, so no need to
349 * CoW either.
350 */
351 if ((offset & (OCFS2_SB(inode->i_sb)->s_clustersize - 1)) == 0)
352 return 0;
353
354 status = ocfs2_get_clusters(inode, cpos, &phys,
355 &num_clusters, &ext_flags);
356 if (status) {
357 mlog_errno(status);
358 goto out;
359 }
360
361 if (!(ext_flags & OCFS2_EXT_REFCOUNTED))
362 goto out;
363
364 return ocfs2_refcount_cow(inode, fe_bh, cpos, 1, cpos+1);
365
366out:
367 return status;
368}
369
Mark Fashehccd979b2005-12-15 14:31:24 -0800370static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
371 struct inode *inode,
372 struct buffer_head *fe_bh,
373 u64 new_i_size)
374{
375 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700376 handle_t *handle;
Mark Fasheh60b11392007-02-16 11:46:50 -0800377 struct ocfs2_dinode *di;
Mark Fasheh35edec12007-07-06 14:41:18 -0700378 u64 cluster_bytes;
Mark Fashehccd979b2005-12-15 14:31:24 -0800379
380 mlog_entry_void();
381
Tao Ma37f8a2b2009-08-26 09:47:28 +0800382 /*
383 * We need to CoW the cluster contains the offset if it is reflinked
384 * since we will call ocfs2_zero_range_for_truncate later which will
385 * write "0" from offset to the end of the cluster.
386 */
387 status = ocfs2_cow_file_pos(inode, fe_bh, new_i_size);
388 if (status) {
389 mlog_errno(status);
390 return status;
391 }
392
Mark Fashehccd979b2005-12-15 14:31:24 -0800393 /* TODO: This needs to actually orphan the inode in this
394 * transaction. */
395
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700396 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800397 if (IS_ERR(handle)) {
398 status = PTR_ERR(handle);
399 mlog_errno(status);
400 goto out;
401 }
402
Joel Becker0cf2f762009-02-12 16:41:25 -0800403 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700404 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh60b11392007-02-16 11:46:50 -0800405 if (status < 0) {
406 mlog_errno(status);
407 goto out_commit;
408 }
409
410 /*
411 * Do this before setting i_size.
412 */
Mark Fasheh35edec12007-07-06 14:41:18 -0700413 cluster_bytes = ocfs2_align_bytes_to_clusters(inode->i_sb, new_i_size);
414 status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size,
415 cluster_bytes);
Mark Fasheh60b11392007-02-16 11:46:50 -0800416 if (status) {
417 mlog_errno(status);
418 goto out_commit;
419 }
420
421 i_size_write(inode, new_i_size);
Mark Fasheh60b11392007-02-16 11:46:50 -0800422 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
423
424 di = (struct ocfs2_dinode *) fe_bh->b_data;
425 di->i_size = cpu_to_le64(new_i_size);
426 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
427 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
428
Joel Beckerec20cec2010-03-19 14:13:52 -0700429 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800430
Mark Fasheh60b11392007-02-16 11:46:50 -0800431out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700432 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800433out:
Mark Fasheh60b11392007-02-16 11:46:50 -0800434
Mark Fashehccd979b2005-12-15 14:31:24 -0800435 mlog_exit(status);
436 return status;
437}
438
439static int ocfs2_truncate_file(struct inode *inode,
440 struct buffer_head *di_bh,
441 u64 new_i_size)
442{
443 int status = 0;
444 struct ocfs2_dinode *fe = NULL;
445 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800446
Mark Fashehb06970532006-03-03 10:24:33 -0800447 mlog_entry("(inode = %llu, new_i_size = %llu\n",
448 (unsigned long long)OCFS2_I(inode)->ip_blkno,
449 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800450
Joel Beckerb657c952008-11-13 14:49:11 -0800451 /* We trust di_bh because it comes from ocfs2_inode_lock(), which
452 * already validated it */
Mark Fashehccd979b2005-12-15 14:31:24 -0800453 fe = (struct ocfs2_dinode *) di_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800454
455 mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800456 "Inode %llu, inode i_size = %lld != di "
457 "i_size = %llu, i_flags = 0x%x\n",
458 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -0800459 i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800460 (unsigned long long)le64_to_cpu(fe->i_size),
461 le32_to_cpu(fe->i_flags));
Mark Fashehccd979b2005-12-15 14:31:24 -0800462
463 if (new_i_size > le64_to_cpu(fe->i_size)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800464 mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
465 (unsigned long long)le64_to_cpu(fe->i_size),
466 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800467 status = -EINVAL;
468 mlog_errno(status);
469 goto bail;
470 }
471
Mark Fashehb06970532006-03-03 10:24:33 -0800472 mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
473 (unsigned long long)le64_to_cpu(fe->i_blkno),
474 (unsigned long long)le64_to_cpu(fe->i_size),
475 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800476
477 /* lets handle the simple truncate cases before doing any more
478 * cluster locking. */
479 if (new_i_size == le64_to_cpu(fe->i_size))
480 goto bail;
481
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700482 down_write(&OCFS2_I(inode)->ip_alloc_sem);
483
Mark Fasheh4fe370a2009-12-07 13:15:40 -0800484 ocfs2_resv_discard(&osb->osb_la_resmap,
485 &OCFS2_I(inode)->ip_la_data_resv);
486
Mark Fashehc934a922007-10-18 15:23:46 -0700487 /*
488 * The inode lock forced other nodes to sync and drop their
489 * pages, which (correctly) happens even if we have a truncate
490 * without allocation change - ocfs2 cluster sizes can be much
491 * greater than page size, so we have to truncate them
492 * anyway.
493 */
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700494 unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1);
495 truncate_inode_pages(inode->i_mapping, new_i_size);
496
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700497 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
498 status = ocfs2_truncate_inline(inode, di_bh, new_i_size,
Mark Fashehb1967d02007-11-20 11:56:39 -0800499 i_size_read(inode), 1);
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700500 if (status)
501 mlog_errno(status);
502
Mark Fashehc934a922007-10-18 15:23:46 -0700503 goto bail_unlock_sem;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700504 }
505
Mark Fashehccd979b2005-12-15 14:31:24 -0800506 /* alright, we're going to need to do a full blown alloc size
507 * change. Orphan the inode so that recovery can complete the
508 * truncate if necessary. This does the task of marking
509 * i_size. */
510 status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size);
511 if (status < 0) {
512 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700513 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800514 }
515
Tristan Ye78f94672010-05-11 17:54:42 +0800516 status = ocfs2_commit_truncate(osb, inode, di_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800517 if (status < 0) {
518 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700519 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800520 }
521
522 /* TODO: orphan dir cleanup here. */
Mark Fashehc934a922007-10-18 15:23:46 -0700523bail_unlock_sem:
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700524 up_write(&OCFS2_I(inode)->ip_alloc_sem);
525
Mark Fashehccd979b2005-12-15 14:31:24 -0800526bail:
Tao Ma8b2c0db2009-08-18 11:43:49 +0800527 if (!status && OCFS2_I(inode)->ip_clusters == 0)
528 status = ocfs2_try_remove_refcount_tree(inode, di_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800529
530 mlog_exit(status);
531 return status;
532}
533
534/*
Tao Ma0eb8d472008-08-18 17:38:45 +0800535 * extend file allocation only here.
Mark Fashehccd979b2005-12-15 14:31:24 -0800536 * we'll update all the disk stuff, and oip->alloc_size
537 *
538 * expect stuff to be locked, a transaction started and enough data /
539 * metadata reservations in the contexts.
540 *
541 * Will return -EAGAIN, and a reason if a restart is needed.
542 * If passed in, *reason will always be set, even in error.
543 */
Tao Ma0eb8d472008-08-18 17:38:45 +0800544int ocfs2_add_inode_data(struct ocfs2_super *osb,
545 struct inode *inode,
546 u32 *logical_offset,
547 u32 clusters_to_add,
548 int mark_unwritten,
549 struct buffer_head *fe_bh,
550 handle_t *handle,
551 struct ocfs2_alloc_context *data_ac,
552 struct ocfs2_alloc_context *meta_ac,
553 enum ocfs2_alloc_restarted *reason_ret)
Mark Fashehccd979b2005-12-15 14:31:24 -0800554{
Joel Beckerf99b9b72008-08-20 19:36:33 -0700555 int ret;
556 struct ocfs2_extent_tree et;
Mark Fashehccd979b2005-12-15 14:31:24 -0800557
Joel Becker5e404e92009-02-13 03:54:22 -0800558 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), fe_bh);
Joel Beckercbee7e12009-02-13 03:34:15 -0800559 ret = ocfs2_add_clusters_in_btree(handle, &et, logical_offset,
560 clusters_to_add, mark_unwritten,
561 data_ac, meta_ac, reason_ret);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700562
563 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800564}
565
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800566static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
567 u32 clusters_to_add, int mark_unwritten)
Mark Fashehccd979b2005-12-15 14:31:24 -0800568{
569 int status = 0;
570 int restart_func = 0;
Mark Fashehabf8b152007-01-17 13:07:24 -0800571 int credits;
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800572 u32 prev_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -0800573 struct buffer_head *bh = NULL;
574 struct ocfs2_dinode *fe = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700575 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800576 struct ocfs2_alloc_context *data_ac = NULL;
577 struct ocfs2_alloc_context *meta_ac = NULL;
578 enum ocfs2_alloc_restarted why;
579 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700580 struct ocfs2_extent_tree et;
Jan Karaa90714c2008-10-09 19:38:40 +0200581 int did_quota = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800582
583 mlog_entry("(clusters_to_add = %u)\n", clusters_to_add);
584
Mark Fashehdcd05382007-01-16 11:32:23 -0800585 /*
586 * This function only exists for file systems which don't
587 * support holes.
588 */
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800589 BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb));
Mark Fashehdcd05382007-01-16 11:32:23 -0800590
Joel Beckerb657c952008-11-13 14:49:11 -0800591 status = ocfs2_read_inode_block(inode, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800592 if (status < 0) {
593 mlog_errno(status);
594 goto leave;
595 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800596 fe = (struct ocfs2_dinode *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800597
598restart_all:
599 BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
600
Tao Mae7d4cb62008-08-18 17:38:44 +0800601 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
602 "clusters_to_add = %u\n",
603 (unsigned long long)OCFS2_I(inode)->ip_blkno,
604 (long long)i_size_read(inode), le32_to_cpu(fe->i_clusters),
605 clusters_to_add);
Joel Becker5e404e92009-02-13 03:54:22 -0800606 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700607 status = ocfs2_lock_allocators(inode, &et, clusters_to_add, 0,
608 &data_ac, &meta_ac);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800609 if (status) {
610 mlog_errno(status);
611 goto leave;
612 }
613
Tao Ma811f9332008-08-18 17:38:43 +0800614 credits = ocfs2_calc_extend_credits(osb->sb, &fe->id2.i_list,
615 clusters_to_add);
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700616 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800617 if (IS_ERR(handle)) {
618 status = PTR_ERR(handle);
619 handle = NULL;
620 mlog_errno(status);
621 goto leave;
622 }
623
624restarted_transaction:
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500625 status = dquot_alloc_space_nodirty(inode,
626 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
627 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +0200628 goto leave;
Jan Karaa90714c2008-10-09 19:38:40 +0200629 did_quota = 1;
630
Mark Fashehccd979b2005-12-15 14:31:24 -0800631 /* reserve a write to the file entry early on - that we if we
632 * run out of credits in the allocation path, we can still
633 * update i_size. */
Joel Becker0cf2f762009-02-12 16:41:25 -0800634 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -0700635 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800636 if (status < 0) {
637 mlog_errno(status);
638 goto leave;
639 }
640
641 prev_clusters = OCFS2_I(inode)->ip_clusters;
642
Tao Ma0eb8d472008-08-18 17:38:45 +0800643 status = ocfs2_add_inode_data(osb,
644 inode,
645 &logical_start,
646 clusters_to_add,
647 mark_unwritten,
648 bh,
649 handle,
650 data_ac,
651 meta_ac,
652 &why);
Mark Fashehccd979b2005-12-15 14:31:24 -0800653 if ((status < 0) && (status != -EAGAIN)) {
654 if (status != -ENOSPC)
655 mlog_errno(status);
656 goto leave;
657 }
658
Joel Beckerec20cec2010-03-19 14:13:52 -0700659 ocfs2_journal_dirty(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800660
661 spin_lock(&OCFS2_I(inode)->ip_lock);
662 clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
663 spin_unlock(&OCFS2_I(inode)->ip_lock);
Jan Karaa90714c2008-10-09 19:38:40 +0200664 /* Release unused quota reservation */
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500665 dquot_free_space(inode,
Jan Karaa90714c2008-10-09 19:38:40 +0200666 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
667 did_quota = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800668
669 if (why != RESTART_NONE && clusters_to_add) {
670 if (why == RESTART_META) {
671 mlog(0, "restarting function.\n");
672 restart_func = 1;
Tao Ma79681842010-04-16 13:59:25 +0800673 status = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800674 } else {
675 BUG_ON(why != RESTART_TRANS);
676
677 mlog(0, "restarting transaction.\n");
678 /* TODO: This can be more intelligent. */
679 credits = ocfs2_calc_extend_credits(osb->sb,
Tao Ma811f9332008-08-18 17:38:43 +0800680 &fe->id2.i_list,
Mark Fashehccd979b2005-12-15 14:31:24 -0800681 clusters_to_add);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700682 status = ocfs2_extend_trans(handle, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800683 if (status < 0) {
684 /* handle still has to be committed at
685 * this point. */
686 status = -ENOMEM;
687 mlog_errno(status);
688 goto leave;
689 }
690 goto restarted_transaction;
691 }
692 }
693
Mark Fashehb06970532006-03-03 10:24:33 -0800694 mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700695 le32_to_cpu(fe->i_clusters),
696 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -0800697 mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
Jan Kara634bf742007-12-19 15:25:42 +0100698 OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800699
700leave:
Jan Karaa90714c2008-10-09 19:38:40 +0200701 if (status < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500702 dquot_free_space(inode,
Jan Karaa90714c2008-10-09 19:38:40 +0200703 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
Mark Fashehccd979b2005-12-15 14:31:24 -0800704 if (handle) {
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700705 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800706 handle = NULL;
707 }
708 if (data_ac) {
709 ocfs2_free_alloc_context(data_ac);
710 data_ac = NULL;
711 }
712 if (meta_ac) {
713 ocfs2_free_alloc_context(meta_ac);
714 meta_ac = NULL;
715 }
716 if ((!status) && restart_func) {
717 restart_func = 0;
718 goto restart_all;
719 }
Mark Fasheha81cb882008-10-07 14:25:16 -0700720 brelse(bh);
721 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800722
723 mlog_exit(status);
724 return status;
725}
726
727/* Some parts of this taken from generic_cont_expand, which turned out
728 * to be too fragile to do exactly what we need without us having to
Nick Piggin4e02ed42008-10-29 14:00:55 -0700729 * worry about recursive locking in ->write_begin() and ->write_end(). */
Mark Fashehccd979b2005-12-15 14:31:24 -0800730static int ocfs2_write_zero_page(struct inode *inode,
731 u64 size)
732{
733 struct address_space *mapping = inode->i_mapping;
734 struct page *page;
735 unsigned long index;
736 unsigned int offset;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700737 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800738 int ret;
739
740 offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
Sunil Mushran2bd63212010-01-25 16:57:38 -0800741 /* ugh. in prepare/commit_write, if from==to==start of block, we
Mark Fashehccd979b2005-12-15 14:31:24 -0800742 ** skip the prepare. make sure we never send an offset for the start
743 ** of a block
744 */
745 if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
746 offset++;
747 }
748 index = size >> PAGE_CACHE_SHIFT;
749
750 page = grab_cache_page(mapping, index);
751 if (!page) {
752 ret = -ENOMEM;
753 mlog_errno(ret);
754 goto out;
755 }
756
Mark Fasheh53013cb2006-05-05 19:04:03 -0700757 ret = ocfs2_prepare_write_nolock(inode, page, offset, offset);
Mark Fashehccd979b2005-12-15 14:31:24 -0800758 if (ret < 0) {
759 mlog_errno(ret);
760 goto out_unlock;
761 }
762
763 if (ocfs2_should_order_data(inode)) {
764 handle = ocfs2_start_walk_page_trans(inode, page, offset,
765 offset);
766 if (IS_ERR(handle)) {
767 ret = PTR_ERR(handle);
768 handle = NULL;
769 goto out_unlock;
770 }
771 }
772
773 /* must not update i_size! */
774 ret = block_commit_write(page, offset, offset);
775 if (ret < 0)
776 mlog_errno(ret);
777 else
778 ret = 0;
779
780 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700781 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800782out_unlock:
783 unlock_page(page);
784 page_cache_release(page);
785out:
786 return ret;
787}
788
789static int ocfs2_zero_extend(struct inode *inode,
790 u64 zero_to_size)
791{
792 int ret = 0;
793 u64 start_off;
794 struct super_block *sb = inode->i_sb;
795
796 start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode));
797 while (start_off < zero_to_size) {
798 ret = ocfs2_write_zero_page(inode, start_off);
799 if (ret < 0) {
800 mlog_errno(ret);
801 goto out;
802 }
803
804 start_off += sb->s_blocksize;
Mark Fashehe2057c52006-10-03 17:53:05 -0700805
806 /*
807 * Very large extends have the potential to lock up
808 * the cpu for extended periods of time.
809 */
810 cond_resched();
Mark Fashehccd979b2005-12-15 14:31:24 -0800811 }
812
813out:
814 return ret;
815}
816
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700817int ocfs2_extend_no_holes(struct inode *inode, u64 new_i_size, u64 zero_to)
818{
819 int ret;
820 u32 clusters_to_add;
821 struct ocfs2_inode_info *oi = OCFS2_I(inode);
822
823 clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size);
824 if (clusters_to_add < oi->ip_clusters)
825 clusters_to_add = 0;
826 else
827 clusters_to_add -= oi->ip_clusters;
828
829 if (clusters_to_add) {
830 ret = __ocfs2_extend_allocation(inode, oi->ip_clusters,
831 clusters_to_add, 0);
832 if (ret) {
833 mlog_errno(ret);
834 goto out;
835 }
836 }
837
838 /*
839 * Call this even if we don't add any clusters to the tree. We
840 * still need to zero the area between the old i_size and the
841 * new i_size.
842 */
843 ret = ocfs2_zero_extend(inode, zero_to);
844 if (ret < 0)
845 mlog_errno(ret);
846
847out:
848 return ret;
849}
850
Mark Fashehccd979b2005-12-15 14:31:24 -0800851static int ocfs2_extend_file(struct inode *inode,
852 struct buffer_head *di_bh,
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700853 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800854{
Mark Fashehc934a922007-10-18 15:23:46 -0700855 int ret = 0;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700856 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800857
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700858 BUG_ON(!di_bh);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700859
Mark Fashehccd979b2005-12-15 14:31:24 -0800860 /* setattr sometimes calls us like this. */
861 if (new_i_size == 0)
862 goto out;
863
864 if (i_size_read(inode) == new_i_size)
865 goto out;
866 BUG_ON(new_i_size < i_size_read(inode));
867
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700868 /*
869 * Fall through for converting inline data, even if the fs
870 * supports sparse files.
871 *
872 * The check for inline data here is legal - nobody can add
873 * the feature since we have i_mutex. We must check it again
874 * after acquiring ip_alloc_sem though, as paths like mmap
875 * might have raced us to converting the inode to extents.
876 */
877 if (!(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
878 && ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800879 goto out_update_size;
Mark Fashehccd979b2005-12-15 14:31:24 -0800880
Mark Fasheh0effef72006-10-03 17:44:42 -0700881 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700882 * The alloc sem blocks people in read/write from reading our
883 * allocation until we're done changing it. We depend on
884 * i_mutex to block other extend/truncate calls while we're
885 * here.
Mark Fasheh0effef72006-10-03 17:44:42 -0700886 */
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700887 down_write(&oi->ip_alloc_sem);
888
889 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
890 /*
891 * We can optimize small extends by keeping the inodes
892 * inline data.
893 */
894 if (ocfs2_size_fits_inline_data(di_bh, new_i_size)) {
895 up_write(&oi->ip_alloc_sem);
896 goto out_update_size;
897 }
898
899 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
900 if (ret) {
901 up_write(&oi->ip_alloc_sem);
902
903 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700904 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700905 }
906 }
907
908 if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
909 ret = ocfs2_extend_no_holes(inode, new_i_size, new_i_size);
910
911 up_write(&oi->ip_alloc_sem);
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700912
Mark Fasheh0effef72006-10-03 17:44:42 -0700913 if (ret < 0) {
914 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700915 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800916 }
917
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800918out_update_size:
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700919 ret = ocfs2_simple_size_update(inode, di_bh, new_i_size);
920 if (ret < 0)
921 mlog_errno(ret);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700922
Mark Fashehccd979b2005-12-15 14:31:24 -0800923out:
924 return ret;
925}
926
927int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
928{
929 int status = 0, size_change;
930 struct inode *inode = dentry->d_inode;
931 struct super_block *sb = inode->i_sb;
932 struct ocfs2_super *osb = OCFS2_SB(sb);
933 struct buffer_head *bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700934 handle_t *handle = NULL;
Jan Kara65bac572009-06-02 14:24:01 +0200935 struct dquot *transfer_to[MAXQUOTAS] = { };
Jan Kara52a9ee22010-05-13 20:18:45 +0200936 int qtype;
Mark Fashehccd979b2005-12-15 14:31:24 -0800937
938 mlog_entry("(0x%p, '%.*s')\n", dentry,
939 dentry->d_name.len, dentry->d_name.name);
940
Sunil Mushranbc535802008-04-18 10:23:53 -0700941 /* ensuring we don't even attempt to truncate a symlink */
942 if (S_ISLNK(inode->i_mode))
943 attr->ia_valid &= ~ATTR_SIZE;
944
Mark Fashehccd979b2005-12-15 14:31:24 -0800945 if (attr->ia_valid & ATTR_MODE)
946 mlog(0, "mode change: %d\n", attr->ia_mode);
947 if (attr->ia_valid & ATTR_UID)
948 mlog(0, "uid change: %d\n", attr->ia_uid);
949 if (attr->ia_valid & ATTR_GID)
950 mlog(0, "gid change: %d\n", attr->ia_gid);
951 if (attr->ia_valid & ATTR_SIZE)
952 mlog(0, "size change...\n");
953 if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
954 mlog(0, "time change...\n");
955
956#define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
957 | ATTR_GID | ATTR_UID | ATTR_MODE)
958 if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
959 mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
960 return 0;
961 }
962
963 status = inode_change_ok(inode, attr);
964 if (status)
965 return status;
966
Dmitry Monakhov12755622010-04-08 22:04:20 +0400967 if (is_quota_modification(inode, attr))
968 dquot_initialize(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800969 size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
970 if (size_change) {
971 status = ocfs2_rw_lock(inode, 1);
972 if (status < 0) {
973 mlog_errno(status);
974 goto bail;
975 }
976 }
977
Mark Fashehe63aecb62007-10-18 15:30:42 -0700978 status = ocfs2_inode_lock(inode, &bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800979 if (status < 0) {
980 if (status != -ENOENT)
981 mlog_errno(status);
982 goto bail_unlock_rw;
983 }
984
985 if (size_change && attr->ia_size != i_size_read(inode)) {
Wengang Wang5051f762010-02-26 18:18:25 +0800986 status = inode_newsize_ok(inode, attr->ia_size);
987 if (status)
Mark Fashehce76fd32007-07-20 12:02:14 -0700988 goto bail_unlock;
Mark Fashehce76fd32007-07-20 12:02:14 -0700989
Joel Becker2b4e30f2008-09-03 20:03:41 -0700990 if (i_size_read(inode) > attr->ia_size) {
991 if (ocfs2_should_order_data(inode)) {
992 status = ocfs2_begin_ordered_truncate(inode,
993 attr->ia_size);
994 if (status)
995 goto bail_unlock;
996 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800997 status = ocfs2_truncate_file(inode, bh, attr->ia_size);
Joel Becker2b4e30f2008-09-03 20:03:41 -0700998 } else
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700999 status = ocfs2_extend_file(inode, bh, attr->ia_size);
Mark Fashehccd979b2005-12-15 14:31:24 -08001000 if (status < 0) {
1001 if (status != -ENOSPC)
1002 mlog_errno(status);
1003 status = -ENOSPC;
1004 goto bail_unlock;
1005 }
1006 }
1007
Jan Karaa90714c2008-10-09 19:38:40 +02001008 if ((attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
1009 (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
Jan Kara65bac572009-06-02 14:24:01 +02001010 /*
1011 * Gather pointers to quota structures so that allocation /
1012 * freeing of quota structures happens here and not inside
Christoph Hellwigb43fa822010-03-03 09:05:03 -05001013 * dquot_transfer() where we have problems with lock ordering
Jan Kara65bac572009-06-02 14:24:01 +02001014 */
Jan Karaa90714c2008-10-09 19:38:40 +02001015 if (attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid
1016 && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1017 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
Jan Kara65bac572009-06-02 14:24:01 +02001018 transfer_to[USRQUOTA] = dqget(sb, attr->ia_uid,
1019 USRQUOTA);
Jan Kara52a9ee22010-05-13 20:18:45 +02001020 if (!transfer_to[USRQUOTA]) {
Jan Kara65bac572009-06-02 14:24:01 +02001021 status = -ESRCH;
Jan Karaa90714c2008-10-09 19:38:40 +02001022 goto bail_unlock;
Jan Kara65bac572009-06-02 14:24:01 +02001023 }
Jan Karaa90714c2008-10-09 19:38:40 +02001024 }
1025 if (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid
1026 && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1027 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
Jan Kara65bac572009-06-02 14:24:01 +02001028 transfer_to[GRPQUOTA] = dqget(sb, attr->ia_gid,
1029 GRPQUOTA);
Jan Kara52a9ee22010-05-13 20:18:45 +02001030 if (!transfer_to[GRPQUOTA]) {
Jan Kara65bac572009-06-02 14:24:01 +02001031 status = -ESRCH;
Jan Karaa90714c2008-10-09 19:38:40 +02001032 goto bail_unlock;
Jan Kara65bac572009-06-02 14:24:01 +02001033 }
Jan Karaa90714c2008-10-09 19:38:40 +02001034 }
Jan Kara65bac572009-06-02 14:24:01 +02001035 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS +
1036 2 * ocfs2_quota_trans_credits(sb));
Jan Karaa90714c2008-10-09 19:38:40 +02001037 if (IS_ERR(handle)) {
1038 status = PTR_ERR(handle);
1039 mlog_errno(status);
1040 goto bail_unlock;
1041 }
Jan Kara52a9ee22010-05-13 20:18:45 +02001042 status = __dquot_transfer(inode, transfer_to);
Jan Karaa90714c2008-10-09 19:38:40 +02001043 if (status < 0)
1044 goto bail_commit;
1045 } else {
1046 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1047 if (IS_ERR(handle)) {
1048 status = PTR_ERR(handle);
1049 mlog_errno(status);
1050 goto bail_unlock;
1051 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001052 }
1053
Mark Fasheh7307de82007-05-09 15:16:19 -07001054 /*
1055 * This will intentionally not wind up calling vmtruncate(),
1056 * since all the work for a size change has been done above.
1057 * Otherwise, we could get into problems with truncate as
1058 * ip_alloc_sem is used there to protect against i_size
1059 * changes.
1060 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001061 status = inode_setattr(inode, attr);
1062 if (status < 0) {
1063 mlog_errno(status);
1064 goto bail_commit;
1065 }
1066
1067 status = ocfs2_mark_inode_dirty(handle, inode, bh);
1068 if (status < 0)
1069 mlog_errno(status);
1070
1071bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001072 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001073bail_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07001074 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001075bail_unlock_rw:
1076 if (size_change)
1077 ocfs2_rw_unlock(inode, 1);
1078bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001079 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001080
Jan Kara65bac572009-06-02 14:24:01 +02001081 /* Release quota pointers in case we acquired them */
Jan Kara52a9ee22010-05-13 20:18:45 +02001082 for (qtype = 0; qtype < MAXQUOTAS; qtype++)
Jan Kara65bac572009-06-02 14:24:01 +02001083 dqput(transfer_to[qtype]);
Jan Kara65bac572009-06-02 14:24:01 +02001084
Tiger Yang060bc662008-11-14 11:17:29 +08001085 if (!status && attr->ia_valid & ATTR_MODE) {
1086 status = ocfs2_acl_chmod(inode);
1087 if (status < 0)
1088 mlog_errno(status);
1089 }
1090
Mark Fashehccd979b2005-12-15 14:31:24 -08001091 mlog_exit(status);
1092 return status;
1093}
1094
1095int ocfs2_getattr(struct vfsmount *mnt,
1096 struct dentry *dentry,
1097 struct kstat *stat)
1098{
1099 struct inode *inode = dentry->d_inode;
1100 struct super_block *sb = dentry->d_inode->i_sb;
1101 struct ocfs2_super *osb = sb->s_fs_info;
1102 int err;
1103
1104 mlog_entry_void();
1105
1106 err = ocfs2_inode_revalidate(dentry);
1107 if (err) {
1108 if (err != -ENOENT)
1109 mlog_errno(err);
1110 goto bail;
1111 }
1112
1113 generic_fillattr(inode, stat);
1114
1115 /* We set the blksize from the cluster size for performance */
1116 stat->blksize = osb->s_clustersize;
1117
1118bail:
1119 mlog_exit(err);
1120
1121 return err;
1122}
1123
Al Viroe6305c42008-07-15 21:03:57 -04001124int ocfs2_permission(struct inode *inode, int mask)
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001125{
1126 int ret;
1127
1128 mlog_entry_void();
1129
Mark Fashehe63aecb62007-10-18 15:30:42 -07001130 ret = ocfs2_inode_lock(inode, NULL, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001131 if (ret) {
Mark Fasheha9f5f702007-04-26 11:43:43 -07001132 if (ret != -ENOENT)
1133 mlog_errno(ret);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001134 goto out;
1135 }
1136
Tiger Yang23fc2702008-11-14 11:17:18 +08001137 ret = generic_permission(inode, mask, ocfs2_check_acl);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001138
Mark Fashehe63aecb62007-10-18 15:30:42 -07001139 ocfs2_inode_unlock(inode, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001140out:
1141 mlog_exit(ret);
1142 return ret;
1143}
1144
Mark Fashehb2580102007-03-09 16:53:21 -08001145static int __ocfs2_write_remove_suid(struct inode *inode,
1146 struct buffer_head *bh)
Mark Fashehccd979b2005-12-15 14:31:24 -08001147{
1148 int ret;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001149 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08001150 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1151 struct ocfs2_dinode *di;
1152
Mark Fashehb06970532006-03-03 10:24:33 -08001153 mlog_entry("(Inode %llu, mode 0%o)\n",
Mark Fashehb2580102007-03-09 16:53:21 -08001154 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001155
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001156 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001157 if (IS_ERR(handle)) {
1158 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001159 mlog_errno(ret);
1160 goto out;
1161 }
1162
Joel Becker0cf2f762009-02-12 16:41:25 -08001163 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -07001164 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001165 if (ret < 0) {
1166 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001167 goto out_trans;
Mark Fashehccd979b2005-12-15 14:31:24 -08001168 }
1169
1170 inode->i_mode &= ~S_ISUID;
1171 if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
1172 inode->i_mode &= ~S_ISGID;
1173
1174 di = (struct ocfs2_dinode *) bh->b_data;
1175 di->i_mode = cpu_to_le16(inode->i_mode);
1176
Joel Beckerec20cec2010-03-19 14:13:52 -07001177 ocfs2_journal_dirty(handle, bh);
Mark Fashehb2580102007-03-09 16:53:21 -08001178
Mark Fashehccd979b2005-12-15 14:31:24 -08001179out_trans:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001180 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001181out:
1182 mlog_exit(ret);
1183 return ret;
1184}
1185
Mark Fasheh9517bac2007-02-09 20:24:12 -08001186/*
1187 * Will look for holes and unwritten extents in the range starting at
1188 * pos for count bytes (inclusive).
1189 */
1190static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
1191 size_t count)
1192{
1193 int ret = 0;
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001194 unsigned int extent_flags;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001195 u32 cpos, clusters, extent_len, phys_cpos;
1196 struct super_block *sb = inode->i_sb;
1197
1198 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1199 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1200
1201 while (clusters) {
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001202 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1203 &extent_flags);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001204 if (ret < 0) {
1205 mlog_errno(ret);
1206 goto out;
1207 }
1208
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001209 if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001210 ret = 1;
1211 break;
1212 }
1213
1214 if (extent_len > clusters)
1215 extent_len = clusters;
1216
1217 clusters -= extent_len;
1218 cpos += extent_len;
1219 }
1220out:
1221 return ret;
1222}
1223
Mark Fashehb2580102007-03-09 16:53:21 -08001224static int ocfs2_write_remove_suid(struct inode *inode)
1225{
1226 int ret;
1227 struct buffer_head *bh = NULL;
Mark Fashehb2580102007-03-09 16:53:21 -08001228
Joel Beckerb657c952008-11-13 14:49:11 -08001229 ret = ocfs2_read_inode_block(inode, &bh);
Mark Fashehb2580102007-03-09 16:53:21 -08001230 if (ret < 0) {
1231 mlog_errno(ret);
1232 goto out;
1233 }
1234
1235 ret = __ocfs2_write_remove_suid(inode, bh);
1236out:
1237 brelse(bh);
1238 return ret;
1239}
1240
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001241/*
1242 * Allocate enough extents to cover the region starting at byte offset
1243 * start for len bytes. Existing extents are skipped, any extents
1244 * added are marked as "unwritten".
1245 */
1246static int ocfs2_allocate_unwritten_extents(struct inode *inode,
1247 u64 start, u64 len)
1248{
1249 int ret;
1250 u32 cpos, phys_cpos, clusters, alloc_size;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001251 u64 end = start + len;
1252 struct buffer_head *di_bh = NULL;
1253
1254 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
Joel Beckerb657c952008-11-13 14:49:11 -08001255 ret = ocfs2_read_inode_block(inode, &di_bh);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001256 if (ret) {
1257 mlog_errno(ret);
1258 goto out;
1259 }
1260
1261 /*
1262 * Nothing to do if the requested reservation range
1263 * fits within the inode.
1264 */
1265 if (ocfs2_size_fits_inline_data(di_bh, end))
1266 goto out;
1267
1268 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
1269 if (ret) {
1270 mlog_errno(ret);
1271 goto out;
1272 }
1273 }
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001274
1275 /*
1276 * We consider both start and len to be inclusive.
1277 */
1278 cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1279 clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len);
1280 clusters -= cpos;
1281
1282 while (clusters) {
1283 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1284 &alloc_size, NULL);
1285 if (ret) {
1286 mlog_errno(ret);
1287 goto out;
1288 }
1289
1290 /*
1291 * Hole or existing extent len can be arbitrary, so
1292 * cap it to our own allocation request.
1293 */
1294 if (alloc_size > clusters)
1295 alloc_size = clusters;
1296
1297 if (phys_cpos) {
1298 /*
1299 * We already have an allocation at this
1300 * region so we can safely skip it.
1301 */
1302 goto next;
1303 }
1304
1305 ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
1306 if (ret) {
1307 if (ret != -ENOSPC)
1308 mlog_errno(ret);
1309 goto out;
1310 }
1311
1312next:
1313 cpos += alloc_size;
1314 clusters -= alloc_size;
1315 }
1316
1317 ret = 0;
1318out:
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001319
1320 brelse(di_bh);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001321 return ret;
1322}
1323
Mark Fasheh063c4562007-07-03 13:34:11 -07001324/*
1325 * Truncate a byte range, avoiding pages within partial clusters. This
1326 * preserves those pages for the zeroing code to write to.
1327 */
1328static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start,
1329 u64 byte_len)
1330{
1331 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1332 loff_t start, end;
1333 struct address_space *mapping = inode->i_mapping;
1334
1335 start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start);
1336 end = byte_start + byte_len;
1337 end = end & ~(osb->s_clustersize - 1);
1338
1339 if (start < end) {
1340 unmap_mapping_range(mapping, start, end - start, 0);
1341 truncate_inode_pages_range(mapping, start, end - 1);
1342 }
1343}
1344
1345static int ocfs2_zero_partial_clusters(struct inode *inode,
1346 u64 start, u64 len)
1347{
1348 int ret = 0;
1349 u64 tmpend, end = start + len;
1350 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1351 unsigned int csize = osb->s_clustersize;
1352 handle_t *handle;
1353
1354 /*
1355 * The "start" and "end" values are NOT necessarily part of
1356 * the range whose allocation is being deleted. Rather, this
1357 * is what the user passed in with the request. We must zero
1358 * partial clusters here. There's no need to worry about
1359 * physical allocation - the zeroing code knows to skip holes.
1360 */
1361 mlog(0, "byte start: %llu, end: %llu\n",
1362 (unsigned long long)start, (unsigned long long)end);
1363
1364 /*
1365 * If both edges are on a cluster boundary then there's no
1366 * zeroing required as the region is part of the allocation to
1367 * be truncated.
1368 */
1369 if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0)
1370 goto out;
1371
1372 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001373 if (IS_ERR(handle)) {
1374 ret = PTR_ERR(handle);
Mark Fasheh063c4562007-07-03 13:34:11 -07001375 mlog_errno(ret);
1376 goto out;
1377 }
1378
1379 /*
1380 * We want to get the byte offset of the end of the 1st cluster.
1381 */
1382 tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1));
1383 if (tmpend > end)
1384 tmpend = end;
1385
1386 mlog(0, "1st range: start: %llu, tmpend: %llu\n",
1387 (unsigned long long)start, (unsigned long long)tmpend);
1388
1389 ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend);
1390 if (ret)
1391 mlog_errno(ret);
1392
1393 if (tmpend < end) {
1394 /*
1395 * This may make start and end equal, but the zeroing
1396 * code will skip any work in that case so there's no
1397 * need to catch it up here.
1398 */
1399 start = end & ~(osb->s_clustersize - 1);
1400
1401 mlog(0, "2nd range: start: %llu, end: %llu\n",
1402 (unsigned long long)start, (unsigned long long)end);
1403
1404 ret = ocfs2_zero_range_for_truncate(inode, handle, start, end);
1405 if (ret)
1406 mlog_errno(ret);
1407 }
1408
1409 ocfs2_commit_trans(osb, handle);
1410out:
1411 return ret;
1412}
1413
Tristan Yec1631d42010-05-11 17:54:45 +08001414static int ocfs2_find_rec(struct ocfs2_extent_list *el, u32 pos)
1415{
1416 int i;
1417 struct ocfs2_extent_rec *rec = NULL;
1418
1419 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
1420
1421 rec = &el->l_recs[i];
1422
1423 if (le32_to_cpu(rec->e_cpos) < pos)
1424 break;
1425 }
1426
1427 return i;
1428}
1429
1430/*
1431 * Helper to calculate the punching pos and length in one run, we handle the
1432 * following three cases in order:
1433 *
1434 * - remove the entire record
1435 * - remove a partial record
1436 * - no record needs to be removed (hole-punching completed)
1437*/
1438static void ocfs2_calc_trunc_pos(struct inode *inode,
1439 struct ocfs2_extent_list *el,
1440 struct ocfs2_extent_rec *rec,
1441 u32 trunc_start, u32 *trunc_cpos,
1442 u32 *trunc_len, u32 *trunc_end,
1443 u64 *blkno, int *done)
1444{
1445 int ret = 0;
1446 u32 coff, range;
1447
1448 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
1449
1450 if (le32_to_cpu(rec->e_cpos) >= trunc_start) {
1451 *trunc_cpos = le32_to_cpu(rec->e_cpos);
1452 /*
1453 * Skip holes if any.
1454 */
1455 if (range < *trunc_end)
1456 *trunc_end = range;
1457 *trunc_len = *trunc_end - le32_to_cpu(rec->e_cpos);
1458 *blkno = le64_to_cpu(rec->e_blkno);
1459 *trunc_end = le32_to_cpu(rec->e_cpos);
1460 } else if (range > trunc_start) {
1461 *trunc_cpos = trunc_start;
1462 *trunc_len = *trunc_end - trunc_start;
1463 coff = trunc_start - le32_to_cpu(rec->e_cpos);
1464 *blkno = le64_to_cpu(rec->e_blkno) +
1465 ocfs2_clusters_to_blocks(inode->i_sb, coff);
1466 *trunc_end = trunc_start;
1467 } else {
1468 /*
1469 * It may have two following possibilities:
1470 *
1471 * - last record has been removed
1472 * - trunc_start was within a hole
1473 *
1474 * both two cases mean the completion of hole punching.
1475 */
1476 ret = 1;
1477 }
1478
1479 *done = ret;
1480}
1481
Mark Fasheh063c4562007-07-03 13:34:11 -07001482static int ocfs2_remove_inode_range(struct inode *inode,
1483 struct buffer_head *di_bh, u64 byte_start,
1484 u64 byte_len)
1485{
Tristan Yec1631d42010-05-11 17:54:45 +08001486 int ret = 0, flags = 0, done = 0, i;
1487 u32 trunc_start, trunc_len, trunc_end, trunc_cpos, phys_cpos;
1488 u32 cluster_in_el;
Mark Fasheh063c4562007-07-03 13:34:11 -07001489 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1490 struct ocfs2_cached_dealloc_ctxt dealloc;
Mark Fashehb1967d02007-11-20 11:56:39 -08001491 struct address_space *mapping = inode->i_mapping;
Mark Fashehfecc0112008-11-12 15:16:38 -08001492 struct ocfs2_extent_tree et;
Tristan Yec1631d42010-05-11 17:54:45 +08001493 struct ocfs2_path *path = NULL;
1494 struct ocfs2_extent_list *el = NULL;
1495 struct ocfs2_extent_rec *rec = NULL;
Tristan Yee8aec062010-05-11 17:54:43 +08001496 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
Tristan Yec1631d42010-05-11 17:54:45 +08001497 u64 blkno, refcount_loc = le64_to_cpu(di->i_refcount_loc);
Mark Fasheh063c4562007-07-03 13:34:11 -07001498
Joel Becker5e404e92009-02-13 03:54:22 -08001499 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
Mark Fasheh063c4562007-07-03 13:34:11 -07001500 ocfs2_init_dealloc_ctxt(&dealloc);
1501
1502 if (byte_len == 0)
1503 return 0;
1504
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001505 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1506 ret = ocfs2_truncate_inline(inode, di_bh, byte_start,
Mark Fashehb1967d02007-11-20 11:56:39 -08001507 byte_start + byte_len, 0);
1508 if (ret) {
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001509 mlog_errno(ret);
Mark Fashehb1967d02007-11-20 11:56:39 -08001510 goto out;
1511 }
1512 /*
1513 * There's no need to get fancy with the page cache
1514 * truncate of an inline-data inode. We're talking
1515 * about less than a page here, which will be cached
1516 * in the dinode buffer anyway.
1517 */
1518 unmap_mapping_range(mapping, 0, 0, 0);
1519 truncate_inode_pages(mapping, 0);
1520 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001521 }
1522
Tristan Yee8aec062010-05-11 17:54:43 +08001523 /*
1524 * For reflinks, we may need to CoW 2 clusters which might be
1525 * partially zero'd later, if hole's start and end offset were
1526 * within one cluster(means is not exactly aligned to clustersize).
1527 */
Mark Fasheh063c4562007-07-03 13:34:11 -07001528
Tristan Yee8aec062010-05-11 17:54:43 +08001529 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) {
1530
1531 ret = ocfs2_cow_file_pos(inode, di_bh, byte_start);
1532 if (ret) {
1533 mlog_errno(ret);
1534 goto out;
1535 }
1536
1537 ret = ocfs2_cow_file_pos(inode, di_bh, byte_start + byte_len);
1538 if (ret) {
1539 mlog_errno(ret);
1540 goto out;
1541 }
1542 }
1543
Mark Fasheh063c4562007-07-03 13:34:11 -07001544 trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start);
Tristan Yec1631d42010-05-11 17:54:45 +08001545 trunc_end = (byte_start + byte_len) >> osb->s_clustersize_bits;
1546 cluster_in_el = trunc_end;
Mark Fasheh063c4562007-07-03 13:34:11 -07001547
Tristan Yec1631d42010-05-11 17:54:45 +08001548 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, cend: %u\n",
Mark Fasheh063c4562007-07-03 13:34:11 -07001549 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1550 (unsigned long long)byte_start,
Tristan Yec1631d42010-05-11 17:54:45 +08001551 (unsigned long long)byte_len, trunc_start, trunc_end);
Mark Fasheh063c4562007-07-03 13:34:11 -07001552
1553 ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len);
1554 if (ret) {
1555 mlog_errno(ret);
1556 goto out;
1557 }
1558
Tristan Yec1631d42010-05-11 17:54:45 +08001559 path = ocfs2_new_path_from_et(&et);
1560 if (!path) {
1561 ret = -ENOMEM;
1562 mlog_errno(ret);
1563 goto out;
1564 }
1565
1566 while (trunc_end > trunc_start) {
1567
1568 ret = ocfs2_find_path(INODE_CACHE(inode), path,
1569 cluster_in_el);
Mark Fasheh063c4562007-07-03 13:34:11 -07001570 if (ret) {
1571 mlog_errno(ret);
1572 goto out;
1573 }
1574
Tristan Yec1631d42010-05-11 17:54:45 +08001575 el = path_leaf_el(path);
Mark Fasheh063c4562007-07-03 13:34:11 -07001576
Tristan Yec1631d42010-05-11 17:54:45 +08001577 i = ocfs2_find_rec(el, trunc_end);
1578 /*
1579 * Need to go to previous extent block.
1580 */
1581 if (i < 0) {
1582 if (path->p_tree_depth == 0)
1583 break;
1584
1585 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb,
1586 path,
1587 &cluster_in_el);
Mark Fasheh063c4562007-07-03 13:34:11 -07001588 if (ret) {
1589 mlog_errno(ret);
1590 goto out;
1591 }
Tristan Yec1631d42010-05-11 17:54:45 +08001592
1593 /*
1594 * We've reached the leftmost extent block,
1595 * it's safe to leave.
1596 */
1597 if (cluster_in_el == 0)
1598 break;
1599
1600 /*
1601 * The 'pos' searched for previous extent block is
1602 * always one cluster less than actual trunc_end.
1603 */
1604 trunc_end = cluster_in_el + 1;
1605
1606 ocfs2_reinit_path(path, 1);
1607
1608 continue;
1609
1610 } else
1611 rec = &el->l_recs[i];
1612
1613 ocfs2_calc_trunc_pos(inode, el, rec, trunc_start, &trunc_cpos,
1614 &trunc_len, &trunc_end, &blkno, &done);
1615 if (done)
1616 break;
1617
1618 flags = rec->e_flags;
1619 phys_cpos = ocfs2_blocks_to_clusters(inode->i_sb, blkno);
1620
1621 ret = ocfs2_remove_btree_range(inode, &et, trunc_cpos,
1622 phys_cpos, trunc_len, flags,
1623 &dealloc, refcount_loc);
1624 if (ret < 0) {
1625 mlog_errno(ret);
1626 goto out;
Mark Fasheh063c4562007-07-03 13:34:11 -07001627 }
1628
Tristan Yec1631d42010-05-11 17:54:45 +08001629 cluster_in_el = trunc_end;
1630
1631 ocfs2_reinit_path(path, 1);
Mark Fasheh063c4562007-07-03 13:34:11 -07001632 }
1633
1634 ocfs2_truncate_cluster_pages(inode, byte_start, byte_len);
1635
1636out:
1637 ocfs2_schedule_truncate_log_flush(osb, 1);
1638 ocfs2_run_deallocs(osb, &dealloc);
1639
1640 return ret;
1641}
1642
Mark Fashehb2580102007-03-09 16:53:21 -08001643/*
1644 * Parts of this function taken from xfs_change_file_space()
1645 */
Mark Fasheh385820a2007-07-19 00:14:38 -07001646static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
1647 loff_t f_pos, unsigned int cmd,
1648 struct ocfs2_space_resv *sr,
1649 int change_size)
Mark Fashehb2580102007-03-09 16:53:21 -08001650{
1651 int ret;
1652 s64 llen;
Mark Fasheh385820a2007-07-19 00:14:38 -07001653 loff_t size;
Mark Fashehb2580102007-03-09 16:53:21 -08001654 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1655 struct buffer_head *di_bh = NULL;
1656 handle_t *handle;
Mark Fasheha00cce32007-07-20 11:28:30 -07001657 unsigned long long max_off = inode->i_sb->s_maxbytes;
Mark Fashehb2580102007-03-09 16:53:21 -08001658
Mark Fashehb2580102007-03-09 16:53:21 -08001659 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
1660 return -EROFS;
1661
1662 mutex_lock(&inode->i_mutex);
1663
1664 /*
1665 * This prevents concurrent writes on other nodes
1666 */
1667 ret = ocfs2_rw_lock(inode, 1);
1668 if (ret) {
1669 mlog_errno(ret);
1670 goto out;
1671 }
1672
Mark Fashehe63aecb62007-10-18 15:30:42 -07001673 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001674 if (ret) {
1675 mlog_errno(ret);
1676 goto out_rw_unlock;
1677 }
1678
1679 if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
1680 ret = -EPERM;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001681 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001682 }
1683
1684 switch (sr->l_whence) {
1685 case 0: /*SEEK_SET*/
1686 break;
1687 case 1: /*SEEK_CUR*/
Mark Fasheh385820a2007-07-19 00:14:38 -07001688 sr->l_start += f_pos;
Mark Fashehb2580102007-03-09 16:53:21 -08001689 break;
1690 case 2: /*SEEK_END*/
1691 sr->l_start += i_size_read(inode);
1692 break;
1693 default:
1694 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001695 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001696 }
1697 sr->l_whence = 0;
1698
1699 llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len;
1700
1701 if (sr->l_start < 0
1702 || sr->l_start > max_off
1703 || (sr->l_start + llen) < 0
1704 || (sr->l_start + llen) > max_off) {
1705 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001706 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001707 }
Mark Fasheh385820a2007-07-19 00:14:38 -07001708 size = sr->l_start + sr->l_len;
Mark Fashehb2580102007-03-09 16:53:21 -08001709
1710 if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) {
1711 if (sr->l_len <= 0) {
1712 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001713 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001714 }
1715 }
1716
Mark Fasheh385820a2007-07-19 00:14:38 -07001717 if (file && should_remove_suid(file->f_path.dentry)) {
Mark Fashehb2580102007-03-09 16:53:21 -08001718 ret = __ocfs2_write_remove_suid(inode, di_bh);
1719 if (ret) {
1720 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001721 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001722 }
1723 }
1724
1725 down_write(&OCFS2_I(inode)->ip_alloc_sem);
1726 switch (cmd) {
1727 case OCFS2_IOC_RESVSP:
1728 case OCFS2_IOC_RESVSP64:
1729 /*
1730 * This takes unsigned offsets, but the signed ones we
1731 * pass have been checked against overflow above.
1732 */
1733 ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start,
1734 sr->l_len);
1735 break;
1736 case OCFS2_IOC_UNRESVSP:
1737 case OCFS2_IOC_UNRESVSP64:
1738 ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start,
1739 sr->l_len);
1740 break;
1741 default:
1742 ret = -EINVAL;
1743 }
1744 up_write(&OCFS2_I(inode)->ip_alloc_sem);
1745 if (ret) {
1746 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001747 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001748 }
1749
1750 /*
1751 * We update c/mtime for these changes
1752 */
1753 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1754 if (IS_ERR(handle)) {
1755 ret = PTR_ERR(handle);
1756 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001757 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001758 }
1759
Mark Fasheh385820a2007-07-19 00:14:38 -07001760 if (change_size && i_size_read(inode) < size)
1761 i_size_write(inode, size);
1762
Mark Fashehb2580102007-03-09 16:53:21 -08001763 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1764 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
1765 if (ret < 0)
1766 mlog_errno(ret);
1767
1768 ocfs2_commit_trans(osb, handle);
1769
Mark Fashehe63aecb62007-10-18 15:30:42 -07001770out_inode_unlock:
Mark Fashehb2580102007-03-09 16:53:21 -08001771 brelse(di_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001772 ocfs2_inode_unlock(inode, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001773out_rw_unlock:
1774 ocfs2_rw_unlock(inode, 1);
1775
Mark Fashehb2580102007-03-09 16:53:21 -08001776out:
Julia Lawallc259ae52008-07-21 09:59:15 +02001777 mutex_unlock(&inode->i_mutex);
Mark Fashehb2580102007-03-09 16:53:21 -08001778 return ret;
1779}
1780
Mark Fasheh385820a2007-07-19 00:14:38 -07001781int ocfs2_change_file_space(struct file *file, unsigned int cmd,
1782 struct ocfs2_space_resv *sr)
1783{
1784 struct inode *inode = file->f_path.dentry->d_inode;
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08001785 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh385820a2007-07-19 00:14:38 -07001786
1787 if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
1788 !ocfs2_writes_unwritten_extents(osb))
1789 return -ENOTTY;
1790 else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) &&
1791 !ocfs2_sparse_alloc(osb))
1792 return -ENOTTY;
1793
1794 if (!S_ISREG(inode->i_mode))
1795 return -EINVAL;
1796
1797 if (!(file->f_mode & FMODE_WRITE))
1798 return -EBADF;
1799
1800 return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0);
1801}
1802
1803static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1804 loff_t len)
1805{
1806 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1807 struct ocfs2_space_resv sr;
1808 int change_size = 1;
1809
1810 if (!ocfs2_writes_unwritten_extents(osb))
1811 return -EOPNOTSUPP;
1812
1813 if (S_ISDIR(inode->i_mode))
1814 return -ENODEV;
1815
1816 if (mode & FALLOC_FL_KEEP_SIZE)
1817 change_size = 0;
1818
1819 sr.l_whence = 0;
1820 sr.l_start = (s64)offset;
1821 sr.l_len = (s64)len;
1822
1823 return __ocfs2_change_file_space(NULL, inode, offset,
1824 OCFS2_IOC_RESVSP64, &sr, change_size);
1825}
1826
Tao Ma293b2f72009-08-25 08:02:48 +08001827int ocfs2_check_range_for_refcount(struct inode *inode, loff_t pos,
1828 size_t count)
1829{
1830 int ret = 0;
1831 unsigned int extent_flags;
1832 u32 cpos, clusters, extent_len, phys_cpos;
1833 struct super_block *sb = inode->i_sb;
1834
1835 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)) ||
Tao Ma2f48d592009-10-15 11:10:49 +08001836 !(OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) ||
1837 OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
Tao Ma293b2f72009-08-25 08:02:48 +08001838 return 0;
1839
1840 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1841 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1842
1843 while (clusters) {
1844 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1845 &extent_flags);
1846 if (ret < 0) {
1847 mlog_errno(ret);
1848 goto out;
1849 }
1850
1851 if (phys_cpos && (extent_flags & OCFS2_EXT_REFCOUNTED)) {
1852 ret = 1;
1853 break;
1854 }
1855
1856 if (extent_len > clusters)
1857 extent_len = clusters;
1858
1859 clusters -= extent_len;
1860 cpos += extent_len;
1861 }
1862out:
1863 return ret;
1864}
1865
1866static int ocfs2_prepare_inode_for_refcount(struct inode *inode,
1867 loff_t pos, size_t count,
1868 int *meta_level)
1869{
1870 int ret;
1871 struct buffer_head *di_bh = NULL;
1872 u32 cpos = pos >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1873 u32 clusters =
1874 ocfs2_clusters_for_bytes(inode->i_sb, pos + count) - cpos;
1875
1876 ret = ocfs2_inode_lock(inode, &di_bh, 1);
1877 if (ret) {
1878 mlog_errno(ret);
1879 goto out;
1880 }
1881
1882 *meta_level = 1;
1883
Tao Ma37f8a2b2009-08-26 09:47:28 +08001884 ret = ocfs2_refcount_cow(inode, di_bh, cpos, clusters, UINT_MAX);
Tao Ma293b2f72009-08-25 08:02:48 +08001885 if (ret)
1886 mlog_errno(ret);
1887out:
1888 brelse(di_bh);
1889 return ret;
1890}
1891
Tiger Yang8659ac22006-10-17 18:29:52 -07001892static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
1893 loff_t *ppos,
1894 size_t count,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001895 int appending,
Tao Ma86470e92009-12-03 21:55:05 +08001896 int *direct_io,
1897 int *has_refcount)
Mark Fashehccd979b2005-12-15 14:31:24 -08001898{
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001899 int ret = 0, meta_level = 0;
Tiger Yang8659ac22006-10-17 18:29:52 -07001900 struct inode *inode = dentry->d_inode;
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001901 loff_t saved_pos, end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001902
Sunil Mushran2bd63212010-01-25 16:57:38 -08001903 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001904 * We start with a read level meta lock and only jump to an ex
1905 * if we need to make modifications here.
Mark Fashehccd979b2005-12-15 14:31:24 -08001906 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001907 for(;;) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001908 ret = ocfs2_inode_lock(inode, NULL, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001909 if (ret < 0) {
1910 meta_level = -1;
1911 mlog_errno(ret);
1912 goto out;
1913 }
1914
1915 /* Clear suid / sgid if necessary. We do this here
1916 * instead of later in the write path because
1917 * remove_suid() calls ->setattr without any hint that
1918 * we may have already done our cluster locking. Since
1919 * ocfs2_setattr() *must* take cluster locks to
1920 * proceeed, this will lead us to recursively lock the
1921 * inode. There's also the dinode i_size state which
1922 * can be lost via setattr during extending writes (we
1923 * set inode->i_size at the end of a write. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001924 if (should_remove_suid(dentry)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001925 if (meta_level == 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001926 ocfs2_inode_unlock(inode, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001927 meta_level = 1;
1928 continue;
1929 }
1930
1931 ret = ocfs2_write_remove_suid(inode);
1932 if (ret < 0) {
1933 mlog_errno(ret);
Tiger Yang8659ac22006-10-17 18:29:52 -07001934 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08001935 }
1936 }
1937
1938 /* work on a copy of ppos until we're sure that we won't have
1939 * to recalculate it due to relocking. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001940 if (appending) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001941 saved_pos = i_size_read(inode);
1942 mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
1943 } else {
Tiger Yang8659ac22006-10-17 18:29:52 -07001944 saved_pos = *ppos;
Mark Fashehccd979b2005-12-15 14:31:24 -08001945 }
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001946
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001947 end = saved_pos + count;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001948
Tao Ma293b2f72009-08-25 08:02:48 +08001949 ret = ocfs2_check_range_for_refcount(inode, saved_pos, count);
1950 if (ret == 1) {
1951 ocfs2_inode_unlock(inode, meta_level);
1952 meta_level = -1;
1953
1954 ret = ocfs2_prepare_inode_for_refcount(inode,
1955 saved_pos,
1956 count,
1957 &meta_level);
Tao Ma86470e92009-12-03 21:55:05 +08001958 if (has_refcount)
1959 *has_refcount = 1;
Wengang Wang96a1cc72010-02-09 14:57:45 +08001960 if (direct_io)
1961 *direct_io = 0;
Tao Ma293b2f72009-08-25 08:02:48 +08001962 }
1963
1964 if (ret < 0) {
1965 mlog_errno(ret);
1966 goto out_unlock;
1967 }
1968
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001969 /*
1970 * Skip the O_DIRECT checks if we don't need
1971 * them.
1972 */
1973 if (!direct_io || !(*direct_io))
1974 break;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001975
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001976 /*
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001977 * There's no sane way to do direct writes to an inode
1978 * with inline data.
1979 */
1980 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1981 *direct_io = 0;
1982 break;
1983 }
1984
1985 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001986 * Allowing concurrent direct writes means
1987 * i_size changes wouldn't be synchronized, so
1988 * one node could wind up truncating another
1989 * nodes writes.
1990 */
1991 if (end > i_size_read(inode)) {
1992 *direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001993 break;
1994 }
1995
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001996 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001997 * We don't fill holes during direct io, so
1998 * check for them here. If any are found, the
1999 * caller will have to retake some cluster
2000 * locks and initiate the io as buffered.
Mark Fasheh3a0782d2007-01-17 12:53:31 -08002001 */
Mark Fasheh65ed39d2007-08-28 17:13:23 -07002002 ret = ocfs2_check_range_for_holes(inode, saved_pos, count);
2003 if (ret == 1) {
2004 *direct_io = 0;
2005 ret = 0;
2006 } else if (ret < 0)
2007 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -08002008 break;
2009 }
2010
Tiger Yang8659ac22006-10-17 18:29:52 -07002011 if (appending)
2012 *ppos = saved_pos;
2013
2014out_unlock:
Tao Ma293b2f72009-08-25 08:02:48 +08002015 if (meta_level >= 0)
2016 ocfs2_inode_unlock(inode, meta_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002017
2018out:
2019 return ret;
2020}
2021
2022static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
2023 const struct iovec *iov,
2024 unsigned long nr_segs,
2025 loff_t pos)
2026{
Mark Fasheh9517bac2007-02-09 20:24:12 -08002027 int ret, direct_io, appending, rw_level, have_alloc_sem = 0;
Tao Ma86470e92009-12-03 21:55:05 +08002028 int can_do_direct, has_refcount = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08002029 ssize_t written = 0;
2030 size_t ocount; /* original count */
2031 size_t count; /* after file limit checks */
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002032 loff_t old_size, *ppos = &iocb->ki_pos;
2033 u32 old_clusters;
Mark Fasheh9517bac2007-02-09 20:24:12 -08002034 struct file *file = iocb->ki_filp;
2035 struct inode *inode = file->f_path.dentry->d_inode;
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002036 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang8659ac22006-10-17 18:29:52 -07002037
Mark Fasheh9517bac2007-02-09 20:24:12 -08002038 mlog_entry("(0x%p, %u, '%.*s')\n", file,
Tiger Yang8659ac22006-10-17 18:29:52 -07002039 (unsigned int)nr_segs,
Mark Fasheh9517bac2007-02-09 20:24:12 -08002040 file->f_path.dentry->d_name.len,
2041 file->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002042
Tiger Yang8659ac22006-10-17 18:29:52 -07002043 if (iocb->ki_left == 0)
2044 return 0;
2045
Mark Fasheh9517bac2007-02-09 20:24:12 -08002046 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
2047
2048 appending = file->f_flags & O_APPEND ? 1 : 0;
2049 direct_io = file->f_flags & O_DIRECT ? 1 : 0;
2050
Tiger Yang8659ac22006-10-17 18:29:52 -07002051 mutex_lock(&inode->i_mutex);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002052
2053relock:
Tiger Yang8659ac22006-10-17 18:29:52 -07002054 /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
Mark Fasheh9517bac2007-02-09 20:24:12 -08002055 if (direct_io) {
Tiger Yang8659ac22006-10-17 18:29:52 -07002056 down_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002057 have_alloc_sem = 1;
Tiger Yang8659ac22006-10-17 18:29:52 -07002058 }
2059
2060 /* concurrent O_DIRECT writes are allowed */
Mark Fasheh9517bac2007-02-09 20:24:12 -08002061 rw_level = !direct_io;
Tiger Yang8659ac22006-10-17 18:29:52 -07002062 ret = ocfs2_rw_lock(inode, rw_level);
2063 if (ret < 0) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08002064 mlog_errno(ret);
2065 goto out_sems;
2066 }
2067
2068 can_do_direct = direct_io;
2069 ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
2070 iocb->ki_left, appending,
Tao Ma86470e92009-12-03 21:55:05 +08002071 &can_do_direct, &has_refcount);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002072 if (ret < 0) {
Tiger Yang8659ac22006-10-17 18:29:52 -07002073 mlog_errno(ret);
2074 goto out;
2075 }
2076
Mark Fasheh9517bac2007-02-09 20:24:12 -08002077 /*
2078 * We can't complete the direct I/O as requested, fall back to
2079 * buffered I/O.
2080 */
2081 if (direct_io && !can_do_direct) {
2082 ocfs2_rw_unlock(inode, rw_level);
2083 up_read(&inode->i_alloc_sem);
2084
2085 have_alloc_sem = 0;
2086 rw_level = -1;
2087
2088 direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08002089 goto relock;
Tiger Yang8659ac22006-10-17 18:29:52 -07002090 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002091
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002092 /*
2093 * To later detect whether a journal commit for sync writes is
2094 * necessary, we sample i_size, and cluster count here.
2095 */
2096 old_size = i_size_read(inode);
2097 old_clusters = OCFS2_I(inode)->ip_clusters;
2098
Mark Fashehccd979b2005-12-15 14:31:24 -08002099 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07002100 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08002101
Li Dongyang6b933c82010-04-17 17:49:10 +08002102 ret = generic_segment_checks(iov, &nr_segs, &ocount,
2103 VERIFY_READ);
2104 if (ret)
2105 goto out_dio;
2106
2107 count = ocount;
2108 ret = generic_write_checks(file, ppos, &count,
2109 S_ISBLK(inode->i_mode));
2110 if (ret)
2111 goto out_dio;
2112
Mark Fasheh9517bac2007-02-09 20:24:12 -08002113 if (direct_io) {
2114 written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
2115 ppos, count, ocount);
2116 if (written < 0) {
Dmitri Monakhovc4354002008-10-27 13:01:49 -07002117 /*
2118 * direct write may have instantiated a few
2119 * blocks outside i_size. Trim these off again.
2120 * Don't need i_size_read because we hold i_mutex.
2121 */
2122 if (*ppos + count > inode->i_size)
2123 vmtruncate(inode, inode->i_size);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002124 ret = written;
2125 goto out_dio;
2126 }
2127 } else {
Li Dongyang6b933c82010-04-17 17:49:10 +08002128 current->backing_dev_info = file->f_mapping->backing_dev_info;
2129 written = generic_file_buffered_write(iocb, iov, nr_segs, *ppos,
2130 ppos, count, 0);
2131 current->backing_dev_info = NULL;
Mark Fasheh9517bac2007-02-09 20:24:12 -08002132 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002133
Mark Fasheh9517bac2007-02-09 20:24:12 -08002134out_dio:
Mark Fashehccd979b2005-12-15 14:31:24 -08002135 /* buffered aio wouldn't have proper lock coverage today */
Mark Fasheh9517bac2007-02-09 20:24:12 -08002136 BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
Mark Fashehccd979b2005-12-15 14:31:24 -08002137
Tao Ma60c48672010-02-03 09:56:04 +08002138 if (((file->f_flags & O_DSYNC) && !direct_io) || IS_SYNC(inode) ||
2139 ((file->f_flags & O_DIRECT) && has_refcount)) {
Jan Kara918941a2009-08-17 18:50:08 +02002140 ret = filemap_fdatawrite_range(file->f_mapping, pos,
2141 pos + count - 1);
2142 if (ret < 0)
2143 written = ret;
2144
Coly Lia03ab782010-03-26 05:15:12 +08002145 if (!ret && ((old_size != i_size_read(inode)) ||
2146 (old_clusters != OCFS2_I(inode)->ip_clusters) ||
2147 has_refcount)) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07002148 ret = jbd2_journal_force_commit(osb->journal->j_journal);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002149 if (ret < 0)
2150 written = ret;
2151 }
Jan Kara918941a2009-08-17 18:50:08 +02002152
2153 if (!ret)
2154 ret = filemap_fdatawait_range(file->f_mapping, pos,
2155 pos + count - 1);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002156 }
2157
Sunil Mushran2bd63212010-01-25 16:57:38 -08002158 /*
Mark Fashehccd979b2005-12-15 14:31:24 -08002159 * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
2160 * function pointer which is called when o_direct io completes so that
2161 * it can unlock our rw lock. (it's the clustered equivalent of
2162 * i_alloc_sem; protects truncate from racing with pending ios).
2163 * Unfortunately there are error cases which call end_io and others
2164 * that don't. so we don't have to unlock the rw_lock if either an
2165 * async dio is going to do it in the future or an end_io after an
2166 * error has already done it.
2167 */
Coly Li66b116c2010-02-25 14:57:13 +08002168 if ((ret == -EIOCBQUEUED) || (!ocfs2_iocb_is_rw_locked(iocb))) {
Mark Fashehccd979b2005-12-15 14:31:24 -08002169 rw_level = -1;
2170 have_alloc_sem = 0;
2171 }
2172
2173out:
Mark Fasheh9517bac2007-02-09 20:24:12 -08002174 if (rw_level != -1)
2175 ocfs2_rw_unlock(inode, rw_level);
2176
2177out_sems:
Mark Fashehccd979b2005-12-15 14:31:24 -08002178 if (have_alloc_sem)
2179 up_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002180
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002181 mutex_unlock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08002182
Wengang Wang812e7a62009-07-10 13:26:04 +08002183 if (written)
2184 ret = written;
Mark Fashehccd979b2005-12-15 14:31:24 -08002185 mlog_exit(ret);
Wengang Wang812e7a62009-07-10 13:26:04 +08002186 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08002187}
2188
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002189static int ocfs2_splice_to_file(struct pipe_inode_info *pipe,
2190 struct file *out,
2191 struct splice_desc *sd)
2192{
2193 int ret;
2194
2195 ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, &sd->pos,
Tao Ma86470e92009-12-03 21:55:05 +08002196 sd->total_len, 0, NULL, NULL);
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002197 if (ret < 0) {
2198 mlog_errno(ret);
2199 return ret;
2200 }
2201
2202 return splice_from_pipe_feed(pipe, sd, pipe_to_file);
2203}
2204
Tiger Yang8659ac22006-10-17 18:29:52 -07002205static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
2206 struct file *out,
2207 loff_t *ppos,
2208 size_t len,
2209 unsigned int flags)
2210{
2211 int ret;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002212 struct address_space *mapping = out->f_mapping;
2213 struct inode *inode = mapping->host;
2214 struct splice_desc sd = {
2215 .total_len = len,
2216 .flags = flags,
2217 .pos = *ppos,
2218 .u.file = out,
2219 };
Tiger Yang8659ac22006-10-17 18:29:52 -07002220
2221 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
2222 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08002223 out->f_path.dentry->d_name.len,
2224 out->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002225
Miklos Szeredi7bfac9e2009-04-06 17:41:00 +02002226 if (pipe->inode)
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002227 mutex_lock_nested(&pipe->inode->i_mutex, I_MUTEX_PARENT);
2228
2229 splice_from_pipe_begin(&sd);
2230 do {
2231 ret = splice_from_pipe_next(pipe, &sd);
2232 if (ret <= 0)
2233 break;
2234
2235 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
2236 ret = ocfs2_rw_lock(inode, 1);
2237 if (ret < 0)
2238 mlog_errno(ret);
2239 else {
2240 ret = ocfs2_splice_to_file(pipe, out, &sd);
2241 ocfs2_rw_unlock(inode, 1);
2242 }
2243 mutex_unlock(&inode->i_mutex);
2244 } while (ret > 0);
2245 splice_from_pipe_end(pipe, &sd);
2246
Miklos Szeredi7bfac9e2009-04-06 17:41:00 +02002247 if (pipe->inode)
2248 mutex_unlock(&pipe->inode->i_mutex);
Tiger Yang8659ac22006-10-17 18:29:52 -07002249
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002250 if (sd.num_spliced)
2251 ret = sd.num_spliced;
2252
2253 if (ret > 0) {
2254 unsigned long nr_pages;
Jan Karad23c9372009-08-18 18:24:31 +02002255 int err;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002256
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002257 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
2258
Jan Karad23c9372009-08-18 18:24:31 +02002259 err = generic_write_sync(out, *ppos, ret);
2260 if (err)
2261 ret = err;
2262 else
2263 *ppos += ret;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002264
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002265 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
2266 }
Tiger Yang8659ac22006-10-17 18:29:52 -07002267
2268 mlog_exit(ret);
2269 return ret;
2270}
2271
2272static ssize_t ocfs2_file_splice_read(struct file *in,
2273 loff_t *ppos,
2274 struct pipe_inode_info *pipe,
2275 size_t len,
2276 unsigned int flags)
2277{
Tao Ma1962f392009-06-19 15:36:52 +08002278 int ret = 0, lock_level = 0;
Josef Sipekd28c9172006-12-08 02:37:25 -08002279 struct inode *inode = in->f_path.dentry->d_inode;
Tiger Yang8659ac22006-10-17 18:29:52 -07002280
2281 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
2282 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08002283 in->f_path.dentry->d_name.len,
2284 in->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002285
2286 /*
2287 * See the comment in ocfs2_file_aio_read()
2288 */
Tao Ma1962f392009-06-19 15:36:52 +08002289 ret = ocfs2_inode_lock_atime(inode, in->f_vfsmnt, &lock_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002290 if (ret < 0) {
2291 mlog_errno(ret);
2292 goto bail;
2293 }
Tao Ma1962f392009-06-19 15:36:52 +08002294 ocfs2_inode_unlock(inode, lock_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002295
2296 ret = generic_file_splice_read(in, ppos, pipe, len, flags);
2297
2298bail:
2299 mlog_exit(ret);
2300 return ret;
2301}
2302
Mark Fashehccd979b2005-12-15 14:31:24 -08002303static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -07002304 const struct iovec *iov,
2305 unsigned long nr_segs,
Mark Fashehccd979b2005-12-15 14:31:24 -08002306 loff_t pos)
2307{
Tiger Yang25899de2006-11-15 15:49:02 +08002308 int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002309 struct file *filp = iocb->ki_filp;
Josef Sipekd28c9172006-12-08 02:37:25 -08002310 struct inode *inode = filp->f_path.dentry->d_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08002311
Badari Pulavarty027445c2006-09-30 23:28:46 -07002312 mlog_entry("(0x%p, %u, '%.*s')\n", filp,
2313 (unsigned int)nr_segs,
Josef Sipekd28c9172006-12-08 02:37:25 -08002314 filp->f_path.dentry->d_name.len,
2315 filp->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08002316
2317 if (!inode) {
2318 ret = -EINVAL;
2319 mlog_errno(ret);
2320 goto bail;
2321 }
2322
Sunil Mushran2bd63212010-01-25 16:57:38 -08002323 /*
Mark Fashehccd979b2005-12-15 14:31:24 -08002324 * buffered reads protect themselves in ->readpage(). O_DIRECT reads
2325 * need locks to protect pending reads from racing with truncate.
2326 */
2327 if (filp->f_flags & O_DIRECT) {
2328 down_read(&inode->i_alloc_sem);
2329 have_alloc_sem = 1;
2330
2331 ret = ocfs2_rw_lock(inode, 0);
2332 if (ret < 0) {
2333 mlog_errno(ret);
2334 goto bail;
2335 }
2336 rw_level = 0;
2337 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07002338 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08002339 }
2340
Mark Fashehc4374f82006-05-05 19:04:35 -07002341 /*
2342 * We're fine letting folks race truncates and extending
2343 * writes with read across the cluster, just like they can
2344 * locally. Hence no rw_lock during read.
Sunil Mushran2bd63212010-01-25 16:57:38 -08002345 *
Mark Fashehc4374f82006-05-05 19:04:35 -07002346 * Take and drop the meta data lock to update inode fields
2347 * like i_size. This allows the checks down below
Sunil Mushran2bd63212010-01-25 16:57:38 -08002348 * generic_file_aio_read() a chance of actually working.
Mark Fashehc4374f82006-05-05 19:04:35 -07002349 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07002350 ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002351 if (ret < 0) {
2352 mlog_errno(ret);
2353 goto bail;
2354 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07002355 ocfs2_inode_unlock(inode, lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002356
Badari Pulavarty027445c2006-09-30 23:28:46 -07002357 ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
Mark Fashehccd979b2005-12-15 14:31:24 -08002358 if (ret == -EINVAL)
Sunil Mushran56753bd2008-06-09 11:24:41 -07002359 mlog(0, "generic_file_aio_read returned -EINVAL\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08002360
2361 /* buffered aio wouldn't have proper lock coverage today */
2362 BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
2363
2364 /* see ocfs2_file_aio_write */
2365 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
2366 rw_level = -1;
2367 have_alloc_sem = 0;
2368 }
2369
2370bail:
2371 if (have_alloc_sem)
2372 up_read(&inode->i_alloc_sem);
Sunil Mushran2bd63212010-01-25 16:57:38 -08002373 if (rw_level != -1)
Mark Fashehccd979b2005-12-15 14:31:24 -08002374 ocfs2_rw_unlock(inode, rw_level);
2375 mlog_exit(ret);
2376
2377 return ret;
2378}
2379
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002380const struct inode_operations ocfs2_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002381 .setattr = ocfs2_setattr,
2382 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002383 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002384 .setxattr = generic_setxattr,
2385 .getxattr = generic_getxattr,
2386 .listxattr = ocfs2_listxattr,
2387 .removexattr = generic_removexattr,
Mark Fasheh385820a2007-07-19 00:14:38 -07002388 .fallocate = ocfs2_fallocate,
Mark Fasheh00dc4172008-10-03 17:32:11 -04002389 .fiemap = ocfs2_fiemap,
Mark Fashehccd979b2005-12-15 14:31:24 -08002390};
2391
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002392const struct inode_operations ocfs2_special_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002393 .setattr = ocfs2_setattr,
2394 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002395 .permission = ocfs2_permission,
Mark Fashehccd979b2005-12-15 14:31:24 -08002396};
2397
Mark Fasheh53da4932008-07-21 14:29:16 -07002398/*
2399 * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
2400 * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
2401 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002402const struct file_operations ocfs2_fops = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002403 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002404 .read = do_sync_read,
2405 .write = do_sync_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002406 .mmap = ocfs2_mmap,
2407 .fsync = ocfs2_sync_file,
2408 .release = ocfs2_file_release,
2409 .open = ocfs2_file_open,
2410 .aio_read = ocfs2_file_aio_read,
2411 .aio_write = ocfs2_file_aio_write,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002412 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002413#ifdef CONFIG_COMPAT
2414 .compat_ioctl = ocfs2_compat_ioctl,
2415#endif
Mark Fasheh53da4932008-07-21 14:29:16 -07002416 .lock = ocfs2_lock,
2417 .flock = ocfs2_flock,
2418 .splice_read = ocfs2_file_splice_read,
2419 .splice_write = ocfs2_file_splice_write,
2420};
2421
2422const struct file_operations ocfs2_dops = {
2423 .llseek = generic_file_llseek,
2424 .read = generic_read_dir,
2425 .readdir = ocfs2_readdir,
2426 .fsync = ocfs2_sync_file,
2427 .release = ocfs2_dir_release,
2428 .open = ocfs2_dir_open,
2429 .unlocked_ioctl = ocfs2_ioctl,
2430#ifdef CONFIG_COMPAT
2431 .compat_ioctl = ocfs2_compat_ioctl,
2432#endif
2433 .lock = ocfs2_lock,
2434 .flock = ocfs2_flock,
2435};
2436
2437/*
2438 * POSIX-lockless variants of our file_operations.
2439 *
2440 * These will be used if the underlying cluster stack does not support
2441 * posix file locking, if the user passes the "localflocks" mount
2442 * option, or if we have a local-only fs.
2443 *
2444 * ocfs2_flock is in here because all stacks handle UNIX file locks,
2445 * so we still want it in the case of no stack support for
2446 * plocks. Internally, it will do the right thing when asked to ignore
2447 * the cluster.
2448 */
2449const struct file_operations ocfs2_fops_no_plocks = {
2450 .llseek = generic_file_llseek,
2451 .read = do_sync_read,
2452 .write = do_sync_write,
2453 .mmap = ocfs2_mmap,
2454 .fsync = ocfs2_sync_file,
2455 .release = ocfs2_file_release,
2456 .open = ocfs2_file_open,
2457 .aio_read = ocfs2_file_aio_read,
2458 .aio_write = ocfs2_file_aio_write,
2459 .unlocked_ioctl = ocfs2_ioctl,
2460#ifdef CONFIG_COMPAT
2461 .compat_ioctl = ocfs2_compat_ioctl,
2462#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002463 .flock = ocfs2_flock,
Tiger Yang8659ac22006-10-17 18:29:52 -07002464 .splice_read = ocfs2_file_splice_read,
2465 .splice_write = ocfs2_file_splice_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002466};
2467
Mark Fasheh53da4932008-07-21 14:29:16 -07002468const struct file_operations ocfs2_dops_no_plocks = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002469 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002470 .read = generic_read_dir,
2471 .readdir = ocfs2_readdir,
2472 .fsync = ocfs2_sync_file,
Mark Fasheh53fc6222007-12-20 16:49:04 -08002473 .release = ocfs2_dir_release,
2474 .open = ocfs2_dir_open,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002475 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002476#ifdef CONFIG_COMPAT
2477 .compat_ioctl = ocfs2_compat_ioctl,
2478#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002479 .flock = ocfs2_flock,
Mark Fashehccd979b2005-12-15 14:31:24 -08002480};