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