blob: 408d5a66591db7e85bfe7053a3ea03406894f729 [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);
250 if (handle == NULL) {
251 ret = -ENOMEM;
252 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);
Mark Fashehccd979b2005-12-15 14:31:24 -0800315 if (handle == NULL) {
316 ret = -ENOMEM;
317 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
Mark Fashehccd979b2005-12-15 14:31:24 -0800548 status = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &bh,
549 OCFS2_BH_CACHED, inode);
550 if (status < 0) {
551 mlog_errno(status);
552 goto leave;
553 }
554
555 fe = (struct ocfs2_dinode *) bh->b_data;
556 if (!OCFS2_IS_VALID_DINODE(fe)) {
557 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
558 status = -EIO;
559 goto leave;
560 }
561
562restart_all:
563 BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
564
Tao Mae7d4cb62008-08-18 17:38:44 +0800565 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
566 "clusters_to_add = %u\n",
567 (unsigned long long)OCFS2_I(inode)->ip_blkno,
568 (long long)i_size_read(inode), le32_to_cpu(fe->i_clusters),
569 clusters_to_add);
Joel Becker8d6220d2008-08-22 12:46:09 -0700570 ocfs2_init_dinode_extent_tree(&et, inode, bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700571 status = ocfs2_lock_allocators(inode, &et, clusters_to_add, 0,
572 &data_ac, &meta_ac);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800573 if (status) {
574 mlog_errno(status);
575 goto leave;
576 }
577
Tao Ma811f9332008-08-18 17:38:43 +0800578 credits = ocfs2_calc_extend_credits(osb->sb, &fe->id2.i_list,
579 clusters_to_add);
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700580 handle = ocfs2_start_trans(osb, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800581 if (IS_ERR(handle)) {
582 status = PTR_ERR(handle);
583 handle = NULL;
584 mlog_errno(status);
585 goto leave;
586 }
587
588restarted_transaction:
589 /* reserve a write to the file entry early on - that we if we
590 * run out of credits in the allocation path, we can still
591 * update i_size. */
592 status = ocfs2_journal_access(handle, inode, bh,
593 OCFS2_JOURNAL_ACCESS_WRITE);
594 if (status < 0) {
595 mlog_errno(status);
596 goto leave;
597 }
598
599 prev_clusters = OCFS2_I(inode)->ip_clusters;
600
Tao Ma0eb8d472008-08-18 17:38:45 +0800601 status = ocfs2_add_inode_data(osb,
602 inode,
603 &logical_start,
604 clusters_to_add,
605 mark_unwritten,
606 bh,
607 handle,
608 data_ac,
609 meta_ac,
610 &why);
Mark Fashehccd979b2005-12-15 14:31:24 -0800611 if ((status < 0) && (status != -EAGAIN)) {
612 if (status != -ENOSPC)
613 mlog_errno(status);
614 goto leave;
615 }
616
617 status = ocfs2_journal_dirty(handle, bh);
618 if (status < 0) {
619 mlog_errno(status);
620 goto leave;
621 }
622
623 spin_lock(&OCFS2_I(inode)->ip_lock);
624 clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
625 spin_unlock(&OCFS2_I(inode)->ip_lock);
626
627 if (why != RESTART_NONE && clusters_to_add) {
628 if (why == RESTART_META) {
629 mlog(0, "restarting function.\n");
630 restart_func = 1;
631 } else {
632 BUG_ON(why != RESTART_TRANS);
633
634 mlog(0, "restarting transaction.\n");
635 /* TODO: This can be more intelligent. */
636 credits = ocfs2_calc_extend_credits(osb->sb,
Tao Ma811f9332008-08-18 17:38:43 +0800637 &fe->id2.i_list,
Mark Fashehccd979b2005-12-15 14:31:24 -0800638 clusters_to_add);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700639 status = ocfs2_extend_trans(handle, credits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800640 if (status < 0) {
641 /* handle still has to be committed at
642 * this point. */
643 status = -ENOMEM;
644 mlog_errno(status);
645 goto leave;
646 }
647 goto restarted_transaction;
648 }
649 }
650
Mark Fashehb06970532006-03-03 10:24:33 -0800651 mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700652 le32_to_cpu(fe->i_clusters),
653 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -0800654 mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
Jan Kara634bf742007-12-19 15:25:42 +0100655 OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800656
657leave:
Mark Fashehccd979b2005-12-15 14:31:24 -0800658 if (handle) {
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700659 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800660 handle = NULL;
661 }
662 if (data_ac) {
663 ocfs2_free_alloc_context(data_ac);
664 data_ac = NULL;
665 }
666 if (meta_ac) {
667 ocfs2_free_alloc_context(meta_ac);
668 meta_ac = NULL;
669 }
670 if ((!status) && restart_func) {
671 restart_func = 0;
672 goto restart_all;
673 }
Mark Fasheha81cb882008-10-07 14:25:16 -0700674 brelse(bh);
675 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800676
677 mlog_exit(status);
678 return status;
679}
680
681/* Some parts of this taken from generic_cont_expand, which turned out
682 * to be too fragile to do exactly what we need without us having to
Mark Fasheh53013cb2006-05-05 19:04:03 -0700683 * worry about recursive locking in ->prepare_write() and
684 * ->commit_write(). */
Mark Fashehccd979b2005-12-15 14:31:24 -0800685static int ocfs2_write_zero_page(struct inode *inode,
686 u64 size)
687{
688 struct address_space *mapping = inode->i_mapping;
689 struct page *page;
690 unsigned long index;
691 unsigned int offset;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700692 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800693 int ret;
694
695 offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
696 /* ugh. in prepare/commit_write, if from==to==start of block, we
697 ** skip the prepare. make sure we never send an offset for the start
698 ** of a block
699 */
700 if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
701 offset++;
702 }
703 index = size >> PAGE_CACHE_SHIFT;
704
705 page = grab_cache_page(mapping, index);
706 if (!page) {
707 ret = -ENOMEM;
708 mlog_errno(ret);
709 goto out;
710 }
711
Mark Fasheh53013cb2006-05-05 19:04:03 -0700712 ret = ocfs2_prepare_write_nolock(inode, page, offset, offset);
Mark Fashehccd979b2005-12-15 14:31:24 -0800713 if (ret < 0) {
714 mlog_errno(ret);
715 goto out_unlock;
716 }
717
718 if (ocfs2_should_order_data(inode)) {
719 handle = ocfs2_start_walk_page_trans(inode, page, offset,
720 offset);
721 if (IS_ERR(handle)) {
722 ret = PTR_ERR(handle);
723 handle = NULL;
724 goto out_unlock;
725 }
726 }
727
728 /* must not update i_size! */
729 ret = block_commit_write(page, offset, offset);
730 if (ret < 0)
731 mlog_errno(ret);
732 else
733 ret = 0;
734
735 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700736 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800737out_unlock:
738 unlock_page(page);
739 page_cache_release(page);
740out:
741 return ret;
742}
743
744static int ocfs2_zero_extend(struct inode *inode,
745 u64 zero_to_size)
746{
747 int ret = 0;
748 u64 start_off;
749 struct super_block *sb = inode->i_sb;
750
751 start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode));
752 while (start_off < zero_to_size) {
753 ret = ocfs2_write_zero_page(inode, start_off);
754 if (ret < 0) {
755 mlog_errno(ret);
756 goto out;
757 }
758
759 start_off += sb->s_blocksize;
Mark Fashehe2057c52006-10-03 17:53:05 -0700760
761 /*
762 * Very large extends have the potential to lock up
763 * the cpu for extended periods of time.
764 */
765 cond_resched();
Mark Fashehccd979b2005-12-15 14:31:24 -0800766 }
767
768out:
769 return ret;
770}
771
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700772int ocfs2_extend_no_holes(struct inode *inode, u64 new_i_size, u64 zero_to)
773{
774 int ret;
775 u32 clusters_to_add;
776 struct ocfs2_inode_info *oi = OCFS2_I(inode);
777
778 clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size);
779 if (clusters_to_add < oi->ip_clusters)
780 clusters_to_add = 0;
781 else
782 clusters_to_add -= oi->ip_clusters;
783
784 if (clusters_to_add) {
785 ret = __ocfs2_extend_allocation(inode, oi->ip_clusters,
786 clusters_to_add, 0);
787 if (ret) {
788 mlog_errno(ret);
789 goto out;
790 }
791 }
792
793 /*
794 * Call this even if we don't add any clusters to the tree. We
795 * still need to zero the area between the old i_size and the
796 * new i_size.
797 */
798 ret = ocfs2_zero_extend(inode, zero_to);
799 if (ret < 0)
800 mlog_errno(ret);
801
802out:
803 return ret;
804}
805
Mark Fashehccd979b2005-12-15 14:31:24 -0800806static int ocfs2_extend_file(struct inode *inode,
807 struct buffer_head *di_bh,
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700808 u64 new_i_size)
Mark Fashehccd979b2005-12-15 14:31:24 -0800809{
Mark Fashehc934a922007-10-18 15:23:46 -0700810 int ret = 0;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700811 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800812
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700813 BUG_ON(!di_bh);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700814
Mark Fashehccd979b2005-12-15 14:31:24 -0800815 /* setattr sometimes calls us like this. */
816 if (new_i_size == 0)
817 goto out;
818
819 if (i_size_read(inode) == new_i_size)
820 goto out;
821 BUG_ON(new_i_size < i_size_read(inode));
822
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700823 /*
824 * Fall through for converting inline data, even if the fs
825 * supports sparse files.
826 *
827 * The check for inline data here is legal - nobody can add
828 * the feature since we have i_mutex. We must check it again
829 * after acquiring ip_alloc_sem though, as paths like mmap
830 * might have raced us to converting the inode to extents.
831 */
832 if (!(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
833 && ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800834 goto out_update_size;
Mark Fashehccd979b2005-12-15 14:31:24 -0800835
Mark Fasheh0effef72006-10-03 17:44:42 -0700836 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700837 * The alloc sem blocks people in read/write from reading our
838 * allocation until we're done changing it. We depend on
839 * i_mutex to block other extend/truncate calls while we're
840 * here.
Mark Fasheh0effef72006-10-03 17:44:42 -0700841 */
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700842 down_write(&oi->ip_alloc_sem);
843
844 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
845 /*
846 * We can optimize small extends by keeping the inodes
847 * inline data.
848 */
849 if (ocfs2_size_fits_inline_data(di_bh, new_i_size)) {
850 up_write(&oi->ip_alloc_sem);
851 goto out_update_size;
852 }
853
854 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
855 if (ret) {
856 up_write(&oi->ip_alloc_sem);
857
858 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700859 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700860 }
861 }
862
863 if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
864 ret = ocfs2_extend_no_holes(inode, new_i_size, new_i_size);
865
866 up_write(&oi->ip_alloc_sem);
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700867
Mark Fasheh0effef72006-10-03 17:44:42 -0700868 if (ret < 0) {
869 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -0700870 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800871 }
872
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800873out_update_size:
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700874 ret = ocfs2_simple_size_update(inode, di_bh, new_i_size);
875 if (ret < 0)
876 mlog_errno(ret);
Mark Fasheh53013cb2006-05-05 19:04:03 -0700877
Mark Fashehccd979b2005-12-15 14:31:24 -0800878out:
879 return ret;
880}
881
882int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
883{
884 int status = 0, size_change;
885 struct inode *inode = dentry->d_inode;
886 struct super_block *sb = inode->i_sb;
887 struct ocfs2_super *osb = OCFS2_SB(sb);
888 struct buffer_head *bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700889 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800890
891 mlog_entry("(0x%p, '%.*s')\n", dentry,
892 dentry->d_name.len, dentry->d_name.name);
893
Sunil Mushranbc535802008-04-18 10:23:53 -0700894 /* ensuring we don't even attempt to truncate a symlink */
895 if (S_ISLNK(inode->i_mode))
896 attr->ia_valid &= ~ATTR_SIZE;
897
Mark Fashehccd979b2005-12-15 14:31:24 -0800898 if (attr->ia_valid & ATTR_MODE)
899 mlog(0, "mode change: %d\n", attr->ia_mode);
900 if (attr->ia_valid & ATTR_UID)
901 mlog(0, "uid change: %d\n", attr->ia_uid);
902 if (attr->ia_valid & ATTR_GID)
903 mlog(0, "gid change: %d\n", attr->ia_gid);
904 if (attr->ia_valid & ATTR_SIZE)
905 mlog(0, "size change...\n");
906 if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
907 mlog(0, "time change...\n");
908
909#define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
910 | ATTR_GID | ATTR_UID | ATTR_MODE)
911 if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
912 mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
913 return 0;
914 }
915
916 status = inode_change_ok(inode, attr);
917 if (status)
918 return status;
919
920 size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
921 if (size_change) {
922 status = ocfs2_rw_lock(inode, 1);
923 if (status < 0) {
924 mlog_errno(status);
925 goto bail;
926 }
927 }
928
Mark Fashehe63aecb62007-10-18 15:30:42 -0700929 status = ocfs2_inode_lock(inode, &bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800930 if (status < 0) {
931 if (status != -ENOENT)
932 mlog_errno(status);
933 goto bail_unlock_rw;
934 }
935
936 if (size_change && attr->ia_size != i_size_read(inode)) {
Mark Fashehce76fd32007-07-20 12:02:14 -0700937 if (attr->ia_size > sb->s_maxbytes) {
938 status = -EFBIG;
939 goto bail_unlock;
940 }
941
Joel Becker2b4e30f2008-09-03 20:03:41 -0700942 if (i_size_read(inode) > attr->ia_size) {
943 if (ocfs2_should_order_data(inode)) {
944 status = ocfs2_begin_ordered_truncate(inode,
945 attr->ia_size);
946 if (status)
947 goto bail_unlock;
948 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800949 status = ocfs2_truncate_file(inode, bh, attr->ia_size);
Joel Becker2b4e30f2008-09-03 20:03:41 -0700950 } else
Mark Fasheh65ed39d2007-08-28 17:13:23 -0700951 status = ocfs2_extend_file(inode, bh, attr->ia_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800952 if (status < 0) {
953 if (status != -ENOSPC)
954 mlog_errno(status);
955 status = -ENOSPC;
956 goto bail_unlock;
957 }
958 }
959
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700960 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800961 if (IS_ERR(handle)) {
962 status = PTR_ERR(handle);
963 mlog_errno(status);
964 goto bail_unlock;
965 }
966
Mark Fasheh7307de82007-05-09 15:16:19 -0700967 /*
968 * This will intentionally not wind up calling vmtruncate(),
969 * since all the work for a size change has been done above.
970 * Otherwise, we could get into problems with truncate as
971 * ip_alloc_sem is used there to protect against i_size
972 * changes.
973 */
Mark Fashehccd979b2005-12-15 14:31:24 -0800974 status = inode_setattr(inode, attr);
975 if (status < 0) {
976 mlog_errno(status);
977 goto bail_commit;
978 }
979
980 status = ocfs2_mark_inode_dirty(handle, inode, bh);
981 if (status < 0)
982 mlog_errno(status);
983
984bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700985 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800986bail_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700987 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800988bail_unlock_rw:
989 if (size_change)
990 ocfs2_rw_unlock(inode, 1);
991bail:
Mark Fasheha81cb882008-10-07 14:25:16 -0700992 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800993
994 mlog_exit(status);
995 return status;
996}
997
998int ocfs2_getattr(struct vfsmount *mnt,
999 struct dentry *dentry,
1000 struct kstat *stat)
1001{
1002 struct inode *inode = dentry->d_inode;
1003 struct super_block *sb = dentry->d_inode->i_sb;
1004 struct ocfs2_super *osb = sb->s_fs_info;
1005 int err;
1006
1007 mlog_entry_void();
1008
1009 err = ocfs2_inode_revalidate(dentry);
1010 if (err) {
1011 if (err != -ENOENT)
1012 mlog_errno(err);
1013 goto bail;
1014 }
1015
1016 generic_fillattr(inode, stat);
1017
1018 /* We set the blksize from the cluster size for performance */
1019 stat->blksize = osb->s_clustersize;
1020
1021bail:
1022 mlog_exit(err);
1023
1024 return err;
1025}
1026
Al Viroe6305c42008-07-15 21:03:57 -04001027int ocfs2_permission(struct inode *inode, int mask)
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001028{
1029 int ret;
1030
1031 mlog_entry_void();
1032
Mark Fashehe63aecb62007-10-18 15:30:42 -07001033 ret = ocfs2_inode_lock(inode, NULL, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001034 if (ret) {
Mark Fasheha9f5f702007-04-26 11:43:43 -07001035 if (ret != -ENOENT)
1036 mlog_errno(ret);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001037 goto out;
1038 }
1039
1040 ret = generic_permission(inode, mask, NULL);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001041
Mark Fashehe63aecb62007-10-18 15:30:42 -07001042 ocfs2_inode_unlock(inode, 0);
Tiger Yangd38eb8d2006-11-27 09:59:21 +08001043out:
1044 mlog_exit(ret);
1045 return ret;
1046}
1047
Mark Fashehb2580102007-03-09 16:53:21 -08001048static int __ocfs2_write_remove_suid(struct inode *inode,
1049 struct buffer_head *bh)
Mark Fashehccd979b2005-12-15 14:31:24 -08001050{
1051 int ret;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001052 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08001053 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1054 struct ocfs2_dinode *di;
1055
Mark Fashehb06970532006-03-03 10:24:33 -08001056 mlog_entry("(Inode %llu, mode 0%o)\n",
Mark Fashehb2580102007-03-09 16:53:21 -08001057 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001058
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001059 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -08001060 if (handle == NULL) {
1061 ret = -ENOMEM;
1062 mlog_errno(ret);
1063 goto out;
1064 }
1065
Mark Fashehccd979b2005-12-15 14:31:24 -08001066 ret = ocfs2_journal_access(handle, inode, bh,
1067 OCFS2_JOURNAL_ACCESS_WRITE);
1068 if (ret < 0) {
1069 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001070 goto out_trans;
Mark Fashehccd979b2005-12-15 14:31:24 -08001071 }
1072
1073 inode->i_mode &= ~S_ISUID;
1074 if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
1075 inode->i_mode &= ~S_ISGID;
1076
1077 di = (struct ocfs2_dinode *) bh->b_data;
1078 di->i_mode = cpu_to_le16(inode->i_mode);
1079
1080 ret = ocfs2_journal_dirty(handle, bh);
1081 if (ret < 0)
1082 mlog_errno(ret);
Mark Fashehb2580102007-03-09 16:53:21 -08001083
Mark Fashehccd979b2005-12-15 14:31:24 -08001084out_trans:
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001085 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001086out:
1087 mlog_exit(ret);
1088 return ret;
1089}
1090
Mark Fasheh9517bac2007-02-09 20:24:12 -08001091/*
1092 * Will look for holes and unwritten extents in the range starting at
1093 * pos for count bytes (inclusive).
1094 */
1095static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
1096 size_t count)
1097{
1098 int ret = 0;
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001099 unsigned int extent_flags;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001100 u32 cpos, clusters, extent_len, phys_cpos;
1101 struct super_block *sb = inode->i_sb;
1102
1103 cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1104 clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1105
1106 while (clusters) {
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001107 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1108 &extent_flags);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001109 if (ret < 0) {
1110 mlog_errno(ret);
1111 goto out;
1112 }
1113
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001114 if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001115 ret = 1;
1116 break;
1117 }
1118
1119 if (extent_len > clusters)
1120 extent_len = clusters;
1121
1122 clusters -= extent_len;
1123 cpos += extent_len;
1124 }
1125out:
1126 return ret;
1127}
1128
Mark Fashehb2580102007-03-09 16:53:21 -08001129static int ocfs2_write_remove_suid(struct inode *inode)
1130{
1131 int ret;
1132 struct buffer_head *bh = NULL;
1133 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1134
1135 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
1136 oi->ip_blkno, &bh, OCFS2_BH_CACHED, inode);
1137 if (ret < 0) {
1138 mlog_errno(ret);
1139 goto out;
1140 }
1141
1142 ret = __ocfs2_write_remove_suid(inode, bh);
1143out:
1144 brelse(bh);
1145 return ret;
1146}
1147
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001148/*
1149 * Allocate enough extents to cover the region starting at byte offset
1150 * start for len bytes. Existing extents are skipped, any extents
1151 * added are marked as "unwritten".
1152 */
1153static int ocfs2_allocate_unwritten_extents(struct inode *inode,
1154 u64 start, u64 len)
1155{
1156 int ret;
1157 u32 cpos, phys_cpos, clusters, alloc_size;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001158 u64 end = start + len;
1159 struct buffer_head *di_bh = NULL;
1160
1161 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1162 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
1163 OCFS2_I(inode)->ip_blkno, &di_bh,
1164 OCFS2_BH_CACHED, inode);
1165 if (ret) {
1166 mlog_errno(ret);
1167 goto out;
1168 }
1169
1170 /*
1171 * Nothing to do if the requested reservation range
1172 * fits within the inode.
1173 */
1174 if (ocfs2_size_fits_inline_data(di_bh, end))
1175 goto out;
1176
1177 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
1178 if (ret) {
1179 mlog_errno(ret);
1180 goto out;
1181 }
1182 }
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001183
1184 /*
1185 * We consider both start and len to be inclusive.
1186 */
1187 cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1188 clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len);
1189 clusters -= cpos;
1190
1191 while (clusters) {
1192 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1193 &alloc_size, NULL);
1194 if (ret) {
1195 mlog_errno(ret);
1196 goto out;
1197 }
1198
1199 /*
1200 * Hole or existing extent len can be arbitrary, so
1201 * cap it to our own allocation request.
1202 */
1203 if (alloc_size > clusters)
1204 alloc_size = clusters;
1205
1206 if (phys_cpos) {
1207 /*
1208 * We already have an allocation at this
1209 * region so we can safely skip it.
1210 */
1211 goto next;
1212 }
1213
1214 ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
1215 if (ret) {
1216 if (ret != -ENOSPC)
1217 mlog_errno(ret);
1218 goto out;
1219 }
1220
1221next:
1222 cpos += alloc_size;
1223 clusters -= alloc_size;
1224 }
1225
1226 ret = 0;
1227out:
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001228
1229 brelse(di_bh);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08001230 return ret;
1231}
1232
Mark Fasheh063c4562007-07-03 13:34:11 -07001233static int __ocfs2_remove_inode_range(struct inode *inode,
1234 struct buffer_head *di_bh,
1235 u32 cpos, u32 phys_cpos, u32 len,
1236 struct ocfs2_cached_dealloc_ctxt *dealloc)
1237{
1238 int ret;
1239 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
1240 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1241 struct inode *tl_inode = osb->osb_tl_inode;
1242 handle_t *handle;
1243 struct ocfs2_alloc_context *meta_ac = NULL;
1244 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
Joel Beckerf99b9b72008-08-20 19:36:33 -07001245 struct ocfs2_extent_tree et;
Mark Fasheh063c4562007-07-03 13:34:11 -07001246
Joel Becker8d6220d2008-08-22 12:46:09 -07001247 ocfs2_init_dinode_extent_tree(&et, inode, di_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07001248
1249 ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
Mark Fasheh063c4562007-07-03 13:34:11 -07001250 if (ret) {
1251 mlog_errno(ret);
1252 return ret;
1253 }
1254
1255 mutex_lock(&tl_inode->i_mutex);
1256
1257 if (ocfs2_truncate_log_needs_flush(osb)) {
1258 ret = __ocfs2_flush_truncate_log(osb);
1259 if (ret < 0) {
1260 mlog_errno(ret);
1261 goto out;
1262 }
1263 }
1264
1265 handle = ocfs2_start_trans(osb, OCFS2_REMOVE_EXTENT_CREDITS);
1266 if (handle == NULL) {
1267 ret = -ENOMEM;
1268 mlog_errno(ret);
1269 goto out;
1270 }
1271
1272 ret = ocfs2_journal_access(handle, inode, di_bh,
1273 OCFS2_JOURNAL_ACCESS_WRITE);
1274 if (ret) {
1275 mlog_errno(ret);
1276 goto out;
1277 }
1278
Joel Beckerf99b9b72008-08-20 19:36:33 -07001279 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, meta_ac,
1280 dealloc);
Mark Fasheh063c4562007-07-03 13:34:11 -07001281 if (ret) {
1282 mlog_errno(ret);
1283 goto out_commit;
1284 }
1285
1286 OCFS2_I(inode)->ip_clusters -= len;
1287 di->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
1288
1289 ret = ocfs2_journal_dirty(handle, di_bh);
1290 if (ret) {
1291 mlog_errno(ret);
1292 goto out_commit;
1293 }
1294
1295 ret = ocfs2_truncate_log_append(osb, handle, phys_blkno, len);
1296 if (ret)
1297 mlog_errno(ret);
1298
1299out_commit:
1300 ocfs2_commit_trans(osb, handle);
1301out:
1302 mutex_unlock(&tl_inode->i_mutex);
1303
1304 if (meta_ac)
1305 ocfs2_free_alloc_context(meta_ac);
1306
1307 return ret;
1308}
1309
1310/*
1311 * Truncate a byte range, avoiding pages within partial clusters. This
1312 * preserves those pages for the zeroing code to write to.
1313 */
1314static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start,
1315 u64 byte_len)
1316{
1317 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1318 loff_t start, end;
1319 struct address_space *mapping = inode->i_mapping;
1320
1321 start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start);
1322 end = byte_start + byte_len;
1323 end = end & ~(osb->s_clustersize - 1);
1324
1325 if (start < end) {
1326 unmap_mapping_range(mapping, start, end - start, 0);
1327 truncate_inode_pages_range(mapping, start, end - 1);
1328 }
1329}
1330
1331static int ocfs2_zero_partial_clusters(struct inode *inode,
1332 u64 start, u64 len)
1333{
1334 int ret = 0;
1335 u64 tmpend, end = start + len;
1336 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1337 unsigned int csize = osb->s_clustersize;
1338 handle_t *handle;
1339
1340 /*
1341 * The "start" and "end" values are NOT necessarily part of
1342 * the range whose allocation is being deleted. Rather, this
1343 * is what the user passed in with the request. We must zero
1344 * partial clusters here. There's no need to worry about
1345 * physical allocation - the zeroing code knows to skip holes.
1346 */
1347 mlog(0, "byte start: %llu, end: %llu\n",
1348 (unsigned long long)start, (unsigned long long)end);
1349
1350 /*
1351 * If both edges are on a cluster boundary then there's no
1352 * zeroing required as the region is part of the allocation to
1353 * be truncated.
1354 */
1355 if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0)
1356 goto out;
1357
1358 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1359 if (handle == NULL) {
1360 ret = -ENOMEM;
1361 mlog_errno(ret);
1362 goto out;
1363 }
1364
1365 /*
1366 * We want to get the byte offset of the end of the 1st cluster.
1367 */
1368 tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1));
1369 if (tmpend > end)
1370 tmpend = end;
1371
1372 mlog(0, "1st range: start: %llu, tmpend: %llu\n",
1373 (unsigned long long)start, (unsigned long long)tmpend);
1374
1375 ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend);
1376 if (ret)
1377 mlog_errno(ret);
1378
1379 if (tmpend < end) {
1380 /*
1381 * This may make start and end equal, but the zeroing
1382 * code will skip any work in that case so there's no
1383 * need to catch it up here.
1384 */
1385 start = end & ~(osb->s_clustersize - 1);
1386
1387 mlog(0, "2nd range: start: %llu, end: %llu\n",
1388 (unsigned long long)start, (unsigned long long)end);
1389
1390 ret = ocfs2_zero_range_for_truncate(inode, handle, start, end);
1391 if (ret)
1392 mlog_errno(ret);
1393 }
1394
1395 ocfs2_commit_trans(osb, handle);
1396out:
1397 return ret;
1398}
1399
1400static int ocfs2_remove_inode_range(struct inode *inode,
1401 struct buffer_head *di_bh, u64 byte_start,
1402 u64 byte_len)
1403{
1404 int ret = 0;
1405 u32 trunc_start, trunc_len, cpos, phys_cpos, alloc_size;
1406 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1407 struct ocfs2_cached_dealloc_ctxt dealloc;
Mark Fashehb1967d02007-11-20 11:56:39 -08001408 struct address_space *mapping = inode->i_mapping;
Mark Fasheh063c4562007-07-03 13:34:11 -07001409
1410 ocfs2_init_dealloc_ctxt(&dealloc);
1411
1412 if (byte_len == 0)
1413 return 0;
1414
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001415 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1416 ret = ocfs2_truncate_inline(inode, di_bh, byte_start,
Mark Fashehb1967d02007-11-20 11:56:39 -08001417 byte_start + byte_len, 0);
1418 if (ret) {
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001419 mlog_errno(ret);
Mark Fashehb1967d02007-11-20 11:56:39 -08001420 goto out;
1421 }
1422 /*
1423 * There's no need to get fancy with the page cache
1424 * truncate of an inline-data inode. We're talking
1425 * about less than a page here, which will be cached
1426 * in the dinode buffer anyway.
1427 */
1428 unmap_mapping_range(mapping, 0, 0, 0);
1429 truncate_inode_pages(mapping, 0);
1430 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001431 }
1432
Mark Fasheh063c4562007-07-03 13:34:11 -07001433 trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start);
1434 trunc_len = (byte_start + byte_len) >> osb->s_clustersize_bits;
1435 if (trunc_len >= trunc_start)
1436 trunc_len -= trunc_start;
1437 else
1438 trunc_len = 0;
1439
1440 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u\n",
1441 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1442 (unsigned long long)byte_start,
1443 (unsigned long long)byte_len, trunc_start, trunc_len);
1444
1445 ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len);
1446 if (ret) {
1447 mlog_errno(ret);
1448 goto out;
1449 }
1450
1451 cpos = trunc_start;
1452 while (trunc_len) {
1453 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1454 &alloc_size, NULL);
1455 if (ret) {
1456 mlog_errno(ret);
1457 goto out;
1458 }
1459
1460 if (alloc_size > trunc_len)
1461 alloc_size = trunc_len;
1462
1463 /* Only do work for non-holes */
1464 if (phys_cpos != 0) {
1465 ret = __ocfs2_remove_inode_range(inode, di_bh, cpos,
1466 phys_cpos, alloc_size,
1467 &dealloc);
1468 if (ret) {
1469 mlog_errno(ret);
1470 goto out;
1471 }
1472 }
1473
1474 cpos += alloc_size;
1475 trunc_len -= alloc_size;
1476 }
1477
1478 ocfs2_truncate_cluster_pages(inode, byte_start, byte_len);
1479
1480out:
1481 ocfs2_schedule_truncate_log_flush(osb, 1);
1482 ocfs2_run_deallocs(osb, &dealloc);
1483
1484 return ret;
1485}
1486
Mark Fashehb2580102007-03-09 16:53:21 -08001487/*
1488 * Parts of this function taken from xfs_change_file_space()
1489 */
Mark Fasheh385820a2007-07-19 00:14:38 -07001490static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
1491 loff_t f_pos, unsigned int cmd,
1492 struct ocfs2_space_resv *sr,
1493 int change_size)
Mark Fashehb2580102007-03-09 16:53:21 -08001494{
1495 int ret;
1496 s64 llen;
Mark Fasheh385820a2007-07-19 00:14:38 -07001497 loff_t size;
Mark Fashehb2580102007-03-09 16:53:21 -08001498 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1499 struct buffer_head *di_bh = NULL;
1500 handle_t *handle;
Mark Fasheha00cce32007-07-20 11:28:30 -07001501 unsigned long long max_off = inode->i_sb->s_maxbytes;
Mark Fashehb2580102007-03-09 16:53:21 -08001502
Mark Fashehb2580102007-03-09 16:53:21 -08001503 if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
1504 return -EROFS;
1505
1506 mutex_lock(&inode->i_mutex);
1507
1508 /*
1509 * This prevents concurrent writes on other nodes
1510 */
1511 ret = ocfs2_rw_lock(inode, 1);
1512 if (ret) {
1513 mlog_errno(ret);
1514 goto out;
1515 }
1516
Mark Fashehe63aecb62007-10-18 15:30:42 -07001517 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001518 if (ret) {
1519 mlog_errno(ret);
1520 goto out_rw_unlock;
1521 }
1522
1523 if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
1524 ret = -EPERM;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001525 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001526 }
1527
1528 switch (sr->l_whence) {
1529 case 0: /*SEEK_SET*/
1530 break;
1531 case 1: /*SEEK_CUR*/
Mark Fasheh385820a2007-07-19 00:14:38 -07001532 sr->l_start += f_pos;
Mark Fashehb2580102007-03-09 16:53:21 -08001533 break;
1534 case 2: /*SEEK_END*/
1535 sr->l_start += i_size_read(inode);
1536 break;
1537 default:
1538 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001539 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001540 }
1541 sr->l_whence = 0;
1542
1543 llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len;
1544
1545 if (sr->l_start < 0
1546 || sr->l_start > max_off
1547 || (sr->l_start + llen) < 0
1548 || (sr->l_start + llen) > max_off) {
1549 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001550 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001551 }
Mark Fasheh385820a2007-07-19 00:14:38 -07001552 size = sr->l_start + sr->l_len;
Mark Fashehb2580102007-03-09 16:53:21 -08001553
1554 if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) {
1555 if (sr->l_len <= 0) {
1556 ret = -EINVAL;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001557 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001558 }
1559 }
1560
Mark Fasheh385820a2007-07-19 00:14:38 -07001561 if (file && should_remove_suid(file->f_path.dentry)) {
Mark Fashehb2580102007-03-09 16:53:21 -08001562 ret = __ocfs2_write_remove_suid(inode, di_bh);
1563 if (ret) {
1564 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001565 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001566 }
1567 }
1568
1569 down_write(&OCFS2_I(inode)->ip_alloc_sem);
1570 switch (cmd) {
1571 case OCFS2_IOC_RESVSP:
1572 case OCFS2_IOC_RESVSP64:
1573 /*
1574 * This takes unsigned offsets, but the signed ones we
1575 * pass have been checked against overflow above.
1576 */
1577 ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start,
1578 sr->l_len);
1579 break;
1580 case OCFS2_IOC_UNRESVSP:
1581 case OCFS2_IOC_UNRESVSP64:
1582 ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start,
1583 sr->l_len);
1584 break;
1585 default:
1586 ret = -EINVAL;
1587 }
1588 up_write(&OCFS2_I(inode)->ip_alloc_sem);
1589 if (ret) {
1590 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001591 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001592 }
1593
1594 /*
1595 * We update c/mtime for these changes
1596 */
1597 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1598 if (IS_ERR(handle)) {
1599 ret = PTR_ERR(handle);
1600 mlog_errno(ret);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001601 goto out_inode_unlock;
Mark Fashehb2580102007-03-09 16:53:21 -08001602 }
1603
Mark Fasheh385820a2007-07-19 00:14:38 -07001604 if (change_size && i_size_read(inode) < size)
1605 i_size_write(inode, size);
1606
Mark Fashehb2580102007-03-09 16:53:21 -08001607 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1608 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
1609 if (ret < 0)
1610 mlog_errno(ret);
1611
1612 ocfs2_commit_trans(osb, handle);
1613
Mark Fashehe63aecb62007-10-18 15:30:42 -07001614out_inode_unlock:
Mark Fashehb2580102007-03-09 16:53:21 -08001615 brelse(di_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001616 ocfs2_inode_unlock(inode, 1);
Mark Fashehb2580102007-03-09 16:53:21 -08001617out_rw_unlock:
1618 ocfs2_rw_unlock(inode, 1);
1619
Mark Fashehb2580102007-03-09 16:53:21 -08001620out:
Julia Lawallc259ae52008-07-21 09:59:15 +02001621 mutex_unlock(&inode->i_mutex);
Mark Fashehb2580102007-03-09 16:53:21 -08001622 return ret;
1623}
1624
Mark Fasheh385820a2007-07-19 00:14:38 -07001625int ocfs2_change_file_space(struct file *file, unsigned int cmd,
1626 struct ocfs2_space_resv *sr)
1627{
1628 struct inode *inode = file->f_path.dentry->d_inode;
1629 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);;
1630
1631 if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
1632 !ocfs2_writes_unwritten_extents(osb))
1633 return -ENOTTY;
1634 else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) &&
1635 !ocfs2_sparse_alloc(osb))
1636 return -ENOTTY;
1637
1638 if (!S_ISREG(inode->i_mode))
1639 return -EINVAL;
1640
1641 if (!(file->f_mode & FMODE_WRITE))
1642 return -EBADF;
1643
1644 return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0);
1645}
1646
1647static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1648 loff_t len)
1649{
1650 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1651 struct ocfs2_space_resv sr;
1652 int change_size = 1;
1653
1654 if (!ocfs2_writes_unwritten_extents(osb))
1655 return -EOPNOTSUPP;
1656
1657 if (S_ISDIR(inode->i_mode))
1658 return -ENODEV;
1659
1660 if (mode & FALLOC_FL_KEEP_SIZE)
1661 change_size = 0;
1662
1663 sr.l_whence = 0;
1664 sr.l_start = (s64)offset;
1665 sr.l_len = (s64)len;
1666
1667 return __ocfs2_change_file_space(NULL, inode, offset,
1668 OCFS2_IOC_RESVSP64, &sr, change_size);
1669}
1670
Tiger Yang8659ac22006-10-17 18:29:52 -07001671static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
1672 loff_t *ppos,
1673 size_t count,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001674 int appending,
1675 int *direct_io)
Mark Fashehccd979b2005-12-15 14:31:24 -08001676{
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001677 int ret = 0, meta_level = 0;
Tiger Yang8659ac22006-10-17 18:29:52 -07001678 struct inode *inode = dentry->d_inode;
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001679 loff_t saved_pos, end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001680
Mark Fashehccd979b2005-12-15 14:31:24 -08001681 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001682 * We start with a read level meta lock and only jump to an ex
1683 * if we need to make modifications here.
Mark Fashehccd979b2005-12-15 14:31:24 -08001684 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001685 for(;;) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001686 ret = ocfs2_inode_lock(inode, NULL, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001687 if (ret < 0) {
1688 meta_level = -1;
1689 mlog_errno(ret);
1690 goto out;
1691 }
1692
1693 /* Clear suid / sgid if necessary. We do this here
1694 * instead of later in the write path because
1695 * remove_suid() calls ->setattr without any hint that
1696 * we may have already done our cluster locking. Since
1697 * ocfs2_setattr() *must* take cluster locks to
1698 * proceeed, this will lead us to recursively lock the
1699 * inode. There's also the dinode i_size state which
1700 * can be lost via setattr during extending writes (we
1701 * set inode->i_size at the end of a write. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001702 if (should_remove_suid(dentry)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001703 if (meta_level == 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -07001704 ocfs2_inode_unlock(inode, meta_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001705 meta_level = 1;
1706 continue;
1707 }
1708
1709 ret = ocfs2_write_remove_suid(inode);
1710 if (ret < 0) {
1711 mlog_errno(ret);
Tiger Yang8659ac22006-10-17 18:29:52 -07001712 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -08001713 }
1714 }
1715
1716 /* work on a copy of ppos until we're sure that we won't have
1717 * to recalculate it due to relocking. */
Tiger Yang8659ac22006-10-17 18:29:52 -07001718 if (appending) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001719 saved_pos = i_size_read(inode);
1720 mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
1721 } else {
Tiger Yang8659ac22006-10-17 18:29:52 -07001722 saved_pos = *ppos;
Mark Fashehccd979b2005-12-15 14:31:24 -08001723 }
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001724
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001725 end = saved_pos + count;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001726
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001727 /*
1728 * Skip the O_DIRECT checks if we don't need
1729 * them.
1730 */
1731 if (!direct_io || !(*direct_io))
1732 break;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001733
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001734 /*
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001735 * There's no sane way to do direct writes to an inode
1736 * with inline data.
1737 */
1738 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1739 *direct_io = 0;
1740 break;
1741 }
1742
1743 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001744 * Allowing concurrent direct writes means
1745 * i_size changes wouldn't be synchronized, so
1746 * one node could wind up truncating another
1747 * nodes writes.
1748 */
1749 if (end > i_size_read(inode)) {
1750 *direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001751 break;
1752 }
1753
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001754 /*
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001755 * We don't fill holes during direct io, so
1756 * check for them here. If any are found, the
1757 * caller will have to retake some cluster
1758 * locks and initiate the io as buffered.
Mark Fasheh3a0782d2007-01-17 12:53:31 -08001759 */
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001760 ret = ocfs2_check_range_for_holes(inode, saved_pos, count);
1761 if (ret == 1) {
1762 *direct_io = 0;
1763 ret = 0;
1764 } else if (ret < 0)
1765 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -08001766 break;
1767 }
1768
Tiger Yang8659ac22006-10-17 18:29:52 -07001769 if (appending)
1770 *ppos = saved_pos;
1771
1772out_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07001773 ocfs2_inode_unlock(inode, meta_level);
Tiger Yang8659ac22006-10-17 18:29:52 -07001774
1775out:
1776 return ret;
1777}
1778
1779static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
1780 const struct iovec *iov,
1781 unsigned long nr_segs,
1782 loff_t pos)
1783{
Mark Fasheh9517bac2007-02-09 20:24:12 -08001784 int ret, direct_io, appending, rw_level, have_alloc_sem = 0;
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001785 int can_do_direct;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001786 ssize_t written = 0;
1787 size_t ocount; /* original count */
1788 size_t count; /* after file limit checks */
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001789 loff_t old_size, *ppos = &iocb->ki_pos;
1790 u32 old_clusters;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001791 struct file *file = iocb->ki_filp;
1792 struct inode *inode = file->f_path.dentry->d_inode;
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001793 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang8659ac22006-10-17 18:29:52 -07001794
Mark Fasheh9517bac2007-02-09 20:24:12 -08001795 mlog_entry("(0x%p, %u, '%.*s')\n", file,
Tiger Yang8659ac22006-10-17 18:29:52 -07001796 (unsigned int)nr_segs,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001797 file->f_path.dentry->d_name.len,
1798 file->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07001799
Tiger Yang8659ac22006-10-17 18:29:52 -07001800 if (iocb->ki_left == 0)
1801 return 0;
1802
Mark Fasheh9517bac2007-02-09 20:24:12 -08001803 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1804
1805 appending = file->f_flags & O_APPEND ? 1 : 0;
1806 direct_io = file->f_flags & O_DIRECT ? 1 : 0;
1807
Tiger Yang8659ac22006-10-17 18:29:52 -07001808 mutex_lock(&inode->i_mutex);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001809
1810relock:
Tiger Yang8659ac22006-10-17 18:29:52 -07001811 /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001812 if (direct_io) {
Tiger Yang8659ac22006-10-17 18:29:52 -07001813 down_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001814 have_alloc_sem = 1;
Tiger Yang8659ac22006-10-17 18:29:52 -07001815 }
1816
1817 /* concurrent O_DIRECT writes are allowed */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001818 rw_level = !direct_io;
Tiger Yang8659ac22006-10-17 18:29:52 -07001819 ret = ocfs2_rw_lock(inode, rw_level);
1820 if (ret < 0) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001821 mlog_errno(ret);
1822 goto out_sems;
1823 }
1824
1825 can_do_direct = direct_io;
1826 ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
1827 iocb->ki_left, appending,
1828 &can_do_direct);
1829 if (ret < 0) {
Tiger Yang8659ac22006-10-17 18:29:52 -07001830 mlog_errno(ret);
1831 goto out;
1832 }
1833
Mark Fasheh9517bac2007-02-09 20:24:12 -08001834 /*
1835 * We can't complete the direct I/O as requested, fall back to
1836 * buffered I/O.
1837 */
1838 if (direct_io && !can_do_direct) {
1839 ocfs2_rw_unlock(inode, rw_level);
1840 up_read(&inode->i_alloc_sem);
1841
1842 have_alloc_sem = 0;
1843 rw_level = -1;
1844
1845 direct_io = 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001846 goto relock;
Tiger Yang8659ac22006-10-17 18:29:52 -07001847 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001848
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001849 /*
1850 * To later detect whether a journal commit for sync writes is
1851 * necessary, we sample i_size, and cluster count here.
1852 */
1853 old_size = i_size_read(inode);
1854 old_clusters = OCFS2_I(inode)->ip_clusters;
1855
Mark Fashehccd979b2005-12-15 14:31:24 -08001856 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07001857 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08001858
Mark Fasheh9517bac2007-02-09 20:24:12 -08001859 if (direct_io) {
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001860 ret = generic_segment_checks(iov, &nr_segs, &ocount,
1861 VERIFY_READ);
1862 if (ret)
1863 goto out_dio;
1864
1865 ret = generic_write_checks(file, ppos, &count,
1866 S_ISBLK(inode->i_mode));
1867 if (ret)
1868 goto out_dio;
1869
Mark Fasheh9517bac2007-02-09 20:24:12 -08001870 written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
1871 ppos, count, ocount);
1872 if (written < 0) {
1873 ret = written;
1874 goto out_dio;
1875 }
1876 } else {
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001877 written = generic_file_aio_write_nolock(iocb, iov, nr_segs,
1878 *ppos);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001879 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001880
Mark Fasheh9517bac2007-02-09 20:24:12 -08001881out_dio:
Mark Fashehccd979b2005-12-15 14:31:24 -08001882 /* buffered aio wouldn't have proper lock coverage today */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001883 BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
Mark Fashehccd979b2005-12-15 14:31:24 -08001884
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001885 if ((file->f_flags & O_SYNC && !direct_io) || IS_SYNC(inode)) {
1886 /*
1887 * The generic write paths have handled getting data
1888 * to disk, but since we don't make use of the dirty
1889 * inode list, a manual journal commit is necessary
1890 * here.
1891 */
1892 if (old_size != i_size_read(inode) ||
1893 old_clusters != OCFS2_I(inode)->ip_clusters) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07001894 ret = jbd2_journal_force_commit(osb->journal->j_journal);
Mark Fasheh9ea2d322007-10-18 14:14:45 -07001895 if (ret < 0)
1896 written = ret;
1897 }
1898 }
1899
Mark Fashehccd979b2005-12-15 14:31:24 -08001900 /*
1901 * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
1902 * function pointer which is called when o_direct io completes so that
1903 * it can unlock our rw lock. (it's the clustered equivalent of
1904 * i_alloc_sem; protects truncate from racing with pending ios).
1905 * Unfortunately there are error cases which call end_io and others
1906 * that don't. so we don't have to unlock the rw_lock if either an
1907 * async dio is going to do it in the future or an end_io after an
1908 * error has already done it.
1909 */
1910 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
1911 rw_level = -1;
1912 have_alloc_sem = 0;
1913 }
1914
1915out:
Mark Fasheh9517bac2007-02-09 20:24:12 -08001916 if (rw_level != -1)
1917 ocfs2_rw_unlock(inode, rw_level);
1918
1919out_sems:
Mark Fashehccd979b2005-12-15 14:31:24 -08001920 if (have_alloc_sem)
1921 up_read(&inode->i_alloc_sem);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001922
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001923 mutex_unlock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001924
1925 mlog_exit(ret);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001926 return written ? written : ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08001927}
1928
Tiger Yang8659ac22006-10-17 18:29:52 -07001929static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
1930 struct file *out,
1931 loff_t *ppos,
1932 size_t len,
1933 unsigned int flags)
1934{
1935 int ret;
Josef Sipekd28c9172006-12-08 02:37:25 -08001936 struct inode *inode = out->f_path.dentry->d_inode;
Tiger Yang8659ac22006-10-17 18:29:52 -07001937
1938 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
1939 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08001940 out->f_path.dentry->d_name.len,
1941 out->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07001942
1943 inode_double_lock(inode, pipe->inode);
1944
1945 ret = ocfs2_rw_lock(inode, 1);
1946 if (ret < 0) {
1947 mlog_errno(ret);
1948 goto out;
1949 }
1950
Mark Fasheh9517bac2007-02-09 20:24:12 -08001951 ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, ppos, len, 0,
1952 NULL);
Tiger Yang8659ac22006-10-17 18:29:52 -07001953 if (ret < 0) {
1954 mlog_errno(ret);
1955 goto out_unlock;
1956 }
1957
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001958 ret = generic_file_splice_write_nolock(pipe, out, ppos, len, flags);
Tiger Yang8659ac22006-10-17 18:29:52 -07001959
1960out_unlock:
1961 ocfs2_rw_unlock(inode, 1);
1962out:
1963 inode_double_unlock(inode, pipe->inode);
1964
1965 mlog_exit(ret);
1966 return ret;
1967}
1968
1969static ssize_t ocfs2_file_splice_read(struct file *in,
1970 loff_t *ppos,
1971 struct pipe_inode_info *pipe,
1972 size_t len,
1973 unsigned int flags)
1974{
1975 int ret = 0;
Josef Sipekd28c9172006-12-08 02:37:25 -08001976 struct inode *inode = in->f_path.dentry->d_inode;
Tiger Yang8659ac22006-10-17 18:29:52 -07001977
1978 mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
1979 (unsigned int)len,
Josef Sipekd28c9172006-12-08 02:37:25 -08001980 in->f_path.dentry->d_name.len,
1981 in->f_path.dentry->d_name.name);
Tiger Yang8659ac22006-10-17 18:29:52 -07001982
1983 /*
1984 * See the comment in ocfs2_file_aio_read()
1985 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001986 ret = ocfs2_inode_lock(inode, NULL, 0);
Tiger Yang8659ac22006-10-17 18:29:52 -07001987 if (ret < 0) {
1988 mlog_errno(ret);
1989 goto bail;
1990 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07001991 ocfs2_inode_unlock(inode, 0);
Tiger Yang8659ac22006-10-17 18:29:52 -07001992
1993 ret = generic_file_splice_read(in, ppos, pipe, len, flags);
1994
1995bail:
1996 mlog_exit(ret);
1997 return ret;
1998}
1999
Mark Fashehccd979b2005-12-15 14:31:24 -08002000static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -07002001 const struct iovec *iov,
2002 unsigned long nr_segs,
Mark Fashehccd979b2005-12-15 14:31:24 -08002003 loff_t pos)
2004{
Tiger Yang25899de2006-11-15 15:49:02 +08002005 int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002006 struct file *filp = iocb->ki_filp;
Josef Sipekd28c9172006-12-08 02:37:25 -08002007 struct inode *inode = filp->f_path.dentry->d_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -08002008
Badari Pulavarty027445c2006-09-30 23:28:46 -07002009 mlog_entry("(0x%p, %u, '%.*s')\n", filp,
2010 (unsigned int)nr_segs,
Josef Sipekd28c9172006-12-08 02:37:25 -08002011 filp->f_path.dentry->d_name.len,
2012 filp->f_path.dentry->d_name.name);
Mark Fashehccd979b2005-12-15 14:31:24 -08002013
2014 if (!inode) {
2015 ret = -EINVAL;
2016 mlog_errno(ret);
2017 goto bail;
2018 }
2019
Mark Fashehccd979b2005-12-15 14:31:24 -08002020 /*
2021 * buffered reads protect themselves in ->readpage(). O_DIRECT reads
2022 * need locks to protect pending reads from racing with truncate.
2023 */
2024 if (filp->f_flags & O_DIRECT) {
2025 down_read(&inode->i_alloc_sem);
2026 have_alloc_sem = 1;
2027
2028 ret = ocfs2_rw_lock(inode, 0);
2029 if (ret < 0) {
2030 mlog_errno(ret);
2031 goto bail;
2032 }
2033 rw_level = 0;
2034 /* communicate with ocfs2_dio_end_io */
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -07002035 ocfs2_iocb_set_rw_locked(iocb, rw_level);
Mark Fashehccd979b2005-12-15 14:31:24 -08002036 }
2037
Mark Fashehc4374f82006-05-05 19:04:35 -07002038 /*
2039 * We're fine letting folks race truncates and extending
2040 * writes with read across the cluster, just like they can
2041 * locally. Hence no rw_lock during read.
2042 *
2043 * Take and drop the meta data lock to update inode fields
2044 * like i_size. This allows the checks down below
2045 * generic_file_aio_read() a chance of actually working.
2046 */
Mark Fashehe63aecb62007-10-18 15:30:42 -07002047 ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002048 if (ret < 0) {
2049 mlog_errno(ret);
2050 goto bail;
2051 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07002052 ocfs2_inode_unlock(inode, lock_level);
Mark Fashehc4374f82006-05-05 19:04:35 -07002053
Badari Pulavarty027445c2006-09-30 23:28:46 -07002054 ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
Mark Fashehccd979b2005-12-15 14:31:24 -08002055 if (ret == -EINVAL)
Sunil Mushran56753bd2008-06-09 11:24:41 -07002056 mlog(0, "generic_file_aio_read returned -EINVAL\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08002057
2058 /* buffered aio wouldn't have proper lock coverage today */
2059 BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
2060
2061 /* see ocfs2_file_aio_write */
2062 if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
2063 rw_level = -1;
2064 have_alloc_sem = 0;
2065 }
2066
2067bail:
2068 if (have_alloc_sem)
2069 up_read(&inode->i_alloc_sem);
2070 if (rw_level != -1)
2071 ocfs2_rw_unlock(inode, rw_level);
2072 mlog_exit(ret);
2073
2074 return ret;
2075}
2076
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002077const struct inode_operations ocfs2_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002078 .setattr = ocfs2_setattr,
2079 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002080 .permission = ocfs2_permission,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002081 .setxattr = generic_setxattr,
2082 .getxattr = generic_getxattr,
2083 .listxattr = ocfs2_listxattr,
2084 .removexattr = generic_removexattr,
Mark Fasheh385820a2007-07-19 00:14:38 -07002085 .fallocate = ocfs2_fallocate,
Mark Fasheh00dc4172008-10-03 17:32:11 -04002086 .fiemap = ocfs2_fiemap,
Mark Fashehccd979b2005-12-15 14:31:24 -08002087};
2088
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002089const struct inode_operations ocfs2_special_file_iops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08002090 .setattr = ocfs2_setattr,
2091 .getattr = ocfs2_getattr,
Tiger Yangd38eb8d2006-11-27 09:59:21 +08002092 .permission = ocfs2_permission,
Mark Fashehccd979b2005-12-15 14:31:24 -08002093};
2094
Mark Fasheh53da4932008-07-21 14:29:16 -07002095/*
2096 * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
2097 * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
2098 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002099const struct file_operations ocfs2_fops = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002100 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002101 .read = do_sync_read,
2102 .write = do_sync_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002103 .mmap = ocfs2_mmap,
2104 .fsync = ocfs2_sync_file,
2105 .release = ocfs2_file_release,
2106 .open = ocfs2_file_open,
2107 .aio_read = ocfs2_file_aio_read,
2108 .aio_write = ocfs2_file_aio_write,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002109 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002110#ifdef CONFIG_COMPAT
2111 .compat_ioctl = ocfs2_compat_ioctl,
2112#endif
Mark Fasheh53da4932008-07-21 14:29:16 -07002113 .lock = ocfs2_lock,
2114 .flock = ocfs2_flock,
2115 .splice_read = ocfs2_file_splice_read,
2116 .splice_write = ocfs2_file_splice_write,
2117};
2118
2119const struct file_operations ocfs2_dops = {
2120 .llseek = generic_file_llseek,
2121 .read = generic_read_dir,
2122 .readdir = ocfs2_readdir,
2123 .fsync = ocfs2_sync_file,
2124 .release = ocfs2_dir_release,
2125 .open = ocfs2_dir_open,
2126 .unlocked_ioctl = ocfs2_ioctl,
2127#ifdef CONFIG_COMPAT
2128 .compat_ioctl = ocfs2_compat_ioctl,
2129#endif
2130 .lock = ocfs2_lock,
2131 .flock = ocfs2_flock,
2132};
2133
2134/*
2135 * POSIX-lockless variants of our file_operations.
2136 *
2137 * These will be used if the underlying cluster stack does not support
2138 * posix file locking, if the user passes the "localflocks" mount
2139 * option, or if we have a local-only fs.
2140 *
2141 * ocfs2_flock is in here because all stacks handle UNIX file locks,
2142 * so we still want it in the case of no stack support for
2143 * plocks. Internally, it will do the right thing when asked to ignore
2144 * the cluster.
2145 */
2146const struct file_operations ocfs2_fops_no_plocks = {
2147 .llseek = generic_file_llseek,
2148 .read = do_sync_read,
2149 .write = do_sync_write,
2150 .mmap = ocfs2_mmap,
2151 .fsync = ocfs2_sync_file,
2152 .release = ocfs2_file_release,
2153 .open = ocfs2_file_open,
2154 .aio_read = ocfs2_file_aio_read,
2155 .aio_write = ocfs2_file_aio_write,
2156 .unlocked_ioctl = ocfs2_ioctl,
2157#ifdef CONFIG_COMPAT
2158 .compat_ioctl = ocfs2_compat_ioctl,
2159#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002160 .flock = ocfs2_flock,
Tiger Yang8659ac22006-10-17 18:29:52 -07002161 .splice_read = ocfs2_file_splice_read,
2162 .splice_write = ocfs2_file_splice_write,
Mark Fashehccd979b2005-12-15 14:31:24 -08002163};
2164
Mark Fasheh53da4932008-07-21 14:29:16 -07002165const struct file_operations ocfs2_dops_no_plocks = {
Jan Kara32c3c0e2007-12-19 15:24:52 +01002166 .llseek = generic_file_llseek,
Mark Fashehccd979b2005-12-15 14:31:24 -08002167 .read = generic_read_dir,
2168 .readdir = ocfs2_readdir,
2169 .fsync = ocfs2_sync_file,
Mark Fasheh53fc6222007-12-20 16:49:04 -08002170 .release = ocfs2_dir_release,
2171 .open = ocfs2_dir_open,
Andi Kleenc9ec1482008-01-27 03:17:17 +01002172 .unlocked_ioctl = ocfs2_ioctl,
Mark Fasheh586d2322007-03-09 15:56:28 -08002173#ifdef CONFIG_COMPAT
2174 .compat_ioctl = ocfs2_compat_ioctl,
2175#endif
Mark Fasheh53fc6222007-12-20 16:49:04 -08002176 .flock = ocfs2_flock,
Mark Fashehccd979b2005-12-15 14:31:24 -08002177};