blob: 7cfdcb9133635978af945d40b2b450d52dbe5de9 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
14#include <linux/pagemap.h>
15#include <linux/uio.h>
16#include <linux/blkdev.h>
17#include <linux/mm.h>
Miklos Szeredif58ba882008-07-02 21:12:01 +020018#include <linux/mount.h>
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000019#include <linux/fs.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050021#include <linux/ext2_fs.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010022#include <linux/falloc.h>
23#include <linux/swap.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050024#include <linux/crc32.h>
Steven Whitehouse33c3de32006-11-30 10:14:32 -050025#include <linux/writeback.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000026#include <asm/uaccess.h>
Steven Whitehousef057f6c2009-01-12 10:43:39 +000027#include <linux/dlm.h>
28#include <linux/dlm_plock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000029
30#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050031#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000032#include "bmap.h"
33#include "dir.h"
34#include "glock.h"
35#include "glops.h"
36#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000037#include "log.h"
38#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000039#include "quota.h"
40#include "rgrp.h"
41#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050042#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000043
David Teiglandb3b94fa2006-01-16 16:50:04 +000044/**
45 * gfs2_llseek - seek to a location in a file
46 * @file: the file
47 * @offset: the offset
48 * @origin: Where to seek from (SEEK_SET, SEEK_CUR, or SEEK_END)
49 *
50 * SEEK_END requires the glock for the file because it references the
51 * file's size.
52 *
53 * Returns: The new offset, or errno
54 */
55
56static loff_t gfs2_llseek(struct file *file, loff_t offset, int origin)
57{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040058 struct gfs2_inode *ip = GFS2_I(file->f_mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +000059 struct gfs2_holder i_gh;
60 loff_t error;
61
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 if (origin == 2) {
63 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY,
64 &i_gh);
65 if (!error) {
Andi Kleen9465efc2008-06-27 11:05:24 +020066 error = generic_file_llseek_unlocked(file, offset, origin);
David Teiglandb3b94fa2006-01-16 16:50:04 +000067 gfs2_glock_dq_uninit(&i_gh);
68 }
69 } else
Andi Kleen9465efc2008-06-27 11:05:24 +020070 error = generic_file_llseek_unlocked(file, offset, origin);
David Teiglandb3b94fa2006-01-16 16:50:04 +000071
72 return error;
73}
74
David Teiglandb3b94fa2006-01-16 16:50:04 +000075/**
Steven Whitehousef0e522a2006-09-19 16:41:11 -040076 * gfs2_readdir - Read directory entries from a directory
David Teiglandb3b94fa2006-01-16 16:50:04 +000077 * @file: The directory to read from
78 * @dirent: Buffer for dirents
79 * @filldir: Function used to do the copying
80 *
81 * Returns: errno
82 */
83
Steven Whitehousef0e522a2006-09-19 16:41:11 -040084static int gfs2_readdir(struct file *file, void *dirent, filldir_t filldir)
David Teiglandb3b94fa2006-01-16 16:50:04 +000085{
Steven Whitehouse71b86f52006-03-28 14:14:04 -050086 struct inode *dir = file->f_mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040087 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +000088 struct gfs2_holder d_gh;
Steven Whitehousecd915492006-09-04 12:49:07 -040089 u64 offset = file->f_pos;
David Teiglandb3b94fa2006-01-16 16:50:04 +000090 int error;
91
Steven Whitehouse719ee342008-09-18 13:53:59 +010092 gfs2_holder_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
93 error = gfs2_glock_nq(&d_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000094 if (error) {
95 gfs2_holder_uninit(&d_gh);
96 return error;
97 }
98
Steven Whitehouse3699e3a2007-01-17 15:09:20 +000099 error = gfs2_dir_read(dir, &offset, dirent, filldir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100
101 gfs2_glock_dq_uninit(&d_gh);
102
103 file->f_pos = offset;
104
105 return error;
106}
107
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400108/**
109 * fsflags_cvt
110 * @table: A table of 32 u32 flags
111 * @val: a 32 bit value to convert
112 *
113 * This function can be used to convert between fsflags values and
114 * GFS2's own flags values.
115 *
116 * Returns: the converted flags
117 */
118static u32 fsflags_cvt(const u32 *table, u32 val)
119{
120 u32 res = 0;
121 while(val) {
122 if (val & 1)
123 res |= *table;
124 table++;
125 val >>= 1;
126 }
127 return res;
128}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000129
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400130static const u32 fsflags_to_gfs2[32] = {
131 [3] = GFS2_DIF_SYNC,
132 [4] = GFS2_DIF_IMMUTABLE,
133 [5] = GFS2_DIF_APPENDONLY,
134 [7] = GFS2_DIF_NOATIME,
135 [12] = GFS2_DIF_EXHASH,
Steven Whitehouseb9af7ca2007-07-18 11:40:06 +0100136 [14] = GFS2_DIF_INHERIT_JDATA,
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500137};
138
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400139static const u32 gfs2_to_fsflags[32] = {
140 [gfs2fl_Sync] = FS_SYNC_FL,
141 [gfs2fl_Immutable] = FS_IMMUTABLE_FL,
142 [gfs2fl_AppendOnly] = FS_APPEND_FL,
143 [gfs2fl_NoAtime] = FS_NOATIME_FL,
144 [gfs2fl_ExHash] = FS_INDEX_FL,
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400145 [gfs2fl_InheritJdata] = FS_JOURNAL_DATA_FL,
Steven Whitehouse7ea9ea82006-03-31 15:01:28 -0500146};
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500147
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400148static int gfs2_get_flags(struct file *filp, u32 __user *ptr)
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500149{
Josef Sipek81454092006-12-08 02:37:03 -0800150 struct inode *inode = filp->f_path.dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400151 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500152 struct gfs2_holder gh;
153 int error;
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400154 u32 fsflags;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500155
Steven Whitehouse719ee342008-09-18 13:53:59 +0100156 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
157 error = gfs2_glock_nq(&gh);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500158 if (error)
159 return error;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400160
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000161 fsflags = fsflags_cvt(gfs2_to_fsflags, ip->i_diskflags);
162 if (!S_ISDIR(inode->i_mode) && ip->i_diskflags & GFS2_DIF_JDATA)
Steven Whitehousec9f6a6b2008-07-10 16:09:29 +0100163 fsflags |= FS_JOURNAL_DATA_FL;
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400164 if (put_user(fsflags, ptr))
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500165 error = -EFAULT;
166
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100167 gfs2_glock_dq(&gh);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500168 gfs2_holder_uninit(&gh);
169 return error;
170}
171
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500172void gfs2_set_inode_flags(struct inode *inode)
173{
174 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500175 unsigned int flags = inode->i_flags;
176
177 flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000178 if (ip->i_diskflags & GFS2_DIF_IMMUTABLE)
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500179 flags |= S_IMMUTABLE;
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000180 if (ip->i_diskflags & GFS2_DIF_APPENDONLY)
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500181 flags |= S_APPEND;
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000182 if (ip->i_diskflags & GFS2_DIF_NOATIME)
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500183 flags |= S_NOATIME;
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000184 if (ip->i_diskflags & GFS2_DIF_SYNC)
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500185 flags |= S_SYNC;
186 inode->i_flags = flags;
187}
188
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500189/* Flags that can be set by user space */
190#define GFS2_FLAGS_USER_SET (GFS2_DIF_JDATA| \
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500191 GFS2_DIF_IMMUTABLE| \
192 GFS2_DIF_APPENDONLY| \
193 GFS2_DIF_NOATIME| \
194 GFS2_DIF_SYNC| \
195 GFS2_DIF_SYSTEM| \
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500196 GFS2_DIF_INHERIT_JDATA)
197
198/**
199 * gfs2_set_flags - set flags on an inode
200 * @inode: The inode
201 * @flags: The flags to set
202 * @mask: Indicates which flags are valid
203 *
204 */
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400205static int do_gfs2_set_flags(struct file *filp, u32 reqflags, u32 mask)
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500206{
Josef Sipek81454092006-12-08 02:37:03 -0800207 struct inode *inode = filp->f_path.dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400208 struct gfs2_inode *ip = GFS2_I(inode);
209 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500210 struct buffer_head *bh;
211 struct gfs2_holder gh;
212 int error;
Steven Whitehouse55eccc62006-04-04 14:29:30 -0400213 u32 new_flags, flags;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500214
Miklos Szeredif58ba882008-07-02 21:12:01 +0200215 error = mnt_want_write(filp->f_path.mnt);
Abhijith Das52f341c2006-07-21 02:03:21 -0400216 if (error)
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500217 return error;
218
Miklos Szeredif58ba882008-07-02 21:12:01 +0200219 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
220 if (error)
221 goto out_drop_write;
222
Steven Whitehouse7df0e032010-05-24 14:36:48 +0100223 error = -EACCES;
224 if (!is_owner_or_cap(inode))
225 goto out;
226
227 error = 0;
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000228 flags = ip->i_diskflags;
Steven Whitehouse55eccc62006-04-04 14:29:30 -0400229 new_flags = (flags & ~mask) | (reqflags & mask);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500230 if ((new_flags ^ flags) == 0)
231 goto out;
232
233 error = -EINVAL;
234 if ((new_flags ^ flags) & ~GFS2_FLAGS_USER_SET)
235 goto out;
236
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500237 error = -EPERM;
238 if (IS_IMMUTABLE(inode) && (new_flags & GFS2_DIF_IMMUTABLE))
239 goto out;
240 if (IS_APPEND(inode) && (new_flags & GFS2_DIF_APPENDONLY))
241 goto out;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400242 if (((new_flags ^ flags) & GFS2_DIF_IMMUTABLE) &&
Steven Whitehouseb9cb9812006-05-12 17:07:56 -0400243 !capable(CAP_LINUX_IMMUTABLE))
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500244 goto out;
Steven Whitehouseb9cb9812006-05-12 17:07:56 -0400245 if (!IS_IMMUTABLE(inode)) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100246 error = gfs2_permission(inode, MAY_WRITE, 0);
Steven Whitehouseb9cb9812006-05-12 17:07:56 -0400247 if (error)
248 goto out;
249 }
Steven Whitehouse55610932007-10-17 08:47:38 +0100250 if ((flags ^ new_flags) & GFS2_DIF_JDATA) {
251 if (flags & GFS2_DIF_JDATA)
252 gfs2_log_flush(sdp, ip->i_gl);
253 error = filemap_fdatawrite(inode->i_mapping);
254 if (error)
255 goto out;
256 error = filemap_fdatawait(inode->i_mapping);
257 if (error)
258 goto out;
259 }
Steven Whitehouse55eccc62006-04-04 14:29:30 -0400260 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500261 if (error)
262 goto out;
Steven Whitehouse55eccc62006-04-04 14:29:30 -0400263 error = gfs2_meta_inode_buffer(ip, &bh);
264 if (error)
265 goto out_trans_end;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500266 gfs2_trans_add_bh(ip->i_gl, bh, 1);
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000267 ip->i_diskflags = new_flags;
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500268 gfs2_dinode_out(ip, bh->b_data);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500269 brelse(bh);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500270 gfs2_set_inode_flags(inode);
Steven Whitehouse55610932007-10-17 08:47:38 +0100271 gfs2_set_aops(inode);
Steven Whitehouse55eccc62006-04-04 14:29:30 -0400272out_trans_end:
273 gfs2_trans_end(sdp);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500274out:
275 gfs2_glock_dq_uninit(&gh);
Miklos Szeredif58ba882008-07-02 21:12:01 +0200276out_drop_write:
277 mnt_drop_write(filp->f_path.mnt);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500278 return error;
279}
280
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400281static int gfs2_set_flags(struct file *filp, u32 __user *ptr)
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500282{
Steven Whitehouseb9af7ca2007-07-18 11:40:06 +0100283 struct inode *inode = filp->f_path.dentry->d_inode;
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400284 u32 fsflags, gfsflags;
Steven Whitehouse7df0e032010-05-24 14:36:48 +0100285
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400286 if (get_user(fsflags, ptr))
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500287 return -EFAULT;
Steven Whitehouse7df0e032010-05-24 14:36:48 +0100288
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400289 gfsflags = fsflags_cvt(fsflags_to_gfs2, fsflags);
Steven Whitehouseb9af7ca2007-07-18 11:40:06 +0100290 if (!S_ISDIR(inode->i_mode)) {
291 if (gfsflags & GFS2_DIF_INHERIT_JDATA)
292 gfsflags ^= (GFS2_DIF_JDATA | GFS2_DIF_INHERIT_JDATA);
Steven Whitehouseb9af7ca2007-07-18 11:40:06 +0100293 return do_gfs2_set_flags(filp, gfsflags, ~0);
294 }
295 return do_gfs2_set_flags(filp, gfsflags, ~GFS2_DIF_JDATA);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500296}
297
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400298static long gfs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500299{
300 switch(cmd) {
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400301 case FS_IOC_GETFLAGS:
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400302 return gfs2_get_flags(filp, (u32 __user *)arg);
Steven Whitehouse128e5eb2006-10-02 11:24:43 -0400303 case FS_IOC_SETFLAGS:
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400304 return gfs2_set_flags(filp, (u32 __user *)arg);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500305 }
306 return -ENOTTY;
307}
308
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100309/**
310 * gfs2_allocate_page_backing - Use bmap to allocate blocks
311 * @page: The (locked) page to allocate backing for
312 *
313 * We try to allocate all the blocks required for the page in
314 * one go. This might fail for various reasons, so we keep
315 * trying until all the blocks to back this page are allocated.
316 * If some of the blocks are already allocated, thats ok too.
317 */
318
319static int gfs2_allocate_page_backing(struct page *page)
320{
321 struct inode *inode = page->mapping->host;
322 struct buffer_head bh;
323 unsigned long size = PAGE_CACHE_SIZE;
324 u64 lblock = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
325
326 do {
327 bh.b_state = 0;
328 bh.b_size = size;
Bob Petersone9e1ef22007-12-10 14:13:27 -0600329 gfs2_block_map(inode, lblock, &bh, 1);
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100330 if (!buffer_mapped(&bh))
331 return -EIO;
332 size -= bh.b_size;
333 lblock += (bh.b_size >> inode->i_blkbits);
334 } while(size > 0);
335 return 0;
336}
337
338/**
339 * gfs2_page_mkwrite - Make a shared, mmap()ed, page writable
340 * @vma: The virtual memory area
341 * @page: The page which is about to become writable
342 *
343 * When the page becomes writable, we need to ensure that we have
344 * blocks allocated on disk to back that page.
345 */
346
Nick Pigginc2ec1752009-03-31 15:23:21 -0700347static int gfs2_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100348{
Nick Pigginc2ec1752009-03-31 15:23:21 -0700349 struct page *page = vmf->page;
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100350 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
351 struct gfs2_inode *ip = GFS2_I(inode);
352 struct gfs2_sbd *sdp = GFS2_SB(inode);
353 unsigned long last_index;
Benjamin Marzinskic8f554b2009-01-06 10:47:50 -0600354 u64 pos = page->index << PAGE_CACHE_SHIFT;
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100355 unsigned int data_blocks, ind_blocks, rblocks;
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100356 struct gfs2_holder gh;
357 struct gfs2_alloc *al;
358 int ret;
359
Steven Whitehouse719ee342008-09-18 13:53:59 +0100360 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
361 ret = gfs2_glock_nq(&gh);
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100362 if (ret)
363 goto out;
364
Steven Whitehouse9c538832009-03-19 13:15:44 +0000365 set_bit(GLF_DIRTY, &ip->i_gl->gl_flags);
366 set_bit(GIF_SW_PAGED, &ip->i_flags);
367
Bob Peterson461cb412010-06-24 19:21:20 -0400368 if (!gfs2_write_alloc_required(ip, pos, PAGE_CACHE_SIZE))
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100369 goto out_unlock;
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000370 ret = -ENOMEM;
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100371 al = gfs2_alloc_get(ip);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000372 if (al == NULL)
373 goto out_unlock;
374
Steven Whitehoused82661d2008-03-10 15:34:50 +0000375 ret = gfs2_quota_lock_check(ip);
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100376 if (ret)
377 goto out_alloc_put;
Steven Whitehouse7ed122e2008-12-10 10:28:10 +0000378 gfs2_write_calc_reserv(ip, PAGE_CACHE_SIZE, &data_blocks, &ind_blocks);
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100379 al->al_requested = data_blocks + ind_blocks;
380 ret = gfs2_inplace_reserve(ip);
381 if (ret)
382 goto out_quota_unlock;
383
384 rblocks = RES_DINODE + ind_blocks;
385 if (gfs2_is_jdata(ip))
386 rblocks += data_blocks ? data_blocks : 1;
Benjamin Marzinskibf97b672010-09-27 16:00:04 -0500387 if (ind_blocks || data_blocks) {
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100388 rblocks += RES_STATFS + RES_QUOTA;
Benjamin Marzinskibf97b672010-09-27 16:00:04 -0500389 rblocks += gfs2_rg_blocks(al);
390 }
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100391 ret = gfs2_trans_begin(sdp, rblocks, 0);
392 if (ret)
393 goto out_trans_fail;
394
395 lock_page(page);
396 ret = -EINVAL;
397 last_index = ip->i_inode.i_size >> PAGE_CACHE_SHIFT;
398 if (page->index > last_index)
399 goto out_unlock_page;
Steven Whitehouseb7fe2e32008-01-17 15:12:03 +0000400 ret = 0;
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100401 if (!PageUptodate(page) || page->mapping != ip->i_inode.i_mapping)
402 goto out_unlock_page;
403 if (gfs2_is_stuffed(ip)) {
404 ret = gfs2_unstuff_dinode(ip, page);
405 if (ret)
406 goto out_unlock_page;
407 }
408 ret = gfs2_allocate_page_backing(page);
409
410out_unlock_page:
411 unlock_page(page);
412 gfs2_trans_end(sdp);
413out_trans_fail:
414 gfs2_inplace_release(ip);
415out_quota_unlock:
416 gfs2_quota_unlock(ip);
417out_alloc_put:
418 gfs2_alloc_put(ip);
419out_unlock:
420 gfs2_glock_dq(&gh);
421out:
422 gfs2_holder_uninit(&gh);
Steven Whitehousee56985d2009-04-20 09:45:54 +0100423 if (ret == -ENOMEM)
424 ret = VM_FAULT_OOM;
425 else if (ret)
Nick Pigginc2ec1752009-03-31 15:23:21 -0700426 ret = VM_FAULT_SIGBUS;
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100427 return ret;
428}
429
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400430static const struct vm_operations_struct gfs2_vm_ops = {
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100431 .fault = filemap_fault,
432 .page_mkwrite = gfs2_page_mkwrite,
433};
434
David Teiglandb3b94fa2006-01-16 16:50:04 +0000435/**
436 * gfs2_mmap -
437 * @file: The file to map
438 * @vma: The VMA which described the mapping
439 *
Steven Whitehouse48bf2b12009-04-29 13:59:35 +0100440 * There is no need to get a lock here unless we should be updating
441 * atime. We ignore any locking errors since the only consequence is
442 * a missed atime update (which will just be deferred until later).
443 *
444 * Returns: 0
David Teiglandb3b94fa2006-01-16 16:50:04 +0000445 */
446
447static int gfs2_mmap(struct file *file, struct vm_area_struct *vma)
448{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400449 struct gfs2_inode *ip = GFS2_I(file->f_mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450
Steven Whitehouse48bf2b12009-04-29 13:59:35 +0100451 if (!(file->f_flags & O_NOATIME)) {
452 struct gfs2_holder i_gh;
453 int error;
454
455 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
456 error = gfs2_glock_nq(&i_gh);
457 file_accessed(file);
458 if (error == 0)
459 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000460 }
Steven Whitehouse3cc3f712007-10-15 15:40:33 +0100461 vma->vm_ops = &gfs2_vm_ops;
Steven Whitehouse48bf2b12009-04-29 13:59:35 +0100462 vma->vm_flags |= VM_CAN_NONLINEAR;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000463
Steven Whitehouse48bf2b12009-04-29 13:59:35 +0100464 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000465}
466
467/**
468 * gfs2_open - open a file
469 * @inode: the inode to open
470 * @file: the struct file for this opening
471 *
472 * Returns: errno
473 */
474
475static int gfs2_open(struct inode *inode, struct file *file)
476{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400477 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478 struct gfs2_holder i_gh;
479 struct gfs2_file *fp;
480 int error;
481
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482 fp = kzalloc(sizeof(struct gfs2_file), GFP_KERNEL);
483 if (!fp)
484 return -ENOMEM;
485
Steven Whitehousef55ab262006-02-21 12:51:39 +0000486 mutex_init(&fp->f_fl_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000487
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400488 gfs2_assert_warn(GFS2_SB(inode), !file->private_data);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500489 file->private_data = fp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000490
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500491 if (S_ISREG(ip->i_inode.i_mode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000492 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY,
493 &i_gh);
494 if (error)
495 goto fail;
496
497 if (!(file->f_flags & O_LARGEFILE) &&
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100498 i_size_read(inode) > MAX_NON_LFS) {
Alan Coxa9c62a12007-10-16 23:30:22 -0700499 error = -EOVERFLOW;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000500 goto fail_gunlock;
501 }
502
David Teiglandb3b94fa2006-01-16 16:50:04 +0000503 gfs2_glock_dq_uninit(&i_gh);
504 }
505
506 return 0;
507
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400508fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000509 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400510fail:
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500511 file->private_data = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000512 kfree(fp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513 return error;
514}
515
516/**
517 * gfs2_close - called to close a struct file
518 * @inode: the inode the struct file belongs to
519 * @file: the struct file being closed
520 *
521 * Returns: errno
522 */
523
524static int gfs2_close(struct inode *inode, struct file *file)
525{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500526 struct gfs2_sbd *sdp = inode->i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527 struct gfs2_file *fp;
528
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500529 fp = file->private_data;
530 file->private_data = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000531
532 if (gfs2_assert_warn(sdp, fp))
533 return -EIO;
534
535 kfree(fp);
536
537 return 0;
538}
539
540/**
541 * gfs2_fsync - sync the dirty data for a file (across the cluster)
542 * @file: the file that points to the dentry (we ignore this)
543 * @dentry: the dentry that points to the inode to sync
544 *
Steven Whitehouse33c3de32006-11-30 10:14:32 -0500545 * The VFS will flush "normal" data for us. We only need to worry
546 * about metadata here. For journaled data, we just do a log flush
547 * as we can't avoid it. Otherwise we can just bale out if datasync
548 * is set. For stuffed inodes we must flush the log in order to
549 * ensure that all data is on disk.
550 *
Steven Whitehouse34126f92006-12-07 09:13:14 -0500551 * The call to write_inode_now() is there to write back metadata and
552 * the inode itself. It does also try and write the data, but thats
553 * (hopefully) a no-op due to the VFS having already called filemap_fdatawrite()
554 * for us.
555 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556 * Returns: errno
557 */
558
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200559static int gfs2_fsync(struct file *file, int datasync)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000560{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200561 struct inode *inode = file->f_mapping->host;
Steven Whitehouse33c3de32006-11-30 10:14:32 -0500562 int sync_state = inode->i_state & (I_DIRTY_SYNC|I_DIRTY_DATASYNC);
563 int ret = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564
Steven Whitehouse33c3de32006-11-30 10:14:32 -0500565 if (gfs2_is_jdata(GFS2_I(inode))) {
566 gfs2_log_flush(GFS2_SB(inode), GFS2_I(inode)->i_gl);
567 return 0;
568 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000569
Steven Whitehouse33c3de32006-11-30 10:14:32 -0500570 if (sync_state != 0) {
571 if (!datasync)
Steven Whitehouse34126f92006-12-07 09:13:14 -0500572 ret = write_inode_now(inode, 0);
Steven Whitehouse33c3de32006-11-30 10:14:32 -0500573
574 if (gfs2_is_stuffed(GFS2_I(inode)))
575 gfs2_log_flush(GFS2_SB(inode), GFS2_I(inode)->i_gl);
576 }
577
578 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000579}
580
Steven Whitehouse56aa6162009-12-08 10:25:33 +0000581/**
582 * gfs2_file_aio_write - Perform a write to a file
583 * @iocb: The io context
584 * @iov: The data to write
585 * @nr_segs: Number of @iov segments
586 * @pos: The file position
587 *
588 * We have to do a lock/unlock here to refresh the inode size for
589 * O_APPEND writes, otherwise we can land up writing at the wrong
590 * offset. There is still a race, but provided the app is using its
591 * own file locking, this will make O_APPEND work as expected.
592 *
593 */
594
595static ssize_t gfs2_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
596 unsigned long nr_segs, loff_t pos)
597{
598 struct file *file = iocb->ki_filp;
599
600 if (file->f_flags & O_APPEND) {
601 struct dentry *dentry = file->f_dentry;
602 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
603 struct gfs2_holder gh;
604 int ret;
605
606 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
607 if (ret)
608 return ret;
609 gfs2_glock_dq_uninit(&gh);
610 }
611
612 return generic_file_aio_write(iocb, iov, nr_segs, pos);
613}
614
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100615static void empty_write_end(struct page *page, unsigned from,
616 unsigned to)
617{
618 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
619
620 page_zero_new_buffers(page, from, to);
621 flush_dcache_page(page);
622 mark_page_accessed(page);
623
624 if (!gfs2_is_writeback(ip))
625 gfs2_page_add_databufs(ip, page, from, to);
626
627 block_commit_write(page, from, to);
628}
629
630static int write_empty_blocks(struct page *page, unsigned from, unsigned to)
631{
632 unsigned start, end, next;
633 struct buffer_head *bh, *head;
634 int error;
635
636 if (!page_has_buffers(page)) {
637 error = __block_write_begin(page, from, to - from, gfs2_block_map);
638 if (unlikely(error))
639 return error;
640
641 empty_write_end(page, from, to);
642 return 0;
643 }
644
645 bh = head = page_buffers(page);
646 next = end = 0;
647 while (next < from) {
648 next += bh->b_size;
649 bh = bh->b_this_page;
650 }
651 start = next;
652 do {
653 next += bh->b_size;
654 if (buffer_mapped(bh)) {
655 if (end) {
656 error = __block_write_begin(page, start, end - start,
657 gfs2_block_map);
658 if (unlikely(error))
659 return error;
660 empty_write_end(page, start, end);
661 end = 0;
662 }
663 start = next;
664 }
665 else
666 end = next;
667 bh = bh->b_this_page;
668 } while (next < to);
669
670 if (end) {
671 error = __block_write_begin(page, start, end - start, gfs2_block_map);
672 if (unlikely(error))
673 return error;
674 empty_write_end(page, start, end);
675 }
676
677 return 0;
678}
679
680static int fallocate_chunk(struct inode *inode, loff_t offset, loff_t len,
681 int mode)
682{
683 struct gfs2_inode *ip = GFS2_I(inode);
684 struct buffer_head *dibh;
685 int error;
686 u64 start = offset >> PAGE_CACHE_SHIFT;
687 unsigned int start_offset = offset & ~PAGE_CACHE_MASK;
688 u64 end = (offset + len - 1) >> PAGE_CACHE_SHIFT;
689 pgoff_t curr;
690 struct page *page;
691 unsigned int end_offset = (offset + len) & ~PAGE_CACHE_MASK;
692 unsigned int from, to;
693
694 if (!end_offset)
695 end_offset = PAGE_CACHE_SIZE;
696
697 error = gfs2_meta_inode_buffer(ip, &dibh);
698 if (unlikely(error))
699 goto out;
700
701 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
702
703 if (gfs2_is_stuffed(ip)) {
704 error = gfs2_unstuff_dinode(ip, NULL);
705 if (unlikely(error))
706 goto out;
707 }
708
709 curr = start;
710 offset = start << PAGE_CACHE_SHIFT;
711 from = start_offset;
712 to = PAGE_CACHE_SIZE;
713 while (curr <= end) {
714 page = grab_cache_page_write_begin(inode->i_mapping, curr,
715 AOP_FLAG_NOFS);
716 if (unlikely(!page)) {
717 error = -ENOMEM;
718 goto out;
719 }
720
721 if (curr == end)
722 to = end_offset;
723 error = write_empty_blocks(page, from, to);
724 if (!error && offset + to > inode->i_size &&
725 !(mode & FALLOC_FL_KEEP_SIZE)) {
726 i_size_write(inode, offset + to);
727 }
728 unlock_page(page);
729 page_cache_release(page);
730 if (error)
731 goto out;
732 curr++;
733 offset += PAGE_CACHE_SIZE;
734 from = 0;
735 }
736
737 gfs2_dinode_out(ip, dibh->b_data);
738 mark_inode_dirty(inode);
739
740 brelse(dibh);
741
742out:
743 return error;
744}
745
746static void calc_max_reserv(struct gfs2_inode *ip, loff_t max, loff_t *len,
747 unsigned int *data_blocks, unsigned int *ind_blocks)
748{
749 const struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
750 unsigned int max_blocks = ip->i_alloc->al_rgd->rd_free_clone;
751 unsigned int tmp, max_data = max_blocks - 3 * (sdp->sd_max_height - 1);
752
753 for (tmp = max_data; tmp > sdp->sd_diptrs;) {
754 tmp = DIV_ROUND_UP(tmp, sdp->sd_inptrs);
755 max_data -= tmp;
756 }
757 /* This calculation isn't the exact reverse of gfs2_write_calc_reserve,
758 so it might end up with fewer data blocks */
759 if (max_data <= *data_blocks)
760 return;
761 *data_blocks = max_data;
762 *ind_blocks = max_blocks - max_data;
763 *len = ((loff_t)max_data - 3) << sdp->sd_sb.sb_bsize_shift;
764 if (*len > max) {
765 *len = max;
766 gfs2_write_calc_reserv(ip, max, data_blocks, ind_blocks);
767 }
768}
769
770static long gfs2_fallocate(struct file *file, int mode, loff_t offset,
771 loff_t len)
772{
773 struct inode *inode = file->f_path.dentry->d_inode;
774 struct gfs2_sbd *sdp = GFS2_SB(inode);
775 struct gfs2_inode *ip = GFS2_I(inode);
776 unsigned int data_blocks = 0, ind_blocks = 0, rblocks;
777 loff_t bytes, max_bytes;
778 struct gfs2_alloc *al;
779 int error;
780 loff_t next = (offset + len - 1) >> sdp->sd_sb.sb_bsize_shift;
781 next = (next + 1) << sdp->sd_sb.sb_bsize_shift;
782
783 /* We only support the FALLOC_FL_KEEP_SIZE mode */
784 if (mode & ~FALLOC_FL_KEEP_SIZE)
785 return -EOPNOTSUPP;
786
787 offset = (offset >> sdp->sd_sb.sb_bsize_shift) <<
788 sdp->sd_sb.sb_bsize_shift;
789
790 len = next - offset;
791 bytes = sdp->sd_max_rg_data * sdp->sd_sb.sb_bsize / 2;
792 if (!bytes)
793 bytes = UINT_MAX;
794
795 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &ip->i_gh);
796 error = gfs2_glock_nq(&ip->i_gh);
797 if (unlikely(error))
798 goto out_uninit;
799
800 if (!gfs2_write_alloc_required(ip, offset, len))
801 goto out_unlock;
802
803 while (len > 0) {
804 if (len < bytes)
805 bytes = len;
806 al = gfs2_alloc_get(ip);
807 if (!al) {
808 error = -ENOMEM;
809 goto out_unlock;
810 }
811
812 error = gfs2_quota_lock_check(ip);
813 if (error)
814 goto out_alloc_put;
815
816retry:
817 gfs2_write_calc_reserv(ip, bytes, &data_blocks, &ind_blocks);
818
819 al->al_requested = data_blocks + ind_blocks;
820 error = gfs2_inplace_reserve(ip);
821 if (error) {
822 if (error == -ENOSPC && bytes > sdp->sd_sb.sb_bsize) {
823 bytes >>= 1;
824 goto retry;
825 }
826 goto out_qunlock;
827 }
828 max_bytes = bytes;
829 calc_max_reserv(ip, len, &max_bytes, &data_blocks, &ind_blocks);
830 al->al_requested = data_blocks + ind_blocks;
831
832 rblocks = RES_DINODE + ind_blocks + RES_STATFS + RES_QUOTA +
833 RES_RG_HDR + gfs2_rg_blocks(al);
834 if (gfs2_is_jdata(ip))
835 rblocks += data_blocks ? data_blocks : 1;
836
837 error = gfs2_trans_begin(sdp, rblocks,
838 PAGE_CACHE_SIZE/sdp->sd_sb.sb_bsize);
839 if (error)
840 goto out_trans_fail;
841
842 error = fallocate_chunk(inode, offset, max_bytes, mode);
843 gfs2_trans_end(sdp);
844
845 if (error)
846 goto out_trans_fail;
847
848 len -= max_bytes;
849 offset += max_bytes;
850 gfs2_inplace_release(ip);
851 gfs2_quota_unlock(ip);
852 gfs2_alloc_put(ip);
853 }
854 goto out_unlock;
855
856out_trans_fail:
857 gfs2_inplace_release(ip);
858out_qunlock:
859 gfs2_quota_unlock(ip);
860out_alloc_put:
861 gfs2_alloc_put(ip);
862out_unlock:
863 gfs2_glock_dq(&ip->i_gh);
864out_uninit:
865 gfs2_holder_uninit(&ip->i_gh);
866 return error;
867}
868
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000869#ifdef CONFIG_GFS2_FS_LOCKING_DLM
870
David Teiglandb3b94fa2006-01-16 16:50:04 +0000871/**
Marc Eshel60446062007-01-15 18:33:36 -0500872 * gfs2_setlease - acquire/release a file lease
873 * @file: the file pointer
874 * @arg: lease type
875 * @fl: file lock
876 *
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000877 * We don't currently have a way to enforce a lease across the whole
878 * cluster; until we do, disable leases (by just returning -EINVAL),
879 * unless the administrator has requested purely local locking.
880 *
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200881 * Locking: called under lock_flocks
882 *
Marc Eshel60446062007-01-15 18:33:36 -0500883 * Returns: errno
884 */
885
886static int gfs2_setlease(struct file *file, long arg, struct file_lock **fl)
887{
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000888 return -EINVAL;
Steven Whitehouseda755fd2008-01-30 15:34:04 +0000889}
890
Marc Eshel60446062007-01-15 18:33:36 -0500891/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892 * gfs2_lock - acquire/release a posix lock on a file
893 * @file: the file pointer
894 * @cmd: either modify or retrieve lock state, possibly wait
895 * @fl: type and range of lock
896 *
897 * Returns: errno
898 */
899
900static int gfs2_lock(struct file *file, int cmd, struct file_lock *fl)
901{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400902 struct gfs2_inode *ip = GFS2_I(file->f_mapping->host);
903 struct gfs2_sbd *sdp = GFS2_SB(file->f_mapping->host);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000904 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000905
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906 if (!(fl->fl_flags & FL_POSIX))
907 return -ENOLCK;
Sachin Prabhu720e7742010-03-11 12:24:45 -0500908 if (__mandatory_lock(&ip->i_inode) && fl->fl_type != F_UNLCK)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000909 return -ENOLCK;
910
Marc Eshel586759f2006-11-14 16:37:25 -0500911 if (cmd == F_CANCELLK) {
912 /* Hack: */
913 cmd = F_SETLK;
914 fl->fl_type = F_UNLCK;
915 }
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000916 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
917 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918 if (IS_GETLK(cmd))
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000919 return dlm_posix_get(ls->ls_dlm, ip->i_no_addr, file, fl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000920 else if (fl->fl_type == F_UNLCK)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000921 return dlm_posix_unlock(ls->ls_dlm, ip->i_no_addr, file, fl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 else
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000923 return dlm_posix_lock(ls->ls_dlm, ip->i_no_addr, file, cmd, fl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924}
925
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926static int do_flock(struct file *file, int cmd, struct file_lock *fl)
927{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500928 struct gfs2_file *fp = file->private_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929 struct gfs2_holder *fl_gh = &fp->f_fl_gh;
Josef Sipek81454092006-12-08 02:37:03 -0800930 struct gfs2_inode *ip = GFS2_I(file->f_path.dentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931 struct gfs2_glock *gl;
932 unsigned int state;
933 int flags;
934 int error = 0;
935
936 state = (fl->fl_type == F_WRLCK) ? LM_ST_EXCLUSIVE : LM_ST_SHARED;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100937 flags = (IS_SETLKW(cmd) ? 0 : LM_FLAG_TRY) | GL_EXACT | GL_NOCACHE;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000938
Steven Whitehousef55ab262006-02-21 12:51:39 +0000939 mutex_lock(&fp->f_fl_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940
941 gl = fl_gh->gh_gl;
942 if (gl) {
943 if (fl_gh->gh_state == state)
944 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000945 flock_lock_file_wait(file,
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400946 &(struct file_lock){.fl_type = F_UNLCK});
Abhijith Dasb4c20162007-09-13 23:35:27 -0500947 gfs2_glock_dq_wait(fl_gh);
948 gfs2_holder_reinit(state, flags, fl_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949 } else {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100950 error = gfs2_glock_get(GFS2_SB(&ip->i_inode), ip->i_no_addr,
951 &gfs2_flock_glops, CREATE, &gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952 if (error)
953 goto out;
Abhijith Dasb4c20162007-09-13 23:35:27 -0500954 gfs2_holder_init(gl, state, flags, fl_gh);
955 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000956 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 error = gfs2_glock_nq(fl_gh);
958 if (error) {
959 gfs2_holder_uninit(fl_gh);
960 if (error == GLR_TRYFAILED)
961 error = -EAGAIN;
962 } else {
963 error = flock_lock_file_wait(file, fl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400964 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 }
966
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400967out:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000968 mutex_unlock(&fp->f_fl_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 return error;
970}
971
972static void do_unflock(struct file *file, struct file_lock *fl)
973{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500974 struct gfs2_file *fp = file->private_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000975 struct gfs2_holder *fl_gh = &fp->f_fl_gh;
976
Steven Whitehousef55ab262006-02-21 12:51:39 +0000977 mutex_lock(&fp->f_fl_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000978 flock_lock_file_wait(file, fl);
979 if (fl_gh->gh_gl)
980 gfs2_glock_dq_uninit(fl_gh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000981 mutex_unlock(&fp->f_fl_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000982}
983
984/**
985 * gfs2_flock - acquire/release a flock lock on a file
986 * @file: the file pointer
987 * @cmd: either modify or retrieve lock state, possibly wait
988 * @fl: type and range of lock
989 *
990 * Returns: errno
991 */
992
993static int gfs2_flock(struct file *file, int cmd, struct file_lock *fl)
994{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995 if (!(fl->fl_flags & FL_FLOCK))
996 return -ENOLCK;
Abhijith Dasa12af1e2009-06-01 12:30:03 -0500997 if (fl->fl_type & LOCK_MAND)
998 return -EOPNOTSUPP;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000999
David Teiglandb3b94fa2006-01-16 16:50:04 +00001000 if (fl->fl_type == F_UNLCK) {
1001 do_unflock(file, fl);
1002 return 0;
Steven Whitehoused00223f2006-10-02 10:28:05 -04001003 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001004 return do_flock(file, cmd, fl);
Steven Whitehoused00223f2006-10-02 10:28:05 -04001005 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001006}
1007
Christoph Hellwig10d21982009-04-07 19:42:17 +02001008const struct file_operations gfs2_file_fops = {
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001009 .llseek = gfs2_llseek,
Steven Whitehoused00223f2006-10-02 10:28:05 -04001010 .read = do_sync_read,
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001011 .aio_read = generic_file_aio_read,
Steven Whitehoused00223f2006-10-02 10:28:05 -04001012 .write = do_sync_write,
Steven Whitehouse56aa6162009-12-08 10:25:33 +00001013 .aio_write = gfs2_file_aio_write,
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001014 .unlocked_ioctl = gfs2_ioctl,
1015 .mmap = gfs2_mmap,
1016 .open = gfs2_open,
1017 .release = gfs2_close,
1018 .fsync = gfs2_fsync,
1019 .lock = gfs2_lock,
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001020 .flock = gfs2_flock,
1021 .splice_read = generic_file_splice_read,
1022 .splice_write = generic_file_splice_write,
Marc Eshel60446062007-01-15 18:33:36 -05001023 .setlease = gfs2_setlease,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001024 .fallocate = gfs2_fallocate,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001025};
1026
Christoph Hellwig10d21982009-04-07 19:42:17 +02001027const struct file_operations gfs2_dir_fops = {
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001028 .readdir = gfs2_readdir,
1029 .unlocked_ioctl = gfs2_ioctl,
1030 .open = gfs2_open,
1031 .release = gfs2_close,
1032 .fsync = gfs2_fsync,
1033 .lock = gfs2_lock,
1034 .flock = gfs2_flock,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001035 .llseek = default_llseek,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036};
1037
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001038#endif /* CONFIG_GFS2_FS_LOCKING_DLM */
1039
Christoph Hellwig10d21982009-04-07 19:42:17 +02001040const struct file_operations gfs2_file_fops_nolock = {
Wendy Chengc97bfe42007-11-29 17:56:51 -05001041 .llseek = gfs2_llseek,
1042 .read = do_sync_read,
1043 .aio_read = generic_file_aio_read,
1044 .write = do_sync_write,
Steven Whitehouse56aa6162009-12-08 10:25:33 +00001045 .aio_write = gfs2_file_aio_write,
Wendy Chengc97bfe42007-11-29 17:56:51 -05001046 .unlocked_ioctl = gfs2_ioctl,
1047 .mmap = gfs2_mmap,
1048 .open = gfs2_open,
1049 .release = gfs2_close,
1050 .fsync = gfs2_fsync,
1051 .splice_read = generic_file_splice_read,
1052 .splice_write = generic_file_splice_write,
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001053 .setlease = generic_setlease,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001054 .fallocate = gfs2_fallocate,
Wendy Chengc97bfe42007-11-29 17:56:51 -05001055};
1056
Christoph Hellwig10d21982009-04-07 19:42:17 +02001057const struct file_operations gfs2_dir_fops_nolock = {
Wendy Chengc97bfe42007-11-29 17:56:51 -05001058 .readdir = gfs2_readdir,
1059 .unlocked_ioctl = gfs2_ioctl,
1060 .open = gfs2_open,
1061 .release = gfs2_close,
1062 .fsync = gfs2_fsync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001063 .llseek = default_llseek,
Wendy Chengc97bfe42007-11-29 17:56:51 -05001064};
1065