blob: 040b5a2e65561f23049b8793f451b0b032e3be17 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
14#include <linux/namei.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000015#include <linux/mm.h>
16#include <linux/xattr.h>
17#include <linux/posix_acl.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050019#include <linux/crc32.h>
Steven Whitehousee9079cc2008-10-14 14:43:29 +010020#include <linux/fiemap.h>
Benjamin Marzinski39211202010-08-20 00:21:02 -050021#include <linux/swap.h>
22#include <linux/falloc.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000023#include <asm/uaccess.h>
24
25#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050026#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000027#include "acl.h"
28#include "bmap.h"
29#include "dir.h"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010030#include "xattr.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000031#include "glock.h"
32#include "inode.h"
33#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000034#include "quota.h"
35#include "rgrp.h"
36#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050037#include "util.h"
Steven Whitehouseb2760582008-10-14 16:05:55 +010038#include "super.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000039
40/**
41 * gfs2_create - Create a file
42 * @dir: The directory in which to create the file
43 * @dentry: The dentry of the new file
44 * @mode: The mode of the new file
45 *
46 * Returns: errno
47 */
48
49static int gfs2_create(struct inode *dir, struct dentry *dentry,
50 int mode, struct nameidata *nd)
51{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040052 struct gfs2_inode *dip = GFS2_I(dir);
53 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +000054 struct gfs2_holder ghs[2];
55 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +000056
David Teiglandb3b94fa2006-01-16 16:50:04 +000057 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
58
59 for (;;) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -050060 inode = gfs2_createi(ghs, &dentry->d_name, S_IFREG | mode, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +000061 if (!IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +000063 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +000064 gfs2_inplace_release(dip);
65 gfs2_quota_unlock(dip);
66 gfs2_alloc_put(dip);
67 gfs2_glock_dq_uninit_m(2, ghs);
Steven Whitehouse3a8476d2006-06-19 09:10:39 -040068 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000069 break;
Steven Whitehouse7359a192006-02-13 12:27:43 +000070 } else if (PTR_ERR(inode) != -EEXIST ||
Al Viro35165862008-08-05 03:00:49 -040071 (nd && nd->flags & LOOKUP_EXCL)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000072 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +000073 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000074 }
75
Al Viroa569c712008-07-23 14:42:05 -040076 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
Steven Whitehousec7526662006-03-20 12:30:04 -050077 if (inode) {
78 if (!IS_ERR(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -050079 gfs2_holder_uninit(ghs);
80 break;
81 } else {
82 gfs2_holder_uninit(ghs);
83 return PTR_ERR(inode);
84 }
David Teiglandb3b94fa2006-01-16 16:50:04 +000085 }
86 }
87
David Teiglandb3b94fa2006-01-16 16:50:04 +000088 d_instantiate(dentry, inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000089
90 return 0;
91}
92
93/**
94 * gfs2_lookup - Look up a filename in a directory and return its inode
95 * @dir: The directory inode
96 * @dentry: The dentry of the new inode
97 * @nd: passed from Linux VFS, ignored by us
98 *
99 * Called by the VFS layer. Lock dir and call gfs2_lookupi()
100 *
101 * Returns: errno
102 */
103
104static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
105 struct nameidata *nd)
106{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000107 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000108
Al Viroa569c712008-07-23 14:42:05 -0400109 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
Steven Whitehousec7526662006-03-20 12:30:04 -0500110 if (inode && IS_ERR(inode))
David Howellse231c2e2008-02-07 00:15:26 -0800111 return ERR_CAST(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112
Steven Whitehouse9656b2c2008-01-08 08:14:30 +0000113 if (inode) {
114 struct gfs2_glock *gl = GFS2_I(inode)->i_gl;
115 struct gfs2_holder gh;
116 int error;
117 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
118 if (error) {
119 iput(inode);
120 return ERR_PTR(error);
121 }
122 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000123 return d_splice_alias(inode, dentry);
Steven Whitehouse9656b2c2008-01-08 08:14:30 +0000124 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125 d_add(dentry, inode);
126
127 return NULL;
128}
129
130/**
131 * gfs2_link - Link to a file
132 * @old_dentry: The inode to link
133 * @dir: Add link to this directory
134 * @dentry: The name of the link
135 *
136 * Link the inode in "old_dentry" into the directory "dir" with the
137 * name in "dentry".
138 *
139 * Returns: errno
140 */
141
142static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
143 struct dentry *dentry)
144{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400145 struct gfs2_inode *dip = GFS2_I(dir);
146 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147 struct inode *inode = old_dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400148 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149 struct gfs2_holder ghs[2];
150 int alloc_required;
151 int error;
152
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500153 if (S_ISDIR(inode->i_mode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000154 return -EPERM;
155
156 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
157 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
158
Bob Peterson72dbf472008-08-12 13:39:29 -0500159 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000160 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500161 goto out_parent;
162
163 error = gfs2_glock_nq(ghs + 1); /* child */
164 if (error)
165 goto out_child;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000166
Nick Pigginb74c79e2011-01-07 17:49:58 +1100167 error = gfs2_permission(dir, MAY_WRITE | MAY_EXEC, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000168 if (error)
169 goto out_gunlock;
170
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100171 error = gfs2_dir_check(dir, &dentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000172 switch (error) {
173 case -ENOENT:
174 break;
175 case 0:
176 error = -EEXIST;
177 default:
178 goto out_gunlock;
179 }
180
181 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500182 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183 goto out_gunlock;
184 error = -EFBIG;
Steven Whitehousead6203f2008-11-03 13:59:19 +0000185 if (dip->i_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186 goto out_gunlock;
187 error = -EPERM;
188 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
189 goto out_gunlock;
190 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500191 if (!ip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000192 goto out_gunlock;
193 error = -EMLINK;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500194 if (ip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000195 goto out_gunlock;
196
Steven Whitehousec7526662006-03-20 12:30:04 -0500197 alloc_required = error = gfs2_diradd_alloc_required(dir, &dentry->d_name);
198 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000199 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -0500200 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201
202 if (alloc_required) {
203 struct gfs2_alloc *al = gfs2_alloc_get(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300204 if (!al) {
205 error = -ENOMEM;
206 goto out_gunlock;
207 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000208
Steven Whitehoused82661d2008-03-10 15:34:50 +0000209 error = gfs2_quota_lock_check(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000210 if (error)
211 goto out_alloc;
212
David Teiglandb3b94fa2006-01-16 16:50:04 +0000213 al->al_requested = sdp->sd_max_dirres;
214
215 error = gfs2_inplace_reserve(dip);
216 if (error)
217 goto out_gunlock_q;
218
Steven Whitehouse1b502592006-05-18 14:10:52 -0400219 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Benjamin Marzinskibf97b672010-09-27 16:00:04 -0500220 gfs2_rg_blocks(al) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000221 2 * RES_DINODE + RES_STATFS +
222 RES_QUOTA, 0);
223 if (error)
224 goto out_ipres;
225 } else {
226 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
227 if (error)
228 goto out_ipres;
229 }
230
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100231 error = gfs2_dir_add(dir, &dentry->d_name, ip, IF2DT(inode->i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000232 if (error)
233 goto out_end_trans;
234
235 error = gfs2_change_nlink(ip, +1);
236
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400237out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000238 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400239out_ipres:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240 if (alloc_required)
241 gfs2_inplace_release(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400242out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000243 if (alloc_required)
244 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400245out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246 if (alloc_required)
247 gfs2_alloc_put(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400248out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500249 gfs2_glock_dq(ghs + 1);
250out_child:
251 gfs2_glock_dq(ghs);
252out_parent:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253 gfs2_holder_uninit(ghs);
254 gfs2_holder_uninit(ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255 if (!error) {
Al Viro7de9c6ee2010-10-23 11:11:40 -0400256 ihold(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000257 d_instantiate(dentry, inode);
258 mark_inode_dirty(inode);
259 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260 return error;
261}
262
Steven Whitehouse87ec2172009-05-22 10:54:50 +0100263/*
264 * gfs2_unlink_ok - check to see that a inode is still in a directory
265 * @dip: the directory
266 * @name: the name of the file
267 * @ip: the inode
268 *
269 * Assumes that the lock on (at least) @dip is held.
270 *
271 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
272 */
273
274static int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
275 const struct gfs2_inode *ip)
276{
277 int error;
278
279 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
280 return -EPERM;
281
282 if ((dip->i_inode.i_mode & S_ISVTX) &&
283 dip->i_inode.i_uid != current_fsuid() &&
284 ip->i_inode.i_uid != current_fsuid() && !capable(CAP_FOWNER))
285 return -EPERM;
286
287 if (IS_APPEND(&dip->i_inode))
288 return -EPERM;
289
Nick Pigginb74c79e2011-01-07 17:49:58 +1100290 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, 0);
Steven Whitehouse87ec2172009-05-22 10:54:50 +0100291 if (error)
292 return error;
293
294 error = gfs2_dir_check(&dip->i_inode, name, ip);
295 if (error)
296 return error;
297
298 return 0;
299}
300
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301/**
302 * gfs2_unlink - Unlink a file
303 * @dir: The inode of the directory containing the file to unlink
304 * @dentry: The file itself
305 *
306 * Unlink a file. Call gfs2_unlinki()
307 *
308 * Returns: errno
309 */
310
311static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
312{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400313 struct gfs2_inode *dip = GFS2_I(dir);
314 struct gfs2_sbd *sdp = GFS2_SB(dir);
315 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Russell Cattelanddee7602007-01-29 17:13:44 -0600316 struct gfs2_holder ghs[3];
317 struct gfs2_rgrpd *rgd;
318 struct gfs2_holder ri_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319 int error;
320
Russell Cattelanddee7602007-01-29 17:13:44 -0600321 error = gfs2_rindex_hold(sdp, &ri_gh);
322 if (error)
323 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000324
Russell Cattelanddee7602007-01-29 17:13:44 -0600325 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
326 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
327
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100328 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600329 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
330
331
Steven Whitehouse8497a462007-08-26 14:23:56 +0100332 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333 if (error)
Steven Whitehouse8497a462007-08-26 14:23:56 +0100334 goto out_parent;
335
336 error = gfs2_glock_nq(ghs + 1); /* child */
337 if (error)
338 goto out_child;
339
340 error = gfs2_glock_nq(ghs + 2); /* rgrp */
341 if (error)
342 goto out_rgrp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000343
344 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
345 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500346 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400348 error = gfs2_trans_begin(sdp, 2*RES_DINODE + RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349 if (error)
Roel Kluincd012072009-08-22 19:26:42 +0200350 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400352 error = gfs2_dir_del(dip, &dentry->d_name);
353 if (error)
354 goto out_end_trans;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000355
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400356 error = gfs2_change_nlink(ip, -1);
357
358out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000359 gfs2_trans_end(sdp);
Bob Peterson72dbf472008-08-12 13:39:29 -0500360out_gunlock:
Steven Whitehouse8497a462007-08-26 14:23:56 +0100361 gfs2_glock_dq(ghs + 2);
362out_rgrp:
Russell Cattelanddee7602007-01-29 17:13:44 -0600363 gfs2_holder_uninit(ghs + 2);
Steven Whitehouse8497a462007-08-26 14:23:56 +0100364 gfs2_glock_dq(ghs + 1);
365out_child:
366 gfs2_holder_uninit(ghs + 1);
367 gfs2_glock_dq(ghs);
368out_parent:
369 gfs2_holder_uninit(ghs);
Russell Cattelanddee7602007-01-29 17:13:44 -0600370 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371 return error;
372}
373
374/**
375 * gfs2_symlink - Create a symlink
376 * @dir: The directory to create the symlink in
377 * @dentry: The dentry to put the symlink in
378 * @symname: The thing which the link points to
379 *
380 * Returns: errno
381 */
382
383static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
384 const char *symname)
385{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400386 struct gfs2_inode *dip = GFS2_I(dir), *ip;
387 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000388 struct gfs2_holder ghs[2];
389 struct inode *inode;
390 struct buffer_head *dibh;
391 int size;
392 int error;
393
David Teiglandb3b94fa2006-01-16 16:50:04 +0000394 /* Must be stuffed with a null terminator for gfs2_follow_link() */
395 size = strlen(symname);
396 if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode) - 1)
397 return -ENAMETOOLONG;
398
399 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
400
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500401 inode = gfs2_createi(ghs, &dentry->d_name, S_IFLNK | S_IRWXUGO, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000402 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000403 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000404 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000405 }
406
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500407 ip = ghs[1].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000408
Steven Whitehouse5cf32522009-03-31 16:06:27 +0100409 i_size_write(inode, size);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410
411 error = gfs2_meta_inode_buffer(ip, &dibh);
412
413 if (!gfs2_assert_withdraw(sdp, !error)) {
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500414 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000415 memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname,
416 size);
417 brelse(dibh);
418 }
419
420 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000421 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000422 gfs2_inplace_release(dip);
423 gfs2_quota_unlock(dip);
424 gfs2_alloc_put(dip);
425
426 gfs2_glock_dq_uninit_m(2, ghs);
427
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428 d_instantiate(dentry, inode);
429 mark_inode_dirty(inode);
430
431 return 0;
432}
433
434/**
435 * gfs2_mkdir - Make a directory
436 * @dir: The parent directory of the new one
437 * @dentry: The dentry of the new directory
438 * @mode: The mode of the new directory
439 *
440 * Returns: errno
441 */
442
443static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode)
444{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400445 struct gfs2_inode *dip = GFS2_I(dir), *ip;
446 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447 struct gfs2_holder ghs[2];
448 struct inode *inode;
449 struct buffer_head *dibh;
450 int error;
451
David Teiglandb3b94fa2006-01-16 16:50:04 +0000452 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
453
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500454 inode = gfs2_createi(ghs, &dentry->d_name, S_IFDIR | mode, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000455 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000457 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458 }
459
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500460 ip = ghs[1].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000461
Steven Whitehouse4f561102006-11-01 14:04:17 -0500462 ip->i_inode.i_nlink = 2;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100463 i_size_write(inode, sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode));
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000464 ip->i_diskflags |= GFS2_DIF_JDATA;
Steven Whitehousead6203f2008-11-03 13:59:19 +0000465 ip->i_entries = 2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466
467 error = gfs2_meta_inode_buffer(ip, &dibh);
468
469 if (!gfs2_assert_withdraw(sdp, !error)) {
470 struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -0500471 struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000472
Steven Whitehousec7526662006-03-20 12:30:04 -0500473 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse8d123582010-09-17 12:30:23 +0100474 gfs2_qstr2dirent(&gfs2_qdot, GFS2_DIRENT_SIZE(gfs2_qdot.len), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475 dent->de_inum = di->di_num; /* already GFS2 endian */
Steven Whitehouse7ecdb702006-10-03 21:03:35 -0400476 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000477 di->di_entries = cpu_to_be32(1);
478
Steven Whitehousec7526662006-03-20 12:30:04 -0500479 dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
Steven Whitehouse8d123582010-09-17 12:30:23 +0100480 gfs2_qstr2dirent(&gfs2_qdotdot, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100482 gfs2_inum_out(dip, dent);
Steven Whitehouse7ecdb702006-10-03 21:03:35 -0400483 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500485 gfs2_dinode_out(ip, di);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486
487 brelse(dibh);
488 }
489
490 error = gfs2_change_nlink(dip, +1);
491 gfs2_assert_withdraw(sdp, !error); /* dip already pinned */
492
493 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000494 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000495 gfs2_inplace_release(dip);
496 gfs2_quota_unlock(dip);
497 gfs2_alloc_put(dip);
498
499 gfs2_glock_dq_uninit_m(2, ghs);
500
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501 d_instantiate(dentry, inode);
502 mark_inode_dirty(inode);
503
504 return 0;
505}
506
507/**
Steven Whitehouse2286dbf2009-05-22 10:45:09 +0100508 * gfs2_rmdiri - Remove a directory
509 * @dip: The parent directory of the directory to be removed
510 * @name: The name of the directory to be removed
511 * @ip: The GFS2 inode of the directory to be removed
512 *
513 * Assumes Glocks on dip and ip are held
514 *
515 * Returns: errno
516 */
517
518static int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
519 struct gfs2_inode *ip)
520{
Steven Whitehouse2286dbf2009-05-22 10:45:09 +0100521 int error;
522
523 if (ip->i_entries != 2) {
524 if (gfs2_consist_inode(ip))
525 gfs2_dinode_print(ip);
526 return -EIO;
527 }
528
529 error = gfs2_dir_del(dip, name);
530 if (error)
531 return error;
532
533 error = gfs2_change_nlink(dip, -1);
534 if (error)
535 return error;
536
Steven Whitehouse8d123582010-09-17 12:30:23 +0100537 error = gfs2_dir_del(ip, &gfs2_qdot);
Steven Whitehouse2286dbf2009-05-22 10:45:09 +0100538 if (error)
539 return error;
540
Steven Whitehouse8d123582010-09-17 12:30:23 +0100541 error = gfs2_dir_del(ip, &gfs2_qdotdot);
Steven Whitehouse2286dbf2009-05-22 10:45:09 +0100542 if (error)
543 return error;
544
545 /* It looks odd, but it really should be done twice */
546 error = gfs2_change_nlink(ip, -1);
547 if (error)
548 return error;
549
550 error = gfs2_change_nlink(ip, -1);
551 if (error)
552 return error;
553
554 return error;
555}
556
557/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000558 * gfs2_rmdir - Remove a directory
559 * @dir: The parent directory of the directory to be removed
560 * @dentry: The dentry of the directory to remove
561 *
562 * Remove a directory. Call gfs2_rmdiri()
563 *
564 * Returns: errno
565 */
566
567static int gfs2_rmdir(struct inode *dir, struct dentry *dentry)
568{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400569 struct gfs2_inode *dip = GFS2_I(dir);
570 struct gfs2_sbd *sdp = GFS2_SB(dir);
571 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Russell Cattelanddee7602007-01-29 17:13:44 -0600572 struct gfs2_holder ghs[3];
573 struct gfs2_rgrpd *rgd;
574 struct gfs2_holder ri_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000575 int error;
576
Russell Cattelanddee7602007-01-29 17:13:44 -0600577 error = gfs2_rindex_hold(sdp, &ri_gh);
578 if (error)
579 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
581 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
582
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100583 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600584 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
585
Bob Peterson72dbf472008-08-12 13:39:29 -0500586 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500588 goto out_parent;
589
590 error = gfs2_glock_nq(ghs + 1); /* child */
591 if (error)
592 goto out_child;
593
594 error = gfs2_glock_nq(ghs + 2); /* rgrp */
595 if (error)
596 goto out_rgrp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597
598 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
599 if (error)
600 goto out_gunlock;
601
Steven Whitehousead6203f2008-11-03 13:59:19 +0000602 if (ip->i_entries < 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000603 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500604 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 error = -EIO;
606 goto out_gunlock;
607 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000608 if (ip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609 error = -ENOTEMPTY;
610 goto out_gunlock;
611 }
612
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400613 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + 3 * RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000614 if (error)
615 goto out_gunlock;
616
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400617 error = gfs2_rmdiri(dip, &dentry->d_name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618
619 gfs2_trans_end(sdp);
620
Steven Whitehousea91ea692006-09-04 12:04:26 -0400621out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500622 gfs2_glock_dq(ghs + 2);
623out_rgrp:
Russell Cattelanddee7602007-01-29 17:13:44 -0600624 gfs2_holder_uninit(ghs + 2);
Bob Peterson72dbf472008-08-12 13:39:29 -0500625 gfs2_glock_dq(ghs + 1);
626out_child:
627 gfs2_holder_uninit(ghs + 1);
628 gfs2_glock_dq(ghs);
629out_parent:
630 gfs2_holder_uninit(ghs);
Russell Cattelanddee7602007-01-29 17:13:44 -0600631 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632 return error;
633}
634
635/**
636 * gfs2_mknod - Make a special file
637 * @dir: The directory in which the special file will reside
638 * @dentry: The dentry of the special file
639 * @mode: The mode of the special file
640 * @rdev: The device specification of the special file
641 *
642 */
643
644static int gfs2_mknod(struct inode *dir, struct dentry *dentry, int mode,
645 dev_t dev)
646{
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500647 struct gfs2_inode *dip = GFS2_I(dir);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400648 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000649 struct gfs2_holder ghs[2];
650 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000651
652 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
653
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500654 inode = gfs2_createi(ghs, &dentry->d_name, mode, dev);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000655 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000657 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000658 }
659
David Teiglandb3b94fa2006-01-16 16:50:04 +0000660 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000661 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 gfs2_inplace_release(dip);
663 gfs2_quota_unlock(dip);
664 gfs2_alloc_put(dip);
665
666 gfs2_glock_dq_uninit_m(2, ghs);
667
David Teiglandb3b94fa2006-01-16 16:50:04 +0000668 d_instantiate(dentry, inode);
669 mark_inode_dirty(inode);
670
671 return 0;
672}
673
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100674/*
675 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
676 * @this: move this
677 * @to: to here
678 *
679 * Follow @to back to the root and make sure we don't encounter @this
680 * Assumes we already hold the rename lock.
681 *
682 * Returns: errno
683 */
684
685static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
686{
687 struct inode *dir = &to->i_inode;
688 struct super_block *sb = dir->i_sb;
689 struct inode *tmp;
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100690 int error = 0;
691
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100692 igrab(dir);
693
694 for (;;) {
695 if (dir == &this->i_inode) {
696 error = -EINVAL;
697 break;
698 }
699 if (dir == sb->s_root->d_inode) {
700 error = 0;
701 break;
702 }
703
Steven Whitehouse8d123582010-09-17 12:30:23 +0100704 tmp = gfs2_lookupi(dir, &gfs2_qdotdot, 1);
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100705 if (IS_ERR(tmp)) {
706 error = PTR_ERR(tmp);
707 break;
708 }
709
710 iput(dir);
711 dir = tmp;
712 }
713
714 iput(dir);
715
716 return error;
717}
718
David Teiglandb3b94fa2006-01-16 16:50:04 +0000719/**
720 * gfs2_rename - Rename a file
721 * @odir: Parent directory of old file name
722 * @odentry: The old dentry of the file
723 * @ndir: Parent directory of new file name
724 * @ndentry: The new dentry of the file
725 *
726 * Returns: errno
727 */
728
729static int gfs2_rename(struct inode *odir, struct dentry *odentry,
730 struct inode *ndir, struct dentry *ndentry)
731{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400732 struct gfs2_inode *odip = GFS2_I(odir);
733 struct gfs2_inode *ndip = GFS2_I(ndir);
734 struct gfs2_inode *ip = GFS2_I(odentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000735 struct gfs2_inode *nip = NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400736 struct gfs2_sbd *sdp = GFS2_SB(odir);
Bob Peterson462903412010-09-30 10:34:00 -0400737 struct gfs2_holder ghs[5], r_gh = { .gh_gl = NULL, }, ri_gh;
Russell Cattelanddee7602007-01-29 17:13:44 -0600738 struct gfs2_rgrpd *nrgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 unsigned int num_gh;
740 int dir_rename = 0;
Steven Whitehouse24b977b2009-12-09 13:55:12 +0000741 int alloc_required = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 unsigned int x;
743 int error;
744
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745 if (ndentry->d_inode) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400746 nip = GFS2_I(ndentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000747 if (ip == nip)
748 return 0;
749 }
750
Bob Peterson462903412010-09-30 10:34:00 -0400751 error = gfs2_rindex_hold(sdp, &ri_gh);
752 if (error)
753 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000754
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100755 if (odip != ndip) {
756 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
757 0, &r_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000758 if (error)
759 goto out;
760
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100761 if (S_ISDIR(ip->i_inode.i_mode)) {
762 dir_rename = 1;
763 /* don't move a dirctory into it's subdir */
764 error = gfs2_ok_to_move(ip, ndip);
765 if (error)
766 goto out_gunlock_r;
767 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 }
769
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400770 num_gh = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000771 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400772 if (odip != ndip) {
773 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
774 num_gh++;
775 }
776 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
777 num_gh++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400779 if (nip) {
780 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
781 num_gh++;
Russell Cattelanddee7602007-01-29 17:13:44 -0600782 /* grab the resource lock for unlink flag twiddling
783 * this is the case of the target file already existing
784 * so we unlink before doing the rename
785 */
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100786 nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600787 if (nrgd)
788 gfs2_holder_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh++);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400789 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790
Bob Peterson72dbf472008-08-12 13:39:29 -0500791 for (x = 0; x < num_gh; x++) {
792 error = gfs2_glock_nq(ghs + x);
793 if (error)
794 goto out_gunlock;
795 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796
797 /* Check out the old directory */
798
799 error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
800 if (error)
801 goto out_gunlock;
802
803 /* Check out the new directory */
804
805 if (nip) {
806 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
807 if (error)
808 goto out_gunlock;
809
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500810 if (S_ISDIR(nip->i_inode.i_mode)) {
Steven Whitehousead6203f2008-11-03 13:59:19 +0000811 if (nip->i_entries < 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812 if (gfs2_consist_inode(nip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500813 gfs2_dinode_print(nip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814 error = -EIO;
815 goto out_gunlock;
816 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000817 if (nip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 error = -ENOTEMPTY;
819 goto out_gunlock;
820 }
821 }
822 } else {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100823 error = gfs2_permission(ndir, MAY_WRITE | MAY_EXEC, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 if (error)
825 goto out_gunlock;
826
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100827 error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000828 switch (error) {
829 case -ENOENT:
830 error = 0;
831 break;
832 case 0:
833 error = -EEXIST;
834 default:
835 goto out_gunlock;
836 };
837
838 if (odip != ndip) {
Steven Whitehouse4f561102006-11-01 14:04:17 -0500839 if (!ndip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840 error = -EINVAL;
841 goto out_gunlock;
842 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000843 if (ndip->i_entries == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000844 error = -EFBIG;
845 goto out_gunlock;
846 }
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500847 if (S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse4f561102006-11-01 14:04:17 -0500848 ndip->i_inode.i_nlink == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000849 error = -EMLINK;
850 goto out_gunlock;
851 }
852 }
853 }
854
855 /* Check out the dir to be renamed */
856
857 if (dir_rename) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100858 error = gfs2_permission(odentry->d_inode, MAY_WRITE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000859 if (error)
860 goto out_gunlock;
861 }
862
Steven Whitehouse24b977b2009-12-09 13:55:12 +0000863 if (nip == NULL)
864 alloc_required = gfs2_diradd_alloc_required(ndir, &ndentry->d_name);
865 error = alloc_required;
Steven Whitehousec7526662006-03-20 12:30:04 -0500866 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -0500868 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000869
870 if (alloc_required) {
871 struct gfs2_alloc *al = gfs2_alloc_get(ndip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300872 if (!al) {
873 error = -ENOMEM;
874 goto out_gunlock;
875 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000876
Steven Whitehoused82661d2008-03-10 15:34:50 +0000877 error = gfs2_quota_lock_check(ndip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000878 if (error)
879 goto out_alloc;
880
David Teiglandb3b94fa2006-01-16 16:50:04 +0000881 al->al_requested = sdp->sd_max_dirres;
882
Bob Peterson462903412010-09-30 10:34:00 -0400883 error = gfs2_inplace_reserve_ri(ndip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884 if (error)
885 goto out_gunlock_q;
886
Steven Whitehousefe1bded2006-04-18 10:09:15 -0400887 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Benjamin Marzinskibf97b672010-09-27 16:00:04 -0500888 gfs2_rg_blocks(al) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000889 4 * RES_DINODE + 4 * RES_LEAF +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500890 RES_STATFS + RES_QUOTA + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000891 if (error)
892 goto out_ipreserv;
893 } else {
894 error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500895 5 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896 if (error)
897 goto out_gunlock;
898 }
899
900 /* Remove the target file, if it exists */
901
902 if (nip) {
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500903 if (S_ISDIR(nip->i_inode.i_mode))
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400904 error = gfs2_rmdiri(ndip, &ndentry->d_name, nip);
905 else {
906 error = gfs2_dir_del(ndip, &ndentry->d_name);
907 if (error)
908 goto out_end_trans;
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500909 error = gfs2_change_nlink(nip, -1);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400910 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911 if (error)
912 goto out_end_trans;
913 }
914
915 if (dir_rename) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000916 error = gfs2_change_nlink(ndip, +1);
917 if (error)
918 goto out_end_trans;
919 error = gfs2_change_nlink(odip, -1);
920 if (error)
921 goto out_end_trans;
922
Steven Whitehouse8d123582010-09-17 12:30:23 +0100923 error = gfs2_dir_mvino(ip, &gfs2_qdotdot, ndip, DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924 if (error)
925 goto out_end_trans;
926 } else {
927 struct buffer_head *dibh;
928 error = gfs2_meta_inode_buffer(ip, &dibh);
929 if (error)
930 goto out_end_trans;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100931 ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000932 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500933 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000934 brelse(dibh);
935 }
936
937 error = gfs2_dir_del(odip, &odentry->d_name);
938 if (error)
939 goto out_end_trans;
940
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100941 error = gfs2_dir_add(ndir, &ndentry->d_name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 if (error)
943 goto out_end_trans;
944
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400945out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400947out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000948 if (alloc_required)
949 gfs2_inplace_release(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400950out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951 if (alloc_required)
952 gfs2_quota_unlock(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400953out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000954 if (alloc_required)
955 gfs2_alloc_put(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400956out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500957 while (x--) {
958 gfs2_glock_dq(ghs + x);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959 gfs2_holder_uninit(ghs + x);
Bob Peterson72dbf472008-08-12 13:39:29 -0500960 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400961out_gunlock_r:
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100962 if (r_gh.gh_gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000963 gfs2_glock_dq_uninit(&r_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400964out:
Bob Peterson462903412010-09-30 10:34:00 -0400965 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000966 return error;
967}
968
969/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970 * gfs2_follow_link - Follow a symbolic link
971 * @dentry: The dentry of the link
972 * @nd: Data that we pass to vfs_follow_link()
973 *
Al Viroc177c2a2010-01-14 00:59:16 -0500974 * This can handle symlinks of any size.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000975 *
976 * Returns: 0 on success or error code
977 */
978
979static void *gfs2_follow_link(struct dentry *dentry, struct nameidata *nd)
980{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400981 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Al Viroc177c2a2010-01-14 00:59:16 -0500982 struct gfs2_holder i_gh;
983 struct buffer_head *dibh;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100984 unsigned int x, size;
Al Viroc177c2a2010-01-14 00:59:16 -0500985 char *buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986 int error;
987
Al Viroc177c2a2010-01-14 00:59:16 -0500988 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
989 error = gfs2_glock_nq(&i_gh);
990 if (error) {
991 gfs2_holder_uninit(&i_gh);
992 nd_set_link(nd, ERR_PTR(error));
993 return NULL;
994 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100996 size = (unsigned int)i_size_read(&ip->i_inode);
997 if (size == 0) {
Al Viroc177c2a2010-01-14 00:59:16 -0500998 gfs2_consist_inode(ip);
999 buf = ERR_PTR(-EIO);
1000 goto out;
1001 }
1002
1003 error = gfs2_meta_inode_buffer(ip, &dibh);
1004 if (error) {
1005 buf = ERR_PTR(error);
1006 goto out;
1007 }
1008
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001009 x = size + 1;
Al Viroc177c2a2010-01-14 00:59:16 -05001010 buf = kmalloc(x, GFP_NOFS);
1011 if (!buf)
1012 buf = ERR_PTR(-ENOMEM);
1013 else
1014 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1015 brelse(dibh);
1016out:
1017 gfs2_glock_dq_uninit(&i_gh);
1018 nd_set_link(nd, buf);
1019 return NULL;
1020}
1021
1022static void gfs2_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
1023{
1024 char *s = nd_get_link(nd);
1025 if (!IS_ERR(s))
1026 kfree(s);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027}
1028
1029/**
1030 * gfs2_permission -
1031 * @inode:
1032 * @mask:
1033 * @nd: passed from Linux VFS, ignored by us
1034 *
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001035 * This may be called from the VFS directly, or from within GFS2 with the
1036 * inode locked, so we look to see if the glock is already locked and only
1037 * lock the glock if its not already been done.
1038 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039 * Returns: errno
1040 */
1041
Nick Pigginb74c79e2011-01-07 17:49:58 +11001042int gfs2_permission(struct inode *inode, int mask, unsigned int flags)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001043{
Nick Pigginb74c79e2011-01-07 17:49:58 +11001044 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045 struct gfs2_holder i_gh;
1046 int error;
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001047 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048
Nick Pigginb74c79e2011-01-07 17:49:58 +11001049 if (flags & IPERM_FLAG_RCU)
1050 return -ECHILD;
1051
1052 ip = GFS2_I(inode);
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001053 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001054 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
1055 if (error)
1056 return error;
1057 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 }
1059
Miklos Szeredif58ba882008-07-02 21:12:01 +02001060 if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
1061 error = -EACCES;
1062 else
Nick Pigginb74c79e2011-01-07 17:49:58 +11001063 error = generic_permission(inode, mask, flags, gfs2_check_acl);
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001064 if (unlock)
1065 gfs2_glock_dq_uninit(&i_gh);
1066
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067 return error;
1068}
1069
David Teiglandb3b94fa2006-01-16 16:50:04 +00001070static int setattr_chown(struct inode *inode, struct iattr *attr)
1071{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001072 struct gfs2_inode *ip = GFS2_I(inode);
1073 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001074 u32 ouid, ogid, nuid, ngid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001075 int error;
1076
Steven Whitehouse2933f922006-11-01 13:23:29 -05001077 ouid = inode->i_uid;
1078 ogid = inode->i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001079 nuid = attr->ia_uid;
1080 ngid = attr->ia_gid;
1081
1082 if (!(attr->ia_valid & ATTR_UID) || ouid == nuid)
1083 ouid = nuid = NO_QUOTA_CHANGE;
1084 if (!(attr->ia_valid & ATTR_GID) || ogid == ngid)
1085 ogid = ngid = NO_QUOTA_CHANGE;
1086
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001087 if (!gfs2_alloc_get(ip))
1088 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001089
1090 error = gfs2_quota_lock(ip, nuid, ngid);
1091 if (error)
1092 goto out_alloc;
1093
1094 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
1095 error = gfs2_quota_check(ip, nuid, ngid);
1096 if (error)
1097 goto out_gunlock_q;
1098 }
1099
1100 error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
1101 if (error)
1102 goto out_gunlock_q;
1103
Steven Whitehouse2ae51ed2010-11-10 15:14:57 +00001104 error = gfs2_setattr_simple(ip, attr);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001105 if (error)
1106 goto out_end_trans;
1107
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001109 u64 blocks = gfs2_get_inode_blocks(&ip->i_inode);
1110 gfs2_quota_change(ip, -blocks, ouid, ogid);
1111 gfs2_quota_change(ip, blocks, nuid, ngid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112 }
1113
Steven Whitehousea91ea692006-09-04 12:04:26 -04001114out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001116out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001117 gfs2_quota_unlock(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001118out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001120 return error;
1121}
1122
1123/**
1124 * gfs2_setattr - Change attributes on an inode
1125 * @dentry: The dentry which is changing
1126 * @attr: The structure describing the change
1127 *
1128 * The VFS layer wants to change one or more of an inodes attributes. Write
1129 * that change out to disk.
1130 *
1131 * Returns: errno
1132 */
1133
1134static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
1135{
1136 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001137 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001138 struct gfs2_holder i_gh;
1139 int error;
1140
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1142 if (error)
1143 return error;
1144
1145 error = -EPERM;
1146 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1147 goto out;
1148
1149 error = inode_change_ok(inode, attr);
1150 if (error)
1151 goto out;
1152
1153 if (attr->ia_valid & ATTR_SIZE)
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001154 error = gfs2_setattr_size(inode, attr->ia_size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155 else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
1156 error = setattr_chown(inode, attr);
1157 else if ((attr->ia_valid & ATTR_MODE) && IS_POSIXACL(inode))
1158 error = gfs2_acl_chmod(ip, attr);
1159 else
1160 error = gfs2_setattr_simple(ip, attr);
1161
Steven Whitehousea91ea692006-09-04 12:04:26 -04001162out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001164 if (!error)
1165 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166 return error;
1167}
1168
1169/**
1170 * gfs2_getattr - Read out an inode's attributes
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001171 * @mnt: The vfsmount the inode is being accessed from
David Teiglandb3b94fa2006-01-16 16:50:04 +00001172 * @dentry: The dentry to stat
1173 * @stat: The inode's stats
1174 *
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001175 * This may be called from the VFS directly, or from within GFS2 with the
1176 * inode locked, so we look to see if the glock is already locked and only
1177 * lock the glock if its not already been done. Note that its the NFS
1178 * readdirplus operation which causes this to be called (from filldir)
1179 * with the glock already held.
1180 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001181 * Returns: errno
1182 */
1183
1184static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry,
1185 struct kstat *stat)
1186{
1187 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001188 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001189 struct gfs2_holder gh;
1190 int error;
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001191 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001192
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001193 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001194 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1195 if (error)
1196 return error;
1197 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001198 }
1199
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001200 generic_fillattr(inode, stat);
Steven Whitehoused7c103d2007-01-25 17:14:59 +00001201 if (unlock)
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001202 gfs2_glock_dq_uninit(&gh);
1203
1204 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001205}
1206
1207static int gfs2_setxattr(struct dentry *dentry, const char *name,
1208 const void *data, size_t size, int flags)
1209{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001210 struct inode *inode = dentry->d_inode;
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001211 struct gfs2_inode *ip = GFS2_I(inode);
1212 struct gfs2_holder gh;
1213 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001214
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001215 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1216 ret = gfs2_glock_nq(&gh);
1217 if (ret == 0) {
1218 ret = generic_setxattr(dentry, name, data, size, flags);
1219 gfs2_glock_dq(&gh);
1220 }
1221 gfs2_holder_uninit(&gh);
1222 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001223}
1224
1225static ssize_t gfs2_getxattr(struct dentry *dentry, const char *name,
1226 void *data, size_t size)
1227{
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001228 struct inode *inode = dentry->d_inode;
1229 struct gfs2_inode *ip = GFS2_I(inode);
1230 struct gfs2_holder gh;
1231 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001232
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001233 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1234 ret = gfs2_glock_nq(&gh);
1235 if (ret == 0) {
1236 ret = generic_getxattr(dentry, name, data, size);
1237 gfs2_glock_dq(&gh);
1238 }
1239 gfs2_holder_uninit(&gh);
1240 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001241}
1242
1243static int gfs2_removexattr(struct dentry *dentry, const char *name)
1244{
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001245 struct inode *inode = dentry->d_inode;
1246 struct gfs2_inode *ip = GFS2_I(inode);
1247 struct gfs2_holder gh;
1248 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001250 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1251 ret = gfs2_glock_nq(&gh);
1252 if (ret == 0) {
1253 ret = generic_removexattr(dentry, name);
1254 gfs2_glock_dq(&gh);
1255 }
1256 gfs2_holder_uninit(&gh);
1257 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001258}
1259
Benjamin Marzinski39211202010-08-20 00:21:02 -05001260static void empty_write_end(struct page *page, unsigned from,
1261 unsigned to)
1262{
1263 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
1264
1265 page_zero_new_buffers(page, from, to);
1266 flush_dcache_page(page);
1267 mark_page_accessed(page);
1268
1269 if (!gfs2_is_writeback(ip))
1270 gfs2_page_add_databufs(ip, page, from, to);
1271
1272 block_commit_write(page, from, to);
1273}
1274
1275
1276static int write_empty_blocks(struct page *page, unsigned from, unsigned to)
1277{
1278 unsigned start, end, next;
1279 struct buffer_head *bh, *head;
1280 int error;
1281
1282 if (!page_has_buffers(page)) {
Christoph Hellwigebdec242010-10-06 10:47:23 +02001283 error = __block_write_begin(page, from, to - from, gfs2_block_map);
Benjamin Marzinski39211202010-08-20 00:21:02 -05001284 if (unlikely(error))
1285 return error;
1286
1287 empty_write_end(page, from, to);
1288 return 0;
1289 }
1290
1291 bh = head = page_buffers(page);
1292 next = end = 0;
1293 while (next < from) {
1294 next += bh->b_size;
1295 bh = bh->b_this_page;
1296 }
1297 start = next;
1298 do {
1299 next += bh->b_size;
1300 if (buffer_mapped(bh)) {
1301 if (end) {
Christoph Hellwigebdec242010-10-06 10:47:23 +02001302 error = __block_write_begin(page, start, end - start,
Benjamin Marzinski39211202010-08-20 00:21:02 -05001303 gfs2_block_map);
1304 if (unlikely(error))
1305 return error;
1306 empty_write_end(page, start, end);
1307 end = 0;
1308 }
1309 start = next;
1310 }
1311 else
1312 end = next;
1313 bh = bh->b_this_page;
1314 } while (next < to);
1315
1316 if (end) {
Christoph Hellwigebdec242010-10-06 10:47:23 +02001317 error = __block_write_begin(page, start, end - start, gfs2_block_map);
Benjamin Marzinski39211202010-08-20 00:21:02 -05001318 if (unlikely(error))
1319 return error;
1320 empty_write_end(page, start, end);
1321 }
1322
1323 return 0;
1324}
1325
1326static int fallocate_chunk(struct inode *inode, loff_t offset, loff_t len,
1327 int mode)
1328{
1329 struct gfs2_inode *ip = GFS2_I(inode);
1330 struct buffer_head *dibh;
1331 int error;
1332 u64 start = offset >> PAGE_CACHE_SHIFT;
1333 unsigned int start_offset = offset & ~PAGE_CACHE_MASK;
1334 u64 end = (offset + len - 1) >> PAGE_CACHE_SHIFT;
1335 pgoff_t curr;
1336 struct page *page;
1337 unsigned int end_offset = (offset + len) & ~PAGE_CACHE_MASK;
1338 unsigned int from, to;
1339
1340 if (!end_offset)
1341 end_offset = PAGE_CACHE_SIZE;
1342
1343 error = gfs2_meta_inode_buffer(ip, &dibh);
1344 if (unlikely(error))
1345 goto out;
1346
1347 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
1348
1349 if (gfs2_is_stuffed(ip)) {
1350 error = gfs2_unstuff_dinode(ip, NULL);
1351 if (unlikely(error))
1352 goto out;
1353 }
1354
1355 curr = start;
1356 offset = start << PAGE_CACHE_SHIFT;
1357 from = start_offset;
1358 to = PAGE_CACHE_SIZE;
1359 while (curr <= end) {
1360 page = grab_cache_page_write_begin(inode->i_mapping, curr,
1361 AOP_FLAG_NOFS);
1362 if (unlikely(!page)) {
1363 error = -ENOMEM;
1364 goto out;
1365 }
1366
1367 if (curr == end)
1368 to = end_offset;
1369 error = write_empty_blocks(page, from, to);
1370 if (!error && offset + to > inode->i_size &&
1371 !(mode & FALLOC_FL_KEEP_SIZE)) {
1372 i_size_write(inode, offset + to);
1373 }
1374 unlock_page(page);
1375 page_cache_release(page);
1376 if (error)
1377 goto out;
1378 curr++;
1379 offset += PAGE_CACHE_SIZE;
1380 from = 0;
1381 }
1382
1383 gfs2_dinode_out(ip, dibh->b_data);
1384 mark_inode_dirty(inode);
1385
1386 brelse(dibh);
1387
1388out:
1389 return error;
1390}
1391
1392static void calc_max_reserv(struct gfs2_inode *ip, loff_t max, loff_t *len,
1393 unsigned int *data_blocks, unsigned int *ind_blocks)
1394{
1395 const struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
1396 unsigned int max_blocks = ip->i_alloc->al_rgd->rd_free_clone;
1397 unsigned int tmp, max_data = max_blocks - 3 * (sdp->sd_max_height - 1);
1398
1399 for (tmp = max_data; tmp > sdp->sd_diptrs;) {
1400 tmp = DIV_ROUND_UP(tmp, sdp->sd_inptrs);
1401 max_data -= tmp;
1402 }
1403 /* This calculation isn't the exact reverse of gfs2_write_calc_reserve,
Steven Whitehousefe08d5a2010-08-23 11:54:45 +01001404 so it might end up with fewer data blocks */
Benjamin Marzinski39211202010-08-20 00:21:02 -05001405 if (max_data <= *data_blocks)
1406 return;
1407 *data_blocks = max_data;
1408 *ind_blocks = max_blocks - max_data;
1409 *len = ((loff_t)max_data - 3) << sdp->sd_sb.sb_bsize_shift;
1410 if (*len > max) {
1411 *len = max;
1412 gfs2_write_calc_reserv(ip, max, data_blocks, ind_blocks);
1413 }
1414}
1415
1416static long gfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1417 loff_t len)
1418{
1419 struct gfs2_sbd *sdp = GFS2_SB(inode);
1420 struct gfs2_inode *ip = GFS2_I(inode);
1421 unsigned int data_blocks = 0, ind_blocks = 0, rblocks;
1422 loff_t bytes, max_bytes;
1423 struct gfs2_alloc *al;
1424 int error;
1425 loff_t next = (offset + len - 1) >> sdp->sd_sb.sb_bsize_shift;
1426 next = (next + 1) << sdp->sd_sb.sb_bsize_shift;
1427
Josef Bacik9ecf6392010-11-17 20:46:20 -05001428 /* We only support the FALLOC_FL_KEEP_SIZE mode */
1429 if (mode && (mode != FALLOC_FL_KEEP_SIZE))
1430 return -EOPNOTSUPP;
1431
Benjamin Marzinski39211202010-08-20 00:21:02 -05001432 offset = (offset >> sdp->sd_sb.sb_bsize_shift) <<
1433 sdp->sd_sb.sb_bsize_shift;
1434
1435 len = next - offset;
1436 bytes = sdp->sd_max_rg_data * sdp->sd_sb.sb_bsize / 2;
1437 if (!bytes)
1438 bytes = UINT_MAX;
1439
1440 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &ip->i_gh);
1441 error = gfs2_glock_nq(&ip->i_gh);
1442 if (unlikely(error))
1443 goto out_uninit;
1444
1445 if (!gfs2_write_alloc_required(ip, offset, len))
1446 goto out_unlock;
1447
1448 while (len > 0) {
1449 if (len < bytes)
1450 bytes = len;
1451 al = gfs2_alloc_get(ip);
1452 if (!al) {
1453 error = -ENOMEM;
1454 goto out_unlock;
1455 }
1456
1457 error = gfs2_quota_lock_check(ip);
1458 if (error)
1459 goto out_alloc_put;
1460
1461retry:
1462 gfs2_write_calc_reserv(ip, bytes, &data_blocks, &ind_blocks);
1463
1464 al->al_requested = data_blocks + ind_blocks;
1465 error = gfs2_inplace_reserve(ip);
1466 if (error) {
1467 if (error == -ENOSPC && bytes > sdp->sd_sb.sb_bsize) {
1468 bytes >>= 1;
1469 goto retry;
1470 }
1471 goto out_qunlock;
1472 }
1473 max_bytes = bytes;
1474 calc_max_reserv(ip, len, &max_bytes, &data_blocks, &ind_blocks);
1475 al->al_requested = data_blocks + ind_blocks;
1476
1477 rblocks = RES_DINODE + ind_blocks + RES_STATFS + RES_QUOTA +
Benjamin Marzinskibf97b672010-09-27 16:00:04 -05001478 RES_RG_HDR + gfs2_rg_blocks(al);
Benjamin Marzinski39211202010-08-20 00:21:02 -05001479 if (gfs2_is_jdata(ip))
1480 rblocks += data_blocks ? data_blocks : 1;
1481
1482 error = gfs2_trans_begin(sdp, rblocks,
1483 PAGE_CACHE_SIZE/sdp->sd_sb.sb_bsize);
1484 if (error)
1485 goto out_trans_fail;
1486
1487 error = fallocate_chunk(inode, offset, max_bytes, mode);
1488 gfs2_trans_end(sdp);
1489
1490 if (error)
1491 goto out_trans_fail;
1492
1493 len -= max_bytes;
1494 offset += max_bytes;
1495 gfs2_inplace_release(ip);
1496 gfs2_quota_unlock(ip);
1497 gfs2_alloc_put(ip);
1498 }
1499 goto out_unlock;
1500
1501out_trans_fail:
1502 gfs2_inplace_release(ip);
1503out_qunlock:
1504 gfs2_quota_unlock(ip);
1505out_alloc_put:
1506 gfs2_alloc_put(ip);
1507out_unlock:
1508 gfs2_glock_dq(&ip->i_gh);
1509out_uninit:
1510 gfs2_holder_uninit(&ip->i_gh);
1511 return error;
1512}
1513
1514
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001515static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1516 u64 start, u64 len)
1517{
1518 struct gfs2_inode *ip = GFS2_I(inode);
1519 struct gfs2_holder gh;
1520 int ret;
1521
1522 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
1523 if (ret)
1524 return ret;
1525
1526 mutex_lock(&inode->i_mutex);
1527
1528 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
1529 if (ret)
1530 goto out;
1531
1532 if (gfs2_is_stuffed(ip)) {
1533 u64 phys = ip->i_no_addr << inode->i_blkbits;
1534 u64 size = i_size_read(inode);
1535 u32 flags = FIEMAP_EXTENT_LAST|FIEMAP_EXTENT_NOT_ALIGNED|
1536 FIEMAP_EXTENT_DATA_INLINE;
1537 phys += sizeof(struct gfs2_dinode);
1538 phys += start;
1539 if (start + len > size)
1540 len = size - start;
1541 if (start < size)
1542 ret = fiemap_fill_next_extent(fieinfo, start, phys,
1543 len, flags);
1544 if (ret == 1)
1545 ret = 0;
1546 } else {
1547 ret = __generic_block_fiemap(inode, fieinfo, start, len,
1548 gfs2_block_map);
1549 }
1550
1551 gfs2_glock_dq_uninit(&gh);
1552out:
1553 mutex_unlock(&inode->i_mutex);
1554 return ret;
1555}
1556
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001557const struct inode_operations gfs2_file_iops = {
Al Viroe6305c42008-07-15 21:03:57 -04001558 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001559 .setattr = gfs2_setattr,
1560 .getattr = gfs2_getattr,
1561 .setxattr = gfs2_setxattr,
1562 .getxattr = gfs2_getxattr,
1563 .listxattr = gfs2_listxattr,
1564 .removexattr = gfs2_removexattr,
Benjamin Marzinski39211202010-08-20 00:21:02 -05001565 .fallocate = gfs2_fallocate,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001566 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001567};
1568
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001569const struct inode_operations gfs2_dir_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001570 .create = gfs2_create,
1571 .lookup = gfs2_lookup,
1572 .link = gfs2_link,
1573 .unlink = gfs2_unlink,
1574 .symlink = gfs2_symlink,
1575 .mkdir = gfs2_mkdir,
1576 .rmdir = gfs2_rmdir,
1577 .mknod = gfs2_mknod,
1578 .rename = gfs2_rename,
Al Viroe6305c42008-07-15 21:03:57 -04001579 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001580 .setattr = gfs2_setattr,
1581 .getattr = gfs2_getattr,
1582 .setxattr = gfs2_setxattr,
1583 .getxattr = gfs2_getxattr,
1584 .listxattr = gfs2_listxattr,
1585 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001586 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001587};
1588
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001589const struct inode_operations gfs2_symlink_iops = {
Al Viroc177c2a2010-01-14 00:59:16 -05001590 .readlink = generic_readlink,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001591 .follow_link = gfs2_follow_link,
Al Viroc177c2a2010-01-14 00:59:16 -05001592 .put_link = gfs2_put_link,
Al Viroe6305c42008-07-15 21:03:57 -04001593 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001594 .setattr = gfs2_setattr,
1595 .getattr = gfs2_getattr,
1596 .setxattr = gfs2_setxattr,
1597 .getxattr = gfs2_getxattr,
1598 .listxattr = gfs2_listxattr,
1599 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001600 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001601};
1602