blob: 9c1047c2e44e2025ebf512768f7197b92271e79d [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * file.c
5 *
6 * File open, close, extend, truncate
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080026#include <linux/capability.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080027#include <linux/fs.h>
28#include <linux/types.h>
29#include <linux/slab.h>
30#include <linux/highmem.h>
31#include <linux/pagemap.h>
32#include <linux/uio.h>
Mark Fashehe2057c52006-10-03 17:53:05 -070033#include <linux/sched.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020034#include <linux/splice.h>
Tiger Yang7f1a37e2006-11-15 15:48:42 +080035#include <linux/mount.h>
Mark Fasheh9517bac2007-02-09 20:24:12 -080036#include <linux/writeback.h>
Mark Fasheh385820a2007-07-19 00:14:38 -070037#include <linux/falloc.h>
Jan Karaa90714c2008-10-09 19:38:40 +020038#include <linux/quotaops.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080039
40#define MLOG_MASK_PREFIX ML_INODE
41#include <cluster/masklog.h>
42
43#include "ocfs2.h"
44
45#include "alloc.h"
46#include "aops.h"
47#include "dir.h"
48#include "dlmglue.h"
49#include "extent_map.h"
50#include "file.h"
51#include "sysfile.h"
52#include "inode.h"
Herbert Poetzlca4d1472006-07-03 17:27:12 -070053#include "ioctl.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080054#include "journal.h"
Mark Fasheh53fc6222007-12-20 16:49:04 -080055#include "locks.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080056#include "mmap.h"
57#include "suballoc.h"
58#include "super.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080059#include "xattr.h"
Tiger Yang23fc2702008-11-14 11:17:18 +080060#include "acl.h"
Jan Karaa90714c2008-10-09 19:38:40 +020061#include "quota.h"
Tao Ma293b2f72009-08-25 08:02:48 +080062#include "refcounttree.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080063
64#include "buffer_head_io.h"
65
66static int ocfs2_sync_inode(struct inode *inode)
67{
68 filemap_fdatawrite(inode->i_mapping);
69 return sync_mapping_buffers(inode->i_mapping);
70}
71
Mark Fasheh53fc6222007-12-20 16:49:04 -080072static int ocfs2_init_file_private(struct inode *inode, struct file *file)
73{
74 struct ocfs2_file_private *fp;
75
76 fp = kzalloc(sizeof(struct ocfs2_file_private), GFP_KERNEL);
77 if (!fp)
78 return -ENOMEM;
79
80 fp->fp_file = file;
81 mutex_init(&fp->fp_mutex);
82 ocfs2_file_lock_res_init(&fp->fp_flock, fp);
83 file->private_data = fp;
84
85 return 0;
86}
87
88static void ocfs2_free_file_private(struct inode *inode, struct file *file)
89{
90 struct ocfs2_file_private *fp = file->private_data;
91 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
92
93 if (fp) {
94 ocfs2_simple_drop_lockres(osb, &fp->fp_flock);
95 ocfs2_lock_res_free(&fp->fp_flock);
96 kfree(fp);
97 file->private_data = NULL;
98 }
99}
100
Mark Fashehccd979b2005-12-15 14:31:24 -0800101static int ocfs2_file_open(struct inode *inode, struct file *file)
102{
103 int status;
104 int mode = file->f_flags;
105 struct ocfs2_inode_info *oi = OCFS2_I(inode);
106
107 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
Josef Sipekd28c9172006-12-08 02:37:25 -0800108 file->f_path.dentry->d_name.len, file->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -0800109
Christoph Hellwig907f4552010-03-03 09:05:06 -0500110 if (file->f_mode & FMODE_WRITE)
Christoph Hellwig871a2932010-03-03 09:05:07 -0500111 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500112
Mark Fashehccd979b2005-12-15 14:31:24 -0800113 spin_lock(&oi->ip_lock);
114
115 /* Check that the inode hasn't been wiped from disk by another
116 * node. If it hasn't then we're safe as long as we hold the
117 * spin lock until our increment of open count. */
118 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
119 spin_unlock(&oi->ip_lock);
120
121 status = -ENOENT;
122 goto leave;
123 }
124
125 if (mode & O_DIRECT)
126 oi->ip_flags |= OCFS2_INODE_OPEN_DIRECT;
127
128 oi->ip_open_count++;
129 spin_unlock(&oi->ip_lock);
Mark Fasheh53fc6222007-12-20 16:49:04 -0800130
131 status = ocfs2_init_file_private(inode, file);
132 if (status) {
133 /*
134 * We want to set open count back if we're failing the
135 * open.
136 */
137 spin_lock(&oi->ip_lock);
138 oi->ip_open_count--;
139 spin_unlock(&oi->ip_lock);
140 }
141
Mark Fashehccd979b2005-12-15 14:31:24 -0800142leave:
143 mlog_exit(status);
144 return status;
145}
146
147static int ocfs2_file_release(struct inode *inode, struct file *file)
148{
149 struct ocfs2_inode_info *oi = OCFS2_I(inode);
150
151 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
Josef Sipekd28c9172006-12-08 02:37:25 -0800152 file->f_path.dentry->d_name.len,
153 file->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -0800154
155 spin_lock(&oi->ip_lock);
156 if (!--oi->ip_open_count)
157 oi->ip_flags &= ~OCFS2_INODE_OPEN_DIRECT;
158 spin_unlock(&oi->ip_lock);
159
Mark Fasheh53fc6222007-12-20 16:49:04 -0800160 ocfs2_free_file_private(inode, file);
161
Mark Fashehccd979b2005-12-15 14:31:24 -0800162 mlog_exit(0);
163
164 return 0;
165}
166
Mark Fasheh53fc6222007-12-20 16:49:04 -0800167static int ocfs2_dir_open(struct inode *inode, struct file *file)
168{
169 return ocfs2_init_file_private(inode, file);
170}
171
172static int ocfs2_dir_release(struct inode *inode, struct file *file)
173{
174 ocfs2_free_file_private(inode, file);
175 return 0;
176}
177
Mark Fashehccd979b2005-12-15 14:31:24 -0800178static int ocfs2_sync_file(struct file *file,
179 struct dentry *dentry,
180 int datasync)
181{
182 int err = 0;
183 journal_t *journal;
184 struct inode *inode = dentry->d_inode;
185 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
186
187 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync,
188 dentry->d_name.len, dentry->d_name.name);
189
190 err = ocfs2_sync_inode(dentry->d_inode);
191 if (err)
192 goto bail;
193
Hisashi Hifumie04cc152009-06-09 16:47:45 +0900194 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
195 goto bail;
196
Mark Fashehccd979b2005-12-15 14:31:24 -0800197 journal = osb->journal->j_journal;
Joel Becker2b4e30f2008-09-03 20:03:41 -0700198 err = jbd2_journal_force_commit(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -0800199
200bail:
201 mlog_exit(err);
202
203 return (err < 0) ? -EIO : 0;
204}
205
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800206int ocfs2_should_update_atime(struct inode *inode,
207 struct vfsmount *vfsmnt)
208{
209 struct timespec now;
210 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
211
212 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
213 return 0;
214
215 if ((inode->i_flags & S_NOATIME) ||
216 ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode)))
217 return 0;
218
Mark Fasheh6c2aad02006-12-19 15:25:52 -0800219 /*
220 * We can be called with no vfsmnt structure - NFSD will
221 * sometimes do this.
222 *
223 * Note that our action here is different than touch_atime() -
224 * if we can't tell whether this is a noatime mount, then we
225 * don't know whether to trust the value of s_atime_quantum.
226 */
227 if (vfsmnt == NULL)
228 return 0;
229
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800230 if ((vfsmnt->mnt_flags & MNT_NOATIME) ||
231 ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
232 return 0;
233
Mark Fasheh7e913c52006-12-13 00:34:35 -0800234 if (vfsmnt->mnt_flags & MNT_RELATIME) {
235 if ((timespec_compare(&inode->i_atime, &inode->i_mtime) <= 0) ||
236 (timespec_compare(&inode->i_atime, &inode->i_ctime) <= 0))
237 return 1;
238
239 return 0;
240 }
241
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800242 now = CURRENT_TIME;
243 if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum))
244 return 0;
245 else
246 return 1;
247}
248
249int ocfs2_update_inode_atime(struct inode *inode,
250 struct buffer_head *bh)
251{
252 int ret;
253 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
254 handle_t *handle;
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700255 struct ocfs2_dinode *di = (struct ocfs2_dinode *) bh->b_data;
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800256
257 mlog_entry_void();
258
259 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200260 if (IS_ERR(handle)) {
261 ret = PTR_ERR(handle);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800262 mlog_errno(ret);
263 goto out;
264 }
265
Joel Becker0cf2f762009-02-12 16:41:25 -0800266 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -0700267 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700268 if (ret) {
269 mlog_errno(ret);
270 goto out_commit;
271 }
272
273 /*
274 * Don't use ocfs2_mark_inode_dirty() here as we don't always
275 * have i_mutex to guard against concurrent changes to other
276 * inode fields.
277 */
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800278 inode->i_atime = CURRENT_TIME;
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700279 di->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
280 di->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
Joel Beckerec20cec2010-03-19 14:13:52 -0700281 ocfs2_journal_dirty(handle, bh);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800282
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700283out_commit:
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800284 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
285out:
286 mlog_exit(ret);
287 return ret;
288}
289
Adrian Bunk6cb129f2007-04-26 00:29:35 -0700290static int ocfs2_set_inode_size(handle_t *handle,
291 struct inode *inode,
292 struct buffer_head *fe_bh,
293 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800294{
295 int status;
296
297 mlog_entry_void();
298 i_size_write(inode, new_i_size);
Mark Fasheh8110b072007-03-22 16:53:23 -0700299 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800300 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
301
302 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
303 if (status < 0) {
304 mlog_errno(status);
305 goto bail;
306 }
307
308bail:
309 mlog_exit(status);
310 return status;
311}
312
Jan Kara9e33d692008-08-25 19:56:50 +0200313int ocfs2_simple_size_update(struct inode *inode,
314 struct buffer_head *di_bh,
315 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800316{
317 int ret;
318 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700319 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800320
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700321 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200322 if (IS_ERR(handle)) {
323 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800324 mlog_errno(ret);
325 goto out;
326 }
327
328 ret = ocfs2_set_inode_size(handle, inode, di_bh,
329 new_i_size);
330 if (ret < 0)
331 mlog_errno(ret);
332
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700333 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800334out:
335 return ret;
336}
337
Tao Ma37f8a2b2009-08-26 09:47:28 +0800338static int ocfs2_cow_file_pos(struct inode *inode,
339 struct buffer_head *fe_bh,
340 u64 offset)
341{
342 int status;
343 u32 phys, cpos = offset >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
344 unsigned int num_clusters = 0;
345 unsigned int ext_flags = 0;
346
347 /*
348 * If the new offset is aligned to the range of the cluster, there is
349 * no space for ocfs2_zero_range_for_truncate to fill, so no need to
350 * CoW either.
351 */
352 if ((offset & (OCFS2_SB(inode->i_sb)->s_clustersize - 1)) == 0)
353 return 0;
354
355 status = ocfs2_get_clusters(inode, cpos, &phys,
356 &num_clusters, &ext_flags);
357 if (status) {
358 mlog_errno(status);
359 goto out;
360 }
361
362 if (!(ext_flags & OCFS2_EXT_REFCOUNTED))
363 goto out;
364
365 return ocfs2_refcount_cow(inode, fe_bh, cpos, 1, cpos+1);
366
367out:
368 return status;
369}
370
Mark Fashehccd979b2005-12-15 14:31:24 -0800371static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
372 struct inode *inode,
373 struct buffer_head *fe_bh,
374 u64 new_i_size)
375{
376 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700377 handle_t *handle;
Mark Fasheh60b11392007-02-16 11:46:50 -0800378 struct ocfs2_dinode *di;
Mark Fasheh35edec12007-07-06 14:41:18 -0700379 u64 cluster_bytes;
Mark Fashehccd979b2005-12-15 14:31:24 -0800380
381 mlog_entry_void();
382
Tao Ma37f8a2b2009-08-26 09:47:28 +0800383 /*
384 * We need to CoW the cluster contains the offset if it is reflinked
385 * since we will call ocfs2_zero_range_for_truncate later which will
386 * write "0" from offset to the end of the cluster.
387 */
388 status = ocfs2_cow_file_pos(inode, fe_bh, new_i_size);
389 if (status) {
390 mlog_errno(status);
391 return status;
392 }
393
Mark Fashehccd979b2005-12-15 14:31:24 -0800394 /* TODO: This needs to actually orphan the inode in this
395 * transaction. */
396
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700397 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800398 if (IS_ERR(handle)) {
399 status = PTR_ERR(handle);
400 mlog_errno(status);
401 goto out;
402 }
403
Joel Becker0cf2f762009-02-12 16:41:25 -0800404 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700405 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh60b11392007-02-16 11:46:50 -0800406 if (status < 0) {
407 mlog_errno(status);
408 goto out_commit;
409 }
410
411 /*
412 * Do this before setting i_size.
413 */
Mark Fasheh35edec12007-07-06 14:41:18 -0700414 cluster_bytes = ocfs2_align_bytes_to_clusters(inode->i_sb, new_i_size);
415 status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size,
416 cluster_bytes);
Mark Fasheh60b11392007-02-16 11:46:50 -0800417 if (status) {
418 mlog_errno(status);
419 goto out_commit;
420 }
421
422 i_size_write(inode, new_i_size);
Mark Fasheh60b11392007-02-16 11:46:50 -0800423 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
424
425 di = (struct ocfs2_dinode *) fe_bh->b_data;
426 di->i_size = cpu_to_le64(new_i_size);
427 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
428 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
429
Joel Beckerec20cec2010-03-19 14:13:52 -0700430 ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800431
Mark Fasheh60b11392007-02-16 11:46:50 -0800432out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700433 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800434out:
Mark Fasheh60b11392007-02-16 11:46:50 -0800435
Mark Fashehccd979b2005-12-15 14:31:24 -0800436 mlog_exit(status);
437 return status;
438}
439
440static int ocfs2_truncate_file(struct inode *inode,
441 struct buffer_head *di_bh,
442 u64 new_i_size)
443{
444 int status = 0;
445 struct ocfs2_dinode *fe = NULL;
446 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800447
Mark Fashehb06970532006-03-03 10:24:33 -0800448 mlog_entry("(inode = %llu, new_i_size = %llu\n",
449 (unsigned long long)OCFS2_I(inode)->ip_blkno,
450 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800451
Joel Beckerb657c952008-11-13 14:49:11 -0800452 /* We trust di_bh because it comes from ocfs2_inode_lock(), which
453 * already validated it */
Mark Fashehccd979b2005-12-15 14:31:24 -0800454 fe = (struct ocfs2_dinode *) di_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800455
456 mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800457 "Inode %llu, inode i_size = %lld != di "
458 "i_size = %llu, i_flags = 0x%x\n",
459 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -0800460 i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800461 (unsigned long long)le64_to_cpu(fe->i_size),
462 le32_to_cpu(fe->i_flags));
Mark Fashehccd979b2005-12-15 14:31:24 -0800463
464 if (new_i_size > le64_to_cpu(fe->i_size)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800465 mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
466 (unsigned long long)le64_to_cpu(fe->i_size),
467 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800468 status = -EINVAL;
469 mlog_errno(status);
470 goto bail;
471 }
472
Mark Fashehb06970532006-03-03 10:24:33 -0800473 mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
474 (unsigned long long)le64_to_cpu(fe->i_blkno),
475 (unsigned long long)le64_to_cpu(fe->i_size),
476 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800477
478 /* lets handle the simple truncate cases before doing any more
479 * cluster locking. */
480 if (new_i_size == le64_to_cpu(fe->i_size))
481 goto bail;
482
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700483 down_write(&OCFS2_I(inode)->ip_alloc_sem);
484
Mark Fasheh4fe370a2009-12-07 13:15:40 -0800485 ocfs2_resv_discard(&osb->osb_la_resmap,
486 &OCFS2_I(inode)->ip_la_data_resv);
487
Mark Fashehc934a922007-10-18 15:23:46 -0700488 /*
489 * The inode lock forced other nodes to sync and drop their
490 * pages, which (correctly) happens even if we have a truncate
491 * without allocation change - ocfs2 cluster sizes can be much
492 * greater than page size, so we have to truncate them
493 * anyway.
494 */
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700495 unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1);
496 truncate_inode_pages(inode->i_mapping, new_i_size);
497
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700498 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
499 status = ocfs2_truncate_inline(inode, di_bh, new_i_size,
Mark Fashehb1967d02007-11-20 11:56:39 -0800500 i_size_read(inode), 1);
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700501 if (status)
502 mlog_errno(status);
503
Mark Fashehc934a922007-10-18 15:23:46 -0700504 goto bail_unlock_sem;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700505 }
506
Mark Fashehccd979b2005-12-15 14:31:24 -0800507 /* alright, we're going to need to do a full blown alloc size
508 * change. Orphan the inode so that recovery can complete the
509 * truncate if necessary. This does the task of marking
510 * i_size. */
511 status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size);
512 if (status < 0) {
513 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700514 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800515 }
516
Tristan Ye78f94672010-05-11 17:54:42 +0800517 status = ocfs2_commit_truncate(osb, inode, di_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800518 if (status < 0) {
519 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700520 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800521 }
522
523 /* TODO: orphan dir cleanup here. */
Mark Fashehc934a922007-10-18 15:23:46 -0700524bail_unlock_sem:
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700525 up_write(&OCFS2_I(inode)->ip_alloc_sem);
526
Mark Fashehccd979b2005-12-15 14:31:24 -0800527bail:
Tao Ma8b2c0db2009-08-18 11:43:49 +0800528 if (!status && OCFS2_I(inode)->ip_clusters == 0)
529 status = ocfs2_try_remove_refcount_tree(inode, di_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800530
531 mlog_exit(status);
532 return status;
533}
534
535/*
Tao Ma0eb8d472008-08-18 17:38:45 +0800536 * extend file allocation only here.
Mark Fashehccd979b2005-12-15 14:31:24 -0800537 * we'll update all the disk stuff, and oip->alloc_size
538 *
539 * expect stuff to be locked, a transaction started and enough data /
540 * metadata reservations in the contexts.
541 *
542 * Will return -EAGAIN, and a reason if a restart is needed.
543 * If passed in, *reason will always be set, even in error.
544 */
Tao Ma0eb8d472008-08-18 17:38:45 +0800545int ocfs2_add_inode_data(struct ocfs2_super *osb,
546 struct inode *inode,
547 u32 *logical_offset,
548 u32 clusters_to_add,
549 int mark_unwritten,
550 struct buffer_head *fe_bh,
551 handle_t *handle,
552 struct ocfs2_alloc_context *data_ac,
553 struct ocfs2_alloc_context *meta_ac,
554 enum ocfs2_alloc_restarted *reason_ret)
Mark Fashehccd979b2005-12-15 14:31:24 -0800555{
Joel Beckerf99b9b72008-08-20 19:36:33 -0700556 int ret;
557 struct ocfs2_extent_tree et;
Mark Fashehccd979b2005-12-15 14:31:24 -0800558
Joel Becker5e404e92009-02-13 03:54:22 -0800559 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), fe_bh);
Joel Beckercbee7e12009-02-13 03:34:15 -0800560 ret = ocfs2_add_clusters_in_btree(handle, &et, logical_offset,
561 clusters_to_add, mark_unwritten,
562 data_ac, meta_ac, reason_ret);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700563
564 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800565}
566
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800567static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
568 u32 clusters_to_add, int mark_unwritten)
Mark Fashehccd979b2005-12-15 14:31:24 -0800569{
570 int status = 0;
571 int restart_func = 0;
Mark Fashehabf8b152007-01-17 13:07:24 -0800572 int credits;
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800573 u32 prev_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -0800574 struct buffer_head *bh = NULL;
575 struct ocfs2_dinode *fe = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700576 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800577 struct ocfs2_alloc_context *data_ac = NULL;
578 struct ocfs2_alloc_context *meta_ac = NULL;
579 enum ocfs2_alloc_restarted why;
580 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700581 struct ocfs2_extent_tree et;
Jan Karaa90714c2008-10-09 19:38:40 +0200582 int did_quota = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800583
584 mlog_entry("(clusters_to_add = %u)\n", clusters_to_add);
585
Mark Fashehdcd05382007-01-16 11:32:23 -0800586 /*
587 * This function only exists for file systems which don't
588 * support holes.
589 */
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800590 BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb));
Mark Fashehdcd05382007-01-16 11:32:23 -0800591
Joel Beckerb657c952008-11-13 14:49:11 -0800592 status = ocfs2_read_inode_block(inode, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800593 if (status < 0) {
594 mlog_errno(status);
595 goto leave;
596 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800597 fe = (struct ocfs2_dinode *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800598
599restart_all:
600 BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
601
Tao Mae7d4cb62008-08-18 17:38:44 +0800602 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
603 "clusters_to_add = %u\n",
604 (unsigned long long)OCFS2_I(inode)->ip_blkno,
605 (long long)i_size_read(inode), le32_to_cpu(fe->i_clusters),
606 clusters_to_add);
Joel Becker5e404e92009-02-13 03:54:22 -0800607 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700608 status = ocfs2_lock_allocators(inode, &et, clusters_to_add, 0,
609 &data_ac, &meta_ac);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800610 if (status) {
611 mlog_errno(status);
612 goto leave;
613 }
614
Tao Ma811f9332008-08-18 17:38:43 +0800615 credits = ocfs2_calc_extend_credits(osb->sb, &fe->id2.i_list,
616 clusters_to_add);
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700617 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800618 if (IS_ERR(handle)) {
619 status = PTR_ERR(handle);
620 handle = NULL;
621 mlog_errno(status);
622 goto leave;
623 }
624
625restarted_transaction:
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500626 status = dquot_alloc_space_nodirty(inode,
627 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
628 if (status)
Jan Karaa90714c2008-10-09 19:38:40 +0200629 goto leave;
Jan Karaa90714c2008-10-09 19:38:40 +0200630 did_quota = 1;
631
Mark Fashehccd979b2005-12-15 14:31:24 -0800632 /* reserve a write to the file entry early on - that we if we
633 * run out of credits in the allocation path, we can still
634 * update i_size. */
Joel Becker0cf2f762009-02-12 16:41:25 -0800635 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -0700636 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800637 if (status < 0) {
638 mlog_errno(status);
639 goto leave;
640 }
641
642 prev_clusters = OCFS2_I(inode)->ip_clusters;
643
Tao Ma0eb8d472008-08-18 17:38:45 +0800644 status = ocfs2_add_inode_data(osb,
645 inode,
646 &logical_start,
647 clusters_to_add,
648 mark_unwritten,
649 bh,
650 handle,
651 data_ac,
652 meta_ac,
653 &why);
Mark Fashehccd979b2005-12-15 14:31:24 -0800654 if ((status < 0) && (status != -EAGAIN)) {
655 if (status != -ENOSPC)
656 mlog_errno(status);
657 goto leave;
658 }
659
Joel Beckerec20cec2010-03-19 14:13:52 -0700660 ocfs2_journal_dirty(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800661
662 spin_lock(&OCFS2_I(inode)->ip_lock);
663 clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
664 spin_unlock(&OCFS2_I(inode)->ip_lock);
Jan Karaa90714c2008-10-09 19:38:40 +0200665 /* Release unused quota reservation */
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500666 dquot_free_space(inode,
Jan Karaa90714c2008-10-09 19:38:40 +0200667 ocfs2_clusters_to_bytes(osb->sb, clusters_to_add));
668 did_quota = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800669
670 if (why != RESTART_NONE && clusters_to_add) {
671 if (why == RESTART_META) {
672 mlog(0, "restarting function.\n");
673 restart_func = 1;
674 } 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 int qtype;
936 struct dquot *transfer_from[MAXQUOTAS] = { };
937 struct dquot *transfer_to[MAXQUOTAS] = { };
Mark Fashehccd979b2005-12-15 14:31:24 -0800938
939 mlog_entry("(0x%p, '%.*s')\n", dentry,
940 dentry->d_name.len, dentry->d_name.name);
941
Sunil Mushranbc535802008-04-18 10:23:53 -0700942 /* ensuring we don't even attempt to truncate a symlink */
943 if (S_ISLNK(inode->i_mode))
944 attr->ia_valid &= ~ATTR_SIZE;
945
Mark Fashehccd979b2005-12-15 14:31:24 -0800946 if (attr->ia_valid & ATTR_MODE)
947 mlog(0, "mode change: %d\n", attr->ia_mode);
948 if (attr->ia_valid & ATTR_UID)
949 mlog(0, "uid change: %d\n", attr->ia_uid);
950 if (attr->ia_valid & ATTR_GID)
951 mlog(0, "gid change: %d\n", attr->ia_gid);
952 if (attr->ia_valid & ATTR_SIZE)
953 mlog(0, "size change...\n");
954 if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
955 mlog(0, "time change...\n");
956
957#define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
958 | ATTR_GID | ATTR_UID | ATTR_MODE)
959 if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
960 mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
961 return 0;
962 }
963
964 status = inode_change_ok(inode, attr);
965 if (status)
966 return status;
967
968 size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
969 if (size_change) {
Christoph Hellwig871a2932010-03-03 09:05:07 -0500970 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500971
Mark Fashehccd979b2005-12-15 14:31:24 -0800972 status = ocfs2_rw_lock(inode, 1);
973 if (status < 0) {
974 mlog_errno(status);
975 goto bail;
976 }
977 }
978
Mark Fashehe63aecb62007-10-18 15:30:42 -0700979 status = ocfs2_inode_lock(inode, &bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800980 if (status < 0) {
981 if (status != -ENOENT)
982 mlog_errno(status);
983 goto bail_unlock_rw;
984 }
985
986 if (size_change && attr->ia_size != i_size_read(inode)) {
Wengang Wang5051f762010-02-26 18:18:25 +0800987 status = inode_newsize_ok(inode, attr->ia_size);
988 if (status)
Mark Fashehce76fd32007-07-20 12:02:14 -0700989 goto bail_unlock;
Mark Fashehce76fd32007-07-20 12:02:14 -0700990
Joel Becker2b4e30f2008-09-03 20:03:41 -0700991 if (i_size_read(inode) > attr->ia_size) {
992 if (ocfs2_should_order_data(inode)) {
993 status = ocfs2_begin_ordered_truncate(inode,
994 attr->ia_size);
995 if (status)
996 goto bail_unlock;
997 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800998 status = ocfs2_truncate_file(inode, bh, attr->ia_size);
Joel Becker2b4e30f2008-09-03 20:03:41 -0700999 } else
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001000 status = ocfs2_extend_file(inode, bh, attr->ia_size);
Mark Fashehccd979b2005-12-15 14:31:24 -08001001 if (status < 0) {
1002 if (status != -ENOSPC)
1003 mlog_errno(status);
1004 status = -ENOSPC;
1005 goto bail_unlock;
1006 }
1007 }
1008
Jan Karaa90714c2008-10-09 19:38:40 +02001009 if ((attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
1010 (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
Jan Kara65bac572009-06-02 14:24:01 +02001011 /*
1012 * Gather pointers to quota structures so that allocation /
1013 * freeing of quota structures happens here and not inside
Christoph Hellwigb43fa822010-03-03 09:05:03 -05001014 * dquot_transfer() where we have problems with lock ordering
Jan Kara65bac572009-06-02 14:24:01 +02001015 */
Jan Karaa90714c2008-10-09 19:38:40 +02001016 if (attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid
1017 && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1018 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
Jan Kara65bac572009-06-02 14:24:01 +02001019 transfer_to[USRQUOTA] = dqget(sb, attr->ia_uid,
1020 USRQUOTA);
1021 transfer_from[USRQUOTA] = dqget(sb, inode->i_uid,
1022 USRQUOTA);
1023 if (!transfer_to[USRQUOTA] || !transfer_from[USRQUOTA]) {
1024 status = -ESRCH;
Jan Karaa90714c2008-10-09 19:38:40 +02001025 goto bail_unlock;
Jan Kara65bac572009-06-02 14:24:01 +02001026 }
Jan Karaa90714c2008-10-09 19:38:40 +02001027 }
1028 if (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid
1029 && OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1030 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
Jan Kara65bac572009-06-02 14:24:01 +02001031 transfer_to[GRPQUOTA] = dqget(sb, attr->ia_gid,
1032 GRPQUOTA);
1033 transfer_from[GRPQUOTA] = dqget(sb, inode->i_gid,
1034 GRPQUOTA);
1035 if (!transfer_to[GRPQUOTA] || !transfer_from[GRPQUOTA]) {
1036 status = -ESRCH;
Jan Karaa90714c2008-10-09 19:38:40 +02001037 goto bail_unlock;
Jan Kara65bac572009-06-02 14:24:01 +02001038 }
Jan Karaa90714c2008-10-09 19:38:40 +02001039 }
Jan Kara65bac572009-06-02 14:24:01 +02001040 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS +
1041 2 * ocfs2_quota_trans_credits(sb));
Jan Karaa90714c2008-10-09 19:38:40 +02001042 if (IS_ERR(handle)) {
1043 status = PTR_ERR(handle);
1044 mlog_errno(status);
1045 goto bail_unlock;
1046 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05001047 status = dquot_transfer(inode, attr);
Jan Karaa90714c2008-10-09 19:38:40 +02001048 if (status < 0)
1049 goto bail_commit;
1050 } else {
1051 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1052 if (IS_ERR(handle)) {
1053 status = PTR_ERR(handle);
1054 mlog_errno(status);
1055 goto bail_unlock;
1056 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001057 }
1058
Mark Fasheh7307de82007-05-09 15:16:19 -07001059 /*
1060 * This will intentionally not wind up calling vmtruncate(),
1061 * since all the work for a size change has been done above.
1062 * Otherwise, we could get into problems with truncate as
1063 * ip_alloc_sem is used there to protect against i_size
1064 * changes.
1065 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001066 status = inode_setattr(inode, attr);
1067 if (status < 0) {
1068 mlog_errno(status);
1069 goto bail_commit;
1070 }
1071
1072 status = ocfs2_mark_inode_dirty(handle, inode, bh);
1073 if (status < 0)
1074 mlog_errno(status);
1075
1076bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001077 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001078bail_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07001079 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001080bail_unlock_rw:
1081 if (size_change)
1082 ocfs2_rw_unlock(inode, 1);
1083bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001084 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001085
Jan Kara65bac572009-06-02 14:24:01 +02001086 /* Release quota pointers in case we acquired them */
1087 for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
1088 dqput(transfer_to[qtype]);
1089 dqput(transfer_from[qtype]);
1090 }
1091
Tiger Yang060bc662008-11-14 11:17:29 +08001092 if (!status && attr->ia_valid & ATTR_MODE) {
1093 status = ocfs2_acl_chmod(inode);
1094 if (status < 0)
1095 mlog_errno(status);
1096 }
1097
Mark Fashehccd979b2005-12-15 14:31:24 -08001098 mlog_exit(status);
1099 return status;
1100}
1101
1102int ocfs2_getattr(struct vfsmount *mnt,
1103 struct dentry *dentry,
1104 struct kstat *stat)
1105{
1106 struct inode *inode = dentry->d_inode;
1107 struct super_block *sb = dentry->d_inode->i_sb;
1108 struct ocfs2_super *osb = sb->s_fs_info;
1109 int err;
1110
1111 mlog_entry_void();
1112
1113 err = ocfs2_inode_revalidate(dentry);
1114 if (err) {
1115 if (err != -ENOENT)
1116 mlog_errno(err);
1117 goto bail;
1118 }
1119
1120 generic_fillattr(inode, stat);
1121
1122 /* We set the blksize from the cluster size for performance */
1123 stat->blksize = osb->s_clustersize;
1124
1125bail:
1126 mlog_exit(err);
1127
1128 return err;
1129}
1130
Al Viroe6305c42008-07-15 21:03:57 -04001131int ocfs2_permission(struct inode *inode, int mask)
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001132{
1133 int ret;
1134
1135 mlog_entry_void();
1136
Mark Fashehe63aecb62007-10-18 15:30:42 -07001137 ret = ocfs2_inode_lock(inode, NULL, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001138 if (ret) {
Mark Fasheha9f5f702007-04-26 11:43:43 -07001139 if (ret != -ENOENT)
1140 mlog_errno(ret);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001141 goto out;
1142 }
1143
Tiger Yang23fc2702008-11-14 11:17:18 +08001144 ret = generic_permission(inode, mask, ocfs2_check_acl);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001145
Mark Fashehe63aecb62007-10-18 15:30:42 -07001146 ocfs2_inode_unlock(inode, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001147out:
1148 mlog_exit(ret);
1149 return ret;
1150}
1151
Mark Fashehb2580102007-03-09 16:53:21 -08001152static int __ocfs2_write_remove_suid(struct inode *inode,
1153 struct buffer_head *bh)
Mark Fashehccd979b2005-12-15 14:31:24 -08001154{
1155 int ret;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001156 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08001157 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1158 struct ocfs2_dinode *di;
1159
Mark Fashehb06970532006-03-03 10:24:33 -08001160 mlog_entry("(Inode %llu, mode 0%o)\n",
Mark Fashehb2580102007-03-09 16:53:21 -08001161 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001162
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001163 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001164 if (IS_ERR(handle)) {
1165 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001166 mlog_errno(ret);
1167 goto out;
1168 }
1169
Joel Becker0cf2f762009-02-12 16:41:25 -08001170 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
Joel Becker13723d02008-10-17 19:25:01 -07001171 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001172 if (ret < 0) {
1173 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001174 goto out_trans;
Mark Fashehccd979b2005-12-15 14:31:24 -08001175 }
1176
1177 inode->i_mode &= ~S_ISUID;
1178 if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
1179 inode->i_mode &= ~S_ISGID;
1180
1181 di = (struct ocfs2_dinode *) bh->b_data;
1182 di->i_mode = cpu_to_le16(inode->i_mode);
1183
Joel Beckerec20cec2010-03-19 14:13:52 -07001184 ocfs2_journal_dirty(handle, bh);
Mark Fashehb2580102007-03-09 16:53:21 -08001185
Mark Fashehccd979b2005-12-15 14:31:24 -08001186out_trans:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001187 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001188out:
1189 mlog_exit(ret);
1190 return ret;
1191}
1192
Mark Fasheh9517bac2007-02-09 20:24:12 -08001193/*
1194 * Will look for holes and unwritten extents in the range starting at
1195 * pos for count bytes (inclusive).
1196 */
1197static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
1198 size_t count)
1199{
1200 int ret = 0;
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001201 unsigned int extent_flags;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001202 u32 cpos, clusters, extent_len, phys_cpos;
1203 struct super_block *sb = inode->i_sb;
1204
1205 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1206 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1207
1208 while (clusters) {
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001209 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1210 &extent_flags);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001211 if (ret < 0) {
1212 mlog_errno(ret);
1213 goto out;
1214 }
1215
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001216 if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001217 ret = 1;
1218 break;
1219 }
1220
1221 if (extent_len > clusters)
1222 extent_len = clusters;
1223
1224 clusters -= extent_len;
1225 cpos += extent_len;
1226 }
1227out:
1228 return ret;
1229}
1230
Mark Fashehb2580102007-03-09 16:53:21 -08001231static int ocfs2_write_remove_suid(struct inode *inode)
1232{
1233 int ret;
1234 struct buffer_head *bh = NULL;
Mark Fashehb2580102007-03-09 16:53:21 -08001235
Joel Beckerb657c952008-11-13 14:49:11 -08001236 ret = ocfs2_read_inode_block(inode, &bh);
Mark Fashehb2580102007-03-09 16:53:21 -08001237 if (ret < 0) {
1238 mlog_errno(ret);
1239 goto out;
1240 }
1241
1242 ret = __ocfs2_write_remove_suid(inode, bh);
1243out:
1244 brelse(bh);
1245 return ret;
1246}
1247
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001248/*
1249 * Allocate enough extents to cover the region starting at byte offset
1250 * start for len bytes. Existing extents are skipped, any extents
1251 * added are marked as "unwritten".
1252 */
1253static int ocfs2_allocate_unwritten_extents(struct inode *inode,
1254 u64 start, u64 len)
1255{
1256 int ret;
1257 u32 cpos, phys_cpos, clusters, alloc_size;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001258 u64 end = start + len;
1259 struct buffer_head *di_bh = NULL;
1260
1261 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
Joel Beckerb657c952008-11-13 14:49:11 -08001262 ret = ocfs2_read_inode_block(inode, &di_bh);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001263 if (ret) {
1264 mlog_errno(ret);
1265 goto out;
1266 }
1267
1268 /*
1269 * Nothing to do if the requested reservation range
1270 * fits within the inode.
1271 */
1272 if (ocfs2_size_fits_inline_data(di_bh, end))
1273 goto out;
1274
1275 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
1276 if (ret) {
1277 mlog_errno(ret);
1278 goto out;
1279 }
1280 }
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001281
1282 /*
1283 * We consider both start and len to be inclusive.
1284 */
1285 cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1286 clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len);
1287 clusters -= cpos;
1288
1289 while (clusters) {
1290 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1291 &alloc_size, NULL);
1292 if (ret) {
1293 mlog_errno(ret);
1294 goto out;
1295 }
1296
1297 /*
1298 * Hole or existing extent len can be arbitrary, so
1299 * cap it to our own allocation request.
1300 */
1301 if (alloc_size > clusters)
1302 alloc_size = clusters;
1303
1304 if (phys_cpos) {
1305 /*
1306 * We already have an allocation at this
1307 * region so we can safely skip it.
1308 */
1309 goto next;
1310 }
1311
1312 ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
1313 if (ret) {
1314 if (ret != -ENOSPC)
1315 mlog_errno(ret);
1316 goto out;
1317 }
1318
1319next:
1320 cpos += alloc_size;
1321 clusters -= alloc_size;
1322 }
1323
1324 ret = 0;
1325out:
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001326
1327 brelse(di_bh);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001328 return ret;
1329}
1330
Mark Fasheh063c4562007-07-03 13:34:11 -07001331/*
1332 * Truncate a byte range, avoiding pages within partial clusters. This
1333 * preserves those pages for the zeroing code to write to.
1334 */
1335static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start,
1336 u64 byte_len)
1337{
1338 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1339 loff_t start, end;
1340 struct address_space *mapping = inode->i_mapping;
1341
1342 start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start);
1343 end = byte_start + byte_len;
1344 end = end & ~(osb->s_clustersize - 1);
1345
1346 if (start < end) {
1347 unmap_mapping_range(mapping, start, end - start, 0);
1348 truncate_inode_pages_range(mapping, start, end - 1);
1349 }
1350}
1351
1352static int ocfs2_zero_partial_clusters(struct inode *inode,
1353 u64 start, u64 len)
1354{
1355 int ret = 0;
1356 u64 tmpend, end = start + len;
1357 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1358 unsigned int csize = osb->s_clustersize;
1359 handle_t *handle;
1360
1361 /*
1362 * The "start" and "end" values are NOT necessarily part of
1363 * the range whose allocation is being deleted. Rather, this
1364 * is what the user passed in with the request. We must zero
1365 * partial clusters here. There's no need to worry about
1366 * physical allocation - the zeroing code knows to skip holes.
1367 */
1368 mlog(0, "byte start: %llu, end: %llu\n",
1369 (unsigned long long)start, (unsigned long long)end);
1370
1371 /*
1372 * If both edges are on a cluster boundary then there's no
1373 * zeroing required as the region is part of the allocation to
1374 * be truncated.
1375 */
1376 if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0)
1377 goto out;
1378
1379 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001380 if (IS_ERR(handle)) {
1381 ret = PTR_ERR(handle);
Mark Fasheh063c4562007-07-03 13:34:11 -07001382 mlog_errno(ret);
1383 goto out;
1384 }
1385
1386 /*
1387 * We want to get the byte offset of the end of the 1st cluster.
1388 */
1389 tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1));
1390 if (tmpend > end)
1391 tmpend = end;
1392
1393 mlog(0, "1st range: start: %llu, tmpend: %llu\n",
1394 (unsigned long long)start, (unsigned long long)tmpend);
1395
1396 ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend);
1397 if (ret)
1398 mlog_errno(ret);
1399
1400 if (tmpend < end) {
1401 /*
1402 * This may make start and end equal, but the zeroing
1403 * code will skip any work in that case so there's no
1404 * need to catch it up here.
1405 */
1406 start = end & ~(osb->s_clustersize - 1);
1407
1408 mlog(0, "2nd range: start: %llu, end: %llu\n",
1409 (unsigned long long)start, (unsigned long long)end);
1410
1411 ret = ocfs2_zero_range_for_truncate(inode, handle, start, end);
1412 if (ret)
1413 mlog_errno(ret);
1414 }
1415
1416 ocfs2_commit_trans(osb, handle);
1417out:
1418 return ret;
1419}
1420
Tristan Yec1631d42010-05-11 17:54:45 +08001421static int ocfs2_find_rec(struct ocfs2_extent_list *el, u32 pos)
1422{
1423 int i;
1424 struct ocfs2_extent_rec *rec = NULL;
1425
1426 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
1427
1428 rec = &el->l_recs[i];
1429
1430 if (le32_to_cpu(rec->e_cpos) < pos)
1431 break;
1432 }
1433
1434 return i;
1435}
1436
1437/*
1438 * Helper to calculate the punching pos and length in one run, we handle the
1439 * following three cases in order:
1440 *
1441 * - remove the entire record
1442 * - remove a partial record
1443 * - no record needs to be removed (hole-punching completed)
1444*/
1445static void ocfs2_calc_trunc_pos(struct inode *inode,
1446 struct ocfs2_extent_list *el,
1447 struct ocfs2_extent_rec *rec,
1448 u32 trunc_start, u32 *trunc_cpos,
1449 u32 *trunc_len, u32 *trunc_end,
1450 u64 *blkno, int *done)
1451{
1452 int ret = 0;
1453 u32 coff, range;
1454
1455 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
1456
1457 if (le32_to_cpu(rec->e_cpos) >= trunc_start) {
1458 *trunc_cpos = le32_to_cpu(rec->e_cpos);
1459 /*
1460 * Skip holes if any.
1461 */
1462 if (range < *trunc_end)
1463 *trunc_end = range;
1464 *trunc_len = *trunc_end - le32_to_cpu(rec->e_cpos);
1465 *blkno = le64_to_cpu(rec->e_blkno);
1466 *trunc_end = le32_to_cpu(rec->e_cpos);
1467 } else if (range > trunc_start) {
1468 *trunc_cpos = trunc_start;
1469 *trunc_len = *trunc_end - trunc_start;
1470 coff = trunc_start - le32_to_cpu(rec->e_cpos);
1471 *blkno = le64_to_cpu(rec->e_blkno) +
1472 ocfs2_clusters_to_blocks(inode->i_sb, coff);
1473 *trunc_end = trunc_start;
1474 } else {
1475 /*
1476 * It may have two following possibilities:
1477 *
1478 * - last record has been removed
1479 * - trunc_start was within a hole
1480 *
1481 * both two cases mean the completion of hole punching.
1482 */
1483 ret = 1;
1484 }
1485
1486 *done = ret;
1487}
1488
Mark Fasheh063c4562007-07-03 13:34:11 -07001489static int ocfs2_remove_inode_range(struct inode *inode,
1490 struct buffer_head *di_bh, u64 byte_start,
1491 u64 byte_len)
1492{
Tristan Yec1631d42010-05-11 17:54:45 +08001493 int ret = 0, flags = 0, done = 0, i;
1494 u32 trunc_start, trunc_len, trunc_end, trunc_cpos, phys_cpos;
1495 u32 cluster_in_el;
Mark Fasheh063c4562007-07-03 13:34:11 -07001496 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1497 struct ocfs2_cached_dealloc_ctxt dealloc;
Mark Fashehb1967d02007-11-20 11:56:39 -08001498 struct address_space *mapping = inode->i_mapping;
Mark Fashehfecc0112008-11-12 15:16:38 -08001499 struct ocfs2_extent_tree et;
Tristan Yec1631d42010-05-11 17:54:45 +08001500 struct ocfs2_path *path = NULL;
1501 struct ocfs2_extent_list *el = NULL;
1502 struct ocfs2_extent_rec *rec = NULL;
Tristan Yee8aec062010-05-11 17:54:43 +08001503 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
Tristan Yec1631d42010-05-11 17:54:45 +08001504 u64 blkno, refcount_loc = le64_to_cpu(di->i_refcount_loc);
Mark Fasheh063c4562007-07-03 13:34:11 -07001505
Joel Becker5e404e92009-02-13 03:54:22 -08001506 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
Mark Fasheh063c4562007-07-03 13:34:11 -07001507 ocfs2_init_dealloc_ctxt(&dealloc);
1508
1509 if (byte_len == 0)
1510 return 0;
1511
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001512 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1513 ret = ocfs2_truncate_inline(inode, di_bh, byte_start,
Mark Fashehb1967d02007-11-20 11:56:39 -08001514 byte_start + byte_len, 0);
1515 if (ret) {
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001516 mlog_errno(ret);
Mark Fashehb1967d02007-11-20 11:56:39 -08001517 goto out;
1518 }
1519 /*
1520 * There's no need to get fancy with the page cache
1521 * truncate of an inline-data inode. We're talking
1522 * about less than a page here, which will be cached
1523 * in the dinode buffer anyway.
1524 */
1525 unmap_mapping_range(mapping, 0, 0, 0);
1526 truncate_inode_pages(mapping, 0);
1527 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001528 }
1529
Tristan Yee8aec062010-05-11 17:54:43 +08001530 /*
1531 * For reflinks, we may need to CoW 2 clusters which might be
1532 * partially zero'd later, if hole's start and end offset were
1533 * within one cluster(means is not exactly aligned to clustersize).
1534 */
1535
1536 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) {
1537
1538 ret = ocfs2_cow_file_pos(inode, di_bh, byte_start);
1539 if (ret) {
1540 mlog_errno(ret);
1541 goto out;
1542 }
1543
1544 ret = ocfs2_cow_file_pos(inode, di_bh, byte_start + byte_len);
1545 if (ret) {
1546 mlog_errno(ret);
1547 goto out;
1548 }
1549 }
1550
Mark Fasheh063c4562007-07-03 13:34:11 -07001551 trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start);
Tristan Yec1631d42010-05-11 17:54:45 +08001552 trunc_end = (byte_start + byte_len) >> osb->s_clustersize_bits;
1553 cluster_in_el = trunc_end;
Mark Fasheh063c4562007-07-03 13:34:11 -07001554
Tristan Yec1631d42010-05-11 17:54:45 +08001555 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, cend: %u\n",
Mark Fasheh063c4562007-07-03 13:34:11 -07001556 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1557 (unsigned long long)byte_start,
Tristan Yec1631d42010-05-11 17:54:45 +08001558 (unsigned long long)byte_len, trunc_start, trunc_end);
Mark Fasheh063c4562007-07-03 13:34:11 -07001559
1560 ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len);
1561 if (ret) {
1562 mlog_errno(ret);
1563 goto out;
1564 }
1565
Tristan Yec1631d42010-05-11 17:54:45 +08001566 path = ocfs2_new_path_from_et(&et);
1567 if (!path) {
1568 ret = -ENOMEM;
1569 mlog_errno(ret);
1570 goto out;
1571 }
1572
1573 while (trunc_end > trunc_start) {
1574
1575 ret = ocfs2_find_path(INODE_CACHE(inode), path,
1576 cluster_in_el);
Mark Fasheh063c4562007-07-03 13:34:11 -07001577 if (ret) {
1578 mlog_errno(ret);
1579 goto out;
1580 }
1581
Tristan Yec1631d42010-05-11 17:54:45 +08001582 el = path_leaf_el(path);
Mark Fasheh063c4562007-07-03 13:34:11 -07001583
Tristan Yec1631d42010-05-11 17:54:45 +08001584 i = ocfs2_find_rec(el, trunc_end);
1585 /*
1586 * Need to go to previous extent block.
1587 */
1588 if (i < 0) {
1589 if (path->p_tree_depth == 0)
1590 break;
1591
1592 ret = ocfs2_find_cpos_for_left_leaf(inode->i_sb,
1593 path,
1594 &cluster_in_el);
Mark Fasheh063c4562007-07-03 13:34:11 -07001595 if (ret) {
1596 mlog_errno(ret);
1597 goto out;
1598 }
Tristan Yec1631d42010-05-11 17:54:45 +08001599
1600 /*
1601 * We've reached the leftmost extent block,
1602 * it's safe to leave.
1603 */
1604 if (cluster_in_el == 0)
1605 break;
1606
1607 /*
1608 * The 'pos' searched for previous extent block is
1609 * always one cluster less than actual trunc_end.
1610 */
1611 trunc_end = cluster_in_el + 1;
1612
1613 ocfs2_reinit_path(path, 1);
1614
1615 continue;
1616
1617 } else
1618 rec = &el->l_recs[i];
1619
1620 ocfs2_calc_trunc_pos(inode, el, rec, trunc_start, &trunc_cpos,
1621 &trunc_len, &trunc_end, &blkno, &done);
1622 if (done)
1623 break;
1624
1625 flags = rec->e_flags;
1626 phys_cpos = ocfs2_blocks_to_clusters(inode->i_sb, blkno);
1627
1628 ret = ocfs2_remove_btree_range(inode, &et, trunc_cpos,
1629 phys_cpos, trunc_len, flags,
1630 &dealloc, refcount_loc);
1631 if (ret < 0) {
1632 mlog_errno(ret);
1633 goto out;
Mark Fasheh063c4562007-07-03 13:34:11 -07001634 }
1635
Tristan Yec1631d42010-05-11 17:54:45 +08001636 cluster_in_el = trunc_end;
1637
1638 ocfs2_reinit_path(path, 1);
Mark Fasheh063c4562007-07-03 13:34:11 -07001639 }
1640
1641 ocfs2_truncate_cluster_pages(inode, byte_start, byte_len);
1642
1643out:
1644 ocfs2_schedule_truncate_log_flush(osb, 1);
1645 ocfs2_run_deallocs(osb, &dealloc);
1646
1647 return ret;
1648}
1649
Mark Fashehb2580102007-03-09 16:53:21 -08001650/*
1651 * Parts of this function taken from xfs_change_file_space()
1652 */
Mark Fasheh385820a2007-07-19 00:14:38 -07001653static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
1654 loff_t f_pos, unsigned int cmd,
1655 struct ocfs2_space_resv *sr,
1656 int change_size)
Mark Fashehb2580102007-03-09 16:53:21 -08001657{
1658 int ret;
1659 s64 llen;
Mark Fasheh385820a2007-07-19 00:14:38 -07001660 loff_t size;
Mark Fashehb2580102007-03-09 16:53:21 -08001661 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1662 struct buffer_head *di_bh = NULL;
1663 handle_t *handle;
Mark Fasheha00cce32007-07-20 11:28:30 -07001664 unsigned long long max_off = inode->i_sb->s_maxbytes;
Mark Fashehb2580102007-03-09 16:53:21 -08001665
Mark Fashehb2580102007-03-09 16:53:21 -08001666 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
1667 return -EROFS;
1668
1669 mutex_lock(&inode->i_mutex);
1670
1671 /*
1672 * This prevents concurrent writes on other nodes
1673 */
1674 ret = ocfs2_rw_lock(inode, 1);
1675 if (ret) {
1676 mlog_errno(ret);
1677 goto out;
1678 }
1679
Mark Fashehe63aecb62007-10-18 15:30:42 -07001680 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001681 if (ret) {
1682 mlog_errno(ret);
1683 goto out_rw_unlock;
1684 }
1685
1686 if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
1687 ret = -EPERM;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001688 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001689 }
1690
1691 switch (sr->l_whence) {
1692 case 0: /*SEEK_SET*/
1693 break;
1694 case 1: /*SEEK_CUR*/
Mark Fasheh385820a2007-07-19 00:14:38 -07001695 sr->l_start += f_pos;
Mark Fashehb2580102007-03-09 16:53:21 -08001696 break;
1697 case 2: /*SEEK_END*/
1698 sr->l_start += i_size_read(inode);
1699 break;
1700 default:
1701 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001702 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001703 }
1704 sr->l_whence = 0;
1705
1706 llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len;
1707
1708 if (sr->l_start < 0
1709 || sr->l_start > max_off
1710 || (sr->l_start + llen) < 0
1711 || (sr->l_start + llen) > max_off) {
1712 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001713 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001714 }
Mark Fasheh385820a2007-07-19 00:14:38 -07001715 size = sr->l_start + sr->l_len;
Mark Fashehb2580102007-03-09 16:53:21 -08001716
1717 if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) {
1718 if (sr->l_len <= 0) {
1719 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001720 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001721 }
1722 }
1723
Mark Fasheh385820a2007-07-19 00:14:38 -07001724 if (file && should_remove_suid(file->f_path.dentry)) {
Mark Fashehb2580102007-03-09 16:53:21 -08001725 ret = __ocfs2_write_remove_suid(inode, di_bh);
1726 if (ret) {
1727 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001728 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001729 }
1730 }
1731
1732 down_write(&OCFS2_I(inode)->ip_alloc_sem);
1733 switch (cmd) {
1734 case OCFS2_IOC_RESVSP:
1735 case OCFS2_IOC_RESVSP64:
1736 /*
1737 * This takes unsigned offsets, but the signed ones we
1738 * pass have been checked against overflow above.
1739 */
1740 ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start,
1741 sr->l_len);
1742 break;
1743 case OCFS2_IOC_UNRESVSP:
1744 case OCFS2_IOC_UNRESVSP64:
1745 ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start,
1746 sr->l_len);
1747 break;
1748 default:
1749 ret = -EINVAL;
1750 }
1751 up_write(&OCFS2_I(inode)->ip_alloc_sem);
1752 if (ret) {
1753 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001754 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001755 }
1756
1757 /*
1758 * We update c/mtime for these changes
1759 */
1760 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1761 if (IS_ERR(handle)) {
1762 ret = PTR_ERR(handle);
1763 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001764 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001765 }
1766
Mark Fasheh385820a2007-07-19 00:14:38 -07001767 if (change_size && i_size_read(inode) < size)
1768 i_size_write(inode, size);
1769
Mark Fashehb2580102007-03-09 16:53:21 -08001770 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1771 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
1772 if (ret < 0)
1773 mlog_errno(ret);
1774
1775 ocfs2_commit_trans(osb, handle);
1776
Mark Fashehe63aecb62007-10-18 15:30:42 -07001777out_inode_unlock:
Mark Fashehb2580102007-03-09 16:53:21 -08001778 brelse(di_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001779 ocfs2_inode_unlock(inode, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001780out_rw_unlock:
1781 ocfs2_rw_unlock(inode, 1);
1782
Mark Fashehb2580102007-03-09 16:53:21 -08001783out:
Julia Lawallc259ae52008-07-21 09:59:15 +02001784 mutex_unlock(&inode->i_mutex);
Mark Fashehb2580102007-03-09 16:53:21 -08001785 return ret;
1786}
1787
Mark Fasheh385820a2007-07-19 00:14:38 -07001788int ocfs2_change_file_space(struct file *file, unsigned int cmd,
1789 struct ocfs2_space_resv *sr)
1790{
1791 struct inode *inode = file->f_path.dentry->d_inode;
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08001792 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh385820a2007-07-19 00:14:38 -07001793
1794 if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
1795 !ocfs2_writes_unwritten_extents(osb))
1796 return -ENOTTY;
1797 else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) &&
1798 !ocfs2_sparse_alloc(osb))
1799 return -ENOTTY;
1800
1801 if (!S_ISREG(inode->i_mode))
1802 return -EINVAL;
1803
1804 if (!(file->f_mode & FMODE_WRITE))
1805 return -EBADF;
1806
1807 return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0);
1808}
1809
1810static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1811 loff_t len)
1812{
1813 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1814 struct ocfs2_space_resv sr;
1815 int change_size = 1;
1816
1817 if (!ocfs2_writes_unwritten_extents(osb))
1818 return -EOPNOTSUPP;
1819
1820 if (S_ISDIR(inode->i_mode))
1821 return -ENODEV;
1822
1823 if (mode & FALLOC_FL_KEEP_SIZE)
1824 change_size = 0;
1825
1826 sr.l_whence = 0;
1827 sr.l_start = (s64)offset;
1828 sr.l_len = (s64)len;
1829
1830 return __ocfs2_change_file_space(NULL, inode, offset,
1831 OCFS2_IOC_RESVSP64, &sr, change_size);
1832}
1833
Tao Ma293b2f72009-08-25 08:02:48 +08001834int ocfs2_check_range_for_refcount(struct inode *inode, loff_t pos,
1835 size_t count)
1836{
1837 int ret = 0;
1838 unsigned int extent_flags;
1839 u32 cpos, clusters, extent_len, phys_cpos;
1840 struct super_block *sb = inode->i_sb;
1841
1842 if (!ocfs2_refcount_tree(OCFS2_SB(inode->i_sb)) ||
Tao Ma2f48d592009-10-15 11:10:49 +08001843 !(OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) ||
1844 OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
Tao Ma293b2f72009-08-25 08:02:48 +08001845 return 0;
1846
1847 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1848 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1849
1850 while (clusters) {
1851 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1852 &extent_flags);
1853 if (ret < 0) {
1854 mlog_errno(ret);
1855 goto out;
1856 }
1857
1858 if (phys_cpos && (extent_flags & OCFS2_EXT_REFCOUNTED)) {
1859 ret = 1;
1860 break;
1861 }
1862
1863 if (extent_len > clusters)
1864 extent_len = clusters;
1865
1866 clusters -= extent_len;
1867 cpos += extent_len;
1868 }
1869out:
1870 return ret;
1871}
1872
1873static int ocfs2_prepare_inode_for_refcount(struct inode *inode,
1874 loff_t pos, size_t count,
1875 int *meta_level)
1876{
1877 int ret;
1878 struct buffer_head *di_bh = NULL;
1879 u32 cpos = pos >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1880 u32 clusters =
1881 ocfs2_clusters_for_bytes(inode->i_sb, pos + count) - cpos;
1882
1883 ret = ocfs2_inode_lock(inode, &di_bh, 1);
1884 if (ret) {
1885 mlog_errno(ret);
1886 goto out;
1887 }
1888
1889 *meta_level = 1;
1890
Tao Ma37f8a2b2009-08-26 09:47:28 +08001891 ret = ocfs2_refcount_cow(inode, di_bh, cpos, clusters, UINT_MAX);
Tao Ma293b2f72009-08-25 08:02:48 +08001892 if (ret)
1893 mlog_errno(ret);
1894out:
1895 brelse(di_bh);
1896 return ret;
1897}
1898
Tiger Yang8659ac22006-10-17 18:29:52 -07001899static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
1900 loff_t *ppos,
1901 size_t count,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001902 int appending,
Tao Ma86470e92009-12-03 21:55:05 +08001903 int *direct_io,
1904 int *has_refcount)
Mark Fashehccd979b2005-12-15 14:31:24 -08001905{
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001906 int ret = 0, meta_level = 0;
Tiger Yang8659ac22006-10-17 18:29:52 -07001907 struct inode *inode = dentry->d_inode;
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001908 loff_t saved_pos, end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001909
Sunil Mushran2bd63212010-01-25 16:57:38 -08001910 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001911 * We start with a read level meta lock and only jump to an ex
1912 * if we need to make modifications here.
Mark Fashehccd979b2005-12-15 14:31:24 -08001913 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001914 for(;;) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001915 ret = ocfs2_inode_lock(inode, NULL, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001916 if (ret < 0) {
1917 meta_level = -1;
1918 mlog_errno(ret);
1919 goto out;
1920 }
1921
1922 /* Clear suid / sgid if necessary. We do this here
1923 * instead of later in the write path because
1924 * remove_suid() calls ->setattr without any hint that
1925 * we may have already done our cluster locking. Since
1926 * ocfs2_setattr() *must* take cluster locks to
1927 * proceeed, this will lead us to recursively lock the
1928 * inode. There's also the dinode i_size state which
1929 * can be lost via setattr during extending writes (we
1930 * set inode->i_size at the end of a write. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001931 if (should_remove_suid(dentry)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001932 if (meta_level == 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001933 ocfs2_inode_unlock(inode, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001934 meta_level = 1;
1935 continue;
1936 }
1937
1938 ret = ocfs2_write_remove_suid(inode);
1939 if (ret < 0) {
1940 mlog_errno(ret);
Tiger Yang8659ac22006-10-17 18:29:52 -07001941 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08001942 }
1943 }
1944
1945 /* work on a copy of ppos until we're sure that we won't have
1946 * to recalculate it due to relocking. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001947 if (appending) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001948 saved_pos = i_size_read(inode);
1949 mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
1950 } else {
Tiger Yang8659ac22006-10-17 18:29:52 -07001951 saved_pos = *ppos;
Mark Fashehccd979b2005-12-15 14:31:24 -08001952 }
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001953
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001954 end = saved_pos + count;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001955
Tao Ma293b2f72009-08-25 08:02:48 +08001956 ret = ocfs2_check_range_for_refcount(inode, saved_pos, count);
1957 if (ret == 1) {
1958 ocfs2_inode_unlock(inode, meta_level);
1959 meta_level = -1;
1960
1961 ret = ocfs2_prepare_inode_for_refcount(inode,
1962 saved_pos,
1963 count,
1964 &meta_level);
Tao Ma86470e92009-12-03 21:55:05 +08001965 if (has_refcount)
1966 *has_refcount = 1;
Wengang Wang96a1cc72010-02-09 14:57:45 +08001967 if (direct_io)
1968 *direct_io = 0;
Tao Ma293b2f72009-08-25 08:02:48 +08001969 }
1970
1971 if (ret < 0) {
1972 mlog_errno(ret);
1973 goto out_unlock;
1974 }
1975
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001976 /*
1977 * Skip the O_DIRECT checks if we don't need
1978 * them.
1979 */
1980 if (!direct_io || !(*direct_io))
1981 break;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001982
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001983 /*
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001984 * There's no sane way to do direct writes to an inode
1985 * with inline data.
1986 */
1987 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1988 *direct_io = 0;
1989 break;
1990 }
1991
1992 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001993 * Allowing concurrent direct writes means
1994 * i_size changes wouldn't be synchronized, so
1995 * one node could wind up truncating another
1996 * nodes writes.
1997 */
1998 if (end > i_size_read(inode)) {
1999 *direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08002000 break;
2001 }
2002
Mark Fasheh3a0782d2007-01-17 12:53:31 -08002003 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07002004 * We don't fill holes during direct io, so
2005 * check for them here. If any are found, the
2006 * caller will have to retake some cluster
2007 * locks and initiate the io as buffered.
Mark Fasheh3a0782d2007-01-17 12:53:31 -08002008 */
Mark Fasheh65ed39d2007-08-28 17:13:23 -07002009 ret = ocfs2_check_range_for_holes(inode, saved_pos, count);
2010 if (ret == 1) {
2011 *direct_io = 0;
2012 ret = 0;
2013 } else if (ret < 0)
2014 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -08002015 break;
2016 }
2017
Tiger Yang8659ac22006-10-17 18:29:52 -07002018 if (appending)
2019 *ppos = saved_pos;
2020
2021out_unlock:
Tao Ma293b2f72009-08-25 08:02:48 +08002022 if (meta_level >= 0)
2023 ocfs2_inode_unlock(inode, meta_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002024
2025out:
2026 return ret;
2027}
2028
2029static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
2030 const struct iovec *iov,
2031 unsigned long nr_segs,
2032 loff_t pos)
2033{
Mark Fasheh9517bac2007-02-09 20:24:12 -08002034 int ret, direct_io, appending, rw_level, have_alloc_sem = 0;
Tao Ma86470e92009-12-03 21:55:05 +08002035 int can_do_direct, has_refcount = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08002036 ssize_t written = 0;
2037 size_t ocount; /* original count */
2038 size_t count; /* after file limit checks */
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002039 loff_t old_size, *ppos = &iocb->ki_pos;
2040 u32 old_clusters;
Mark Fasheh9517bac2007-02-09 20:24:12 -08002041 struct file *file = iocb->ki_filp;
2042 struct inode *inode = file->f_path.dentry->d_inode;
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002043 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang8659ac22006-10-17 18:29:52 -07002044
Mark Fasheh9517bac2007-02-09 20:24:12 -08002045 mlog_entry("(0x%p, %u, '%.*s')\n", file,
Tiger Yang8659ac22006-10-17 18:29:52 -07002046 (unsigned int)nr_segs,
Mark Fasheh9517bac2007-02-09 20:24:12 -08002047 file->f_path.dentry->d_name.len,
2048 file->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002049
Tiger Yang8659ac22006-10-17 18:29:52 -07002050 if (iocb->ki_left == 0)
2051 return 0;
2052
Mark Fasheh9517bac2007-02-09 20:24:12 -08002053 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
2054
2055 appending = file->f_flags & O_APPEND ? 1 : 0;
2056 direct_io = file->f_flags & O_DIRECT ? 1 : 0;
2057
Tiger Yang8659ac22006-10-17 18:29:52 -07002058 mutex_lock(&inode->i_mutex);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002059
2060relock:
Tiger Yang8659ac22006-10-17 18:29:52 -07002061 /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
Mark Fasheh9517bac2007-02-09 20:24:12 -08002062 if (direct_io) {
Tiger Yang8659ac22006-10-17 18:29:52 -07002063 down_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002064 have_alloc_sem = 1;
Tiger Yang8659ac22006-10-17 18:29:52 -07002065 }
2066
2067 /* concurrent O_DIRECT writes are allowed */
Mark Fasheh9517bac2007-02-09 20:24:12 -08002068 rw_level = !direct_io;
Tiger Yang8659ac22006-10-17 18:29:52 -07002069 ret = ocfs2_rw_lock(inode, rw_level);
2070 if (ret < 0) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08002071 mlog_errno(ret);
2072 goto out_sems;
2073 }
2074
2075 can_do_direct = direct_io;
2076 ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
2077 iocb->ki_left, appending,
Tao Ma86470e92009-12-03 21:55:05 +08002078 &can_do_direct, &has_refcount);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002079 if (ret < 0) {
Tiger Yang8659ac22006-10-17 18:29:52 -07002080 mlog_errno(ret);
2081 goto out;
2082 }
2083
Mark Fasheh9517bac2007-02-09 20:24:12 -08002084 /*
2085 * We can't complete the direct I/O as requested, fall back to
2086 * buffered I/O.
2087 */
2088 if (direct_io && !can_do_direct) {
2089 ocfs2_rw_unlock(inode, rw_level);
2090 up_read(&inode->i_alloc_sem);
2091
2092 have_alloc_sem = 0;
2093 rw_level = -1;
2094
2095 direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08002096 goto relock;
Tiger Yang8659ac22006-10-17 18:29:52 -07002097 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002098
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002099 /*
2100 * To later detect whether a journal commit for sync writes is
2101 * necessary, we sample i_size, and cluster count here.
2102 */
2103 old_size = i_size_read(inode);
2104 old_clusters = OCFS2_I(inode)->ip_clusters;
2105
Mark Fashehccd979b2005-12-15 14:31:24 -08002106 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07002107 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08002108
Mark Fasheh9517bac2007-02-09 20:24:12 -08002109 if (direct_io) {
Nick Pigginb6af1bc2007-10-16 01:25:24 -07002110 ret = generic_segment_checks(iov, &nr_segs, &ocount,
2111 VERIFY_READ);
2112 if (ret)
2113 goto out_dio;
2114
Goldwyn Rodriguescefcb802009-07-11 10:57:27 -05002115 count = ocount;
Nick Pigginb6af1bc2007-10-16 01:25:24 -07002116 ret = generic_write_checks(file, ppos, &count,
2117 S_ISBLK(inode->i_mode));
2118 if (ret)
2119 goto out_dio;
2120
Mark Fasheh9517bac2007-02-09 20:24:12 -08002121 written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
2122 ppos, count, ocount);
2123 if (written < 0) {
Dmitri Monakhovc4354002008-10-27 13:01:49 -07002124 /*
2125 * direct write may have instantiated a few
2126 * blocks outside i_size. Trim these off again.
2127 * Don't need i_size_read because we hold i_mutex.
2128 */
2129 if (*ppos + count > inode->i_size)
2130 vmtruncate(inode, inode->i_size);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002131 ret = written;
2132 goto out_dio;
2133 }
2134 } else {
Jan Kara918941a2009-08-17 18:50:08 +02002135 written = __generic_file_aio_write(iocb, iov, nr_segs, ppos);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002136 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002137
Mark Fasheh9517bac2007-02-09 20:24:12 -08002138out_dio:
Mark Fashehccd979b2005-12-15 14:31:24 -08002139 /* buffered aio wouldn't have proper lock coverage today */
Mark Fasheh9517bac2007-02-09 20:24:12 -08002140 BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
Mark Fashehccd979b2005-12-15 14:31:24 -08002141
Tao Ma60c48672010-02-03 09:56:04 +08002142 if (((file->f_flags & O_DSYNC) && !direct_io) || IS_SYNC(inode) ||
2143 ((file->f_flags & O_DIRECT) && has_refcount)) {
Jan Kara918941a2009-08-17 18:50:08 +02002144 ret = filemap_fdatawrite_range(file->f_mapping, pos,
2145 pos + count - 1);
2146 if (ret < 0)
2147 written = ret;
2148
2149 if (!ret && (old_size != i_size_read(inode) ||
Tao Ma86470e92009-12-03 21:55:05 +08002150 old_clusters != OCFS2_I(inode)->ip_clusters ||
2151 has_refcount)) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07002152 ret = jbd2_journal_force_commit(osb->journal->j_journal);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002153 if (ret < 0)
2154 written = ret;
2155 }
Jan Kara918941a2009-08-17 18:50:08 +02002156
2157 if (!ret)
2158 ret = filemap_fdatawait_range(file->f_mapping, pos,
2159 pos + count - 1);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07002160 }
2161
Sunil Mushran2bd63212010-01-25 16:57:38 -08002162 /*
Mark Fashehccd979b2005-12-15 14:31:24 -08002163 * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
2164 * function pointer which is called when o_direct io completes so that
2165 * it can unlock our rw lock. (it's the clustered equivalent of
2166 * i_alloc_sem; protects truncate from racing with pending ios).
2167 * Unfortunately there are error cases which call end_io and others
2168 * that don't. so we don't have to unlock the rw_lock if either an
2169 * async dio is going to do it in the future or an end_io after an
2170 * error has already done it.
2171 */
Coly Li66b116c2010-02-25 14:57:13 +08002172 if ((ret == -EIOCBQUEUED) || (!ocfs2_iocb_is_rw_locked(iocb))) {
Mark Fashehccd979b2005-12-15 14:31:24 -08002173 rw_level = -1;
2174 have_alloc_sem = 0;
2175 }
2176
2177out:
Mark Fasheh9517bac2007-02-09 20:24:12 -08002178 if (rw_level != -1)
2179 ocfs2_rw_unlock(inode, rw_level);
2180
2181out_sems:
Mark Fashehccd979b2005-12-15 14:31:24 -08002182 if (have_alloc_sem)
2183 up_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08002184
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002185 mutex_unlock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08002186
Wengang Wang812e7a62009-07-10 13:26:04 +08002187 if (written)
2188 ret = written;
Mark Fashehccd979b2005-12-15 14:31:24 -08002189 mlog_exit(ret);
Wengang Wang812e7a62009-07-10 13:26:04 +08002190 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08002191}
2192
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002193static int ocfs2_splice_to_file(struct pipe_inode_info *pipe,
2194 struct file *out,
2195 struct splice_desc *sd)
2196{
2197 int ret;
2198
2199 ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, &sd->pos,
Tao Ma86470e92009-12-03 21:55:05 +08002200 sd->total_len, 0, NULL, NULL);
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002201 if (ret < 0) {
2202 mlog_errno(ret);
2203 return ret;
2204 }
2205
2206 return splice_from_pipe_feed(pipe, sd, pipe_to_file);
2207}
2208
Tiger Yang8659ac22006-10-17 18:29:52 -07002209static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
2210 struct file *out,
2211 loff_t *ppos,
2212 size_t len,
2213 unsigned int flags)
2214{
2215 int ret;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002216 struct address_space *mapping = out->f_mapping;
2217 struct inode *inode = mapping->host;
2218 struct splice_desc sd = {
2219 .total_len = len,
2220 .flags = flags,
2221 .pos = *ppos,
2222 .u.file = out,
2223 };
Tiger Yang8659ac22006-10-17 18:29:52 -07002224
2225 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
2226 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08002227 out->f_path.dentry->d_name.len,
2228 out->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002229
Miklos Szeredi7bfac9e2009-04-06 17:41:00 +02002230 if (pipe->inode)
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002231 mutex_lock_nested(&pipe->inode->i_mutex, I_MUTEX_PARENT);
2232
2233 splice_from_pipe_begin(&sd);
2234 do {
2235 ret = splice_from_pipe_next(pipe, &sd);
2236 if (ret <= 0)
2237 break;
2238
2239 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
2240 ret = ocfs2_rw_lock(inode, 1);
2241 if (ret < 0)
2242 mlog_errno(ret);
2243 else {
2244 ret = ocfs2_splice_to_file(pipe, out, &sd);
2245 ocfs2_rw_unlock(inode, 1);
2246 }
2247 mutex_unlock(&inode->i_mutex);
2248 } while (ret > 0);
2249 splice_from_pipe_end(pipe, &sd);
2250
Miklos Szeredi7bfac9e2009-04-06 17:41:00 +02002251 if (pipe->inode)
2252 mutex_unlock(&pipe->inode->i_mutex);
Tiger Yang8659ac22006-10-17 18:29:52 -07002253
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002254 if (sd.num_spliced)
2255 ret = sd.num_spliced;
2256
2257 if (ret > 0) {
2258 unsigned long nr_pages;
Jan Karad23c9372009-08-18 18:24:31 +02002259 int err;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002260
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002261 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
2262
Jan Karad23c9372009-08-18 18:24:31 +02002263 err = generic_write_sync(out, *ppos, ret);
2264 if (err)
2265 ret = err;
2266 else
2267 *ppos += ret;
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002268
Miklos Szeredi328eaab2009-04-14 19:48:39 +02002269 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
2270 }
Tiger Yang8659ac22006-10-17 18:29:52 -07002271
2272 mlog_exit(ret);
2273 return ret;
2274}
2275
2276static ssize_t ocfs2_file_splice_read(struct file *in,
2277 loff_t *ppos,
2278 struct pipe_inode_info *pipe,
2279 size_t len,
2280 unsigned int flags)
2281{
Tao Ma1962f392009-06-19 15:36:52 +08002282 int ret = 0, lock_level = 0;
Josef Sipekd28c9172006-12-08 02:37:25 -08002283 struct inode *inode = in->f_path.dentry->d_inode;
Tiger Yang8659ac22006-10-17 18:29:52 -07002284
2285 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
2286 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08002287 in->f_path.dentry->d_name.len,
2288 in->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07002289
2290 /*
2291 * See the comment in ocfs2_file_aio_read()
2292 */
Tao Ma1962f392009-06-19 15:36:52 +08002293 ret = ocfs2_inode_lock_atime(inode, in->f_vfsmnt, &lock_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002294 if (ret < 0) {
2295 mlog_errno(ret);
2296 goto bail;
2297 }
Tao Ma1962f392009-06-19 15:36:52 +08002298 ocfs2_inode_unlock(inode, lock_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07002299
2300 ret = generic_file_splice_read(in, ppos, pipe, len, flags);
2301
2302bail:
2303 mlog_exit(ret);
2304 return ret;
2305}
2306
Mark Fashehccd979b2005-12-15 14:31:24 -08002307static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -07002308 const struct iovec *iov,
2309 unsigned long nr_segs,
Mark Fashehccd979b2005-12-15 14:31:24 -08002310 loff_t pos)
2311{
Tiger Yang25899de2006-11-15 15:49:02 +08002312 int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002313 struct file *filp = iocb->ki_filp;
Josef Sipekd28c9172006-12-08 02:37:25 -08002314 struct inode *inode = filp->f_path.dentry->d_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08002315
Badari Pulavarty027445c2006-09-30 23:28:46 -07002316 mlog_entry("(0x%p, %u, '%.*s')\n", filp,
2317 (unsigned int)nr_segs,
Josef Sipekd28c9172006-12-08 02:37:25 -08002318 filp->f_path.dentry->d_name.len,
2319 filp->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08002320
2321 if (!inode) {
2322 ret = -EINVAL;
2323 mlog_errno(ret);
2324 goto bail;
2325 }
2326
Sunil Mushran2bd63212010-01-25 16:57:38 -08002327 /*
Mark Fashehccd979b2005-12-15 14:31:24 -08002328 * buffered reads protect themselves in ->readpage(). O_DIRECT reads
2329 * need locks to protect pending reads from racing with truncate.
2330 */
2331 if (filp->f_flags & O_DIRECT) {
2332 down_read(&inode->i_alloc_sem);
2333 have_alloc_sem = 1;
2334
2335 ret = ocfs2_rw_lock(inode, 0);
2336 if (ret < 0) {
2337 mlog_errno(ret);
2338 goto bail;
2339 }
2340 rw_level = 0;
2341 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07002342 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08002343 }
2344
Mark Fashehc4374f82006-05-05 19:04:35 -07002345 /*
2346 * We're fine letting folks race truncates and extending
2347 * writes with read across the cluster, just like they can
2348 * locally. Hence no rw_lock during read.
Sunil Mushran2bd63212010-01-25 16:57:38 -08002349 *
Mark Fashehc4374f82006-05-05 19:04:35 -07002350 * Take and drop the meta data lock to update inode fields
2351 * like i_size. This allows the checks down below
Sunil Mushran2bd63212010-01-25 16:57:38 -08002352 * generic_file_aio_read() a chance of actually working.
Mark Fashehc4374f82006-05-05 19:04:35 -07002353 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07002354 ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002355 if (ret < 0) {
2356 mlog_errno(ret);
2357 goto bail;
2358 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07002359 ocfs2_inode_unlock(inode, lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002360
Badari Pulavarty027445c2006-09-30 23:28:46 -07002361 ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
Mark Fashehccd979b2005-12-15 14:31:24 -08002362 if (ret == -EINVAL)
Sunil Mushran56753bd2008-06-09 11:24:41 -07002363 mlog(0, "generic_file_aio_read returned -EINVAL\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08002364
2365 /* buffered aio wouldn't have proper lock coverage today */
2366 BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
2367
2368 /* see ocfs2_file_aio_write */
2369 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
2370 rw_level = -1;
2371 have_alloc_sem = 0;
2372 }
2373
2374bail:
2375 if (have_alloc_sem)
2376 up_read(&inode->i_alloc_sem);
Sunil Mushran2bd63212010-01-25 16:57:38 -08002377 if (rw_level != -1)
Mark Fashehccd979b2005-12-15 14:31:24 -08002378 ocfs2_rw_unlock(inode, rw_level);
2379 mlog_exit(ret);
2380
2381 return ret;
2382}
2383
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002384const struct inode_operations ocfs2_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002385 .setattr = ocfs2_setattr,
2386 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002387 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002388 .setxattr = generic_setxattr,
2389 .getxattr = generic_getxattr,
2390 .listxattr = ocfs2_listxattr,
2391 .removexattr = generic_removexattr,
Mark Fasheh385820a2007-07-19 00:14:38 -07002392 .fallocate = ocfs2_fallocate,
Mark Fasheh00dc4172008-10-03 17:32:11 -04002393 .fiemap = ocfs2_fiemap,
Mark Fashehccd979b2005-12-15 14:31:24 -08002394};
2395
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002396const struct inode_operations ocfs2_special_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002397 .setattr = ocfs2_setattr,
2398 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002399 .permission = ocfs2_permission,
Mark Fashehccd979b2005-12-15 14:31:24 -08002400};
2401
Mark Fasheh53da4932008-07-21 14:29:16 -07002402/*
2403 * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
2404 * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
2405 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002406const struct file_operations ocfs2_fops = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002407 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002408 .read = do_sync_read,
2409 .write = do_sync_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002410 .mmap = ocfs2_mmap,
2411 .fsync = ocfs2_sync_file,
2412 .release = ocfs2_file_release,
2413 .open = ocfs2_file_open,
2414 .aio_read = ocfs2_file_aio_read,
2415 .aio_write = ocfs2_file_aio_write,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002416 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002417#ifdef CONFIG_COMPAT
2418 .compat_ioctl = ocfs2_compat_ioctl,
2419#endif
Mark Fasheh53da4932008-07-21 14:29:16 -07002420 .lock = ocfs2_lock,
2421 .flock = ocfs2_flock,
2422 .splice_read = ocfs2_file_splice_read,
2423 .splice_write = ocfs2_file_splice_write,
2424};
2425
2426const struct file_operations ocfs2_dops = {
2427 .llseek = generic_file_llseek,
2428 .read = generic_read_dir,
2429 .readdir = ocfs2_readdir,
2430 .fsync = ocfs2_sync_file,
2431 .release = ocfs2_dir_release,
2432 .open = ocfs2_dir_open,
2433 .unlocked_ioctl = ocfs2_ioctl,
2434#ifdef CONFIG_COMPAT
2435 .compat_ioctl = ocfs2_compat_ioctl,
2436#endif
2437 .lock = ocfs2_lock,
2438 .flock = ocfs2_flock,
2439};
2440
2441/*
2442 * POSIX-lockless variants of our file_operations.
2443 *
2444 * These will be used if the underlying cluster stack does not support
2445 * posix file locking, if the user passes the "localflocks" mount
2446 * option, or if we have a local-only fs.
2447 *
2448 * ocfs2_flock is in here because all stacks handle UNIX file locks,
2449 * so we still want it in the case of no stack support for
2450 * plocks. Internally, it will do the right thing when asked to ignore
2451 * the cluster.
2452 */
2453const struct file_operations ocfs2_fops_no_plocks = {
2454 .llseek = generic_file_llseek,
2455 .read = do_sync_read,
2456 .write = do_sync_write,
2457 .mmap = ocfs2_mmap,
2458 .fsync = ocfs2_sync_file,
2459 .release = ocfs2_file_release,
2460 .open = ocfs2_file_open,
2461 .aio_read = ocfs2_file_aio_read,
2462 .aio_write = ocfs2_file_aio_write,
2463 .unlocked_ioctl = ocfs2_ioctl,
2464#ifdef CONFIG_COMPAT
2465 .compat_ioctl = ocfs2_compat_ioctl,
2466#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002467 .flock = ocfs2_flock,
Tiger Yang8659ac22006-10-17 18:29:52 -07002468 .splice_read = ocfs2_file_splice_read,
2469 .splice_write = ocfs2_file_splice_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002470};
2471
Mark Fasheh53da4932008-07-21 14:29:16 -07002472const struct file_operations ocfs2_dops_no_plocks = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002473 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002474 .read = generic_read_dir,
2475 .readdir = ocfs2_readdir,
2476 .fsync = ocfs2_sync_file,
Mark Fasheh53fc6222007-12-20 16:49:04 -08002477 .release = ocfs2_dir_release,
2478 .open = ocfs2_dir_open,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002479 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002480#ifdef CONFIG_COMPAT
2481 .compat_ioctl = ocfs2_compat_ioctl,
2482#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002483 .flock = ocfs2_flock,
Mark Fashehccd979b2005-12-15 14:31:24 -08002484};