blob: 360549161e2018308edc4152a457614d10ec924c [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>
Mark Fashehccd979b2005-12-15 14:31:24 -080038
39#define MLOG_MASK_PREFIX ML_INODE
40#include <cluster/masklog.h>
41
42#include "ocfs2.h"
43
44#include "alloc.h"
45#include "aops.h"
46#include "dir.h"
47#include "dlmglue.h"
48#include "extent_map.h"
49#include "file.h"
50#include "sysfile.h"
51#include "inode.h"
Herbert Poetzlca4d1472006-07-03 17:27:12 -070052#include "ioctl.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080053#include "journal.h"
Mark Fasheh53fc6222007-12-20 16:49:04 -080054#include "locks.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080055#include "mmap.h"
56#include "suballoc.h"
57#include "super.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080058#include "xattr.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080059
60#include "buffer_head_io.h"
61
62static int ocfs2_sync_inode(struct inode *inode)
63{
64 filemap_fdatawrite(inode->i_mapping);
65 return sync_mapping_buffers(inode->i_mapping);
66}
67
Mark Fasheh53fc6222007-12-20 16:49:04 -080068static int ocfs2_init_file_private(struct inode *inode, struct file *file)
69{
70 struct ocfs2_file_private *fp;
71
72 fp = kzalloc(sizeof(struct ocfs2_file_private), GFP_KERNEL);
73 if (!fp)
74 return -ENOMEM;
75
76 fp->fp_file = file;
77 mutex_init(&fp->fp_mutex);
78 ocfs2_file_lock_res_init(&fp->fp_flock, fp);
79 file->private_data = fp;
80
81 return 0;
82}
83
84static void ocfs2_free_file_private(struct inode *inode, struct file *file)
85{
86 struct ocfs2_file_private *fp = file->private_data;
87 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
88
89 if (fp) {
90 ocfs2_simple_drop_lockres(osb, &fp->fp_flock);
91 ocfs2_lock_res_free(&fp->fp_flock);
92 kfree(fp);
93 file->private_data = NULL;
94 }
95}
96
Mark Fashehccd979b2005-12-15 14:31:24 -080097static int ocfs2_file_open(struct inode *inode, struct file *file)
98{
99 int status;
100 int mode = file->f_flags;
101 struct ocfs2_inode_info *oi = OCFS2_I(inode);
102
103 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
Josef Sipekd28c9172006-12-08 02:37:25 -0800104 file->f_path.dentry->d_name.len, file->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -0800105
106 spin_lock(&oi->ip_lock);
107
108 /* Check that the inode hasn't been wiped from disk by another
109 * node. If it hasn't then we're safe as long as we hold the
110 * spin lock until our increment of open count. */
111 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
112 spin_unlock(&oi->ip_lock);
113
114 status = -ENOENT;
115 goto leave;
116 }
117
118 if (mode & O_DIRECT)
119 oi->ip_flags |= OCFS2_INODE_OPEN_DIRECT;
120
121 oi->ip_open_count++;
122 spin_unlock(&oi->ip_lock);
Mark Fasheh53fc6222007-12-20 16:49:04 -0800123
124 status = ocfs2_init_file_private(inode, file);
125 if (status) {
126 /*
127 * We want to set open count back if we're failing the
128 * open.
129 */
130 spin_lock(&oi->ip_lock);
131 oi->ip_open_count--;
132 spin_unlock(&oi->ip_lock);
133 }
134
Mark Fashehccd979b2005-12-15 14:31:24 -0800135leave:
136 mlog_exit(status);
137 return status;
138}
139
140static int ocfs2_file_release(struct inode *inode, struct file *file)
141{
142 struct ocfs2_inode_info *oi = OCFS2_I(inode);
143
144 mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
Josef Sipekd28c9172006-12-08 02:37:25 -0800145 file->f_path.dentry->d_name.len,
146 file->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -0800147
148 spin_lock(&oi->ip_lock);
149 if (!--oi->ip_open_count)
150 oi->ip_flags &= ~OCFS2_INODE_OPEN_DIRECT;
151 spin_unlock(&oi->ip_lock);
152
Mark Fasheh53fc6222007-12-20 16:49:04 -0800153 ocfs2_free_file_private(inode, file);
154
Mark Fashehccd979b2005-12-15 14:31:24 -0800155 mlog_exit(0);
156
157 return 0;
158}
159
Mark Fasheh53fc6222007-12-20 16:49:04 -0800160static int ocfs2_dir_open(struct inode *inode, struct file *file)
161{
162 return ocfs2_init_file_private(inode, file);
163}
164
165static int ocfs2_dir_release(struct inode *inode, struct file *file)
166{
167 ocfs2_free_file_private(inode, file);
168 return 0;
169}
170
Mark Fashehccd979b2005-12-15 14:31:24 -0800171static int ocfs2_sync_file(struct file *file,
172 struct dentry *dentry,
173 int datasync)
174{
175 int err = 0;
176 journal_t *journal;
177 struct inode *inode = dentry->d_inode;
178 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
179
180 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync,
181 dentry->d_name.len, dentry->d_name.name);
182
183 err = ocfs2_sync_inode(dentry->d_inode);
184 if (err)
185 goto bail;
186
187 journal = osb->journal->j_journal;
Joel Becker2b4e30f2008-09-03 20:03:41 -0700188 err = jbd2_journal_force_commit(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -0800189
190bail:
191 mlog_exit(err);
192
193 return (err < 0) ? -EIO : 0;
194}
195
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800196int ocfs2_should_update_atime(struct inode *inode,
197 struct vfsmount *vfsmnt)
198{
199 struct timespec now;
200 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
201
202 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
203 return 0;
204
205 if ((inode->i_flags & S_NOATIME) ||
206 ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode)))
207 return 0;
208
Mark Fasheh6c2aad02006-12-19 15:25:52 -0800209 /*
210 * We can be called with no vfsmnt structure - NFSD will
211 * sometimes do this.
212 *
213 * Note that our action here is different than touch_atime() -
214 * if we can't tell whether this is a noatime mount, then we
215 * don't know whether to trust the value of s_atime_quantum.
216 */
217 if (vfsmnt == NULL)
218 return 0;
219
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800220 if ((vfsmnt->mnt_flags & MNT_NOATIME) ||
221 ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
222 return 0;
223
Mark Fasheh7e913c52006-12-13 00:34:35 -0800224 if (vfsmnt->mnt_flags & MNT_RELATIME) {
225 if ((timespec_compare(&inode->i_atime, &inode->i_mtime) <= 0) ||
226 (timespec_compare(&inode->i_atime, &inode->i_ctime) <= 0))
227 return 1;
228
229 return 0;
230 }
231
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800232 now = CURRENT_TIME;
233 if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum))
234 return 0;
235 else
236 return 1;
237}
238
239int ocfs2_update_inode_atime(struct inode *inode,
240 struct buffer_head *bh)
241{
242 int ret;
243 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
244 handle_t *handle;
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700245 struct ocfs2_dinode *di = (struct ocfs2_dinode *) bh->b_data;
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800246
247 mlog_entry_void();
248
249 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200250 if (IS_ERR(handle)) {
251 ret = PTR_ERR(handle);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800252 mlog_errno(ret);
253 goto out;
254 }
255
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700256 ret = ocfs2_journal_access(handle, inode, bh,
257 OCFS2_JOURNAL_ACCESS_WRITE);
258 if (ret) {
259 mlog_errno(ret);
260 goto out_commit;
261 }
262
263 /*
264 * Don't use ocfs2_mark_inode_dirty() here as we don't always
265 * have i_mutex to guard against concurrent changes to other
266 * inode fields.
267 */
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800268 inode->i_atime = CURRENT_TIME;
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700269 di->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
270 di->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
271
272 ret = ocfs2_journal_dirty(handle, bh);
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800273 if (ret < 0)
274 mlog_errno(ret);
275
Mark Fashehc11e9fa2007-07-20 11:24:53 -0700276out_commit:
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800277 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
278out:
279 mlog_exit(ret);
280 return ret;
281}
282
Adrian Bunk6cb129f2007-04-26 00:29:35 -0700283static int ocfs2_set_inode_size(handle_t *handle,
284 struct inode *inode,
285 struct buffer_head *fe_bh,
286 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800287{
288 int status;
289
290 mlog_entry_void();
291 i_size_write(inode, new_i_size);
Mark Fasheh8110b072007-03-22 16:53:23 -0700292 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800293 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
294
295 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
296 if (status < 0) {
297 mlog_errno(status);
298 goto bail;
299 }
300
301bail:
302 mlog_exit(status);
303 return status;
304}
305
306static int ocfs2_simple_size_update(struct inode *inode,
307 struct buffer_head *di_bh,
308 u64 new_i_size)
309{
310 int ret;
311 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700312 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800313
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700314 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +0200315 if (IS_ERR(handle)) {
316 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800317 mlog_errno(ret);
318 goto out;
319 }
320
321 ret = ocfs2_set_inode_size(handle, inode, di_bh,
322 new_i_size);
323 if (ret < 0)
324 mlog_errno(ret);
325
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700326 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800327out:
328 return ret;
329}
330
331static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
332 struct inode *inode,
333 struct buffer_head *fe_bh,
334 u64 new_i_size)
335{
336 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700337 handle_t *handle;
Mark Fasheh60b11392007-02-16 11:46:50 -0800338 struct ocfs2_dinode *di;
Mark Fasheh35edec12007-07-06 14:41:18 -0700339 u64 cluster_bytes;
Mark Fashehccd979b2005-12-15 14:31:24 -0800340
341 mlog_entry_void();
342
343 /* TODO: This needs to actually orphan the inode in this
344 * transaction. */
345
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700346 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800347 if (IS_ERR(handle)) {
348 status = PTR_ERR(handle);
349 mlog_errno(status);
350 goto out;
351 }
352
Mark Fasheh60b11392007-02-16 11:46:50 -0800353 status = ocfs2_journal_access(handle, inode, fe_bh,
354 OCFS2_JOURNAL_ACCESS_WRITE);
355 if (status < 0) {
356 mlog_errno(status);
357 goto out_commit;
358 }
359
360 /*
361 * Do this before setting i_size.
362 */
Mark Fasheh35edec12007-07-06 14:41:18 -0700363 cluster_bytes = ocfs2_align_bytes_to_clusters(inode->i_sb, new_i_size);
364 status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size,
365 cluster_bytes);
Mark Fasheh60b11392007-02-16 11:46:50 -0800366 if (status) {
367 mlog_errno(status);
368 goto out_commit;
369 }
370
371 i_size_write(inode, new_i_size);
Mark Fasheh60b11392007-02-16 11:46:50 -0800372 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
373
374 di = (struct ocfs2_dinode *) fe_bh->b_data;
375 di->i_size = cpu_to_le64(new_i_size);
376 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
377 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
378
379 status = ocfs2_journal_dirty(handle, fe_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800380 if (status < 0)
381 mlog_errno(status);
382
Mark Fasheh60b11392007-02-16 11:46:50 -0800383out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700384 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800385out:
Mark Fasheh60b11392007-02-16 11:46:50 -0800386
Mark Fashehccd979b2005-12-15 14:31:24 -0800387 mlog_exit(status);
388 return status;
389}
390
391static int ocfs2_truncate_file(struct inode *inode,
392 struct buffer_head *di_bh,
393 u64 new_i_size)
394{
395 int status = 0;
396 struct ocfs2_dinode *fe = NULL;
397 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
398 struct ocfs2_truncate_context *tc = NULL;
399
Mark Fashehb06970532006-03-03 10:24:33 -0800400 mlog_entry("(inode = %llu, new_i_size = %llu\n",
401 (unsigned long long)OCFS2_I(inode)->ip_blkno,
402 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800403
Mark Fashehccd979b2005-12-15 14:31:24 -0800404 fe = (struct ocfs2_dinode *) di_bh->b_data;
405 if (!OCFS2_IS_VALID_DINODE(fe)) {
406 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
407 status = -EIO;
408 goto bail;
409 }
410
411 mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800412 "Inode %llu, inode i_size = %lld != di "
413 "i_size = %llu, i_flags = 0x%x\n",
414 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -0800415 i_size_read(inode),
Mark Fashehb06970532006-03-03 10:24:33 -0800416 (unsigned long long)le64_to_cpu(fe->i_size),
417 le32_to_cpu(fe->i_flags));
Mark Fashehccd979b2005-12-15 14:31:24 -0800418
419 if (new_i_size > le64_to_cpu(fe->i_size)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800420 mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
421 (unsigned long long)le64_to_cpu(fe->i_size),
422 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800423 status = -EINVAL;
424 mlog_errno(status);
425 goto bail;
426 }
427
Mark Fashehb06970532006-03-03 10:24:33 -0800428 mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
429 (unsigned long long)le64_to_cpu(fe->i_blkno),
430 (unsigned long long)le64_to_cpu(fe->i_size),
431 (unsigned long long)new_i_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800432
433 /* lets handle the simple truncate cases before doing any more
434 * cluster locking. */
435 if (new_i_size == le64_to_cpu(fe->i_size))
436 goto bail;
437
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700438 down_write(&OCFS2_I(inode)->ip_alloc_sem);
439
Mark Fashehc934a922007-10-18 15:23:46 -0700440 /*
441 * The inode lock forced other nodes to sync and drop their
442 * pages, which (correctly) happens even if we have a truncate
443 * without allocation change - ocfs2 cluster sizes can be much
444 * greater than page size, so we have to truncate them
445 * anyway.
446 */
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700447 unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1);
448 truncate_inode_pages(inode->i_mapping, new_i_size);
449
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700450 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
451 status = ocfs2_truncate_inline(inode, di_bh, new_i_size,
Mark Fashehb1967d02007-11-20 11:56:39 -0800452 i_size_read(inode), 1);
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700453 if (status)
454 mlog_errno(status);
455
Mark Fashehc934a922007-10-18 15:23:46 -0700456 goto bail_unlock_sem;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700457 }
458
Mark Fashehccd979b2005-12-15 14:31:24 -0800459 /* alright, we're going to need to do a full blown alloc size
460 * change. Orphan the inode so that recovery can complete the
461 * truncate if necessary. This does the task of marking
462 * i_size. */
463 status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size);
464 if (status < 0) {
465 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700466 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800467 }
468
469 status = ocfs2_prepare_truncate(osb, inode, di_bh, &tc);
470 if (status < 0) {
471 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700472 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800473 }
474
475 status = ocfs2_commit_truncate(osb, inode, di_bh, tc);
476 if (status < 0) {
477 mlog_errno(status);
Mark Fashehc934a922007-10-18 15:23:46 -0700478 goto bail_unlock_sem;
Mark Fashehccd979b2005-12-15 14:31:24 -0800479 }
480
481 /* TODO: orphan dir cleanup here. */
Mark Fashehc934a922007-10-18 15:23:46 -0700482bail_unlock_sem:
Mark Fasheh2e89b2e2007-05-09 13:40:18 -0700483 up_write(&OCFS2_I(inode)->ip_alloc_sem);
484
Mark Fashehccd979b2005-12-15 14:31:24 -0800485bail:
486
487 mlog_exit(status);
488 return status;
489}
490
491/*
Tao Ma0eb8d472008-08-18 17:38:45 +0800492 * extend file allocation only here.
Mark Fashehccd979b2005-12-15 14:31:24 -0800493 * we'll update all the disk stuff, and oip->alloc_size
494 *
495 * expect stuff to be locked, a transaction started and enough data /
496 * metadata reservations in the contexts.
497 *
498 * Will return -EAGAIN, and a reason if a restart is needed.
499 * If passed in, *reason will always be set, even in error.
500 */
Tao Ma0eb8d472008-08-18 17:38:45 +0800501int ocfs2_add_inode_data(struct ocfs2_super *osb,
502 struct inode *inode,
503 u32 *logical_offset,
504 u32 clusters_to_add,
505 int mark_unwritten,
506 struct buffer_head *fe_bh,
507 handle_t *handle,
508 struct ocfs2_alloc_context *data_ac,
509 struct ocfs2_alloc_context *meta_ac,
510 enum ocfs2_alloc_restarted *reason_ret)
Mark Fashehccd979b2005-12-15 14:31:24 -0800511{
Joel Beckerf99b9b72008-08-20 19:36:33 -0700512 int ret;
513 struct ocfs2_extent_tree et;
Mark Fashehccd979b2005-12-15 14:31:24 -0800514
Joel Becker8d6220d2008-08-22 12:46:09 -0700515 ocfs2_init_dinode_extent_tree(&et, inode, fe_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700516 ret = ocfs2_add_clusters_in_btree(osb, inode, logical_offset,
Tao Ma0eb8d472008-08-18 17:38:45 +0800517 clusters_to_add, mark_unwritten,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700518 &et, handle,
519 data_ac, meta_ac, reason_ret);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700520
521 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800522}
523
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800524static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
525 u32 clusters_to_add, int mark_unwritten)
Mark Fashehccd979b2005-12-15 14:31:24 -0800526{
527 int status = 0;
528 int restart_func = 0;
Mark Fashehabf8b152007-01-17 13:07:24 -0800529 int credits;
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800530 u32 prev_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -0800531 struct buffer_head *bh = NULL;
532 struct ocfs2_dinode *fe = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700533 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800534 struct ocfs2_alloc_context *data_ac = NULL;
535 struct ocfs2_alloc_context *meta_ac = NULL;
536 enum ocfs2_alloc_restarted why;
537 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700538 struct ocfs2_extent_tree et;
Mark Fashehccd979b2005-12-15 14:31:24 -0800539
540 mlog_entry("(clusters_to_add = %u)\n", clusters_to_add);
541
Mark Fashehdcd05382007-01-16 11:32:23 -0800542 /*
543 * This function only exists for file systems which don't
544 * support holes.
545 */
Mark Fasheh2ae99a62007-03-09 16:43:28 -0800546 BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb));
Mark Fashehdcd05382007-01-16 11:32:23 -0800547
Joel Becker0fcaa56a2008-10-09 17:20:31 -0700548 status = ocfs2_read_block(inode, OCFS2_I(inode)->ip_blkno, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800549 if (status < 0) {
550 mlog_errno(status);
551 goto leave;
552 }
553
554 fe = (struct ocfs2_dinode *) bh->b_data;
555 if (!OCFS2_IS_VALID_DINODE(fe)) {
556 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
557 status = -EIO;
558 goto leave;
559 }
560
561restart_all:
562 BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
563
Tao Mae7d4cb62008-08-18 17:38:44 +0800564 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
565 "clusters_to_add = %u\n",
566 (unsigned long long)OCFS2_I(inode)->ip_blkno,
567 (long long)i_size_read(inode), le32_to_cpu(fe->i_clusters),
568 clusters_to_add);
Joel Becker8d6220d2008-08-22 12:46:09 -0700569 ocfs2_init_dinode_extent_tree(&et, inode, bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700570 status = ocfs2_lock_allocators(inode, &et, clusters_to_add, 0,
571 &data_ac, &meta_ac);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800572 if (status) {
573 mlog_errno(status);
574 goto leave;
575 }
576
Tao Ma811f9332008-08-18 17:38:43 +0800577 credits = ocfs2_calc_extend_credits(osb->sb, &fe->id2.i_list,
578 clusters_to_add);
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700579 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800580 if (IS_ERR(handle)) {
581 status = PTR_ERR(handle);
582 handle = NULL;
583 mlog_errno(status);
584 goto leave;
585 }
586
587restarted_transaction:
588 /* reserve a write to the file entry early on - that we if we
589 * run out of credits in the allocation path, we can still
590 * update i_size. */
591 status = ocfs2_journal_access(handle, inode, bh,
592 OCFS2_JOURNAL_ACCESS_WRITE);
593 if (status < 0) {
594 mlog_errno(status);
595 goto leave;
596 }
597
598 prev_clusters = OCFS2_I(inode)->ip_clusters;
599
Tao Ma0eb8d472008-08-18 17:38:45 +0800600 status = ocfs2_add_inode_data(osb,
601 inode,
602 &logical_start,
603 clusters_to_add,
604 mark_unwritten,
605 bh,
606 handle,
607 data_ac,
608 meta_ac,
609 &why);
Mark Fashehccd979b2005-12-15 14:31:24 -0800610 if ((status < 0) && (status != -EAGAIN)) {
611 if (status != -ENOSPC)
612 mlog_errno(status);
613 goto leave;
614 }
615
616 status = ocfs2_journal_dirty(handle, bh);
617 if (status < 0) {
618 mlog_errno(status);
619 goto leave;
620 }
621
622 spin_lock(&OCFS2_I(inode)->ip_lock);
623 clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
624 spin_unlock(&OCFS2_I(inode)->ip_lock);
625
626 if (why != RESTART_NONE && clusters_to_add) {
627 if (why == RESTART_META) {
628 mlog(0, "restarting function.\n");
629 restart_func = 1;
630 } else {
631 BUG_ON(why != RESTART_TRANS);
632
633 mlog(0, "restarting transaction.\n");
634 /* TODO: This can be more intelligent. */
635 credits = ocfs2_calc_extend_credits(osb->sb,
Tao Ma811f9332008-08-18 17:38:43 +0800636 &fe->id2.i_list,
Mark Fashehccd979b2005-12-15 14:31:24 -0800637 clusters_to_add);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700638 status = ocfs2_extend_trans(handle, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800639 if (status < 0) {
640 /* handle still has to be committed at
641 * this point. */
642 status = -ENOMEM;
643 mlog_errno(status);
644 goto leave;
645 }
646 goto restarted_transaction;
647 }
648 }
649
Mark Fashehb06970532006-03-03 10:24:33 -0800650 mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700651 le32_to_cpu(fe->i_clusters),
652 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -0800653 mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
Jan Kara634bf742007-12-19 15:25:42 +0100654 OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800655
656leave:
Mark Fashehccd979b2005-12-15 14:31:24 -0800657 if (handle) {
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700658 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800659 handle = NULL;
660 }
661 if (data_ac) {
662 ocfs2_free_alloc_context(data_ac);
663 data_ac = NULL;
664 }
665 if (meta_ac) {
666 ocfs2_free_alloc_context(meta_ac);
667 meta_ac = NULL;
668 }
669 if ((!status) && restart_func) {
670 restart_func = 0;
671 goto restart_all;
672 }
Mark Fasheha81cb882008-10-07 14:25:16 -0700673 brelse(bh);
674 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800675
676 mlog_exit(status);
677 return status;
678}
679
680/* Some parts of this taken from generic_cont_expand, which turned out
681 * to be too fragile to do exactly what we need without us having to
Nick Piggin4e02ed42008-10-29 14:00:55 -0700682 * worry about recursive locking in ->write_begin() and ->write_end(). */
Mark Fashehccd979b2005-12-15 14:31:24 -0800683static int ocfs2_write_zero_page(struct inode *inode,
684 u64 size)
685{
686 struct address_space *mapping = inode->i_mapping;
687 struct page *page;
688 unsigned long index;
689 unsigned int offset;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700690 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800691 int ret;
692
693 offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
694 /* ugh. in prepare/commit_write, if from==to==start of block, we
695 ** skip the prepare. make sure we never send an offset for the start
696 ** of a block
697 */
698 if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
699 offset++;
700 }
701 index = size >> PAGE_CACHE_SHIFT;
702
703 page = grab_cache_page(mapping, index);
704 if (!page) {
705 ret = -ENOMEM;
706 mlog_errno(ret);
707 goto out;
708 }
709
Mark Fasheh53013cb2006-05-05 19:04:03 -0700710 ret = ocfs2_prepare_write_nolock(inode, page, offset, offset);
Mark Fashehccd979b2005-12-15 14:31:24 -0800711 if (ret < 0) {
712 mlog_errno(ret);
713 goto out_unlock;
714 }
715
716 if (ocfs2_should_order_data(inode)) {
717 handle = ocfs2_start_walk_page_trans(inode, page, offset,
718 offset);
719 if (IS_ERR(handle)) {
720 ret = PTR_ERR(handle);
721 handle = NULL;
722 goto out_unlock;
723 }
724 }
725
726 /* must not update i_size! */
727 ret = block_commit_write(page, offset, offset);
728 if (ret < 0)
729 mlog_errno(ret);
730 else
731 ret = 0;
732
733 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700734 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800735out_unlock:
736 unlock_page(page);
737 page_cache_release(page);
738out:
739 return ret;
740}
741
742static int ocfs2_zero_extend(struct inode *inode,
743 u64 zero_to_size)
744{
745 int ret = 0;
746 u64 start_off;
747 struct super_block *sb = inode->i_sb;
748
749 start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode));
750 while (start_off < zero_to_size) {
751 ret = ocfs2_write_zero_page(inode, start_off);
752 if (ret < 0) {
753 mlog_errno(ret);
754 goto out;
755 }
756
757 start_off += sb->s_blocksize;
Mark Fashehe2057c52006-10-03 17:53:05 -0700758
759 /*
760 * Very large extends have the potential to lock up
761 * the cpu for extended periods of time.
762 */
763 cond_resched();
Mark Fashehccd979b2005-12-15 14:31:24 -0800764 }
765
766out:
767 return ret;
768}
769
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700770int ocfs2_extend_no_holes(struct inode *inode, u64 new_i_size, u64 zero_to)
771{
772 int ret;
773 u32 clusters_to_add;
774 struct ocfs2_inode_info *oi = OCFS2_I(inode);
775
776 clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size);
777 if (clusters_to_add < oi->ip_clusters)
778 clusters_to_add = 0;
779 else
780 clusters_to_add -= oi->ip_clusters;
781
782 if (clusters_to_add) {
783 ret = __ocfs2_extend_allocation(inode, oi->ip_clusters,
784 clusters_to_add, 0);
785 if (ret) {
786 mlog_errno(ret);
787 goto out;
788 }
789 }
790
791 /*
792 * Call this even if we don't add any clusters to the tree. We
793 * still need to zero the area between the old i_size and the
794 * new i_size.
795 */
796 ret = ocfs2_zero_extend(inode, zero_to);
797 if (ret < 0)
798 mlog_errno(ret);
799
800out:
801 return ret;
802}
803
Mark Fashehccd979b2005-12-15 14:31:24 -0800804static int ocfs2_extend_file(struct inode *inode,
805 struct buffer_head *di_bh,
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700806 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800807{
Mark Fashehc934a922007-10-18 15:23:46 -0700808 int ret = 0;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700809 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800810
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700811 BUG_ON(!di_bh);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700812
Mark Fashehccd979b2005-12-15 14:31:24 -0800813 /* setattr sometimes calls us like this. */
814 if (new_i_size == 0)
815 goto out;
816
817 if (i_size_read(inode) == new_i_size)
818 goto out;
819 BUG_ON(new_i_size < i_size_read(inode));
820
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700821 /*
822 * Fall through for converting inline data, even if the fs
823 * supports sparse files.
824 *
825 * The check for inline data here is legal - nobody can add
826 * the feature since we have i_mutex. We must check it again
827 * after acquiring ip_alloc_sem though, as paths like mmap
828 * might have raced us to converting the inode to extents.
829 */
830 if (!(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
831 && ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800832 goto out_update_size;
Mark Fashehccd979b2005-12-15 14:31:24 -0800833
Mark Fasheh0effef72006-10-03 17:44:42 -0700834 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700835 * The alloc sem blocks people in read/write from reading our
836 * allocation until we're done changing it. We depend on
837 * i_mutex to block other extend/truncate calls while we're
838 * here.
Mark Fasheh0effef72006-10-03 17:44:42 -0700839 */
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700840 down_write(&oi->ip_alloc_sem);
841
842 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
843 /*
844 * We can optimize small extends by keeping the inodes
845 * inline data.
846 */
847 if (ocfs2_size_fits_inline_data(di_bh, new_i_size)) {
848 up_write(&oi->ip_alloc_sem);
849 goto out_update_size;
850 }
851
852 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
853 if (ret) {
854 up_write(&oi->ip_alloc_sem);
855
856 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700857 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700858 }
859 }
860
861 if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
862 ret = ocfs2_extend_no_holes(inode, new_i_size, new_i_size);
863
864 up_write(&oi->ip_alloc_sem);
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700865
Mark Fasheh0effef72006-10-03 17:44:42 -0700866 if (ret < 0) {
867 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700868 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800869 }
870
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800871out_update_size:
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700872 ret = ocfs2_simple_size_update(inode, di_bh, new_i_size);
873 if (ret < 0)
874 mlog_errno(ret);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700875
Mark Fashehccd979b2005-12-15 14:31:24 -0800876out:
877 return ret;
878}
879
880int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
881{
882 int status = 0, size_change;
883 struct inode *inode = dentry->d_inode;
884 struct super_block *sb = inode->i_sb;
885 struct ocfs2_super *osb = OCFS2_SB(sb);
886 struct buffer_head *bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700887 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800888
889 mlog_entry("(0x%p, '%.*s')\n", dentry,
890 dentry->d_name.len, dentry->d_name.name);
891
Sunil Mushranbc535802008-04-18 10:23:53 -0700892 /* ensuring we don't even attempt to truncate a symlink */
893 if (S_ISLNK(inode->i_mode))
894 attr->ia_valid &= ~ATTR_SIZE;
895
Mark Fashehccd979b2005-12-15 14:31:24 -0800896 if (attr->ia_valid & ATTR_MODE)
897 mlog(0, "mode change: %d\n", attr->ia_mode);
898 if (attr->ia_valid & ATTR_UID)
899 mlog(0, "uid change: %d\n", attr->ia_uid);
900 if (attr->ia_valid & ATTR_GID)
901 mlog(0, "gid change: %d\n", attr->ia_gid);
902 if (attr->ia_valid & ATTR_SIZE)
903 mlog(0, "size change...\n");
904 if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
905 mlog(0, "time change...\n");
906
907#define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
908 | ATTR_GID | ATTR_UID | ATTR_MODE)
909 if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
910 mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
911 return 0;
912 }
913
914 status = inode_change_ok(inode, attr);
915 if (status)
916 return status;
917
918 size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
919 if (size_change) {
920 status = ocfs2_rw_lock(inode, 1);
921 if (status < 0) {
922 mlog_errno(status);
923 goto bail;
924 }
925 }
926
Mark Fashehe63aecb62007-10-18 15:30:42 -0700927 status = ocfs2_inode_lock(inode, &bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800928 if (status < 0) {
929 if (status != -ENOENT)
930 mlog_errno(status);
931 goto bail_unlock_rw;
932 }
933
934 if (size_change && attr->ia_size != i_size_read(inode)) {
Mark Fashehce76fd32007-07-20 12:02:14 -0700935 if (attr->ia_size > sb->s_maxbytes) {
936 status = -EFBIG;
937 goto bail_unlock;
938 }
939
Joel Becker2b4e30f2008-09-03 20:03:41 -0700940 if (i_size_read(inode) > attr->ia_size) {
941 if (ocfs2_should_order_data(inode)) {
942 status = ocfs2_begin_ordered_truncate(inode,
943 attr->ia_size);
944 if (status)
945 goto bail_unlock;
946 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800947 status = ocfs2_truncate_file(inode, bh, attr->ia_size);
Joel Becker2b4e30f2008-09-03 20:03:41 -0700948 } else
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700949 status = ocfs2_extend_file(inode, bh, attr->ia_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800950 if (status < 0) {
951 if (status != -ENOSPC)
952 mlog_errno(status);
953 status = -ENOSPC;
954 goto bail_unlock;
955 }
956 }
957
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700958 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800959 if (IS_ERR(handle)) {
960 status = PTR_ERR(handle);
961 mlog_errno(status);
962 goto bail_unlock;
963 }
964
Mark Fasheh7307de82007-05-09 15:16:19 -0700965 /*
966 * This will intentionally not wind up calling vmtruncate(),
967 * since all the work for a size change has been done above.
968 * Otherwise, we could get into problems with truncate as
969 * ip_alloc_sem is used there to protect against i_size
970 * changes.
971 */
Mark Fashehccd979b2005-12-15 14:31:24 -0800972 status = inode_setattr(inode, attr);
973 if (status < 0) {
974 mlog_errno(status);
975 goto bail_commit;
976 }
977
978 status = ocfs2_mark_inode_dirty(handle, inode, bh);
979 if (status < 0)
980 mlog_errno(status);
981
982bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700983 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800984bail_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700985 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800986bail_unlock_rw:
987 if (size_change)
988 ocfs2_rw_unlock(inode, 1);
989bail:
Mark Fasheha81cb882008-10-07 14:25:16 -0700990 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800991
992 mlog_exit(status);
993 return status;
994}
995
996int ocfs2_getattr(struct vfsmount *mnt,
997 struct dentry *dentry,
998 struct kstat *stat)
999{
1000 struct inode *inode = dentry->d_inode;
1001 struct super_block *sb = dentry->d_inode->i_sb;
1002 struct ocfs2_super *osb = sb->s_fs_info;
1003 int err;
1004
1005 mlog_entry_void();
1006
1007 err = ocfs2_inode_revalidate(dentry);
1008 if (err) {
1009 if (err != -ENOENT)
1010 mlog_errno(err);
1011 goto bail;
1012 }
1013
1014 generic_fillattr(inode, stat);
1015
1016 /* We set the blksize from the cluster size for performance */
1017 stat->blksize = osb->s_clustersize;
1018
1019bail:
1020 mlog_exit(err);
1021
1022 return err;
1023}
1024
Al Viroe6305c42008-07-15 21:03:57 -04001025int ocfs2_permission(struct inode *inode, int mask)
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001026{
1027 int ret;
1028
1029 mlog_entry_void();
1030
Mark Fashehe63aecb62007-10-18 15:30:42 -07001031 ret = ocfs2_inode_lock(inode, NULL, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001032 if (ret) {
Mark Fasheha9f5f702007-04-26 11:43:43 -07001033 if (ret != -ENOENT)
1034 mlog_errno(ret);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001035 goto out;
1036 }
1037
1038 ret = generic_permission(inode, mask, NULL);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001039
Mark Fashehe63aecb62007-10-18 15:30:42 -07001040 ocfs2_inode_unlock(inode, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001041out:
1042 mlog_exit(ret);
1043 return ret;
1044}
1045
Mark Fashehb2580102007-03-09 16:53:21 -08001046static int __ocfs2_write_remove_suid(struct inode *inode,
1047 struct buffer_head *bh)
Mark Fashehccd979b2005-12-15 14:31:24 -08001048{
1049 int ret;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001050 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08001051 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1052 struct ocfs2_dinode *di;
1053
Mark Fashehb06970532006-03-03 10:24:33 -08001054 mlog_entry("(Inode %llu, mode 0%o)\n",
Mark Fashehb2580102007-03-09 16:53:21 -08001055 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001056
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001057 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001058 if (IS_ERR(handle)) {
1059 ret = PTR_ERR(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001060 mlog_errno(ret);
1061 goto out;
1062 }
1063
Mark Fashehccd979b2005-12-15 14:31:24 -08001064 ret = ocfs2_journal_access(handle, inode, bh,
1065 OCFS2_JOURNAL_ACCESS_WRITE);
1066 if (ret < 0) {
1067 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001068 goto out_trans;
Mark Fashehccd979b2005-12-15 14:31:24 -08001069 }
1070
1071 inode->i_mode &= ~S_ISUID;
1072 if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
1073 inode->i_mode &= ~S_ISGID;
1074
1075 di = (struct ocfs2_dinode *) bh->b_data;
1076 di->i_mode = cpu_to_le16(inode->i_mode);
1077
1078 ret = ocfs2_journal_dirty(handle, bh);
1079 if (ret < 0)
1080 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001081
Mark Fashehccd979b2005-12-15 14:31:24 -08001082out_trans:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001083 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001084out:
1085 mlog_exit(ret);
1086 return ret;
1087}
1088
Mark Fasheh9517bac2007-02-09 20:24:12 -08001089/*
1090 * Will look for holes and unwritten extents in the range starting at
1091 * pos for count bytes (inclusive).
1092 */
1093static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
1094 size_t count)
1095{
1096 int ret = 0;
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001097 unsigned int extent_flags;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001098 u32 cpos, clusters, extent_len, phys_cpos;
1099 struct super_block *sb = inode->i_sb;
1100
1101 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1102 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1103
1104 while (clusters) {
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001105 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1106 &extent_flags);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001107 if (ret < 0) {
1108 mlog_errno(ret);
1109 goto out;
1110 }
1111
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001112 if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001113 ret = 1;
1114 break;
1115 }
1116
1117 if (extent_len > clusters)
1118 extent_len = clusters;
1119
1120 clusters -= extent_len;
1121 cpos += extent_len;
1122 }
1123out:
1124 return ret;
1125}
1126
Mark Fashehb2580102007-03-09 16:53:21 -08001127static int ocfs2_write_remove_suid(struct inode *inode)
1128{
1129 int ret;
1130 struct buffer_head *bh = NULL;
1131 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1132
Joel Becker0fcaa56a2008-10-09 17:20:31 -07001133 ret = ocfs2_read_block(inode, oi->ip_blkno, &bh);
Mark Fashehb2580102007-03-09 16:53:21 -08001134 if (ret < 0) {
1135 mlog_errno(ret);
1136 goto out;
1137 }
1138
1139 ret = __ocfs2_write_remove_suid(inode, bh);
1140out:
1141 brelse(bh);
1142 return ret;
1143}
1144
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001145/*
1146 * Allocate enough extents to cover the region starting at byte offset
1147 * start for len bytes. Existing extents are skipped, any extents
1148 * added are marked as "unwritten".
1149 */
1150static int ocfs2_allocate_unwritten_extents(struct inode *inode,
1151 u64 start, u64 len)
1152{
1153 int ret;
1154 u32 cpos, phys_cpos, clusters, alloc_size;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001155 u64 end = start + len;
1156 struct buffer_head *di_bh = NULL;
1157
1158 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
Joel Becker31d33072008-10-09 17:20:30 -07001159 ret = ocfs2_read_block(inode, OCFS2_I(inode)->ip_blkno,
Joel Becker0fcaa56a2008-10-09 17:20:31 -07001160 &di_bh);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001161 if (ret) {
1162 mlog_errno(ret);
1163 goto out;
1164 }
1165
1166 /*
1167 * Nothing to do if the requested reservation range
1168 * fits within the inode.
1169 */
1170 if (ocfs2_size_fits_inline_data(di_bh, end))
1171 goto out;
1172
1173 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
1174 if (ret) {
1175 mlog_errno(ret);
1176 goto out;
1177 }
1178 }
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001179
1180 /*
1181 * We consider both start and len to be inclusive.
1182 */
1183 cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1184 clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len);
1185 clusters -= cpos;
1186
1187 while (clusters) {
1188 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1189 &alloc_size, NULL);
1190 if (ret) {
1191 mlog_errno(ret);
1192 goto out;
1193 }
1194
1195 /*
1196 * Hole or existing extent len can be arbitrary, so
1197 * cap it to our own allocation request.
1198 */
1199 if (alloc_size > clusters)
1200 alloc_size = clusters;
1201
1202 if (phys_cpos) {
1203 /*
1204 * We already have an allocation at this
1205 * region so we can safely skip it.
1206 */
1207 goto next;
1208 }
1209
1210 ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
1211 if (ret) {
1212 if (ret != -ENOSPC)
1213 mlog_errno(ret);
1214 goto out;
1215 }
1216
1217next:
1218 cpos += alloc_size;
1219 clusters -= alloc_size;
1220 }
1221
1222 ret = 0;
1223out:
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001224
1225 brelse(di_bh);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001226 return ret;
1227}
1228
Mark Fasheh063c4562007-07-03 13:34:11 -07001229/*
1230 * Truncate a byte range, avoiding pages within partial clusters. This
1231 * preserves those pages for the zeroing code to write to.
1232 */
1233static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start,
1234 u64 byte_len)
1235{
1236 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1237 loff_t start, end;
1238 struct address_space *mapping = inode->i_mapping;
1239
1240 start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start);
1241 end = byte_start + byte_len;
1242 end = end & ~(osb->s_clustersize - 1);
1243
1244 if (start < end) {
1245 unmap_mapping_range(mapping, start, end - start, 0);
1246 truncate_inode_pages_range(mapping, start, end - 1);
1247 }
1248}
1249
1250static int ocfs2_zero_partial_clusters(struct inode *inode,
1251 u64 start, u64 len)
1252{
1253 int ret = 0;
1254 u64 tmpend, end = start + len;
1255 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1256 unsigned int csize = osb->s_clustersize;
1257 handle_t *handle;
1258
1259 /*
1260 * The "start" and "end" values are NOT necessarily part of
1261 * the range whose allocation is being deleted. Rather, this
1262 * is what the user passed in with the request. We must zero
1263 * partial clusters here. There's no need to worry about
1264 * physical allocation - the zeroing code knows to skip holes.
1265 */
1266 mlog(0, "byte start: %llu, end: %llu\n",
1267 (unsigned long long)start, (unsigned long long)end);
1268
1269 /*
1270 * If both edges are on a cluster boundary then there's no
1271 * zeroing required as the region is part of the allocation to
1272 * be truncated.
1273 */
1274 if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0)
1275 goto out;
1276
1277 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Jan Karafa38e922008-10-20 19:23:51 +02001278 if (IS_ERR(handle)) {
1279 ret = PTR_ERR(handle);
Mark Fasheh063c4562007-07-03 13:34:11 -07001280 mlog_errno(ret);
1281 goto out;
1282 }
1283
1284 /*
1285 * We want to get the byte offset of the end of the 1st cluster.
1286 */
1287 tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1));
1288 if (tmpend > end)
1289 tmpend = end;
1290
1291 mlog(0, "1st range: start: %llu, tmpend: %llu\n",
1292 (unsigned long long)start, (unsigned long long)tmpend);
1293
1294 ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend);
1295 if (ret)
1296 mlog_errno(ret);
1297
1298 if (tmpend < end) {
1299 /*
1300 * This may make start and end equal, but the zeroing
1301 * code will skip any work in that case so there's no
1302 * need to catch it up here.
1303 */
1304 start = end & ~(osb->s_clustersize - 1);
1305
1306 mlog(0, "2nd range: start: %llu, end: %llu\n",
1307 (unsigned long long)start, (unsigned long long)end);
1308
1309 ret = ocfs2_zero_range_for_truncate(inode, handle, start, end);
1310 if (ret)
1311 mlog_errno(ret);
1312 }
1313
1314 ocfs2_commit_trans(osb, handle);
1315out:
1316 return ret;
1317}
1318
1319static int ocfs2_remove_inode_range(struct inode *inode,
1320 struct buffer_head *di_bh, u64 byte_start,
1321 u64 byte_len)
1322{
1323 int ret = 0;
1324 u32 trunc_start, trunc_len, cpos, phys_cpos, alloc_size;
1325 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1326 struct ocfs2_cached_dealloc_ctxt dealloc;
Mark Fashehb1967d02007-11-20 11:56:39 -08001327 struct address_space *mapping = inode->i_mapping;
Mark Fashehfecc0112008-11-12 15:16:38 -08001328 struct ocfs2_extent_tree et;
Mark Fasheh063c4562007-07-03 13:34:11 -07001329
Mark Fashehfecc0112008-11-12 15:16:38 -08001330 ocfs2_init_dinode_extent_tree(&et, inode, di_bh);
Mark Fasheh063c4562007-07-03 13:34:11 -07001331 ocfs2_init_dealloc_ctxt(&dealloc);
1332
1333 if (byte_len == 0)
1334 return 0;
1335
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001336 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1337 ret = ocfs2_truncate_inline(inode, di_bh, byte_start,
Mark Fashehb1967d02007-11-20 11:56:39 -08001338 byte_start + byte_len, 0);
1339 if (ret) {
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001340 mlog_errno(ret);
Mark Fashehb1967d02007-11-20 11:56:39 -08001341 goto out;
1342 }
1343 /*
1344 * There's no need to get fancy with the page cache
1345 * truncate of an inline-data inode. We're talking
1346 * about less than a page here, which will be cached
1347 * in the dinode buffer anyway.
1348 */
1349 unmap_mapping_range(mapping, 0, 0, 0);
1350 truncate_inode_pages(mapping, 0);
1351 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001352 }
1353
Mark Fasheh063c4562007-07-03 13:34:11 -07001354 trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start);
1355 trunc_len = (byte_start + byte_len) >> osb->s_clustersize_bits;
1356 if (trunc_len >= trunc_start)
1357 trunc_len -= trunc_start;
1358 else
1359 trunc_len = 0;
1360
1361 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u\n",
1362 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1363 (unsigned long long)byte_start,
1364 (unsigned long long)byte_len, trunc_start, trunc_len);
1365
1366 ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len);
1367 if (ret) {
1368 mlog_errno(ret);
1369 goto out;
1370 }
1371
1372 cpos = trunc_start;
1373 while (trunc_len) {
1374 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1375 &alloc_size, NULL);
1376 if (ret) {
1377 mlog_errno(ret);
1378 goto out;
1379 }
1380
1381 if (alloc_size > trunc_len)
1382 alloc_size = trunc_len;
1383
1384 /* Only do work for non-holes */
1385 if (phys_cpos != 0) {
Mark Fashehfecc0112008-11-12 15:16:38 -08001386 ret = ocfs2_remove_btree_range(inode, &et, cpos,
1387 phys_cpos, alloc_size,
1388 &dealloc);
Mark Fasheh063c4562007-07-03 13:34:11 -07001389 if (ret) {
1390 mlog_errno(ret);
1391 goto out;
1392 }
1393 }
1394
1395 cpos += alloc_size;
1396 trunc_len -= alloc_size;
1397 }
1398
1399 ocfs2_truncate_cluster_pages(inode, byte_start, byte_len);
1400
1401out:
1402 ocfs2_schedule_truncate_log_flush(osb, 1);
1403 ocfs2_run_deallocs(osb, &dealloc);
1404
1405 return ret;
1406}
1407
Mark Fashehb2580102007-03-09 16:53:21 -08001408/*
1409 * Parts of this function taken from xfs_change_file_space()
1410 */
Mark Fasheh385820a2007-07-19 00:14:38 -07001411static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
1412 loff_t f_pos, unsigned int cmd,
1413 struct ocfs2_space_resv *sr,
1414 int change_size)
Mark Fashehb2580102007-03-09 16:53:21 -08001415{
1416 int ret;
1417 s64 llen;
Mark Fasheh385820a2007-07-19 00:14:38 -07001418 loff_t size;
Mark Fashehb2580102007-03-09 16:53:21 -08001419 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1420 struct buffer_head *di_bh = NULL;
1421 handle_t *handle;
Mark Fasheha00cce32007-07-20 11:28:30 -07001422 unsigned long long max_off = inode->i_sb->s_maxbytes;
Mark Fashehb2580102007-03-09 16:53:21 -08001423
Mark Fashehb2580102007-03-09 16:53:21 -08001424 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
1425 return -EROFS;
1426
1427 mutex_lock(&inode->i_mutex);
1428
1429 /*
1430 * This prevents concurrent writes on other nodes
1431 */
1432 ret = ocfs2_rw_lock(inode, 1);
1433 if (ret) {
1434 mlog_errno(ret);
1435 goto out;
1436 }
1437
Mark Fashehe63aecb62007-10-18 15:30:42 -07001438 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001439 if (ret) {
1440 mlog_errno(ret);
1441 goto out_rw_unlock;
1442 }
1443
1444 if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
1445 ret = -EPERM;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001446 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001447 }
1448
1449 switch (sr->l_whence) {
1450 case 0: /*SEEK_SET*/
1451 break;
1452 case 1: /*SEEK_CUR*/
Mark Fasheh385820a2007-07-19 00:14:38 -07001453 sr->l_start += f_pos;
Mark Fashehb2580102007-03-09 16:53:21 -08001454 break;
1455 case 2: /*SEEK_END*/
1456 sr->l_start += i_size_read(inode);
1457 break;
1458 default:
1459 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001460 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001461 }
1462 sr->l_whence = 0;
1463
1464 llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len;
1465
1466 if (sr->l_start < 0
1467 || sr->l_start > max_off
1468 || (sr->l_start + llen) < 0
1469 || (sr->l_start + llen) > max_off) {
1470 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001471 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001472 }
Mark Fasheh385820a2007-07-19 00:14:38 -07001473 size = sr->l_start + sr->l_len;
Mark Fashehb2580102007-03-09 16:53:21 -08001474
1475 if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) {
1476 if (sr->l_len <= 0) {
1477 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001478 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001479 }
1480 }
1481
Mark Fasheh385820a2007-07-19 00:14:38 -07001482 if (file && should_remove_suid(file->f_path.dentry)) {
Mark Fashehb2580102007-03-09 16:53:21 -08001483 ret = __ocfs2_write_remove_suid(inode, di_bh);
1484 if (ret) {
1485 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001486 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001487 }
1488 }
1489
1490 down_write(&OCFS2_I(inode)->ip_alloc_sem);
1491 switch (cmd) {
1492 case OCFS2_IOC_RESVSP:
1493 case OCFS2_IOC_RESVSP64:
1494 /*
1495 * This takes unsigned offsets, but the signed ones we
1496 * pass have been checked against overflow above.
1497 */
1498 ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start,
1499 sr->l_len);
1500 break;
1501 case OCFS2_IOC_UNRESVSP:
1502 case OCFS2_IOC_UNRESVSP64:
1503 ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start,
1504 sr->l_len);
1505 break;
1506 default:
1507 ret = -EINVAL;
1508 }
1509 up_write(&OCFS2_I(inode)->ip_alloc_sem);
1510 if (ret) {
1511 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001512 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001513 }
1514
1515 /*
1516 * We update c/mtime for these changes
1517 */
1518 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1519 if (IS_ERR(handle)) {
1520 ret = PTR_ERR(handle);
1521 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001522 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001523 }
1524
Mark Fasheh385820a2007-07-19 00:14:38 -07001525 if (change_size && i_size_read(inode) < size)
1526 i_size_write(inode, size);
1527
Mark Fashehb2580102007-03-09 16:53:21 -08001528 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1529 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
1530 if (ret < 0)
1531 mlog_errno(ret);
1532
1533 ocfs2_commit_trans(osb, handle);
1534
Mark Fashehe63aecb62007-10-18 15:30:42 -07001535out_inode_unlock:
Mark Fashehb2580102007-03-09 16:53:21 -08001536 brelse(di_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001537 ocfs2_inode_unlock(inode, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001538out_rw_unlock:
1539 ocfs2_rw_unlock(inode, 1);
1540
Mark Fashehb2580102007-03-09 16:53:21 -08001541out:
Julia Lawallc259ae52008-07-21 09:59:15 +02001542 mutex_unlock(&inode->i_mutex);
Mark Fashehb2580102007-03-09 16:53:21 -08001543 return ret;
1544}
1545
Mark Fasheh385820a2007-07-19 00:14:38 -07001546int ocfs2_change_file_space(struct file *file, unsigned int cmd,
1547 struct ocfs2_space_resv *sr)
1548{
1549 struct inode *inode = file->f_path.dentry->d_inode;
1550 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);;
1551
1552 if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
1553 !ocfs2_writes_unwritten_extents(osb))
1554 return -ENOTTY;
1555 else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) &&
1556 !ocfs2_sparse_alloc(osb))
1557 return -ENOTTY;
1558
1559 if (!S_ISREG(inode->i_mode))
1560 return -EINVAL;
1561
1562 if (!(file->f_mode & FMODE_WRITE))
1563 return -EBADF;
1564
1565 return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0);
1566}
1567
1568static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1569 loff_t len)
1570{
1571 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1572 struct ocfs2_space_resv sr;
1573 int change_size = 1;
1574
1575 if (!ocfs2_writes_unwritten_extents(osb))
1576 return -EOPNOTSUPP;
1577
1578 if (S_ISDIR(inode->i_mode))
1579 return -ENODEV;
1580
1581 if (mode & FALLOC_FL_KEEP_SIZE)
1582 change_size = 0;
1583
1584 sr.l_whence = 0;
1585 sr.l_start = (s64)offset;
1586 sr.l_len = (s64)len;
1587
1588 return __ocfs2_change_file_space(NULL, inode, offset,
1589 OCFS2_IOC_RESVSP64, &sr, change_size);
1590}
1591
Tiger Yang8659ac22006-10-17 18:29:52 -07001592static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
1593 loff_t *ppos,
1594 size_t count,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001595 int appending,
1596 int *direct_io)
Mark Fashehccd979b2005-12-15 14:31:24 -08001597{
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001598 int ret = 0, meta_level = 0;
Tiger Yang8659ac22006-10-17 18:29:52 -07001599 struct inode *inode = dentry->d_inode;
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001600 loff_t saved_pos, end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001601
Mark Fashehccd979b2005-12-15 14:31:24 -08001602 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001603 * We start with a read level meta lock and only jump to an ex
1604 * if we need to make modifications here.
Mark Fashehccd979b2005-12-15 14:31:24 -08001605 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001606 for(;;) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001607 ret = ocfs2_inode_lock(inode, NULL, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001608 if (ret < 0) {
1609 meta_level = -1;
1610 mlog_errno(ret);
1611 goto out;
1612 }
1613
1614 /* Clear suid / sgid if necessary. We do this here
1615 * instead of later in the write path because
1616 * remove_suid() calls ->setattr without any hint that
1617 * we may have already done our cluster locking. Since
1618 * ocfs2_setattr() *must* take cluster locks to
1619 * proceeed, this will lead us to recursively lock the
1620 * inode. There's also the dinode i_size state which
1621 * can be lost via setattr during extending writes (we
1622 * set inode->i_size at the end of a write. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001623 if (should_remove_suid(dentry)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001624 if (meta_level == 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001625 ocfs2_inode_unlock(inode, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001626 meta_level = 1;
1627 continue;
1628 }
1629
1630 ret = ocfs2_write_remove_suid(inode);
1631 if (ret < 0) {
1632 mlog_errno(ret);
Tiger Yang8659ac22006-10-17 18:29:52 -07001633 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08001634 }
1635 }
1636
1637 /* work on a copy of ppos until we're sure that we won't have
1638 * to recalculate it due to relocking. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001639 if (appending) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001640 saved_pos = i_size_read(inode);
1641 mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
1642 } else {
Tiger Yang8659ac22006-10-17 18:29:52 -07001643 saved_pos = *ppos;
Mark Fashehccd979b2005-12-15 14:31:24 -08001644 }
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001645
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001646 end = saved_pos + count;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001647
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001648 /*
1649 * Skip the O_DIRECT checks if we don't need
1650 * them.
1651 */
1652 if (!direct_io || !(*direct_io))
1653 break;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001654
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001655 /*
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001656 * There's no sane way to do direct writes to an inode
1657 * with inline data.
1658 */
1659 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1660 *direct_io = 0;
1661 break;
1662 }
1663
1664 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001665 * Allowing concurrent direct writes means
1666 * i_size changes wouldn't be synchronized, so
1667 * one node could wind up truncating another
1668 * nodes writes.
1669 */
1670 if (end > i_size_read(inode)) {
1671 *direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001672 break;
1673 }
1674
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001675 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001676 * We don't fill holes during direct io, so
1677 * check for them here. If any are found, the
1678 * caller will have to retake some cluster
1679 * locks and initiate the io as buffered.
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001680 */
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001681 ret = ocfs2_check_range_for_holes(inode, saved_pos, count);
1682 if (ret == 1) {
1683 *direct_io = 0;
1684 ret = 0;
1685 } else if (ret < 0)
1686 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -08001687 break;
1688 }
1689
Tiger Yang8659ac22006-10-17 18:29:52 -07001690 if (appending)
1691 *ppos = saved_pos;
1692
1693out_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07001694 ocfs2_inode_unlock(inode, meta_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07001695
1696out:
1697 return ret;
1698}
1699
1700static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
1701 const struct iovec *iov,
1702 unsigned long nr_segs,
1703 loff_t pos)
1704{
Mark Fasheh9517bac2007-02-09 20:24:12 -08001705 int ret, direct_io, appending, rw_level, have_alloc_sem = 0;
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001706 int can_do_direct;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001707 ssize_t written = 0;
1708 size_t ocount; /* original count */
1709 size_t count; /* after file limit checks */
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001710 loff_t old_size, *ppos = &iocb->ki_pos;
1711 u32 old_clusters;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001712 struct file *file = iocb->ki_filp;
1713 struct inode *inode = file->f_path.dentry->d_inode;
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001714 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang8659ac22006-10-17 18:29:52 -07001715
Mark Fasheh9517bac2007-02-09 20:24:12 -08001716 mlog_entry("(0x%p, %u, '%.*s')\n", file,
Tiger Yang8659ac22006-10-17 18:29:52 -07001717 (unsigned int)nr_segs,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001718 file->f_path.dentry->d_name.len,
1719 file->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07001720
Tiger Yang8659ac22006-10-17 18:29:52 -07001721 if (iocb->ki_left == 0)
1722 return 0;
1723
Mark Fasheh9517bac2007-02-09 20:24:12 -08001724 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1725
1726 appending = file->f_flags & O_APPEND ? 1 : 0;
1727 direct_io = file->f_flags & O_DIRECT ? 1 : 0;
1728
Tiger Yang8659ac22006-10-17 18:29:52 -07001729 mutex_lock(&inode->i_mutex);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001730
1731relock:
Tiger Yang8659ac22006-10-17 18:29:52 -07001732 /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001733 if (direct_io) {
Tiger Yang8659ac22006-10-17 18:29:52 -07001734 down_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001735 have_alloc_sem = 1;
Tiger Yang8659ac22006-10-17 18:29:52 -07001736 }
1737
1738 /* concurrent O_DIRECT writes are allowed */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001739 rw_level = !direct_io;
Tiger Yang8659ac22006-10-17 18:29:52 -07001740 ret = ocfs2_rw_lock(inode, rw_level);
1741 if (ret < 0) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001742 mlog_errno(ret);
1743 goto out_sems;
1744 }
1745
1746 can_do_direct = direct_io;
1747 ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
1748 iocb->ki_left, appending,
1749 &can_do_direct);
1750 if (ret < 0) {
Tiger Yang8659ac22006-10-17 18:29:52 -07001751 mlog_errno(ret);
1752 goto out;
1753 }
1754
Mark Fasheh9517bac2007-02-09 20:24:12 -08001755 /*
1756 * We can't complete the direct I/O as requested, fall back to
1757 * buffered I/O.
1758 */
1759 if (direct_io && !can_do_direct) {
1760 ocfs2_rw_unlock(inode, rw_level);
1761 up_read(&inode->i_alloc_sem);
1762
1763 have_alloc_sem = 0;
1764 rw_level = -1;
1765
1766 direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001767 goto relock;
Tiger Yang8659ac22006-10-17 18:29:52 -07001768 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001769
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001770 /*
1771 * To later detect whether a journal commit for sync writes is
1772 * necessary, we sample i_size, and cluster count here.
1773 */
1774 old_size = i_size_read(inode);
1775 old_clusters = OCFS2_I(inode)->ip_clusters;
1776
Mark Fashehccd979b2005-12-15 14:31:24 -08001777 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07001778 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001779
Mark Fasheh9517bac2007-02-09 20:24:12 -08001780 if (direct_io) {
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001781 ret = generic_segment_checks(iov, &nr_segs, &ocount,
1782 VERIFY_READ);
1783 if (ret)
1784 goto out_dio;
1785
1786 ret = generic_write_checks(file, ppos, &count,
1787 S_ISBLK(inode->i_mode));
1788 if (ret)
1789 goto out_dio;
1790
Mark Fasheh9517bac2007-02-09 20:24:12 -08001791 written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
1792 ppos, count, ocount);
1793 if (written < 0) {
Dmitri Monakhovc4354002008-10-27 13:01:49 -07001794 /*
1795 * direct write may have instantiated a few
1796 * blocks outside i_size. Trim these off again.
1797 * Don't need i_size_read because we hold i_mutex.
1798 */
1799 if (*ppos + count > inode->i_size)
1800 vmtruncate(inode, inode->i_size);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001801 ret = written;
1802 goto out_dio;
1803 }
1804 } else {
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001805 written = generic_file_aio_write_nolock(iocb, iov, nr_segs,
1806 *ppos);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001807 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001808
Mark Fasheh9517bac2007-02-09 20:24:12 -08001809out_dio:
Mark Fashehccd979b2005-12-15 14:31:24 -08001810 /* buffered aio wouldn't have proper lock coverage today */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001811 BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
Mark Fashehccd979b2005-12-15 14:31:24 -08001812
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001813 if ((file->f_flags & O_SYNC && !direct_io) || IS_SYNC(inode)) {
1814 /*
1815 * The generic write paths have handled getting data
1816 * to disk, but since we don't make use of the dirty
1817 * inode list, a manual journal commit is necessary
1818 * here.
1819 */
1820 if (old_size != i_size_read(inode) ||
1821 old_clusters != OCFS2_I(inode)->ip_clusters) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07001822 ret = jbd2_journal_force_commit(osb->journal->j_journal);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001823 if (ret < 0)
1824 written = ret;
1825 }
1826 }
1827
Mark Fashehccd979b2005-12-15 14:31:24 -08001828 /*
1829 * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
1830 * function pointer which is called when o_direct io completes so that
1831 * it can unlock our rw lock. (it's the clustered equivalent of
1832 * i_alloc_sem; protects truncate from racing with pending ios).
1833 * Unfortunately there are error cases which call end_io and others
1834 * that don't. so we don't have to unlock the rw_lock if either an
1835 * async dio is going to do it in the future or an end_io after an
1836 * error has already done it.
1837 */
1838 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
1839 rw_level = -1;
1840 have_alloc_sem = 0;
1841 }
1842
1843out:
Mark Fasheh9517bac2007-02-09 20:24:12 -08001844 if (rw_level != -1)
1845 ocfs2_rw_unlock(inode, rw_level);
1846
1847out_sems:
Mark Fashehccd979b2005-12-15 14:31:24 -08001848 if (have_alloc_sem)
1849 up_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001850
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001851 mutex_unlock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001852
1853 mlog_exit(ret);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001854 return written ? written : ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08001855}
1856
Tiger Yang8659ac22006-10-17 18:29:52 -07001857static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
1858 struct file *out,
1859 loff_t *ppos,
1860 size_t len,
1861 unsigned int flags)
1862{
1863 int ret;
Josef Sipekd28c9172006-12-08 02:37:25 -08001864 struct inode *inode = out->f_path.dentry->d_inode;
Tiger Yang8659ac22006-10-17 18:29:52 -07001865
1866 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
1867 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08001868 out->f_path.dentry->d_name.len,
1869 out->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07001870
1871 inode_double_lock(inode, pipe->inode);
1872
1873 ret = ocfs2_rw_lock(inode, 1);
1874 if (ret < 0) {
1875 mlog_errno(ret);
1876 goto out;
1877 }
1878
Mark Fasheh9517bac2007-02-09 20:24:12 -08001879 ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, ppos, len, 0,
1880 NULL);
Tiger Yang8659ac22006-10-17 18:29:52 -07001881 if (ret < 0) {
1882 mlog_errno(ret);
1883 goto out_unlock;
1884 }
1885
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001886 ret = generic_file_splice_write_nolock(pipe, out, ppos, len, flags);
Tiger Yang8659ac22006-10-17 18:29:52 -07001887
1888out_unlock:
1889 ocfs2_rw_unlock(inode, 1);
1890out:
1891 inode_double_unlock(inode, pipe->inode);
1892
1893 mlog_exit(ret);
1894 return ret;
1895}
1896
1897static ssize_t ocfs2_file_splice_read(struct file *in,
1898 loff_t *ppos,
1899 struct pipe_inode_info *pipe,
1900 size_t len,
1901 unsigned int flags)
1902{
1903 int ret = 0;
Josef Sipekd28c9172006-12-08 02:37:25 -08001904 struct inode *inode = in->f_path.dentry->d_inode;
Tiger Yang8659ac22006-10-17 18:29:52 -07001905
1906 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
1907 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08001908 in->f_path.dentry->d_name.len,
1909 in->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07001910
1911 /*
1912 * See the comment in ocfs2_file_aio_read()
1913 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001914 ret = ocfs2_inode_lock(inode, NULL, 0);
Tiger Yang8659ac22006-10-17 18:29:52 -07001915 if (ret < 0) {
1916 mlog_errno(ret);
1917 goto bail;
1918 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07001919 ocfs2_inode_unlock(inode, 0);
Tiger Yang8659ac22006-10-17 18:29:52 -07001920
1921 ret = generic_file_splice_read(in, ppos, pipe, len, flags);
1922
1923bail:
1924 mlog_exit(ret);
1925 return ret;
1926}
1927
Mark Fashehccd979b2005-12-15 14:31:24 -08001928static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -07001929 const struct iovec *iov,
1930 unsigned long nr_segs,
Mark Fashehccd979b2005-12-15 14:31:24 -08001931 loff_t pos)
1932{
Tiger Yang25899de2006-11-15 15:49:02 +08001933 int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001934 struct file *filp = iocb->ki_filp;
Josef Sipekd28c9172006-12-08 02:37:25 -08001935 struct inode *inode = filp->f_path.dentry->d_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08001936
Badari Pulavarty027445c2006-09-30 23:28:46 -07001937 mlog_entry("(0x%p, %u, '%.*s')\n", filp,
1938 (unsigned int)nr_segs,
Josef Sipekd28c9172006-12-08 02:37:25 -08001939 filp->f_path.dentry->d_name.len,
1940 filp->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08001941
1942 if (!inode) {
1943 ret = -EINVAL;
1944 mlog_errno(ret);
1945 goto bail;
1946 }
1947
Mark Fashehccd979b2005-12-15 14:31:24 -08001948 /*
1949 * buffered reads protect themselves in ->readpage(). O_DIRECT reads
1950 * need locks to protect pending reads from racing with truncate.
1951 */
1952 if (filp->f_flags & O_DIRECT) {
1953 down_read(&inode->i_alloc_sem);
1954 have_alloc_sem = 1;
1955
1956 ret = ocfs2_rw_lock(inode, 0);
1957 if (ret < 0) {
1958 mlog_errno(ret);
1959 goto bail;
1960 }
1961 rw_level = 0;
1962 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07001963 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001964 }
1965
Mark Fashehc4374f82006-05-05 19:04:35 -07001966 /*
1967 * We're fine letting folks race truncates and extending
1968 * writes with read across the cluster, just like they can
1969 * locally. Hence no rw_lock during read.
1970 *
1971 * Take and drop the meta data lock to update inode fields
1972 * like i_size. This allows the checks down below
1973 * generic_file_aio_read() a chance of actually working.
1974 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001975 ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07001976 if (ret < 0) {
1977 mlog_errno(ret);
1978 goto bail;
1979 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07001980 ocfs2_inode_unlock(inode, lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07001981
Badari Pulavarty027445c2006-09-30 23:28:46 -07001982 ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
Mark Fashehccd979b2005-12-15 14:31:24 -08001983 if (ret == -EINVAL)
Sunil Mushran56753bd2008-06-09 11:24:41 -07001984 mlog(0, "generic_file_aio_read returned -EINVAL\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08001985
1986 /* buffered aio wouldn't have proper lock coverage today */
1987 BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
1988
1989 /* see ocfs2_file_aio_write */
1990 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
1991 rw_level = -1;
1992 have_alloc_sem = 0;
1993 }
1994
1995bail:
1996 if (have_alloc_sem)
1997 up_read(&inode->i_alloc_sem);
1998 if (rw_level != -1)
1999 ocfs2_rw_unlock(inode, rw_level);
2000 mlog_exit(ret);
2001
2002 return ret;
2003}
2004
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002005const struct inode_operations ocfs2_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002006 .setattr = ocfs2_setattr,
2007 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002008 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002009 .setxattr = generic_setxattr,
2010 .getxattr = generic_getxattr,
2011 .listxattr = ocfs2_listxattr,
2012 .removexattr = generic_removexattr,
Mark Fasheh385820a2007-07-19 00:14:38 -07002013 .fallocate = ocfs2_fallocate,
Mark Fasheh00dc4172008-10-03 17:32:11 -04002014 .fiemap = ocfs2_fiemap,
Mark Fashehccd979b2005-12-15 14:31:24 -08002015};
2016
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002017const struct inode_operations ocfs2_special_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002018 .setattr = ocfs2_setattr,
2019 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002020 .permission = ocfs2_permission,
Mark Fashehccd979b2005-12-15 14:31:24 -08002021};
2022
Mark Fasheh53da4932008-07-21 14:29:16 -07002023/*
2024 * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
2025 * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
2026 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002027const struct file_operations ocfs2_fops = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002028 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002029 .read = do_sync_read,
2030 .write = do_sync_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002031 .mmap = ocfs2_mmap,
2032 .fsync = ocfs2_sync_file,
2033 .release = ocfs2_file_release,
2034 .open = ocfs2_file_open,
2035 .aio_read = ocfs2_file_aio_read,
2036 .aio_write = ocfs2_file_aio_write,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002037 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002038#ifdef CONFIG_COMPAT
2039 .compat_ioctl = ocfs2_compat_ioctl,
2040#endif
Mark Fasheh53da4932008-07-21 14:29:16 -07002041 .lock = ocfs2_lock,
2042 .flock = ocfs2_flock,
2043 .splice_read = ocfs2_file_splice_read,
2044 .splice_write = ocfs2_file_splice_write,
2045};
2046
2047const struct file_operations ocfs2_dops = {
2048 .llseek = generic_file_llseek,
2049 .read = generic_read_dir,
2050 .readdir = ocfs2_readdir,
2051 .fsync = ocfs2_sync_file,
2052 .release = ocfs2_dir_release,
2053 .open = ocfs2_dir_open,
2054 .unlocked_ioctl = ocfs2_ioctl,
2055#ifdef CONFIG_COMPAT
2056 .compat_ioctl = ocfs2_compat_ioctl,
2057#endif
2058 .lock = ocfs2_lock,
2059 .flock = ocfs2_flock,
2060};
2061
2062/*
2063 * POSIX-lockless variants of our file_operations.
2064 *
2065 * These will be used if the underlying cluster stack does not support
2066 * posix file locking, if the user passes the "localflocks" mount
2067 * option, or if we have a local-only fs.
2068 *
2069 * ocfs2_flock is in here because all stacks handle UNIX file locks,
2070 * so we still want it in the case of no stack support for
2071 * plocks. Internally, it will do the right thing when asked to ignore
2072 * the cluster.
2073 */
2074const struct file_operations ocfs2_fops_no_plocks = {
2075 .llseek = generic_file_llseek,
2076 .read = do_sync_read,
2077 .write = do_sync_write,
2078 .mmap = ocfs2_mmap,
2079 .fsync = ocfs2_sync_file,
2080 .release = ocfs2_file_release,
2081 .open = ocfs2_file_open,
2082 .aio_read = ocfs2_file_aio_read,
2083 .aio_write = ocfs2_file_aio_write,
2084 .unlocked_ioctl = ocfs2_ioctl,
2085#ifdef CONFIG_COMPAT
2086 .compat_ioctl = ocfs2_compat_ioctl,
2087#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002088 .flock = ocfs2_flock,
Tiger Yang8659ac22006-10-17 18:29:52 -07002089 .splice_read = ocfs2_file_splice_read,
2090 .splice_write = ocfs2_file_splice_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002091};
2092
Mark Fasheh53da4932008-07-21 14:29:16 -07002093const struct file_operations ocfs2_dops_no_plocks = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002094 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002095 .read = generic_read_dir,
2096 .readdir = ocfs2_readdir,
2097 .fsync = ocfs2_sync_file,
Mark Fasheh53fc6222007-12-20 16:49:04 -08002098 .release = ocfs2_dir_release,
2099 .open = ocfs2_dir_open,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002100 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002101#ifdef CONFIG_COMPAT
2102 .compat_ioctl = ocfs2_compat_ioctl,
2103#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002104 .flock = ocfs2_flock,
Mark Fashehccd979b2005-12-15 14:31:24 -08002105};