blob: f6da0d7676e2d946d0c4d80a6f5c21556b93bdc3 [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
Steven Whitehousec7526662006-03-20 12:30:04 -0500109 dentry->d_op = &gfs2_dops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110
Al Viroa569c712008-07-23 14:42:05 -0400111 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
Steven Whitehousec7526662006-03-20 12:30:04 -0500112 if (inode && IS_ERR(inode))
David Howellse231c2e2008-02-07 00:15:26 -0800113 return ERR_CAST(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114
Steven Whitehouse9656b2c2008-01-08 08:14:30 +0000115 if (inode) {
116 struct gfs2_glock *gl = GFS2_I(inode)->i_gl;
117 struct gfs2_holder gh;
118 int error;
119 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
120 if (error) {
121 iput(inode);
122 return ERR_PTR(error);
123 }
124 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125 return d_splice_alias(inode, dentry);
Steven Whitehouse9656b2c2008-01-08 08:14:30 +0000126 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127 d_add(dentry, inode);
128
129 return NULL;
130}
131
132/**
133 * gfs2_link - Link to a file
134 * @old_dentry: The inode to link
135 * @dir: Add link to this directory
136 * @dentry: The name of the link
137 *
138 * Link the inode in "old_dentry" into the directory "dir" with the
139 * name in "dentry".
140 *
141 * Returns: errno
142 */
143
144static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
145 struct dentry *dentry)
146{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400147 struct gfs2_inode *dip = GFS2_I(dir);
148 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149 struct inode *inode = old_dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400150 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000151 struct gfs2_holder ghs[2];
152 int alloc_required;
153 int error;
154
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500155 if (S_ISDIR(inode->i_mode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000156 return -EPERM;
157
158 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
159 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
160
Bob Peterson72dbf472008-08-12 13:39:29 -0500161 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500163 goto out_parent;
164
165 error = gfs2_glock_nq(ghs + 1); /* child */
166 if (error)
167 goto out_child;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000168
Miklos Szeredif58ba882008-07-02 21:12:01 +0200169 error = gfs2_permission(dir, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000170 if (error)
171 goto out_gunlock;
172
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100173 error = gfs2_dir_check(dir, &dentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000174 switch (error) {
175 case -ENOENT:
176 break;
177 case 0:
178 error = -EEXIST;
179 default:
180 goto out_gunlock;
181 }
182
183 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500184 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185 goto out_gunlock;
186 error = -EFBIG;
Steven Whitehousead6203f2008-11-03 13:59:19 +0000187 if (dip->i_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000188 goto out_gunlock;
189 error = -EPERM;
190 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
191 goto out_gunlock;
192 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500193 if (!ip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000194 goto out_gunlock;
195 error = -EMLINK;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500196 if (ip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197 goto out_gunlock;
198
Steven Whitehousec7526662006-03-20 12:30:04 -0500199 alloc_required = error = gfs2_diradd_alloc_required(dir, &dentry->d_name);
200 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -0500202 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000203
204 if (alloc_required) {
205 struct gfs2_alloc *al = gfs2_alloc_get(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300206 if (!al) {
207 error = -ENOMEM;
208 goto out_gunlock;
209 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000210
Steven Whitehoused82661d2008-03-10 15:34:50 +0000211 error = gfs2_quota_lock_check(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000212 if (error)
213 goto out_alloc;
214
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 al->al_requested = sdp->sd_max_dirres;
216
217 error = gfs2_inplace_reserve(dip);
218 if (error)
219 goto out_gunlock_q;
220
Steven Whitehouse1b502592006-05-18 14:10:52 -0400221 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100222 al->al_rgd->rd_length +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000223 2 * RES_DINODE + RES_STATFS +
224 RES_QUOTA, 0);
225 if (error)
226 goto out_ipres;
227 } else {
228 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
229 if (error)
230 goto out_ipres;
231 }
232
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100233 error = gfs2_dir_add(dir, &dentry->d_name, ip, IF2DT(inode->i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000234 if (error)
235 goto out_end_trans;
236
237 error = gfs2_change_nlink(ip, +1);
238
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400239out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400241out_ipres:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000242 if (alloc_required)
243 gfs2_inplace_release(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400244out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245 if (alloc_required)
246 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400247out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248 if (alloc_required)
249 gfs2_alloc_put(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400250out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500251 gfs2_glock_dq(ghs + 1);
252out_child:
253 gfs2_glock_dq(ghs);
254out_parent:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255 gfs2_holder_uninit(ghs);
256 gfs2_holder_uninit(ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000257 if (!error) {
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400258 atomic_inc(&inode->i_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000259 d_instantiate(dentry, inode);
260 mark_inode_dirty(inode);
261 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262 return error;
263}
264
Steven Whitehouse87ec2172009-05-22 10:54:50 +0100265/*
266 * gfs2_unlink_ok - check to see that a inode is still in a directory
267 * @dip: the directory
268 * @name: the name of the file
269 * @ip: the inode
270 *
271 * Assumes that the lock on (at least) @dip is held.
272 *
273 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
274 */
275
276static int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
277 const struct gfs2_inode *ip)
278{
279 int error;
280
281 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
282 return -EPERM;
283
284 if ((dip->i_inode.i_mode & S_ISVTX) &&
285 dip->i_inode.i_uid != current_fsuid() &&
286 ip->i_inode.i_uid != current_fsuid() && !capable(CAP_FOWNER))
287 return -EPERM;
288
289 if (IS_APPEND(&dip->i_inode))
290 return -EPERM;
291
292 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
293 if (error)
294 return error;
295
296 error = gfs2_dir_check(&dip->i_inode, name, ip);
297 if (error)
298 return error;
299
300 return 0;
301}
302
David Teiglandb3b94fa2006-01-16 16:50:04 +0000303/**
304 * gfs2_unlink - Unlink a file
305 * @dir: The inode of the directory containing the file to unlink
306 * @dentry: The file itself
307 *
308 * Unlink a file. Call gfs2_unlinki()
309 *
310 * Returns: errno
311 */
312
313static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
314{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400315 struct gfs2_inode *dip = GFS2_I(dir);
316 struct gfs2_sbd *sdp = GFS2_SB(dir);
317 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Russell Cattelanddee7602007-01-29 17:13:44 -0600318 struct gfs2_holder ghs[3];
319 struct gfs2_rgrpd *rgd;
320 struct gfs2_holder ri_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000321 int error;
322
Russell Cattelanddee7602007-01-29 17:13:44 -0600323 error = gfs2_rindex_hold(sdp, &ri_gh);
324 if (error)
325 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000326
Russell Cattelanddee7602007-01-29 17:13:44 -0600327 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
328 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
329
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100330 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600331 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
332
333
Steven Whitehouse8497a462007-08-26 14:23:56 +0100334 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000335 if (error)
Steven Whitehouse8497a462007-08-26 14:23:56 +0100336 goto out_parent;
337
338 error = gfs2_glock_nq(ghs + 1); /* child */
339 if (error)
340 goto out_child;
341
342 error = gfs2_glock_nq(ghs + 2); /* rgrp */
343 if (error)
344 goto out_rgrp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000345
346 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
347 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500348 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400350 error = gfs2_trans_begin(sdp, 2*RES_DINODE + RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351 if (error)
Roel Kluincd012072009-08-22 19:26:42 +0200352 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000353
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400354 error = gfs2_dir_del(dip, &dentry->d_name);
355 if (error)
356 goto out_end_trans;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400358 error = gfs2_change_nlink(ip, -1);
359
360out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000361 gfs2_trans_end(sdp);
Bob Peterson72dbf472008-08-12 13:39:29 -0500362out_gunlock:
Steven Whitehouse8497a462007-08-26 14:23:56 +0100363 gfs2_glock_dq(ghs + 2);
364out_rgrp:
Russell Cattelanddee7602007-01-29 17:13:44 -0600365 gfs2_holder_uninit(ghs + 2);
Steven Whitehouse8497a462007-08-26 14:23:56 +0100366 gfs2_glock_dq(ghs + 1);
367out_child:
368 gfs2_holder_uninit(ghs + 1);
369 gfs2_glock_dq(ghs);
370out_parent:
371 gfs2_holder_uninit(ghs);
Russell Cattelanddee7602007-01-29 17:13:44 -0600372 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373 return error;
374}
375
376/**
377 * gfs2_symlink - Create a symlink
378 * @dir: The directory to create the symlink in
379 * @dentry: The dentry to put the symlink in
380 * @symname: The thing which the link points to
381 *
382 * Returns: errno
383 */
384
385static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
386 const char *symname)
387{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400388 struct gfs2_inode *dip = GFS2_I(dir), *ip;
389 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000390 struct gfs2_holder ghs[2];
391 struct inode *inode;
392 struct buffer_head *dibh;
393 int size;
394 int error;
395
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396 /* Must be stuffed with a null terminator for gfs2_follow_link() */
397 size = strlen(symname);
398 if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode) - 1)
399 return -ENAMETOOLONG;
400
401 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
402
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500403 inode = gfs2_createi(ghs, &dentry->d_name, S_IFLNK | S_IRWXUGO, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000404 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000405 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000406 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000407 }
408
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500409 ip = ghs[1].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410
Steven Whitehouse5cf32522009-03-31 16:06:27 +0100411 i_size_write(inode, size);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000412
413 error = gfs2_meta_inode_buffer(ip, &dibh);
414
415 if (!gfs2_assert_withdraw(sdp, !error)) {
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500416 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417 memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname,
418 size);
419 brelse(dibh);
420 }
421
422 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000423 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424 gfs2_inplace_release(dip);
425 gfs2_quota_unlock(dip);
426 gfs2_alloc_put(dip);
427
428 gfs2_glock_dq_uninit_m(2, ghs);
429
David Teiglandb3b94fa2006-01-16 16:50:04 +0000430 d_instantiate(dentry, inode);
431 mark_inode_dirty(inode);
432
433 return 0;
434}
435
436/**
437 * gfs2_mkdir - Make a directory
438 * @dir: The parent directory of the new one
439 * @dentry: The dentry of the new directory
440 * @mode: The mode of the new directory
441 *
442 * Returns: errno
443 */
444
445static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode)
446{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400447 struct gfs2_inode *dip = GFS2_I(dir), *ip;
448 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000449 struct gfs2_holder ghs[2];
450 struct inode *inode;
451 struct buffer_head *dibh;
452 int error;
453
David Teiglandb3b94fa2006-01-16 16:50:04 +0000454 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
455
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500456 inode = gfs2_createi(ghs, &dentry->d_name, S_IFDIR | mode, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000457 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000459 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000460 }
461
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500462 ip = ghs[1].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000463
Steven Whitehouse4f561102006-11-01 14:04:17 -0500464 ip->i_inode.i_nlink = 2;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100465 i_size_write(inode, sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode));
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000466 ip->i_diskflags |= GFS2_DIF_JDATA;
Steven Whitehousead6203f2008-11-03 13:59:19 +0000467 ip->i_entries = 2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468
469 error = gfs2_meta_inode_buffer(ip, &dibh);
470
471 if (!gfs2_assert_withdraw(sdp, !error)) {
472 struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -0500473 struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500474 struct qstr str;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500476 gfs2_str2qstr(&str, ".");
Steven Whitehousec7526662006-03-20 12:30:04 -0500477 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
478 gfs2_qstr2dirent(&str, GFS2_DIRENT_SIZE(str.len), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000479 dent->de_inum = di->di_num; /* already GFS2 endian */
Steven Whitehouse7ecdb702006-10-03 21:03:35 -0400480 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481 di->di_entries = cpu_to_be32(1);
482
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500483 gfs2_str2qstr(&str, "..");
Steven Whitehousec7526662006-03-20 12:30:04 -0500484 dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
485 gfs2_qstr2dirent(&str, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100487 gfs2_inum_out(dip, dent);
Steven Whitehouse7ecdb702006-10-03 21:03:35 -0400488 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500490 gfs2_dinode_out(ip, di);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000491
492 brelse(dibh);
493 }
494
495 error = gfs2_change_nlink(dip, +1);
496 gfs2_assert_withdraw(sdp, !error); /* dip already pinned */
497
498 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000499 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000500 gfs2_inplace_release(dip);
501 gfs2_quota_unlock(dip);
502 gfs2_alloc_put(dip);
503
504 gfs2_glock_dq_uninit_m(2, ghs);
505
David Teiglandb3b94fa2006-01-16 16:50:04 +0000506 d_instantiate(dentry, inode);
507 mark_inode_dirty(inode);
508
509 return 0;
510}
511
512/**
Steven Whitehouse2286dbf2009-05-22 10:45:09 +0100513 * gfs2_rmdiri - Remove a directory
514 * @dip: The parent directory of the directory to be removed
515 * @name: The name of the directory to be removed
516 * @ip: The GFS2 inode of the directory to be removed
517 *
518 * Assumes Glocks on dip and ip are held
519 *
520 * Returns: errno
521 */
522
523static int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
524 struct gfs2_inode *ip)
525{
526 struct qstr dotname;
527 int error;
528
529 if (ip->i_entries != 2) {
530 if (gfs2_consist_inode(ip))
531 gfs2_dinode_print(ip);
532 return -EIO;
533 }
534
535 error = gfs2_dir_del(dip, name);
536 if (error)
537 return error;
538
539 error = gfs2_change_nlink(dip, -1);
540 if (error)
541 return error;
542
543 gfs2_str2qstr(&dotname, ".");
544 error = gfs2_dir_del(ip, &dotname);
545 if (error)
546 return error;
547
548 gfs2_str2qstr(&dotname, "..");
549 error = gfs2_dir_del(ip, &dotname);
550 if (error)
551 return error;
552
553 /* It looks odd, but it really should be done twice */
554 error = gfs2_change_nlink(ip, -1);
555 if (error)
556 return error;
557
558 error = gfs2_change_nlink(ip, -1);
559 if (error)
560 return error;
561
562 return error;
563}
564
565/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566 * gfs2_rmdir - Remove a directory
567 * @dir: The parent directory of the directory to be removed
568 * @dentry: The dentry of the directory to remove
569 *
570 * Remove a directory. Call gfs2_rmdiri()
571 *
572 * Returns: errno
573 */
574
575static int gfs2_rmdir(struct inode *dir, struct dentry *dentry)
576{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400577 struct gfs2_inode *dip = GFS2_I(dir);
578 struct gfs2_sbd *sdp = GFS2_SB(dir);
579 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Russell Cattelanddee7602007-01-29 17:13:44 -0600580 struct gfs2_holder ghs[3];
581 struct gfs2_rgrpd *rgd;
582 struct gfs2_holder ri_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 int error;
584
Russell Cattelanddee7602007-01-29 17:13:44 -0600585 error = gfs2_rindex_hold(sdp, &ri_gh);
586 if (error)
587 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000588 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
589 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
590
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100591 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600592 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
593
Bob Peterson72dbf472008-08-12 13:39:29 -0500594 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500596 goto out_parent;
597
598 error = gfs2_glock_nq(ghs + 1); /* child */
599 if (error)
600 goto out_child;
601
602 error = gfs2_glock_nq(ghs + 2); /* rgrp */
603 if (error)
604 goto out_rgrp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605
606 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
607 if (error)
608 goto out_gunlock;
609
Steven Whitehousead6203f2008-11-03 13:59:19 +0000610 if (ip->i_entries < 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000611 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500612 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613 error = -EIO;
614 goto out_gunlock;
615 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000616 if (ip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000617 error = -ENOTEMPTY;
618 goto out_gunlock;
619 }
620
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400621 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + 3 * RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 if (error)
623 goto out_gunlock;
624
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400625 error = gfs2_rmdiri(dip, &dentry->d_name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626
627 gfs2_trans_end(sdp);
628
Steven Whitehousea91ea692006-09-04 12:04:26 -0400629out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500630 gfs2_glock_dq(ghs + 2);
631out_rgrp:
Russell Cattelanddee7602007-01-29 17:13:44 -0600632 gfs2_holder_uninit(ghs + 2);
Bob Peterson72dbf472008-08-12 13:39:29 -0500633 gfs2_glock_dq(ghs + 1);
634out_child:
635 gfs2_holder_uninit(ghs + 1);
636 gfs2_glock_dq(ghs);
637out_parent:
638 gfs2_holder_uninit(ghs);
Russell Cattelanddee7602007-01-29 17:13:44 -0600639 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000640 return error;
641}
642
643/**
644 * gfs2_mknod - Make a special file
645 * @dir: The directory in which the special file will reside
646 * @dentry: The dentry of the special file
647 * @mode: The mode of the special file
648 * @rdev: The device specification of the special file
649 *
650 */
651
652static int gfs2_mknod(struct inode *dir, struct dentry *dentry, int mode,
653 dev_t dev)
654{
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500655 struct gfs2_inode *dip = GFS2_I(dir);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400656 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000657 struct gfs2_holder ghs[2];
658 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000659
660 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
661
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500662 inode = gfs2_createi(ghs, &dentry->d_name, mode, dev);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000663 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000664 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000665 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666 }
667
David Teiglandb3b94fa2006-01-16 16:50:04 +0000668 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000669 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670 gfs2_inplace_release(dip);
671 gfs2_quota_unlock(dip);
672 gfs2_alloc_put(dip);
673
674 gfs2_glock_dq_uninit_m(2, ghs);
675
David Teiglandb3b94fa2006-01-16 16:50:04 +0000676 d_instantiate(dentry, inode);
677 mark_inode_dirty(inode);
678
679 return 0;
680}
681
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100682/*
683 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
684 * @this: move this
685 * @to: to here
686 *
687 * Follow @to back to the root and make sure we don't encounter @this
688 * Assumes we already hold the rename lock.
689 *
690 * Returns: errno
691 */
692
693static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
694{
695 struct inode *dir = &to->i_inode;
696 struct super_block *sb = dir->i_sb;
697 struct inode *tmp;
698 struct qstr dotdot;
699 int error = 0;
700
701 gfs2_str2qstr(&dotdot, "..");
702
703 igrab(dir);
704
705 for (;;) {
706 if (dir == &this->i_inode) {
707 error = -EINVAL;
708 break;
709 }
710 if (dir == sb->s_root->d_inode) {
711 error = 0;
712 break;
713 }
714
715 tmp = gfs2_lookupi(dir, &dotdot, 1);
716 if (IS_ERR(tmp)) {
717 error = PTR_ERR(tmp);
718 break;
719 }
720
721 iput(dir);
722 dir = tmp;
723 }
724
725 iput(dir);
726
727 return error;
728}
729
David Teiglandb3b94fa2006-01-16 16:50:04 +0000730/**
731 * gfs2_rename - Rename a file
732 * @odir: Parent directory of old file name
733 * @odentry: The old dentry of the file
734 * @ndir: Parent directory of new file name
735 * @ndentry: The new dentry of the file
736 *
737 * Returns: errno
738 */
739
740static int gfs2_rename(struct inode *odir, struct dentry *odentry,
741 struct inode *ndir, struct dentry *ndentry)
742{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400743 struct gfs2_inode *odip = GFS2_I(odir);
744 struct gfs2_inode *ndip = GFS2_I(ndir);
745 struct gfs2_inode *ip = GFS2_I(odentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000746 struct gfs2_inode *nip = NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400747 struct gfs2_sbd *sdp = GFS2_SB(odir);
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100748 struct gfs2_holder ghs[5], r_gh = { .gh_gl = NULL, };
Russell Cattelanddee7602007-01-29 17:13:44 -0600749 struct gfs2_rgrpd *nrgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000750 unsigned int num_gh;
751 int dir_rename = 0;
Steven Whitehouse24b977b2009-12-09 13:55:12 +0000752 int alloc_required = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000753 unsigned int x;
754 int error;
755
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 if (ndentry->d_inode) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400757 nip = GFS2_I(ndentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000758 if (ip == nip)
759 return 0;
760 }
761
David Teiglandb3b94fa2006-01-16 16:50:04 +0000762
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100763 if (odip != ndip) {
764 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
765 0, &r_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 if (error)
767 goto out;
768
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100769 if (S_ISDIR(ip->i_inode.i_mode)) {
770 dir_rename = 1;
771 /* don't move a dirctory into it's subdir */
772 error = gfs2_ok_to_move(ip, ndip);
773 if (error)
774 goto out_gunlock_r;
775 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000776 }
777
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400778 num_gh = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400780 if (odip != ndip) {
781 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
782 num_gh++;
783 }
784 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
785 num_gh++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400787 if (nip) {
788 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
789 num_gh++;
Russell Cattelanddee7602007-01-29 17:13:44 -0600790 /* grab the resource lock for unlink flag twiddling
791 * this is the case of the target file already existing
792 * so we unlink before doing the rename
793 */
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100794 nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600795 if (nrgd)
796 gfs2_holder_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh++);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400797 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000798
Bob Peterson72dbf472008-08-12 13:39:29 -0500799 for (x = 0; x < num_gh; x++) {
800 error = gfs2_glock_nq(ghs + x);
801 if (error)
802 goto out_gunlock;
803 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000804
805 /* Check out the old directory */
806
807 error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
808 if (error)
809 goto out_gunlock;
810
811 /* Check out the new directory */
812
813 if (nip) {
814 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
815 if (error)
816 goto out_gunlock;
817
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500818 if (S_ISDIR(nip->i_inode.i_mode)) {
Steven Whitehousead6203f2008-11-03 13:59:19 +0000819 if (nip->i_entries < 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 if (gfs2_consist_inode(nip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500821 gfs2_dinode_print(nip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822 error = -EIO;
823 goto out_gunlock;
824 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000825 if (nip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826 error = -ENOTEMPTY;
827 goto out_gunlock;
828 }
829 }
830 } else {
Miklos Szeredif58ba882008-07-02 21:12:01 +0200831 error = gfs2_permission(ndir, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000832 if (error)
833 goto out_gunlock;
834
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100835 error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836 switch (error) {
837 case -ENOENT:
838 error = 0;
839 break;
840 case 0:
841 error = -EEXIST;
842 default:
843 goto out_gunlock;
844 };
845
846 if (odip != ndip) {
Steven Whitehouse4f561102006-11-01 14:04:17 -0500847 if (!ndip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000848 error = -EINVAL;
849 goto out_gunlock;
850 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000851 if (ndip->i_entries == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000852 error = -EFBIG;
853 goto out_gunlock;
854 }
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500855 if (S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse4f561102006-11-01 14:04:17 -0500856 ndip->i_inode.i_nlink == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000857 error = -EMLINK;
858 goto out_gunlock;
859 }
860 }
861 }
862
863 /* Check out the dir to be renamed */
864
865 if (dir_rename) {
Miklos Szeredif58ba882008-07-02 21:12:01 +0200866 error = gfs2_permission(odentry->d_inode, MAY_WRITE);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867 if (error)
868 goto out_gunlock;
869 }
870
Steven Whitehouse24b977b2009-12-09 13:55:12 +0000871 if (nip == NULL)
872 alloc_required = gfs2_diradd_alloc_required(ndir, &ndentry->d_name);
873 error = alloc_required;
Steven Whitehousec7526662006-03-20 12:30:04 -0500874 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000875 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -0500876 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877
878 if (alloc_required) {
879 struct gfs2_alloc *al = gfs2_alloc_get(ndip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300880 if (!al) {
881 error = -ENOMEM;
882 goto out_gunlock;
883 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884
Steven Whitehoused82661d2008-03-10 15:34:50 +0000885 error = gfs2_quota_lock_check(ndip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000886 if (error)
887 goto out_alloc;
888
David Teiglandb3b94fa2006-01-16 16:50:04 +0000889 al->al_requested = sdp->sd_max_dirres;
890
891 error = gfs2_inplace_reserve(ndip);
892 if (error)
893 goto out_gunlock_q;
894
Steven Whitehousefe1bded2006-04-18 10:09:15 -0400895 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100896 al->al_rgd->rd_length +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897 4 * RES_DINODE + 4 * RES_LEAF +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500898 RES_STATFS + RES_QUOTA + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899 if (error)
900 goto out_ipreserv;
901 } else {
902 error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500903 5 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904 if (error)
905 goto out_gunlock;
906 }
907
908 /* Remove the target file, if it exists */
909
910 if (nip) {
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500911 if (S_ISDIR(nip->i_inode.i_mode))
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400912 error = gfs2_rmdiri(ndip, &ndentry->d_name, nip);
913 else {
914 error = gfs2_dir_del(ndip, &ndentry->d_name);
915 if (error)
916 goto out_end_trans;
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500917 error = gfs2_change_nlink(nip, -1);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400918 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 if (error)
920 goto out_end_trans;
921 }
922
923 if (dir_rename) {
924 struct qstr name;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500925 gfs2_str2qstr(&name, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926
927 error = gfs2_change_nlink(ndip, +1);
928 if (error)
929 goto out_end_trans;
930 error = gfs2_change_nlink(odip, -1);
931 if (error)
932 goto out_end_trans;
933
Steven Whitehouseffed8ab2007-06-07 11:29:35 +0100934 error = gfs2_dir_mvino(ip, &name, ndip, DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935 if (error)
936 goto out_end_trans;
937 } else {
938 struct buffer_head *dibh;
939 error = gfs2_meta_inode_buffer(ip, &dibh);
940 if (error)
941 goto out_end_trans;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100942 ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000943 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500944 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000945 brelse(dibh);
946 }
947
948 error = gfs2_dir_del(odip, &odentry->d_name);
949 if (error)
950 goto out_end_trans;
951
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100952 error = gfs2_dir_add(ndir, &ndentry->d_name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 if (error)
954 goto out_end_trans;
955
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400956out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400958out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959 if (alloc_required)
960 gfs2_inplace_release(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400961out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 if (alloc_required)
963 gfs2_quota_unlock(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400964out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 if (alloc_required)
966 gfs2_alloc_put(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400967out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500968 while (x--) {
969 gfs2_glock_dq(ghs + x);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970 gfs2_holder_uninit(ghs + x);
Bob Peterson72dbf472008-08-12 13:39:29 -0500971 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400972out_gunlock_r:
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100973 if (r_gh.gh_gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000974 gfs2_glock_dq_uninit(&r_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400975out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976 return error;
977}
978
979/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000980 * gfs2_follow_link - Follow a symbolic link
981 * @dentry: The dentry of the link
982 * @nd: Data that we pass to vfs_follow_link()
983 *
Al Viroc177c2a2010-01-14 00:59:16 -0500984 * This can handle symlinks of any size.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985 *
986 * Returns: 0 on success or error code
987 */
988
989static void *gfs2_follow_link(struct dentry *dentry, struct nameidata *nd)
990{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400991 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Al Viroc177c2a2010-01-14 00:59:16 -0500992 struct gfs2_holder i_gh;
993 struct buffer_head *dibh;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100994 unsigned int x, size;
Al Viroc177c2a2010-01-14 00:59:16 -0500995 char *buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000996 int error;
997
Al Viroc177c2a2010-01-14 00:59:16 -0500998 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
999 error = gfs2_glock_nq(&i_gh);
1000 if (error) {
1001 gfs2_holder_uninit(&i_gh);
1002 nd_set_link(nd, ERR_PTR(error));
1003 return NULL;
1004 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001006 size = (unsigned int)i_size_read(&ip->i_inode);
1007 if (size == 0) {
Al Viroc177c2a2010-01-14 00:59:16 -05001008 gfs2_consist_inode(ip);
1009 buf = ERR_PTR(-EIO);
1010 goto out;
1011 }
1012
1013 error = gfs2_meta_inode_buffer(ip, &dibh);
1014 if (error) {
1015 buf = ERR_PTR(error);
1016 goto out;
1017 }
1018
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001019 x = size + 1;
Al Viroc177c2a2010-01-14 00:59:16 -05001020 buf = kmalloc(x, GFP_NOFS);
1021 if (!buf)
1022 buf = ERR_PTR(-ENOMEM);
1023 else
1024 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1025 brelse(dibh);
1026out:
1027 gfs2_glock_dq_uninit(&i_gh);
1028 nd_set_link(nd, buf);
1029 return NULL;
1030}
1031
1032static void gfs2_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
1033{
1034 char *s = nd_get_link(nd);
1035 if (!IS_ERR(s))
1036 kfree(s);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001037}
1038
1039/**
1040 * gfs2_permission -
1041 * @inode:
1042 * @mask:
1043 * @nd: passed from Linux VFS, ignored by us
1044 *
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001045 * This may be called from the VFS directly, or from within GFS2 with the
1046 * inode locked, so we look to see if the glock is already locked and only
1047 * lock the glock if its not already been done.
1048 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001049 * Returns: errno
1050 */
1051
Miklos Szeredif58ba882008-07-02 21:12:01 +02001052int gfs2_permission(struct inode *inode, int mask)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001053{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001054 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001055 struct gfs2_holder i_gh;
1056 int error;
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001057 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001059 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001060 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
1061 if (error)
1062 return error;
1063 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001064 }
1065
Miklos Szeredif58ba882008-07-02 21:12:01 +02001066 if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
1067 error = -EACCES;
1068 else
1069 error = generic_permission(inode, mask, gfs2_check_acl);
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001070 if (unlock)
1071 gfs2_glock_dq_uninit(&i_gh);
1072
David Teiglandb3b94fa2006-01-16 16:50:04 +00001073 return error;
1074}
1075
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076static int setattr_chown(struct inode *inode, struct iattr *attr)
1077{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001078 struct gfs2_inode *ip = GFS2_I(inode);
1079 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001081 u32 ouid, ogid, nuid, ngid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082 int error;
1083
Steven Whitehouse2933f922006-11-01 13:23:29 -05001084 ouid = inode->i_uid;
1085 ogid = inode->i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001086 nuid = attr->ia_uid;
1087 ngid = attr->ia_gid;
1088
1089 if (!(attr->ia_valid & ATTR_UID) || ouid == nuid)
1090 ouid = nuid = NO_QUOTA_CHANGE;
1091 if (!(attr->ia_valid & ATTR_GID) || ogid == ngid)
1092 ogid = ngid = NO_QUOTA_CHANGE;
1093
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001094 if (!gfs2_alloc_get(ip))
1095 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001096
1097 error = gfs2_quota_lock(ip, nuid, ngid);
1098 if (error)
1099 goto out_alloc;
1100
1101 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
1102 error = gfs2_quota_check(ip, nuid, ngid);
1103 if (error)
1104 goto out_gunlock_q;
1105 }
1106
1107 error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
1108 if (error)
1109 goto out_gunlock_q;
1110
1111 error = gfs2_meta_inode_buffer(ip, &dibh);
1112 if (error)
1113 goto out_end_trans;
1114
Christoph Hellwig10257742010-06-04 11:30:02 +02001115 if ((attr->ia_valid & ATTR_SIZE) &&
1116 attr->ia_size != i_size_read(inode)) {
1117 int error;
1118
1119 error = vmtruncate(inode, attr->ia_size);
1120 gfs2_assert_warn(sdp, !error);
1121 }
1122
1123 setattr_copy(inode, attr);
1124 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001125
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001126 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001127 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001128 brelse(dibh);
1129
1130 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001131 u64 blocks = gfs2_get_inode_blocks(&ip->i_inode);
1132 gfs2_quota_change(ip, -blocks, ouid, ogid);
1133 gfs2_quota_change(ip, blocks, nuid, ngid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001134 }
1135
Steven Whitehousea91ea692006-09-04 12:04:26 -04001136out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001137 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001138out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139 gfs2_quota_unlock(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001140out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001142 return error;
1143}
1144
1145/**
1146 * gfs2_setattr - Change attributes on an inode
1147 * @dentry: The dentry which is changing
1148 * @attr: The structure describing the change
1149 *
1150 * The VFS layer wants to change one or more of an inodes attributes. Write
1151 * that change out to disk.
1152 *
1153 * Returns: errno
1154 */
1155
1156static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
1157{
1158 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001159 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001160 struct gfs2_holder i_gh;
1161 int error;
1162
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1164 if (error)
1165 return error;
1166
1167 error = -EPERM;
1168 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1169 goto out;
1170
1171 error = inode_change_ok(inode, attr);
1172 if (error)
1173 goto out;
1174
1175 if (attr->ia_valid & ATTR_SIZE)
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001176 error = gfs2_setattr_size(inode, attr->ia_size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001177 else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
1178 error = setattr_chown(inode, attr);
1179 else if ((attr->ia_valid & ATTR_MODE) && IS_POSIXACL(inode))
1180 error = gfs2_acl_chmod(ip, attr);
1181 else
1182 error = gfs2_setattr_simple(ip, attr);
1183
Steven Whitehousea91ea692006-09-04 12:04:26 -04001184out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001185 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001186 if (!error)
1187 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001188 return error;
1189}
1190
1191/**
1192 * gfs2_getattr - Read out an inode's attributes
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001193 * @mnt: The vfsmount the inode is being accessed from
David Teiglandb3b94fa2006-01-16 16:50:04 +00001194 * @dentry: The dentry to stat
1195 * @stat: The inode's stats
1196 *
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001197 * This may be called from the VFS directly, or from within GFS2 with the
1198 * inode locked, so we look to see if the glock is already locked and only
1199 * lock the glock if its not already been done. Note that its the NFS
1200 * readdirplus operation which causes this to be called (from filldir)
1201 * with the glock already held.
1202 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001203 * Returns: errno
1204 */
1205
1206static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry,
1207 struct kstat *stat)
1208{
1209 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001210 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 struct gfs2_holder gh;
1212 int error;
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001213 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001214
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001215 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001216 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1217 if (error)
1218 return error;
1219 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001220 }
1221
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001222 generic_fillattr(inode, stat);
Steven Whitehoused7c103d2007-01-25 17:14:59 +00001223 if (unlock)
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001224 gfs2_glock_dq_uninit(&gh);
1225
1226 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001227}
1228
1229static int gfs2_setxattr(struct dentry *dentry, const char *name,
1230 const void *data, size_t size, int flags)
1231{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001232 struct inode *inode = dentry->d_inode;
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001233 struct gfs2_inode *ip = GFS2_I(inode);
1234 struct gfs2_holder gh;
1235 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001237 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1238 ret = gfs2_glock_nq(&gh);
1239 if (ret == 0) {
1240 ret = generic_setxattr(dentry, name, data, size, flags);
1241 gfs2_glock_dq(&gh);
1242 }
1243 gfs2_holder_uninit(&gh);
1244 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001245}
1246
1247static ssize_t gfs2_getxattr(struct dentry *dentry, const char *name,
1248 void *data, size_t size)
1249{
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001250 struct inode *inode = dentry->d_inode;
1251 struct gfs2_inode *ip = GFS2_I(inode);
1252 struct gfs2_holder gh;
1253 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001254
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001255 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1256 ret = gfs2_glock_nq(&gh);
1257 if (ret == 0) {
1258 ret = generic_getxattr(dentry, name, data, size);
1259 gfs2_glock_dq(&gh);
1260 }
1261 gfs2_holder_uninit(&gh);
1262 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001263}
1264
1265static int gfs2_removexattr(struct dentry *dentry, const char *name)
1266{
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001267 struct inode *inode = dentry->d_inode;
1268 struct gfs2_inode *ip = GFS2_I(inode);
1269 struct gfs2_holder gh;
1270 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001271
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001272 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1273 ret = gfs2_glock_nq(&gh);
1274 if (ret == 0) {
1275 ret = generic_removexattr(dentry, name);
1276 gfs2_glock_dq(&gh);
1277 }
1278 gfs2_holder_uninit(&gh);
1279 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280}
1281
Benjamin Marzinski39211202010-08-20 00:21:02 -05001282static void empty_write_end(struct page *page, unsigned from,
1283 unsigned to)
1284{
1285 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
1286
1287 page_zero_new_buffers(page, from, to);
1288 flush_dcache_page(page);
1289 mark_page_accessed(page);
1290
1291 if (!gfs2_is_writeback(ip))
1292 gfs2_page_add_databufs(ip, page, from, to);
1293
1294 block_commit_write(page, from, to);
1295}
1296
1297
1298static int write_empty_blocks(struct page *page, unsigned from, unsigned to)
1299{
1300 unsigned start, end, next;
1301 struct buffer_head *bh, *head;
1302 int error;
1303
1304 if (!page_has_buffers(page)) {
1305 error = block_prepare_write(page, from, to, gfs2_block_map);
1306 if (unlikely(error))
1307 return error;
1308
1309 empty_write_end(page, from, to);
1310 return 0;
1311 }
1312
1313 bh = head = page_buffers(page);
1314 next = end = 0;
1315 while (next < from) {
1316 next += bh->b_size;
1317 bh = bh->b_this_page;
1318 }
1319 start = next;
1320 do {
1321 next += bh->b_size;
1322 if (buffer_mapped(bh)) {
1323 if (end) {
1324 error = block_prepare_write(page, start, end,
1325 gfs2_block_map);
1326 if (unlikely(error))
1327 return error;
1328 empty_write_end(page, start, end);
1329 end = 0;
1330 }
1331 start = next;
1332 }
1333 else
1334 end = next;
1335 bh = bh->b_this_page;
1336 } while (next < to);
1337
1338 if (end) {
1339 error = block_prepare_write(page, start, end, gfs2_block_map);
1340 if (unlikely(error))
1341 return error;
1342 empty_write_end(page, start, end);
1343 }
1344
1345 return 0;
1346}
1347
1348static int fallocate_chunk(struct inode *inode, loff_t offset, loff_t len,
1349 int mode)
1350{
1351 struct gfs2_inode *ip = GFS2_I(inode);
1352 struct buffer_head *dibh;
1353 int error;
1354 u64 start = offset >> PAGE_CACHE_SHIFT;
1355 unsigned int start_offset = offset & ~PAGE_CACHE_MASK;
1356 u64 end = (offset + len - 1) >> PAGE_CACHE_SHIFT;
1357 pgoff_t curr;
1358 struct page *page;
1359 unsigned int end_offset = (offset + len) & ~PAGE_CACHE_MASK;
1360 unsigned int from, to;
1361
1362 if (!end_offset)
1363 end_offset = PAGE_CACHE_SIZE;
1364
1365 error = gfs2_meta_inode_buffer(ip, &dibh);
1366 if (unlikely(error))
1367 goto out;
1368
1369 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
1370
1371 if (gfs2_is_stuffed(ip)) {
1372 error = gfs2_unstuff_dinode(ip, NULL);
1373 if (unlikely(error))
1374 goto out;
1375 }
1376
1377 curr = start;
1378 offset = start << PAGE_CACHE_SHIFT;
1379 from = start_offset;
1380 to = PAGE_CACHE_SIZE;
1381 while (curr <= end) {
1382 page = grab_cache_page_write_begin(inode->i_mapping, curr,
1383 AOP_FLAG_NOFS);
1384 if (unlikely(!page)) {
1385 error = -ENOMEM;
1386 goto out;
1387 }
1388
1389 if (curr == end)
1390 to = end_offset;
1391 error = write_empty_blocks(page, from, to);
1392 if (!error && offset + to > inode->i_size &&
1393 !(mode & FALLOC_FL_KEEP_SIZE)) {
1394 i_size_write(inode, offset + to);
1395 }
1396 unlock_page(page);
1397 page_cache_release(page);
1398 if (error)
1399 goto out;
1400 curr++;
1401 offset += PAGE_CACHE_SIZE;
1402 from = 0;
1403 }
1404
1405 gfs2_dinode_out(ip, dibh->b_data);
1406 mark_inode_dirty(inode);
1407
1408 brelse(dibh);
1409
1410out:
1411 return error;
1412}
1413
1414static void calc_max_reserv(struct gfs2_inode *ip, loff_t max, loff_t *len,
1415 unsigned int *data_blocks, unsigned int *ind_blocks)
1416{
1417 const struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
1418 unsigned int max_blocks = ip->i_alloc->al_rgd->rd_free_clone;
1419 unsigned int tmp, max_data = max_blocks - 3 * (sdp->sd_max_height - 1);
1420
1421 for (tmp = max_data; tmp > sdp->sd_diptrs;) {
1422 tmp = DIV_ROUND_UP(tmp, sdp->sd_inptrs);
1423 max_data -= tmp;
1424 }
1425 /* This calculation isn't the exact reverse of gfs2_write_calc_reserve,
1426 so it might end up with fewer data blocks */
1427 if (max_data <= *data_blocks)
1428 return;
1429 *data_blocks = max_data;
1430 *ind_blocks = max_blocks - max_data;
1431 *len = ((loff_t)max_data - 3) << sdp->sd_sb.sb_bsize_shift;
1432 if (*len > max) {
1433 *len = max;
1434 gfs2_write_calc_reserv(ip, max, data_blocks, ind_blocks);
1435 }
1436}
1437
1438static long gfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1439 loff_t len)
1440{
1441 struct gfs2_sbd *sdp = GFS2_SB(inode);
1442 struct gfs2_inode *ip = GFS2_I(inode);
1443 unsigned int data_blocks = 0, ind_blocks = 0, rblocks;
1444 loff_t bytes, max_bytes;
1445 struct gfs2_alloc *al;
1446 int error;
1447 loff_t next = (offset + len - 1) >> sdp->sd_sb.sb_bsize_shift;
1448 next = (next + 1) << sdp->sd_sb.sb_bsize_shift;
1449
1450 offset = (offset >> sdp->sd_sb.sb_bsize_shift) <<
1451 sdp->sd_sb.sb_bsize_shift;
1452
1453 len = next - offset;
1454 bytes = sdp->sd_max_rg_data * sdp->sd_sb.sb_bsize / 2;
1455 if (!bytes)
1456 bytes = UINT_MAX;
1457
1458 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &ip->i_gh);
1459 error = gfs2_glock_nq(&ip->i_gh);
1460 if (unlikely(error))
1461 goto out_uninit;
1462
1463 if (!gfs2_write_alloc_required(ip, offset, len))
1464 goto out_unlock;
1465
1466 while (len > 0) {
1467 if (len < bytes)
1468 bytes = len;
1469 al = gfs2_alloc_get(ip);
1470 if (!al) {
1471 error = -ENOMEM;
1472 goto out_unlock;
1473 }
1474
1475 error = gfs2_quota_lock_check(ip);
1476 if (error)
1477 goto out_alloc_put;
1478
1479retry:
1480 gfs2_write_calc_reserv(ip, bytes, &data_blocks, &ind_blocks);
1481
1482 al->al_requested = data_blocks + ind_blocks;
1483 error = gfs2_inplace_reserve(ip);
1484 if (error) {
1485 if (error == -ENOSPC && bytes > sdp->sd_sb.sb_bsize) {
1486 bytes >>= 1;
1487 goto retry;
1488 }
1489 goto out_qunlock;
1490 }
1491 max_bytes = bytes;
1492 calc_max_reserv(ip, len, &max_bytes, &data_blocks, &ind_blocks);
1493 al->al_requested = data_blocks + ind_blocks;
1494
1495 rblocks = RES_DINODE + ind_blocks + RES_STATFS + RES_QUOTA +
1496 RES_RG_HDR + ip->i_alloc->al_rgd->rd_length;
1497 if (gfs2_is_jdata(ip))
1498 rblocks += data_blocks ? data_blocks : 1;
1499
1500 error = gfs2_trans_begin(sdp, rblocks,
1501 PAGE_CACHE_SIZE/sdp->sd_sb.sb_bsize);
1502 if (error)
1503 goto out_trans_fail;
1504
1505 error = fallocate_chunk(inode, offset, max_bytes, mode);
1506 gfs2_trans_end(sdp);
1507
1508 if (error)
1509 goto out_trans_fail;
1510
1511 len -= max_bytes;
1512 offset += max_bytes;
1513 gfs2_inplace_release(ip);
1514 gfs2_quota_unlock(ip);
1515 gfs2_alloc_put(ip);
1516 }
1517 goto out_unlock;
1518
1519out_trans_fail:
1520 gfs2_inplace_release(ip);
1521out_qunlock:
1522 gfs2_quota_unlock(ip);
1523out_alloc_put:
1524 gfs2_alloc_put(ip);
1525out_unlock:
1526 gfs2_glock_dq(&ip->i_gh);
1527out_uninit:
1528 gfs2_holder_uninit(&ip->i_gh);
1529 return error;
1530}
1531
1532
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001533static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1534 u64 start, u64 len)
1535{
1536 struct gfs2_inode *ip = GFS2_I(inode);
1537 struct gfs2_holder gh;
1538 int ret;
1539
1540 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
1541 if (ret)
1542 return ret;
1543
1544 mutex_lock(&inode->i_mutex);
1545
1546 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
1547 if (ret)
1548 goto out;
1549
1550 if (gfs2_is_stuffed(ip)) {
1551 u64 phys = ip->i_no_addr << inode->i_blkbits;
1552 u64 size = i_size_read(inode);
1553 u32 flags = FIEMAP_EXTENT_LAST|FIEMAP_EXTENT_NOT_ALIGNED|
1554 FIEMAP_EXTENT_DATA_INLINE;
1555 phys += sizeof(struct gfs2_dinode);
1556 phys += start;
1557 if (start + len > size)
1558 len = size - start;
1559 if (start < size)
1560 ret = fiemap_fill_next_extent(fieinfo, start, phys,
1561 len, flags);
1562 if (ret == 1)
1563 ret = 0;
1564 } else {
1565 ret = __generic_block_fiemap(inode, fieinfo, start, len,
1566 gfs2_block_map);
1567 }
1568
1569 gfs2_glock_dq_uninit(&gh);
1570out:
1571 mutex_unlock(&inode->i_mutex);
1572 return ret;
1573}
1574
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001575const struct inode_operations gfs2_file_iops = {
Al Viroe6305c42008-07-15 21:03:57 -04001576 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001577 .setattr = gfs2_setattr,
1578 .getattr = gfs2_getattr,
1579 .setxattr = gfs2_setxattr,
1580 .getxattr = gfs2_getxattr,
1581 .listxattr = gfs2_listxattr,
1582 .removexattr = gfs2_removexattr,
Benjamin Marzinski39211202010-08-20 00:21:02 -05001583 .fallocate = gfs2_fallocate,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001584 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001585};
1586
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001587const struct inode_operations gfs2_dir_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001588 .create = gfs2_create,
1589 .lookup = gfs2_lookup,
1590 .link = gfs2_link,
1591 .unlink = gfs2_unlink,
1592 .symlink = gfs2_symlink,
1593 .mkdir = gfs2_mkdir,
1594 .rmdir = gfs2_rmdir,
1595 .mknod = gfs2_mknod,
1596 .rename = gfs2_rename,
Al Viroe6305c42008-07-15 21:03:57 -04001597 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001598 .setattr = gfs2_setattr,
1599 .getattr = gfs2_getattr,
1600 .setxattr = gfs2_setxattr,
1601 .getxattr = gfs2_getxattr,
1602 .listxattr = gfs2_listxattr,
1603 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001604 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001605};
1606
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001607const struct inode_operations gfs2_symlink_iops = {
Al Viroc177c2a2010-01-14 00:59:16 -05001608 .readlink = generic_readlink,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001609 .follow_link = gfs2_follow_link,
Al Viroc177c2a2010-01-14 00:59:16 -05001610 .put_link = gfs2_put_link,
Al Viroe6305c42008-07-15 21:03:57 -04001611 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001612 .setattr = gfs2_setattr,
1613 .getattr = gfs2_getattr,
1614 .setxattr = gfs2_setxattr,
1615 .getxattr = gfs2_getxattr,
1616 .listxattr = gfs2_listxattr,
1617 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001618 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001619};
1620