]>
Commit | Line | Data |
---|---|---|
b3b94faa DT |
1 | /* |
2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | |
3a8a9a10 | 3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
b3b94faa DT |
4 | * |
5 | * This copyrighted material is made available to anyone wishing to use, | |
6 | * modify, copy, or redistribute it subject to the terms and conditions | |
e9fc2aa0 | 7 | * of the GNU General Public License version 2. |
b3b94faa DT |
8 | */ |
9 | ||
b3b94faa DT |
10 | #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> | |
f58ba889 | 18 | #include <linux/mount.h> |
18ec7d5c | 19 | #include <linux/fs.h> |
5c676f6d | 20 | #include <linux/gfs2_ondisk.h> |
71b86f56 | 21 | #include <linux/ext2_fs.h> |
2fe17c10 CH |
22 | #include <linux/falloc.h> |
23 | #include <linux/swap.h> | |
71b86f56 | 24 | #include <linux/crc32.h> |
33c3de32 | 25 | #include <linux/writeback.h> |
b3b94faa | 26 | #include <asm/uaccess.h> |
f057f6cd SW |
27 | #include <linux/dlm.h> |
28 | #include <linux/dlm_plock.h> | |
b3b94faa DT |
29 | |
30 | #include "gfs2.h" | |
5c676f6d | 31 | #include "incore.h" |
b3b94faa DT |
32 | #include "bmap.h" |
33 | #include "dir.h" | |
34 | #include "glock.h" | |
35 | #include "glops.h" | |
36 | #include "inode.h" | |
b3b94faa DT |
37 | #include "log.h" |
38 | #include "meta_io.h" | |
b3b94faa DT |
39 | #include "quota.h" |
40 | #include "rgrp.h" | |
41 | #include "trans.h" | |
5c676f6d | 42 | #include "util.h" |
b3b94faa | 43 | |
b3b94faa DT |
44 | /** |
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 | ||
56 | static loff_t gfs2_llseek(struct file *file, loff_t offset, int origin) | |
57 | { | |
feaa7bba | 58 | struct gfs2_inode *ip = GFS2_I(file->f_mapping->host); |
b3b94faa DT |
59 | struct gfs2_holder i_gh; |
60 | loff_t error; | |
61 | ||
b3b94faa DT |
62 | if (origin == 2) { |
63 | error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, | |
64 | &i_gh); | |
65 | if (!error) { | |
9465efc9 | 66 | error = generic_file_llseek_unlocked(file, offset, origin); |
b3b94faa DT |
67 | gfs2_glock_dq_uninit(&i_gh); |
68 | } | |
69 | } else | |
9465efc9 | 70 | error = generic_file_llseek_unlocked(file, offset, origin); |
b3b94faa DT |
71 | |
72 | return error; | |
73 | } | |
74 | ||
b3b94faa | 75 | /** |
f0e522a9 | 76 | * gfs2_readdir - Read directory entries from a directory |
b3b94faa DT |
77 | * @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 | ||
f0e522a9 | 84 | static int gfs2_readdir(struct file *file, void *dirent, filldir_t filldir) |
b3b94faa | 85 | { |
71b86f56 | 86 | struct inode *dir = file->f_mapping->host; |
feaa7bba | 87 | struct gfs2_inode *dip = GFS2_I(dir); |
b3b94faa | 88 | struct gfs2_holder d_gh; |
cd915493 | 89 | u64 offset = file->f_pos; |
b3b94faa DT |
90 | int error; |
91 | ||
719ee344 SW |
92 | gfs2_holder_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh); |
93 | error = gfs2_glock_nq(&d_gh); | |
b3b94faa DT |
94 | if (error) { |
95 | gfs2_holder_uninit(&d_gh); | |
96 | return error; | |
97 | } | |
98 | ||
3699e3a4 | 99 | error = gfs2_dir_read(dir, &offset, dirent, filldir); |
b3b94faa DT |
100 | |
101 | gfs2_glock_dq_uninit(&d_gh); | |
102 | ||
b3b94faa DT |
103 | file->f_pos = offset; |
104 | ||
b3b94faa DT |
105 | return error; |
106 | } | |
107 | ||
128e5eba SW |
108 | /** |
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 | */ | |
118 | static 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 | } | |
b3b94faa | 129 | |
128e5eba SW |
130 | static 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, | |
b9af7ca6 | 136 | [14] = GFS2_DIF_INHERIT_JDATA, |
71b86f56 SW |
137 | }; |
138 | ||
128e5eba SW |
139 | static 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, | |
128e5eba | 145 | [gfs2fl_InheritJdata] = FS_JOURNAL_DATA_FL, |
7ea9ea83 | 146 | }; |
71b86f56 | 147 | |
b09e593d | 148 | static int gfs2_get_flags(struct file *filp, u32 __user *ptr) |
71b86f56 | 149 | { |
81454098 | 150 | struct inode *inode = filp->f_path.dentry->d_inode; |
feaa7bba | 151 | struct gfs2_inode *ip = GFS2_I(inode); |
71b86f56 SW |
152 | struct gfs2_holder gh; |
153 | int error; | |
128e5eba | 154 | u32 fsflags; |
71b86f56 | 155 | |
719ee344 SW |
156 | gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &gh); |
157 | error = gfs2_glock_nq(&gh); | |
71b86f56 SW |
158 | if (error) |
159 | return error; | |
907b9bce | 160 | |
383f01fb SW |
161 | fsflags = fsflags_cvt(gfs2_to_fsflags, ip->i_diskflags); |
162 | if (!S_ISDIR(inode->i_mode) && ip->i_diskflags & GFS2_DIF_JDATA) | |
c9f6a6bb | 163 | fsflags |= FS_JOURNAL_DATA_FL; |
128e5eba | 164 | if (put_user(fsflags, ptr)) |
71b86f56 SW |
165 | error = -EFAULT; |
166 | ||
3cc3f710 | 167 | gfs2_glock_dq(&gh); |
71b86f56 SW |
168 | gfs2_holder_uninit(&gh); |
169 | return error; | |
170 | } | |
171 | ||
6b124d8d SW |
172 | void gfs2_set_inode_flags(struct inode *inode) |
173 | { | |
174 | struct gfs2_inode *ip = GFS2_I(inode); | |
6b124d8d SW |
175 | unsigned int flags = inode->i_flags; |
176 | ||
177 | flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC); | |
383f01fb | 178 | if (ip->i_diskflags & GFS2_DIF_IMMUTABLE) |
6b124d8d | 179 | flags |= S_IMMUTABLE; |
383f01fb | 180 | if (ip->i_diskflags & GFS2_DIF_APPENDONLY) |
6b124d8d | 181 | flags |= S_APPEND; |
383f01fb | 182 | if (ip->i_diskflags & GFS2_DIF_NOATIME) |
6b124d8d | 183 | flags |= S_NOATIME; |
383f01fb | 184 | if (ip->i_diskflags & GFS2_DIF_SYNC) |
6b124d8d SW |
185 | flags |= S_SYNC; |
186 | inode->i_flags = flags; | |
187 | } | |
188 | ||
71b86f56 SW |
189 | /* Flags that can be set by user space */ |
190 | #define GFS2_FLAGS_USER_SET (GFS2_DIF_JDATA| \ | |
71b86f56 SW |
191 | GFS2_DIF_IMMUTABLE| \ |
192 | GFS2_DIF_APPENDONLY| \ | |
193 | GFS2_DIF_NOATIME| \ | |
194 | GFS2_DIF_SYNC| \ | |
195 | GFS2_DIF_SYSTEM| \ | |
71b86f56 SW |
196 | 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 | */ | |
b09e593d | 205 | static int do_gfs2_set_flags(struct file *filp, u32 reqflags, u32 mask) |
71b86f56 | 206 | { |
81454098 | 207 | struct inode *inode = filp->f_path.dentry->d_inode; |
feaa7bba SW |
208 | struct gfs2_inode *ip = GFS2_I(inode); |
209 | struct gfs2_sbd *sdp = GFS2_SB(inode); | |
71b86f56 SW |
210 | struct buffer_head *bh; |
211 | struct gfs2_holder gh; | |
212 | int error; | |
55eccc6d | 213 | u32 new_flags, flags; |
71b86f56 | 214 | |
f58ba889 | 215 | error = mnt_want_write(filp->f_path.mnt); |
52f341cf | 216 | if (error) |
71b86f56 SW |
217 | return error; |
218 | ||
f58ba889 MS |
219 | error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh); |
220 | if (error) | |
221 | goto out_drop_write; | |
222 | ||
7df0e039 | 223 | error = -EACCES; |
2e149670 | 224 | if (!inode_owner_or_capable(inode)) |
7df0e039 SW |
225 | goto out; |
226 | ||
227 | error = 0; | |
383f01fb | 228 | flags = ip->i_diskflags; |
55eccc6d | 229 | new_flags = (flags & ~mask) | (reqflags & mask); |
71b86f56 SW |
230 | 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 | ||
71b86f56 SW |
237 | 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; | |
907b9bce | 242 | if (((new_flags ^ flags) & GFS2_DIF_IMMUTABLE) && |
b9cb9813 | 243 | !capable(CAP_LINUX_IMMUTABLE)) |
71b86f56 | 244 | goto out; |
b9cb9813 | 245 | if (!IS_IMMUTABLE(inode)) { |
b74c79e9 | 246 | error = gfs2_permission(inode, MAY_WRITE, 0); |
b9cb9813 SW |
247 | if (error) |
248 | goto out; | |
249 | } | |
5561093e SW |
250 | 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 | } | |
55eccc6d | 260 | error = gfs2_trans_begin(sdp, RES_DINODE, 0); |
71b86f56 SW |
261 | if (error) |
262 | goto out; | |
55eccc6d SW |
263 | error = gfs2_meta_inode_buffer(ip, &bh); |
264 | if (error) | |
265 | goto out_trans_end; | |
71b86f56 | 266 | gfs2_trans_add_bh(ip->i_gl, bh, 1); |
383f01fb | 267 | ip->i_diskflags = new_flags; |
539e5d6b | 268 | gfs2_dinode_out(ip, bh->b_data); |
71b86f56 | 269 | brelse(bh); |
6b124d8d | 270 | gfs2_set_inode_flags(inode); |
5561093e | 271 | gfs2_set_aops(inode); |
55eccc6d SW |
272 | out_trans_end: |
273 | gfs2_trans_end(sdp); | |
71b86f56 SW |
274 | out: |
275 | gfs2_glock_dq_uninit(&gh); | |
f58ba889 MS |
276 | out_drop_write: |
277 | mnt_drop_write(filp->f_path.mnt); | |
71b86f56 SW |
278 | return error; |
279 | } | |
280 | ||
b09e593d | 281 | static int gfs2_set_flags(struct file *filp, u32 __user *ptr) |
71b86f56 | 282 | { |
b9af7ca6 | 283 | struct inode *inode = filp->f_path.dentry->d_inode; |
128e5eba | 284 | u32 fsflags, gfsflags; |
7df0e039 | 285 | |
128e5eba | 286 | if (get_user(fsflags, ptr)) |
71b86f56 | 287 | return -EFAULT; |
7df0e039 | 288 | |
128e5eba | 289 | gfsflags = fsflags_cvt(fsflags_to_gfs2, fsflags); |
b9af7ca6 SW |
290 | if (!S_ISDIR(inode->i_mode)) { |
291 | if (gfsflags & GFS2_DIF_INHERIT_JDATA) | |
292 | gfsflags ^= (GFS2_DIF_JDATA | GFS2_DIF_INHERIT_JDATA); | |
b9af7ca6 SW |
293 | return do_gfs2_set_flags(filp, gfsflags, ~0); |
294 | } | |
295 | return do_gfs2_set_flags(filp, gfsflags, ~GFS2_DIF_JDATA); | |
71b86f56 SW |
296 | } |
297 | ||
b09e593d | 298 | static long gfs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
71b86f56 SW |
299 | { |
300 | switch(cmd) { | |
128e5eba | 301 | case FS_IOC_GETFLAGS: |
b09e593d | 302 | return gfs2_get_flags(filp, (u32 __user *)arg); |
128e5eba | 303 | case FS_IOC_SETFLAGS: |
b09e593d | 304 | return gfs2_set_flags(filp, (u32 __user *)arg); |
71b86f56 SW |
305 | } |
306 | return -ENOTTY; | |
307 | } | |
308 | ||
3cc3f710 SW |
309 | /** |
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 | ||
319 | static 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; | |
e9e1ef2b | 329 | gfs2_block_map(inode, lblock, &bh, 1); |
3cc3f710 SW |
330 | 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 | ||
c2ec175c | 347 | static int gfs2_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) |
3cc3f710 | 348 | { |
c2ec175c | 349 | struct page *page = vmf->page; |
3cc3f710 SW |
350 | 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; | |
c8f554b9 | 354 | u64 pos = page->index << PAGE_CACHE_SHIFT; |
3cc3f710 | 355 | unsigned int data_blocks, ind_blocks, rblocks; |
3cc3f710 SW |
356 | struct gfs2_holder gh; |
357 | struct gfs2_alloc *al; | |
358 | int ret; | |
359 | ||
719ee344 SW |
360 | gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh); |
361 | ret = gfs2_glock_nq(&gh); | |
3cc3f710 SW |
362 | if (ret) |
363 | goto out; | |
364 | ||
9c538837 SW |
365 | set_bit(GLF_DIRTY, &ip->i_gl->gl_flags); |
366 | set_bit(GIF_SW_PAGED, &ip->i_flags); | |
367 | ||
461cb419 | 368 | if (!gfs2_write_alloc_required(ip, pos, PAGE_CACHE_SIZE)) |
3cc3f710 | 369 | goto out_unlock; |
6dbd8224 | 370 | ret = -ENOMEM; |
3cc3f710 | 371 | al = gfs2_alloc_get(ip); |
6dbd8224 SW |
372 | if (al == NULL) |
373 | goto out_unlock; | |
374 | ||
d82661d9 | 375 | ret = gfs2_quota_lock_check(ip); |
3cc3f710 SW |
376 | if (ret) |
377 | goto out_alloc_put; | |
7ed122e4 | 378 | gfs2_write_calc_reserv(ip, PAGE_CACHE_SIZE, &data_blocks, &ind_blocks); |
3cc3f710 SW |
379 | 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; | |
bf97b673 | 387 | if (ind_blocks || data_blocks) { |
3cc3f710 | 388 | rblocks += RES_STATFS + RES_QUOTA; |
bf97b673 BM |
389 | rblocks += gfs2_rg_blocks(al); |
390 | } | |
3cc3f710 SW |
391 | 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; | |
b7fe2e39 | 400 | ret = 0; |
3cc3f710 SW |
401 | 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 | ||
410 | out_unlock_page: | |
411 | unlock_page(page); | |
412 | gfs2_trans_end(sdp); | |
413 | out_trans_fail: | |
414 | gfs2_inplace_release(ip); | |
415 | out_quota_unlock: | |
416 | gfs2_quota_unlock(ip); | |
417 | out_alloc_put: | |
418 | gfs2_alloc_put(ip); | |
419 | out_unlock: | |
420 | gfs2_glock_dq(&gh); | |
421 | out: | |
422 | gfs2_holder_uninit(&gh); | |
e56985da SW |
423 | if (ret == -ENOMEM) |
424 | ret = VM_FAULT_OOM; | |
425 | else if (ret) | |
c2ec175c | 426 | ret = VM_FAULT_SIGBUS; |
3cc3f710 SW |
427 | return ret; |
428 | } | |
429 | ||
f0f37e2f | 430 | static const struct vm_operations_struct gfs2_vm_ops = { |
3cc3f710 SW |
431 | .fault = filemap_fault, |
432 | .page_mkwrite = gfs2_page_mkwrite, | |
433 | }; | |
434 | ||
b3b94faa DT |
435 | /** |
436 | * gfs2_mmap - | |
437 | * @file: The file to map | |
438 | * @vma: The VMA which described the mapping | |
439 | * | |
48bf2b17 SW |
440 | * 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 | |
b3b94faa DT |
445 | */ |
446 | ||
447 | static int gfs2_mmap(struct file *file, struct vm_area_struct *vma) | |
448 | { | |
feaa7bba | 449 | struct gfs2_inode *ip = GFS2_I(file->f_mapping->host); |
b3b94faa | 450 | |
b9c93bb7 SW |
451 | if (!(file->f_flags & O_NOATIME) && |
452 | !IS_NOATIME(&ip->i_inode)) { | |
48bf2b17 SW |
453 | struct gfs2_holder i_gh; |
454 | int error; | |
b3b94faa | 455 | |
b9c93bb7 | 456 | gfs2_holder_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh); |
48bf2b17 | 457 | error = gfs2_glock_nq(&i_gh); |
b9c93bb7 SW |
458 | if (error == 0) { |
459 | file_accessed(file); | |
460 | gfs2_glock_dq(&i_gh); | |
461 | } | |
462 | gfs2_holder_uninit(&i_gh); | |
463 | if (error) | |
464 | return error; | |
48bf2b17 | 465 | } |
3cc3f710 | 466 | vma->vm_ops = &gfs2_vm_ops; |
48bf2b17 | 467 | vma->vm_flags |= VM_CAN_NONLINEAR; |
b3b94faa | 468 | |
48bf2b17 | 469 | return 0; |
b3b94faa DT |
470 | } |
471 | ||
472 | /** | |
473 | * gfs2_open - open a file | |
474 | * @inode: the inode to open | |
475 | * @file: the struct file for this opening | |
476 | * | |
477 | * Returns: errno | |
478 | */ | |
479 | ||
480 | static int gfs2_open(struct inode *inode, struct file *file) | |
481 | { | |
feaa7bba | 482 | struct gfs2_inode *ip = GFS2_I(inode); |
b3b94faa DT |
483 | struct gfs2_holder i_gh; |
484 | struct gfs2_file *fp; | |
485 | int error; | |
486 | ||
b3b94faa DT |
487 | fp = kzalloc(sizeof(struct gfs2_file), GFP_KERNEL); |
488 | if (!fp) | |
489 | return -ENOMEM; | |
490 | ||
f55ab26a | 491 | mutex_init(&fp->f_fl_mutex); |
b3b94faa | 492 | |
feaa7bba | 493 | gfs2_assert_warn(GFS2_SB(inode), !file->private_data); |
5c676f6d | 494 | file->private_data = fp; |
b3b94faa | 495 | |
b60623c2 | 496 | if (S_ISREG(ip->i_inode.i_mode)) { |
b3b94faa DT |
497 | error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, |
498 | &i_gh); | |
499 | if (error) | |
500 | goto fail; | |
501 | ||
502 | if (!(file->f_flags & O_LARGEFILE) && | |
a2e0f799 | 503 | i_size_read(inode) > MAX_NON_LFS) { |
a9c62a18 | 504 | error = -EOVERFLOW; |
b3b94faa DT |
505 | goto fail_gunlock; |
506 | } | |
507 | ||
b3b94faa DT |
508 | gfs2_glock_dq_uninit(&i_gh); |
509 | } | |
510 | ||
511 | return 0; | |
512 | ||
420b9e5e | 513 | fail_gunlock: |
b3b94faa | 514 | gfs2_glock_dq_uninit(&i_gh); |
420b9e5e | 515 | fail: |
5c676f6d | 516 | file->private_data = NULL; |
b3b94faa | 517 | kfree(fp); |
b3b94faa DT |
518 | return error; |
519 | } | |
520 | ||
521 | /** | |
522 | * gfs2_close - called to close a struct file | |
523 | * @inode: the inode the struct file belongs to | |
524 | * @file: the struct file being closed | |
525 | * | |
526 | * Returns: errno | |
527 | */ | |
528 | ||
529 | static int gfs2_close(struct inode *inode, struct file *file) | |
530 | { | |
5c676f6d | 531 | struct gfs2_sbd *sdp = inode->i_sb->s_fs_info; |
b3b94faa DT |
532 | struct gfs2_file *fp; |
533 | ||
5c676f6d SW |
534 | fp = file->private_data; |
535 | file->private_data = NULL; | |
b3b94faa DT |
536 | |
537 | if (gfs2_assert_warn(sdp, fp)) | |
538 | return -EIO; | |
539 | ||
540 | kfree(fp); | |
541 | ||
542 | return 0; | |
543 | } | |
544 | ||
545 | /** | |
546 | * gfs2_fsync - sync the dirty data for a file (across the cluster) | |
547 | * @file: the file that points to the dentry (we ignore this) | |
dba898b0 | 548 | * @datasync: set if we can ignore timestamp changes |
b3b94faa | 549 | * |
dba898b0 SW |
550 | * The VFS will flush data for us. We only need to worry |
551 | * about metadata here. | |
34126f9f | 552 | * |
b3b94faa DT |
553 | * Returns: errno |
554 | */ | |
555 | ||
7ea80859 | 556 | static int gfs2_fsync(struct file *file, int datasync) |
b3b94faa | 557 | { |
7ea80859 | 558 | struct inode *inode = file->f_mapping->host; |
33c3de32 | 559 | int sync_state = inode->i_state & (I_DIRTY_SYNC|I_DIRTY_DATASYNC); |
dba898b0 SW |
560 | struct gfs2_inode *ip = GFS2_I(inode); |
561 | int ret; | |
b3b94faa | 562 | |
dba898b0 SW |
563 | if (datasync) |
564 | sync_state &= ~I_DIRTY_SYNC; | |
b3b94faa | 565 | |
dba898b0 SW |
566 | if (sync_state) { |
567 | ret = sync_inode_metadata(inode, 1); | |
568 | if (ret) | |
569 | return ret; | |
570 | gfs2_ail_flush(ip->i_gl); | |
33c3de32 SW |
571 | } |
572 | ||
dba898b0 | 573 | return 0; |
b3b94faa DT |
574 | } |
575 | ||
56aa616a SW |
576 | /** |
577 | * gfs2_file_aio_write - Perform a write to a file | |
578 | * @iocb: The io context | |
579 | * @iov: The data to write | |
580 | * @nr_segs: Number of @iov segments | |
581 | * @pos: The file position | |
582 | * | |
583 | * We have to do a lock/unlock here to refresh the inode size for | |
584 | * O_APPEND writes, otherwise we can land up writing at the wrong | |
585 | * offset. There is still a race, but provided the app is using its | |
586 | * own file locking, this will make O_APPEND work as expected. | |
587 | * | |
588 | */ | |
589 | ||
590 | static ssize_t gfs2_file_aio_write(struct kiocb *iocb, const struct iovec *iov, | |
591 | unsigned long nr_segs, loff_t pos) | |
592 | { | |
593 | struct file *file = iocb->ki_filp; | |
594 | ||
595 | if (file->f_flags & O_APPEND) { | |
596 | struct dentry *dentry = file->f_dentry; | |
597 | struct gfs2_inode *ip = GFS2_I(dentry->d_inode); | |
598 | struct gfs2_holder gh; | |
599 | int ret; | |
600 | ||
601 | ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh); | |
602 | if (ret) | |
603 | return ret; | |
604 | gfs2_glock_dq_uninit(&gh); | |
605 | } | |
606 | ||
607 | return generic_file_aio_write(iocb, iov, nr_segs, pos); | |
608 | } | |
609 | ||
0ee53206 BM |
610 | static int empty_write_end(struct page *page, unsigned from, |
611 | unsigned to, int mode) | |
2fe17c10 | 612 | { |
0ee53206 BM |
613 | struct inode *inode = page->mapping->host; |
614 | struct gfs2_inode *ip = GFS2_I(inode); | |
615 | struct buffer_head *bh; | |
616 | unsigned offset, blksize = 1 << inode->i_blkbits; | |
617 | pgoff_t end_index = i_size_read(inode) >> PAGE_CACHE_SHIFT; | |
2fe17c10 | 618 | |
e4a7b7b0 | 619 | zero_user(page, from, to-from); |
2fe17c10 CH |
620 | mark_page_accessed(page); |
621 | ||
0ee53206 BM |
622 | if (page->index < end_index || !(mode & FALLOC_FL_KEEP_SIZE)) { |
623 | if (!gfs2_is_writeback(ip)) | |
624 | gfs2_page_add_databufs(ip, page, from, to); | |
625 | ||
626 | block_commit_write(page, from, to); | |
627 | return 0; | |
628 | } | |
629 | ||
630 | offset = 0; | |
631 | bh = page_buffers(page); | |
632 | while (offset < to) { | |
633 | if (offset >= from) { | |
634 | set_buffer_uptodate(bh); | |
635 | mark_buffer_dirty(bh); | |
636 | clear_buffer_new(bh); | |
637 | write_dirty_buffer(bh, WRITE); | |
638 | } | |
639 | offset += blksize; | |
640 | bh = bh->b_this_page; | |
641 | } | |
2fe17c10 | 642 | |
0ee53206 BM |
643 | offset = 0; |
644 | bh = page_buffers(page); | |
645 | while (offset < to) { | |
646 | if (offset >= from) { | |
647 | wait_on_buffer(bh); | |
648 | if (!buffer_uptodate(bh)) | |
649 | return -EIO; | |
650 | } | |
651 | offset += blksize; | |
652 | bh = bh->b_this_page; | |
653 | } | |
654 | return 0; | |
2fe17c10 CH |
655 | } |
656 | ||
e4a7b7b0 | 657 | static int needs_empty_write(sector_t block, struct inode *inode) |
2fe17c10 | 658 | { |
2fe17c10 | 659 | int error; |
e4a7b7b0 | 660 | struct buffer_head bh_map = { .b_state = 0, .b_blocknr = 0 }; |
2fe17c10 | 661 | |
e4a7b7b0 BM |
662 | bh_map.b_size = 1 << inode->i_blkbits; |
663 | error = gfs2_block_map(inode, block, &bh_map, 0); | |
664 | if (unlikely(error)) | |
665 | return error; | |
666 | return !buffer_mapped(&bh_map); | |
667 | } | |
2fe17c10 | 668 | |
0ee53206 BM |
669 | static int write_empty_blocks(struct page *page, unsigned from, unsigned to, |
670 | int mode) | |
e4a7b7b0 BM |
671 | { |
672 | struct inode *inode = page->mapping->host; | |
673 | unsigned start, end, next, blksize; | |
674 | sector_t block = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits); | |
675 | int ret; | |
2fe17c10 | 676 | |
e4a7b7b0 | 677 | blksize = 1 << inode->i_blkbits; |
2fe17c10 CH |
678 | next = end = 0; |
679 | while (next < from) { | |
e4a7b7b0 BM |
680 | next += blksize; |
681 | block++; | |
2fe17c10 CH |
682 | } |
683 | start = next; | |
684 | do { | |
e4a7b7b0 BM |
685 | next += blksize; |
686 | ret = needs_empty_write(block, inode); | |
687 | if (unlikely(ret < 0)) | |
688 | return ret; | |
689 | if (ret == 0) { | |
2fe17c10 | 690 | if (end) { |
e4a7b7b0 BM |
691 | ret = __block_write_begin(page, start, end - start, |
692 | gfs2_block_map); | |
693 | if (unlikely(ret)) | |
694 | return ret; | |
0ee53206 BM |
695 | ret = empty_write_end(page, start, end, mode); |
696 | if (unlikely(ret)) | |
697 | return ret; | |
2fe17c10 CH |
698 | end = 0; |
699 | } | |
700 | start = next; | |
701 | } | |
702 | else | |
703 | end = next; | |
e4a7b7b0 | 704 | block++; |
2fe17c10 CH |
705 | } while (next < to); |
706 | ||
707 | if (end) { | |
e4a7b7b0 BM |
708 | ret = __block_write_begin(page, start, end - start, gfs2_block_map); |
709 | if (unlikely(ret)) | |
710 | return ret; | |
0ee53206 BM |
711 | ret = empty_write_end(page, start, end, mode); |
712 | if (unlikely(ret)) | |
713 | return ret; | |
2fe17c10 CH |
714 | } |
715 | ||
716 | return 0; | |
717 | } | |
718 | ||
719 | static int fallocate_chunk(struct inode *inode, loff_t offset, loff_t len, | |
720 | int mode) | |
721 | { | |
722 | struct gfs2_inode *ip = GFS2_I(inode); | |
723 | struct buffer_head *dibh; | |
724 | int error; | |
725 | u64 start = offset >> PAGE_CACHE_SHIFT; | |
726 | unsigned int start_offset = offset & ~PAGE_CACHE_MASK; | |
727 | u64 end = (offset + len - 1) >> PAGE_CACHE_SHIFT; | |
728 | pgoff_t curr; | |
729 | struct page *page; | |
730 | unsigned int end_offset = (offset + len) & ~PAGE_CACHE_MASK; | |
731 | unsigned int from, to; | |
732 | ||
733 | if (!end_offset) | |
734 | end_offset = PAGE_CACHE_SIZE; | |
735 | ||
736 | error = gfs2_meta_inode_buffer(ip, &dibh); | |
737 | if (unlikely(error)) | |
738 | goto out; | |
739 | ||
740 | gfs2_trans_add_bh(ip->i_gl, dibh, 1); | |
741 | ||
742 | if (gfs2_is_stuffed(ip)) { | |
743 | error = gfs2_unstuff_dinode(ip, NULL); | |
744 | if (unlikely(error)) | |
745 | goto out; | |
746 | } | |
747 | ||
748 | curr = start; | |
749 | offset = start << PAGE_CACHE_SHIFT; | |
750 | from = start_offset; | |
751 | to = PAGE_CACHE_SIZE; | |
752 | while (curr <= end) { | |
753 | page = grab_cache_page_write_begin(inode->i_mapping, curr, | |
754 | AOP_FLAG_NOFS); | |
755 | if (unlikely(!page)) { | |
756 | error = -ENOMEM; | |
757 | goto out; | |
758 | } | |
759 | ||
760 | if (curr == end) | |
761 | to = end_offset; | |
0ee53206 | 762 | error = write_empty_blocks(page, from, to, mode); |
2fe17c10 CH |
763 | if (!error && offset + to > inode->i_size && |
764 | !(mode & FALLOC_FL_KEEP_SIZE)) { | |
765 | i_size_write(inode, offset + to); | |
766 | } | |
767 | unlock_page(page); | |
768 | page_cache_release(page); | |
769 | if (error) | |
770 | goto out; | |
771 | curr++; | |
772 | offset += PAGE_CACHE_SIZE; | |
773 | from = 0; | |
774 | } | |
775 | ||
776 | gfs2_dinode_out(ip, dibh->b_data); | |
777 | mark_inode_dirty(inode); | |
778 | ||
779 | brelse(dibh); | |
780 | ||
781 | out: | |
782 | return error; | |
783 | } | |
784 | ||
785 | static void calc_max_reserv(struct gfs2_inode *ip, loff_t max, loff_t *len, | |
786 | unsigned int *data_blocks, unsigned int *ind_blocks) | |
787 | { | |
788 | const struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | |
789 | unsigned int max_blocks = ip->i_alloc->al_rgd->rd_free_clone; | |
790 | unsigned int tmp, max_data = max_blocks - 3 * (sdp->sd_max_height - 1); | |
791 | ||
792 | for (tmp = max_data; tmp > sdp->sd_diptrs;) { | |
793 | tmp = DIV_ROUND_UP(tmp, sdp->sd_inptrs); | |
794 | max_data -= tmp; | |
795 | } | |
796 | /* This calculation isn't the exact reverse of gfs2_write_calc_reserve, | |
797 | so it might end up with fewer data blocks */ | |
798 | if (max_data <= *data_blocks) | |
799 | return; | |
800 | *data_blocks = max_data; | |
801 | *ind_blocks = max_blocks - max_data; | |
802 | *len = ((loff_t)max_data - 3) << sdp->sd_sb.sb_bsize_shift; | |
803 | if (*len > max) { | |
804 | *len = max; | |
805 | gfs2_write_calc_reserv(ip, max, data_blocks, ind_blocks); | |
806 | } | |
807 | } | |
808 | ||
809 | static long gfs2_fallocate(struct file *file, int mode, loff_t offset, | |
810 | loff_t len) | |
811 | { | |
812 | struct inode *inode = file->f_path.dentry->d_inode; | |
813 | struct gfs2_sbd *sdp = GFS2_SB(inode); | |
814 | struct gfs2_inode *ip = GFS2_I(inode); | |
815 | unsigned int data_blocks = 0, ind_blocks = 0, rblocks; | |
816 | loff_t bytes, max_bytes; | |
817 | struct gfs2_alloc *al; | |
818 | int error; | |
819 | loff_t next = (offset + len - 1) >> sdp->sd_sb.sb_bsize_shift; | |
820 | next = (next + 1) << sdp->sd_sb.sb_bsize_shift; | |
821 | ||
822 | /* We only support the FALLOC_FL_KEEP_SIZE mode */ | |
823 | if (mode & ~FALLOC_FL_KEEP_SIZE) | |
824 | return -EOPNOTSUPP; | |
825 | ||
826 | offset = (offset >> sdp->sd_sb.sb_bsize_shift) << | |
827 | sdp->sd_sb.sb_bsize_shift; | |
828 | ||
829 | len = next - offset; | |
830 | bytes = sdp->sd_max_rg_data * sdp->sd_sb.sb_bsize / 2; | |
831 | if (!bytes) | |
832 | bytes = UINT_MAX; | |
833 | ||
834 | gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &ip->i_gh); | |
835 | error = gfs2_glock_nq(&ip->i_gh); | |
836 | if (unlikely(error)) | |
837 | goto out_uninit; | |
838 | ||
839 | if (!gfs2_write_alloc_required(ip, offset, len)) | |
840 | goto out_unlock; | |
841 | ||
842 | while (len > 0) { | |
843 | if (len < bytes) | |
844 | bytes = len; | |
845 | al = gfs2_alloc_get(ip); | |
846 | if (!al) { | |
847 | error = -ENOMEM; | |
848 | goto out_unlock; | |
849 | } | |
850 | ||
851 | error = gfs2_quota_lock_check(ip); | |
852 | if (error) | |
853 | goto out_alloc_put; | |
854 | ||
855 | retry: | |
856 | gfs2_write_calc_reserv(ip, bytes, &data_blocks, &ind_blocks); | |
857 | ||
858 | al->al_requested = data_blocks + ind_blocks; | |
859 | error = gfs2_inplace_reserve(ip); | |
860 | if (error) { | |
861 | if (error == -ENOSPC && bytes > sdp->sd_sb.sb_bsize) { | |
862 | bytes >>= 1; | |
863 | goto retry; | |
864 | } | |
865 | goto out_qunlock; | |
866 | } | |
867 | max_bytes = bytes; | |
868 | calc_max_reserv(ip, len, &max_bytes, &data_blocks, &ind_blocks); | |
869 | al->al_requested = data_blocks + ind_blocks; | |
870 | ||
871 | rblocks = RES_DINODE + ind_blocks + RES_STATFS + RES_QUOTA + | |
872 | RES_RG_HDR + gfs2_rg_blocks(al); | |
873 | if (gfs2_is_jdata(ip)) | |
874 | rblocks += data_blocks ? data_blocks : 1; | |
875 | ||
876 | error = gfs2_trans_begin(sdp, rblocks, | |
877 | PAGE_CACHE_SIZE/sdp->sd_sb.sb_bsize); | |
878 | if (error) | |
879 | goto out_trans_fail; | |
880 | ||
881 | error = fallocate_chunk(inode, offset, max_bytes, mode); | |
882 | gfs2_trans_end(sdp); | |
883 | ||
884 | if (error) | |
885 | goto out_trans_fail; | |
886 | ||
887 | len -= max_bytes; | |
888 | offset += max_bytes; | |
889 | gfs2_inplace_release(ip); | |
890 | gfs2_quota_unlock(ip); | |
891 | gfs2_alloc_put(ip); | |
892 | } | |
893 | goto out_unlock; | |
894 | ||
895 | out_trans_fail: | |
896 | gfs2_inplace_release(ip); | |
897 | out_qunlock: | |
898 | gfs2_quota_unlock(ip); | |
899 | out_alloc_put: | |
900 | gfs2_alloc_put(ip); | |
901 | out_unlock: | |
902 | gfs2_glock_dq(&ip->i_gh); | |
903 | out_uninit: | |
904 | gfs2_holder_uninit(&ip->i_gh); | |
905 | return error; | |
906 | } | |
907 | ||
f057f6cd SW |
908 | #ifdef CONFIG_GFS2_FS_LOCKING_DLM |
909 | ||
60446067 ME |
910 | /** |
911 | * gfs2_setlease - acquire/release a file lease | |
912 | * @file: the file pointer | |
913 | * @arg: lease type | |
914 | * @fl: file lock | |
915 | * | |
f057f6cd SW |
916 | * We don't currently have a way to enforce a lease across the whole |
917 | * cluster; until we do, disable leases (by just returning -EINVAL), | |
918 | * unless the administrator has requested purely local locking. | |
919 | * | |
b89f4321 AB |
920 | * Locking: called under lock_flocks |
921 | * | |
60446067 ME |
922 | * Returns: errno |
923 | */ | |
924 | ||
925 | static int gfs2_setlease(struct file *file, long arg, struct file_lock **fl) | |
926 | { | |
f057f6cd | 927 | return -EINVAL; |
da755fdb SW |
928 | } |
929 | ||
b3b94faa DT |
930 | /** |
931 | * gfs2_lock - acquire/release a posix lock on a file | |
932 | * @file: the file pointer | |
933 | * @cmd: either modify or retrieve lock state, possibly wait | |
934 | * @fl: type and range of lock | |
935 | * | |
936 | * Returns: errno | |
937 | */ | |
938 | ||
939 | static int gfs2_lock(struct file *file, int cmd, struct file_lock *fl) | |
940 | { | |
feaa7bba SW |
941 | struct gfs2_inode *ip = GFS2_I(file->f_mapping->host); |
942 | struct gfs2_sbd *sdp = GFS2_SB(file->f_mapping->host); | |
f057f6cd | 943 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
b3b94faa | 944 | |
b3b94faa DT |
945 | if (!(fl->fl_flags & FL_POSIX)) |
946 | return -ENOLCK; | |
720e7749 | 947 | if (__mandatory_lock(&ip->i_inode) && fl->fl_type != F_UNLCK) |
b3b94faa DT |
948 | return -ENOLCK; |
949 | ||
586759f0 ME |
950 | if (cmd == F_CANCELLK) { |
951 | /* Hack: */ | |
952 | cmd = F_SETLK; | |
953 | fl->fl_type = F_UNLCK; | |
954 | } | |
f057f6cd SW |
955 | if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) |
956 | return -EIO; | |
b3b94faa | 957 | if (IS_GETLK(cmd)) |
f057f6cd | 958 | return dlm_posix_get(ls->ls_dlm, ip->i_no_addr, file, fl); |
b3b94faa | 959 | else if (fl->fl_type == F_UNLCK) |
f057f6cd | 960 | return dlm_posix_unlock(ls->ls_dlm, ip->i_no_addr, file, fl); |
b3b94faa | 961 | else |
f057f6cd | 962 | return dlm_posix_lock(ls->ls_dlm, ip->i_no_addr, file, cmd, fl); |
b3b94faa DT |
963 | } |
964 | ||
b3b94faa DT |
965 | static int do_flock(struct file *file, int cmd, struct file_lock *fl) |
966 | { | |
5c676f6d | 967 | struct gfs2_file *fp = file->private_data; |
b3b94faa | 968 | struct gfs2_holder *fl_gh = &fp->f_fl_gh; |
81454098 | 969 | struct gfs2_inode *ip = GFS2_I(file->f_path.dentry->d_inode); |
b3b94faa DT |
970 | struct gfs2_glock *gl; |
971 | unsigned int state; | |
972 | int flags; | |
973 | int error = 0; | |
974 | ||
975 | state = (fl->fl_type == F_WRLCK) ? LM_ST_EXCLUSIVE : LM_ST_SHARED; | |
6802e340 | 976 | flags = (IS_SETLKW(cmd) ? 0 : LM_FLAG_TRY) | GL_EXACT | GL_NOCACHE; |
b3b94faa | 977 | |
f55ab26a | 978 | mutex_lock(&fp->f_fl_mutex); |
b3b94faa DT |
979 | |
980 | gl = fl_gh->gh_gl; | |
981 | if (gl) { | |
982 | if (fl_gh->gh_state == state) | |
983 | goto out; | |
b3b94faa | 984 | flock_lock_file_wait(file, |
907b9bce | 985 | &(struct file_lock){.fl_type = F_UNLCK}); |
b4c20166 AD |
986 | gfs2_glock_dq_wait(fl_gh); |
987 | gfs2_holder_reinit(state, flags, fl_gh); | |
b3b94faa | 988 | } else { |
6802e340 SW |
989 | error = gfs2_glock_get(GFS2_SB(&ip->i_inode), ip->i_no_addr, |
990 | &gfs2_flock_glops, CREATE, &gl); | |
b3b94faa DT |
991 | if (error) |
992 | goto out; | |
b4c20166 AD |
993 | gfs2_holder_init(gl, state, flags, fl_gh); |
994 | gfs2_glock_put(gl); | |
b3b94faa | 995 | } |
b3b94faa DT |
996 | error = gfs2_glock_nq(fl_gh); |
997 | if (error) { | |
998 | gfs2_holder_uninit(fl_gh); | |
999 | if (error == GLR_TRYFAILED) | |
1000 | error = -EAGAIN; | |
1001 | } else { | |
1002 | error = flock_lock_file_wait(file, fl); | |
feaa7bba | 1003 | gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error); |
b3b94faa DT |
1004 | } |
1005 | ||
420b9e5e | 1006 | out: |
f55ab26a | 1007 | mutex_unlock(&fp->f_fl_mutex); |
b3b94faa DT |
1008 | return error; |
1009 | } | |
1010 | ||
1011 | static void do_unflock(struct file *file, struct file_lock *fl) | |
1012 | { | |
5c676f6d | 1013 | struct gfs2_file *fp = file->private_data; |
b3b94faa DT |
1014 | struct gfs2_holder *fl_gh = &fp->f_fl_gh; |
1015 | ||
f55ab26a | 1016 | mutex_lock(&fp->f_fl_mutex); |
b3b94faa | 1017 | flock_lock_file_wait(file, fl); |
0a33443b SW |
1018 | if (fl_gh->gh_gl) { |
1019 | gfs2_glock_dq_wait(fl_gh); | |
1020 | gfs2_holder_uninit(fl_gh); | |
1021 | } | |
f55ab26a | 1022 | mutex_unlock(&fp->f_fl_mutex); |
b3b94faa DT |
1023 | } |
1024 | ||
1025 | /** | |
1026 | * gfs2_flock - acquire/release a flock lock on a file | |
1027 | * @file: the file pointer | |
1028 | * @cmd: either modify or retrieve lock state, possibly wait | |
1029 | * @fl: type and range of lock | |
1030 | * | |
1031 | * Returns: errno | |
1032 | */ | |
1033 | ||
1034 | static int gfs2_flock(struct file *file, int cmd, struct file_lock *fl) | |
1035 | { | |
b3b94faa DT |
1036 | if (!(fl->fl_flags & FL_FLOCK)) |
1037 | return -ENOLCK; | |
a12af1eb AD |
1038 | if (fl->fl_type & LOCK_MAND) |
1039 | return -EOPNOTSUPP; | |
b3b94faa | 1040 | |
b3b94faa DT |
1041 | if (fl->fl_type == F_UNLCK) { |
1042 | do_unflock(file, fl); | |
1043 | return 0; | |
d00223f1 | 1044 | } else { |
b3b94faa | 1045 | return do_flock(file, cmd, fl); |
d00223f1 | 1046 | } |
b3b94faa DT |
1047 | } |
1048 | ||
10d21988 | 1049 | const struct file_operations gfs2_file_fops = { |
26c1a574 | 1050 | .llseek = gfs2_llseek, |
d00223f1 | 1051 | .read = do_sync_read, |
26c1a574 | 1052 | .aio_read = generic_file_aio_read, |
d00223f1 | 1053 | .write = do_sync_write, |
56aa616a | 1054 | .aio_write = gfs2_file_aio_write, |
26c1a574 SW |
1055 | .unlocked_ioctl = gfs2_ioctl, |
1056 | .mmap = gfs2_mmap, | |
1057 | .open = gfs2_open, | |
1058 | .release = gfs2_close, | |
1059 | .fsync = gfs2_fsync, | |
1060 | .lock = gfs2_lock, | |
26c1a574 SW |
1061 | .flock = gfs2_flock, |
1062 | .splice_read = generic_file_splice_read, | |
1063 | .splice_write = generic_file_splice_write, | |
60446067 | 1064 | .setlease = gfs2_setlease, |
2fe17c10 | 1065 | .fallocate = gfs2_fallocate, |
b3b94faa DT |
1066 | }; |
1067 | ||
10d21988 | 1068 | const struct file_operations gfs2_dir_fops = { |
26c1a574 SW |
1069 | .readdir = gfs2_readdir, |
1070 | .unlocked_ioctl = gfs2_ioctl, | |
1071 | .open = gfs2_open, | |
1072 | .release = gfs2_close, | |
1073 | .fsync = gfs2_fsync, | |
1074 | .lock = gfs2_lock, | |
1075 | .flock = gfs2_flock, | |
6038f373 | 1076 | .llseek = default_llseek, |
b3b94faa DT |
1077 | }; |
1078 | ||
f057f6cd SW |
1079 | #endif /* CONFIG_GFS2_FS_LOCKING_DLM */ |
1080 | ||
10d21988 | 1081 | const struct file_operations gfs2_file_fops_nolock = { |
c97bfe43 WC |
1082 | .llseek = gfs2_llseek, |
1083 | .read = do_sync_read, | |
1084 | .aio_read = generic_file_aio_read, | |
1085 | .write = do_sync_write, | |
56aa616a | 1086 | .aio_write = gfs2_file_aio_write, |
c97bfe43 WC |
1087 | .unlocked_ioctl = gfs2_ioctl, |
1088 | .mmap = gfs2_mmap, | |
1089 | .open = gfs2_open, | |
1090 | .release = gfs2_close, | |
1091 | .fsync = gfs2_fsync, | |
1092 | .splice_read = generic_file_splice_read, | |
1093 | .splice_write = generic_file_splice_write, | |
f057f6cd | 1094 | .setlease = generic_setlease, |
2fe17c10 | 1095 | .fallocate = gfs2_fallocate, |
c97bfe43 WC |
1096 | }; |
1097 | ||
10d21988 | 1098 | const struct file_operations gfs2_dir_fops_nolock = { |
c97bfe43 WC |
1099 | .readdir = gfs2_readdir, |
1100 | .unlocked_ioctl = gfs2_ioctl, | |
1101 | .open = gfs2_open, | |
1102 | .release = gfs2_close, | |
1103 | .fsync = gfs2_fsync, | |
6038f373 | 1104 | .llseek = default_llseek, |
c97bfe43 WC |
1105 | }; |
1106 |