blob: ee6ffd590418a76db506d898a9991e805ce2037b [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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include <asm/uaccess.h>
22
23#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050024#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "acl.h"
26#include "bmap.h"
27#include "dir.h"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010028#include "xattr.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029#include "glock.h"
30#include "inode.h"
31#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000032#include "quota.h"
33#include "rgrp.h"
34#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050035#include "util.h"
Steven Whitehouseb2760582008-10-14 16:05:55 +010036#include "super.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000037
38/**
39 * gfs2_create - Create a file
40 * @dir: The directory in which to create the file
41 * @dentry: The dentry of the new file
42 * @mode: The mode of the new file
43 *
44 * Returns: errno
45 */
46
47static int gfs2_create(struct inode *dir, struct dentry *dentry,
48 int mode, struct nameidata *nd)
49{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040050 struct gfs2_inode *dip = GFS2_I(dir);
51 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +000052 struct gfs2_holder ghs[2];
53 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +000054
David Teiglandb3b94fa2006-01-16 16:50:04 +000055 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
56
57 for (;;) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -050058 inode = gfs2_createi(ghs, &dentry->d_name, S_IFREG | mode, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +000059 if (!IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000060 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +000061 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 gfs2_inplace_release(dip);
63 gfs2_quota_unlock(dip);
64 gfs2_alloc_put(dip);
65 gfs2_glock_dq_uninit_m(2, ghs);
Steven Whitehouse3a8476d2006-06-19 09:10:39 -040066 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000067 break;
Steven Whitehouse7359a192006-02-13 12:27:43 +000068 } else if (PTR_ERR(inode) != -EEXIST ||
Al Viro35165862008-08-05 03:00:49 -040069 (nd && nd->flags & LOOKUP_EXCL)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +000071 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000072 }
73
Al Viroa569c712008-07-23 14:42:05 -040074 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
Steven Whitehousec7526662006-03-20 12:30:04 -050075 if (inode) {
76 if (!IS_ERR(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -050077 gfs2_holder_uninit(ghs);
78 break;
79 } else {
80 gfs2_holder_uninit(ghs);
81 return PTR_ERR(inode);
82 }
David Teiglandb3b94fa2006-01-16 16:50:04 +000083 }
84 }
85
David Teiglandb3b94fa2006-01-16 16:50:04 +000086 d_instantiate(dentry, inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087
88 return 0;
89}
90
91/**
92 * gfs2_lookup - Look up a filename in a directory and return its inode
93 * @dir: The directory inode
94 * @dentry: The dentry of the new inode
95 * @nd: passed from Linux VFS, ignored by us
96 *
97 * Called by the VFS layer. Lock dir and call gfs2_lookupi()
98 *
99 * Returns: errno
100 */
101
102static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
103 struct nameidata *nd)
104{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000106
Steven Whitehousec7526662006-03-20 12:30:04 -0500107 dentry->d_op = &gfs2_dops;
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
Miklos Szeredif58ba882008-07-02 21:12:01 +0200167 error = gfs2_permission(dir, MAY_WRITE | MAY_EXEC);
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 +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100220 al->al_rgd->rd_length +
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) {
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400256 atomic_inc(&inode->i_count);
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
290 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
291 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);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500472 struct qstr str;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000473
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500474 gfs2_str2qstr(&str, ".");
Steven Whitehousec7526662006-03-20 12:30:04 -0500475 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
476 gfs2_qstr2dirent(&str, GFS2_DIRENT_SIZE(str.len), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000477 dent->de_inum = di->di_num; /* already GFS2 endian */
Steven Whitehouse7ecdb702006-10-03 21:03:35 -0400478 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000479 di->di_entries = cpu_to_be32(1);
480
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500481 gfs2_str2qstr(&str, "..");
Steven Whitehousec7526662006-03-20 12:30:04 -0500482 dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
483 gfs2_qstr2dirent(&str, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100485 gfs2_inum_out(dip, dent);
Steven Whitehouse7ecdb702006-10-03 21:03:35 -0400486 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000487
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500488 gfs2_dinode_out(ip, di);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489
490 brelse(dibh);
491 }
492
493 error = gfs2_change_nlink(dip, +1);
494 gfs2_assert_withdraw(sdp, !error); /* dip already pinned */
495
496 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000497 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498 gfs2_inplace_release(dip);
499 gfs2_quota_unlock(dip);
500 gfs2_alloc_put(dip);
501
502 gfs2_glock_dq_uninit_m(2, ghs);
503
David Teiglandb3b94fa2006-01-16 16:50:04 +0000504 d_instantiate(dentry, inode);
505 mark_inode_dirty(inode);
506
507 return 0;
508}
509
510/**
Steven Whitehouse2286dbf2009-05-22 10:45:09 +0100511 * gfs2_rmdiri - Remove a directory
512 * @dip: The parent directory of the directory to be removed
513 * @name: The name of the directory to be removed
514 * @ip: The GFS2 inode of the directory to be removed
515 *
516 * Assumes Glocks on dip and ip are held
517 *
518 * Returns: errno
519 */
520
521static int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
522 struct gfs2_inode *ip)
523{
524 struct qstr dotname;
525 int error;
526
527 if (ip->i_entries != 2) {
528 if (gfs2_consist_inode(ip))
529 gfs2_dinode_print(ip);
530 return -EIO;
531 }
532
533 error = gfs2_dir_del(dip, name);
534 if (error)
535 return error;
536
537 error = gfs2_change_nlink(dip, -1);
538 if (error)
539 return error;
540
541 gfs2_str2qstr(&dotname, ".");
542 error = gfs2_dir_del(ip, &dotname);
543 if (error)
544 return error;
545
546 gfs2_str2qstr(&dotname, "..");
547 error = gfs2_dir_del(ip, &dotname);
548 if (error)
549 return error;
550
551 /* It looks odd, but it really should be done twice */
552 error = gfs2_change_nlink(ip, -1);
553 if (error)
554 return error;
555
556 error = gfs2_change_nlink(ip, -1);
557 if (error)
558 return error;
559
560 return error;
561}
562
563/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564 * gfs2_rmdir - Remove a directory
565 * @dir: The parent directory of the directory to be removed
566 * @dentry: The dentry of the directory to remove
567 *
568 * Remove a directory. Call gfs2_rmdiri()
569 *
570 * Returns: errno
571 */
572
573static int gfs2_rmdir(struct inode *dir, struct dentry *dentry)
574{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400575 struct gfs2_inode *dip = GFS2_I(dir);
576 struct gfs2_sbd *sdp = GFS2_SB(dir);
577 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Russell Cattelanddee7602007-01-29 17:13:44 -0600578 struct gfs2_holder ghs[3];
579 struct gfs2_rgrpd *rgd;
580 struct gfs2_holder ri_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581 int error;
582
Russell Cattelanddee7602007-01-29 17:13:44 -0600583 error = gfs2_rindex_hold(sdp, &ri_gh);
584 if (error)
585 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000586 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
587 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
588
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100589 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600590 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
591
Bob Peterson72dbf472008-08-12 13:39:29 -0500592 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000593 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500594 goto out_parent;
595
596 error = gfs2_glock_nq(ghs + 1); /* child */
597 if (error)
598 goto out_child;
599
600 error = gfs2_glock_nq(ghs + 2); /* rgrp */
601 if (error)
602 goto out_rgrp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000603
604 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
605 if (error)
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 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500610 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000611 error = -EIO;
612 goto out_gunlock;
613 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000614 if (ip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000615 error = -ENOTEMPTY;
616 goto out_gunlock;
617 }
618
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400619 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + 3 * RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000620 if (error)
621 goto out_gunlock;
622
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400623 error = gfs2_rmdiri(dip, &dentry->d_name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000624
625 gfs2_trans_end(sdp);
626
Steven Whitehousea91ea692006-09-04 12:04:26 -0400627out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500628 gfs2_glock_dq(ghs + 2);
629out_rgrp:
Russell Cattelanddee7602007-01-29 17:13:44 -0600630 gfs2_holder_uninit(ghs + 2);
Bob Peterson72dbf472008-08-12 13:39:29 -0500631 gfs2_glock_dq(ghs + 1);
632out_child:
633 gfs2_holder_uninit(ghs + 1);
634 gfs2_glock_dq(ghs);
635out_parent:
636 gfs2_holder_uninit(ghs);
Russell Cattelanddee7602007-01-29 17:13:44 -0600637 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000638 return error;
639}
640
641/**
642 * gfs2_mknod - Make a special file
643 * @dir: The directory in which the special file will reside
644 * @dentry: The dentry of the special file
645 * @mode: The mode of the special file
646 * @rdev: The device specification of the special file
647 *
648 */
649
650static int gfs2_mknod(struct inode *dir, struct dentry *dentry, int mode,
651 dev_t dev)
652{
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500653 struct gfs2_inode *dip = GFS2_I(dir);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400654 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000655 struct gfs2_holder ghs[2];
656 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000657
658 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
659
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500660 inode = gfs2_createi(ghs, &dentry->d_name, mode, dev);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000661 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000663 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000664 }
665
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000667 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000668 gfs2_inplace_release(dip);
669 gfs2_quota_unlock(dip);
670 gfs2_alloc_put(dip);
671
672 gfs2_glock_dq_uninit_m(2, ghs);
673
David Teiglandb3b94fa2006-01-16 16:50:04 +0000674 d_instantiate(dentry, inode);
675 mark_inode_dirty(inode);
676
677 return 0;
678}
679
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100680/*
681 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
682 * @this: move this
683 * @to: to here
684 *
685 * Follow @to back to the root and make sure we don't encounter @this
686 * Assumes we already hold the rename lock.
687 *
688 * Returns: errno
689 */
690
691static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
692{
693 struct inode *dir = &to->i_inode;
694 struct super_block *sb = dir->i_sb;
695 struct inode *tmp;
696 struct qstr dotdot;
697 int error = 0;
698
699 gfs2_str2qstr(&dotdot, "..");
700
701 igrab(dir);
702
703 for (;;) {
704 if (dir == &this->i_inode) {
705 error = -EINVAL;
706 break;
707 }
708 if (dir == sb->s_root->d_inode) {
709 error = 0;
710 break;
711 }
712
713 tmp = gfs2_lookupi(dir, &dotdot, 1);
714 if (IS_ERR(tmp)) {
715 error = PTR_ERR(tmp);
716 break;
717 }
718
719 iput(dir);
720 dir = tmp;
721 }
722
723 iput(dir);
724
725 return error;
726}
727
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728/**
729 * gfs2_rename - Rename a file
730 * @odir: Parent directory of old file name
731 * @odentry: The old dentry of the file
732 * @ndir: Parent directory of new file name
733 * @ndentry: The new dentry of the file
734 *
735 * Returns: errno
736 */
737
738static int gfs2_rename(struct inode *odir, struct dentry *odentry,
739 struct inode *ndir, struct dentry *ndentry)
740{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400741 struct gfs2_inode *odip = GFS2_I(odir);
742 struct gfs2_inode *ndip = GFS2_I(ndir);
743 struct gfs2_inode *ip = GFS2_I(odentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744 struct gfs2_inode *nip = NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400745 struct gfs2_sbd *sdp = GFS2_SB(odir);
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100746 struct gfs2_holder ghs[5], r_gh = { .gh_gl = NULL, };
Russell Cattelanddee7602007-01-29 17:13:44 -0600747 struct gfs2_rgrpd *nrgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000748 unsigned int num_gh;
749 int dir_rename = 0;
Steven Whitehouse24b977b2009-12-09 13:55:12 +0000750 int alloc_required = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000751 unsigned int x;
752 int error;
753
David Teiglandb3b94fa2006-01-16 16:50:04 +0000754 if (ndentry->d_inode) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400755 nip = GFS2_I(ndentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 if (ip == nip)
757 return 0;
758 }
759
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100761 if (odip != ndip) {
762 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
763 0, &r_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000764 if (error)
765 goto out;
766
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100767 if (S_ISDIR(ip->i_inode.i_mode)) {
768 dir_rename = 1;
769 /* don't move a dirctory into it's subdir */
770 error = gfs2_ok_to_move(ip, ndip);
771 if (error)
772 goto out_gunlock_r;
773 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774 }
775
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400776 num_gh = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000777 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400778 if (odip != ndip) {
779 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
780 num_gh++;
781 }
782 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
783 num_gh++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000784
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400785 if (nip) {
786 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
787 num_gh++;
Russell Cattelanddee7602007-01-29 17:13:44 -0600788 /* grab the resource lock for unlink flag twiddling
789 * this is the case of the target file already existing
790 * so we unlink before doing the rename
791 */
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100792 nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600793 if (nrgd)
794 gfs2_holder_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh++);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400795 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796
Bob Peterson72dbf472008-08-12 13:39:29 -0500797 for (x = 0; x < num_gh; x++) {
798 error = gfs2_glock_nq(ghs + x);
799 if (error)
800 goto out_gunlock;
801 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802
803 /* Check out the old directory */
804
805 error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
806 if (error)
807 goto out_gunlock;
808
809 /* Check out the new directory */
810
811 if (nip) {
812 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
813 if (error)
814 goto out_gunlock;
815
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500816 if (S_ISDIR(nip->i_inode.i_mode)) {
Steven Whitehousead6203f2008-11-03 13:59:19 +0000817 if (nip->i_entries < 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 if (gfs2_consist_inode(nip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500819 gfs2_dinode_print(nip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 error = -EIO;
821 goto out_gunlock;
822 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000823 if (nip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 error = -ENOTEMPTY;
825 goto out_gunlock;
826 }
827 }
828 } else {
Miklos Szeredif58ba882008-07-02 21:12:01 +0200829 error = gfs2_permission(ndir, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 if (error)
831 goto out_gunlock;
832
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100833 error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834 switch (error) {
835 case -ENOENT:
836 error = 0;
837 break;
838 case 0:
839 error = -EEXIST;
840 default:
841 goto out_gunlock;
842 };
843
844 if (odip != ndip) {
Steven Whitehouse4f561102006-11-01 14:04:17 -0500845 if (!ndip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 error = -EINVAL;
847 goto out_gunlock;
848 }
Steven Whitehousead6203f2008-11-03 13:59:19 +0000849 if (ndip->i_entries == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850 error = -EFBIG;
851 goto out_gunlock;
852 }
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500853 if (S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse4f561102006-11-01 14:04:17 -0500854 ndip->i_inode.i_nlink == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000855 error = -EMLINK;
856 goto out_gunlock;
857 }
858 }
859 }
860
861 /* Check out the dir to be renamed */
862
863 if (dir_rename) {
Miklos Szeredif58ba882008-07-02 21:12:01 +0200864 error = gfs2_permission(odentry->d_inode, MAY_WRITE);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000865 if (error)
866 goto out_gunlock;
867 }
868
Steven Whitehouse24b977b2009-12-09 13:55:12 +0000869 if (nip == NULL)
870 alloc_required = gfs2_diradd_alloc_required(ndir, &ndentry->d_name);
871 error = alloc_required;
Steven Whitehousec7526662006-03-20 12:30:04 -0500872 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -0500874 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000875
876 if (alloc_required) {
877 struct gfs2_alloc *al = gfs2_alloc_get(ndip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300878 if (!al) {
879 error = -ENOMEM;
880 goto out_gunlock;
881 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000882
Steven Whitehoused82661d2008-03-10 15:34:50 +0000883 error = gfs2_quota_lock_check(ndip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884 if (error)
885 goto out_alloc;
886
David Teiglandb3b94fa2006-01-16 16:50:04 +0000887 al->al_requested = sdp->sd_max_dirres;
888
889 error = gfs2_inplace_reserve(ndip);
890 if (error)
891 goto out_gunlock_q;
892
Steven Whitehousefe1bded2006-04-18 10:09:15 -0400893 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100894 al->al_rgd->rd_length +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895 4 * RES_DINODE + 4 * RES_LEAF +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500896 RES_STATFS + RES_QUOTA + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897 if (error)
898 goto out_ipreserv;
899 } else {
900 error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500901 5 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000902 if (error)
903 goto out_gunlock;
904 }
905
906 /* Remove the target file, if it exists */
907
908 if (nip) {
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500909 if (S_ISDIR(nip->i_inode.i_mode))
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400910 error = gfs2_rmdiri(ndip, &ndentry->d_name, nip);
911 else {
912 error = gfs2_dir_del(ndip, &ndentry->d_name);
913 if (error)
914 goto out_end_trans;
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500915 error = gfs2_change_nlink(nip, -1);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400916 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000917 if (error)
918 goto out_end_trans;
919 }
920
921 if (dir_rename) {
922 struct qstr name;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500923 gfs2_str2qstr(&name, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924
925 error = gfs2_change_nlink(ndip, +1);
926 if (error)
927 goto out_end_trans;
928 error = gfs2_change_nlink(odip, -1);
929 if (error)
930 goto out_end_trans;
931
Steven Whitehouseffed8ab2007-06-07 11:29:35 +0100932 error = gfs2_dir_mvino(ip, &name, ndip, DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000933 if (error)
934 goto out_end_trans;
935 } else {
936 struct buffer_head *dibh;
937 error = gfs2_meta_inode_buffer(ip, &dibh);
938 if (error)
939 goto out_end_trans;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100940 ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000941 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500942 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000943 brelse(dibh);
944 }
945
946 error = gfs2_dir_del(odip, &odentry->d_name);
947 if (error)
948 goto out_end_trans;
949
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100950 error = gfs2_dir_add(ndir, &ndentry->d_name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951 if (error)
952 goto out_end_trans;
953
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400954out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400956out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 if (alloc_required)
958 gfs2_inplace_release(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400959out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960 if (alloc_required)
961 gfs2_quota_unlock(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400962out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000963 if (alloc_required)
964 gfs2_alloc_put(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400965out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500966 while (x--) {
967 gfs2_glock_dq(ghs + x);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968 gfs2_holder_uninit(ghs + x);
Bob Peterson72dbf472008-08-12 13:39:29 -0500969 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400970out_gunlock_r:
Steven Whitehouse0188d6c2008-08-26 09:38:26 +0100971 if (r_gh.gh_gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000972 gfs2_glock_dq_uninit(&r_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400973out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000974 return error;
975}
976
977/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000978 * gfs2_follow_link - Follow a symbolic link
979 * @dentry: The dentry of the link
980 * @nd: Data that we pass to vfs_follow_link()
981 *
Al Viroc177c2a2010-01-14 00:59:16 -0500982 * This can handle symlinks of any size.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983 *
984 * Returns: 0 on success or error code
985 */
986
987static void *gfs2_follow_link(struct dentry *dentry, struct nameidata *nd)
988{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400989 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Al Viroc177c2a2010-01-14 00:59:16 -0500990 struct gfs2_holder i_gh;
991 struct buffer_head *dibh;
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100992 unsigned int x, size;
Al Viroc177c2a2010-01-14 00:59:16 -0500993 char *buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000994 int error;
995
Al Viroc177c2a2010-01-14 00:59:16 -0500996 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
997 error = gfs2_glock_nq(&i_gh);
998 if (error) {
999 gfs2_holder_uninit(&i_gh);
1000 nd_set_link(nd, ERR_PTR(error));
1001 return NULL;
1002 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001003
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001004 size = (unsigned int)i_size_read(&ip->i_inode);
1005 if (size == 0) {
Al Viroc177c2a2010-01-14 00:59:16 -05001006 gfs2_consist_inode(ip);
1007 buf = ERR_PTR(-EIO);
1008 goto out;
1009 }
1010
1011 error = gfs2_meta_inode_buffer(ip, &dibh);
1012 if (error) {
1013 buf = ERR_PTR(error);
1014 goto out;
1015 }
1016
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001017 x = size + 1;
Al Viroc177c2a2010-01-14 00:59:16 -05001018 buf = kmalloc(x, GFP_NOFS);
1019 if (!buf)
1020 buf = ERR_PTR(-ENOMEM);
1021 else
1022 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1023 brelse(dibh);
1024out:
1025 gfs2_glock_dq_uninit(&i_gh);
1026 nd_set_link(nd, buf);
1027 return NULL;
1028}
1029
1030static void gfs2_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
1031{
1032 char *s = nd_get_link(nd);
1033 if (!IS_ERR(s))
1034 kfree(s);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035}
1036
1037/**
1038 * gfs2_permission -
1039 * @inode:
1040 * @mask:
1041 * @nd: passed from Linux VFS, ignored by us
1042 *
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001043 * This may be called from the VFS directly, or from within GFS2 with the
1044 * inode locked, so we look to see if the glock is already locked and only
1045 * lock the glock if its not already been done.
1046 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001047 * Returns: errno
1048 */
1049
Miklos Szeredif58ba882008-07-02 21:12:01 +02001050int gfs2_permission(struct inode *inode, int mask)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001051{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001052 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001053 struct gfs2_holder i_gh;
1054 int error;
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001055 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001056
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001057 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001058 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
1059 if (error)
1060 return error;
1061 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001062 }
1063
Miklos Szeredif58ba882008-07-02 21:12:01 +02001064 if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
1065 error = -EACCES;
1066 else
1067 error = generic_permission(inode, mask, gfs2_check_acl);
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001068 if (unlock)
1069 gfs2_glock_dq_uninit(&i_gh);
1070
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071 return error;
1072}
1073
David Teiglandb3b94fa2006-01-16 16:50:04 +00001074static int setattr_chown(struct inode *inode, struct iattr *attr)
1075{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001076 struct gfs2_inode *ip = GFS2_I(inode);
1077 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -04001079 u32 ouid, ogid, nuid, ngid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080 int error;
1081
Steven Whitehouse2933f922006-11-01 13:23:29 -05001082 ouid = inode->i_uid;
1083 ogid = inode->i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084 nuid = attr->ia_uid;
1085 ngid = attr->ia_gid;
1086
1087 if (!(attr->ia_valid & ATTR_UID) || ouid == nuid)
1088 ouid = nuid = NO_QUOTA_CHANGE;
1089 if (!(attr->ia_valid & ATTR_GID) || ogid == ngid)
1090 ogid = ngid = NO_QUOTA_CHANGE;
1091
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001092 if (!gfs2_alloc_get(ip))
1093 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094
1095 error = gfs2_quota_lock(ip, nuid, ngid);
1096 if (error)
1097 goto out_alloc;
1098
1099 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
1100 error = gfs2_quota_check(ip, nuid, ngid);
1101 if (error)
1102 goto out_gunlock_q;
1103 }
1104
1105 error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
1106 if (error)
1107 goto out_gunlock_q;
1108
1109 error = gfs2_meta_inode_buffer(ip, &dibh);
1110 if (error)
1111 goto out_end_trans;
1112
Christoph Hellwig10257742010-06-04 11:30:02 +02001113 if ((attr->ia_valid & ATTR_SIZE) &&
1114 attr->ia_size != i_size_read(inode)) {
1115 int error;
1116
1117 error = vmtruncate(inode, attr->ia_size);
1118 gfs2_assert_warn(sdp, !error);
1119 }
1120
1121 setattr_copy(inode, attr);
1122 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001124 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001125 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001126 brelse(dibh);
1127
1128 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001129 u64 blocks = gfs2_get_inode_blocks(&ip->i_inode);
1130 gfs2_quota_change(ip, -blocks, ouid, ogid);
1131 gfs2_quota_change(ip, blocks, nuid, ngid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001132 }
1133
Steven Whitehousea91ea692006-09-04 12:04:26 -04001134out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001135 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001136out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001137 gfs2_quota_unlock(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001138out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001140 return error;
1141}
1142
1143/**
1144 * gfs2_setattr - Change attributes on an inode
1145 * @dentry: The dentry which is changing
1146 * @attr: The structure describing the change
1147 *
1148 * The VFS layer wants to change one or more of an inodes attributes. Write
1149 * that change out to disk.
1150 *
1151 * Returns: errno
1152 */
1153
1154static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
1155{
1156 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001157 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001158 struct gfs2_holder i_gh;
1159 int error;
1160
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1162 if (error)
1163 return error;
1164
1165 error = -EPERM;
1166 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1167 goto out;
1168
1169 error = inode_change_ok(inode, attr);
1170 if (error)
1171 goto out;
1172
1173 if (attr->ia_valid & ATTR_SIZE)
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001174 error = gfs2_setattr_size(inode, attr->ia_size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001175 else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
1176 error = setattr_chown(inode, attr);
1177 else if ((attr->ia_valid & ATTR_MODE) && IS_POSIXACL(inode))
1178 error = gfs2_acl_chmod(ip, attr);
1179 else
1180 error = gfs2_setattr_simple(ip, attr);
1181
Steven Whitehousea91ea692006-09-04 12:04:26 -04001182out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001183 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001184 if (!error)
1185 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001186 return error;
1187}
1188
1189/**
1190 * gfs2_getattr - Read out an inode's attributes
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001191 * @mnt: The vfsmount the inode is being accessed from
David Teiglandb3b94fa2006-01-16 16:50:04 +00001192 * @dentry: The dentry to stat
1193 * @stat: The inode's stats
1194 *
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001195 * This may be called from the VFS directly, or from within GFS2 with the
1196 * inode locked, so we look to see if the glock is already locked and only
1197 * lock the glock if its not already been done. Note that its the NFS
1198 * readdirplus operation which causes this to be called (from filldir)
1199 * with the glock already held.
1200 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001201 * Returns: errno
1202 */
1203
1204static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry,
1205 struct kstat *stat)
1206{
1207 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001208 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001209 struct gfs2_holder gh;
1210 int error;
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001211 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001212
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001213 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001214 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1215 if (error)
1216 return error;
1217 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001218 }
1219
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001220 generic_fillattr(inode, stat);
Steven Whitehoused7c103d2007-01-25 17:14:59 +00001221 if (unlock)
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001222 gfs2_glock_dq_uninit(&gh);
1223
1224 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001225}
1226
1227static int gfs2_setxattr(struct dentry *dentry, const char *name,
1228 const void *data, size_t size, int flags)
1229{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001230 struct inode *inode = dentry->d_inode;
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001231 struct gfs2_inode *ip = GFS2_I(inode);
1232 struct gfs2_holder gh;
1233 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001235 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1236 ret = gfs2_glock_nq(&gh);
1237 if (ret == 0) {
1238 ret = generic_setxattr(dentry, name, data, size, flags);
1239 gfs2_glock_dq(&gh);
1240 }
1241 gfs2_holder_uninit(&gh);
1242 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001243}
1244
1245static ssize_t gfs2_getxattr(struct dentry *dentry, const char *name,
1246 void *data, size_t size)
1247{
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001248 struct inode *inode = dentry->d_inode;
1249 struct gfs2_inode *ip = GFS2_I(inode);
1250 struct gfs2_holder gh;
1251 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001252
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001253 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1254 ret = gfs2_glock_nq(&gh);
1255 if (ret == 0) {
1256 ret = generic_getxattr(dentry, name, data, size);
1257 gfs2_glock_dq(&gh);
1258 }
1259 gfs2_holder_uninit(&gh);
1260 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001261}
1262
1263static int gfs2_removexattr(struct dentry *dentry, const char *name)
1264{
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001265 struct inode *inode = dentry->d_inode;
1266 struct gfs2_inode *ip = GFS2_I(inode);
1267 struct gfs2_holder gh;
1268 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001269
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001270 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1271 ret = gfs2_glock_nq(&gh);
1272 if (ret == 0) {
1273 ret = generic_removexattr(dentry, name);
1274 gfs2_glock_dq(&gh);
1275 }
1276 gfs2_holder_uninit(&gh);
1277 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278}
1279
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001280static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1281 u64 start, u64 len)
1282{
1283 struct gfs2_inode *ip = GFS2_I(inode);
1284 struct gfs2_holder gh;
1285 int ret;
1286
1287 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
1288 if (ret)
1289 return ret;
1290
1291 mutex_lock(&inode->i_mutex);
1292
1293 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
1294 if (ret)
1295 goto out;
1296
1297 if (gfs2_is_stuffed(ip)) {
1298 u64 phys = ip->i_no_addr << inode->i_blkbits;
1299 u64 size = i_size_read(inode);
1300 u32 flags = FIEMAP_EXTENT_LAST|FIEMAP_EXTENT_NOT_ALIGNED|
1301 FIEMAP_EXTENT_DATA_INLINE;
1302 phys += sizeof(struct gfs2_dinode);
1303 phys += start;
1304 if (start + len > size)
1305 len = size - start;
1306 if (start < size)
1307 ret = fiemap_fill_next_extent(fieinfo, start, phys,
1308 len, flags);
1309 if (ret == 1)
1310 ret = 0;
1311 } else {
1312 ret = __generic_block_fiemap(inode, fieinfo, start, len,
1313 gfs2_block_map);
1314 }
1315
1316 gfs2_glock_dq_uninit(&gh);
1317out:
1318 mutex_unlock(&inode->i_mutex);
1319 return ret;
1320}
1321
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001322const struct inode_operations gfs2_file_iops = {
Al Viroe6305c42008-07-15 21:03:57 -04001323 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001324 .setattr = gfs2_setattr,
1325 .getattr = gfs2_getattr,
1326 .setxattr = gfs2_setxattr,
1327 .getxattr = gfs2_getxattr,
1328 .listxattr = gfs2_listxattr,
1329 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001330 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001331};
1332
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001333const struct inode_operations gfs2_dir_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001334 .create = gfs2_create,
1335 .lookup = gfs2_lookup,
1336 .link = gfs2_link,
1337 .unlink = gfs2_unlink,
1338 .symlink = gfs2_symlink,
1339 .mkdir = gfs2_mkdir,
1340 .rmdir = gfs2_rmdir,
1341 .mknod = gfs2_mknod,
1342 .rename = gfs2_rename,
Al Viroe6305c42008-07-15 21:03:57 -04001343 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001344 .setattr = gfs2_setattr,
1345 .getattr = gfs2_getattr,
1346 .setxattr = gfs2_setxattr,
1347 .getxattr = gfs2_getxattr,
1348 .listxattr = gfs2_listxattr,
1349 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001350 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001351};
1352
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001353const struct inode_operations gfs2_symlink_iops = {
Al Viroc177c2a2010-01-14 00:59:16 -05001354 .readlink = generic_readlink,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001355 .follow_link = gfs2_follow_link,
Al Viroc177c2a2010-01-14 00:59:16 -05001356 .put_link = gfs2_put_link,
Al Viroe6305c42008-07-15 21:03:57 -04001357 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001358 .setattr = gfs2_setattr,
1359 .getattr = gfs2_getattr,
1360 .setxattr = gfs2_setxattr,
1361 .getxattr = gfs2_getxattr,
1362 .listxattr = gfs2_listxattr,
1363 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001364 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001365};
1366