blob: f8ecfec4064bd1fcd502b28bdf786ee5872ef149 [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>
15#include <linux/utsname.h>
16#include <linux/mm.h>
17#include <linux/xattr.h>
18#include <linux/posix_acl.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050020#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020021#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include <asm/uaccess.h>
23
24#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050025#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000026#include "acl.h"
27#include "bmap.h"
28#include "dir.h"
29#include "eaops.h"
30#include "eattr.h"
31#include "glock.h"
32#include "inode.h"
33#include "meta_io.h"
34#include "ops_dentry.h"
35#include "ops_inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000036#include "quota.h"
37#include "rgrp.h"
38#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050039#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
41/**
42 * gfs2_create - Create a file
43 * @dir: The directory in which to create the file
44 * @dentry: The dentry of the new file
45 * @mode: The mode of the new file
46 *
47 * Returns: errno
48 */
49
50static int gfs2_create(struct inode *dir, struct dentry *dentry,
51 int mode, struct nameidata *nd)
52{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040053 struct gfs2_inode *dip = GFS2_I(dir);
54 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +000055 struct gfs2_holder ghs[2];
56 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +000057
David Teiglandb3b94fa2006-01-16 16:50:04 +000058 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
59
60 for (;;) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -050061 inode = gfs2_createi(ghs, &dentry->d_name, S_IFREG | mode, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +000062 if (!IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000063 gfs2_trans_end(sdp);
64 if (dip->i_alloc.al_rgd)
65 gfs2_inplace_release(dip);
66 gfs2_quota_unlock(dip);
67 gfs2_alloc_put(dip);
68 gfs2_glock_dq_uninit_m(2, ghs);
Steven Whitehouse3a8476d2006-06-19 09:10:39 -040069 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 break;
Steven Whitehouse7359a192006-02-13 12:27:43 +000071 } else if (PTR_ERR(inode) != -EEXIST ||
David Teiglandb3b94fa2006-01-16 16:50:04 +000072 (nd->intent.open.flags & O_EXCL)) {
73 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +000074 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000075 }
76
Steven Whitehousec7526662006-03-20 12:30:04 -050077 inode = gfs2_lookupi(dir, &dentry->d_name, 0, nd);
78 if (inode) {
79 if (!IS_ERR(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -050080 gfs2_holder_uninit(ghs);
81 break;
82 } else {
83 gfs2_holder_uninit(ghs);
84 return PTR_ERR(inode);
85 }
David Teiglandb3b94fa2006-01-16 16:50:04 +000086 }
87 }
88
David Teiglandb3b94fa2006-01-16 16:50:04 +000089 d_instantiate(dentry, inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000090
91 return 0;
92}
93
94/**
95 * gfs2_lookup - Look up a filename in a directory and return its inode
96 * @dir: The directory inode
97 * @dentry: The dentry of the new inode
98 * @nd: passed from Linux VFS, ignored by us
99 *
100 * Called by the VFS layer. Lock dir and call gfs2_lookupi()
101 *
102 * Returns: errno
103 */
104
105static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
106 struct nameidata *nd)
107{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000108 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109
Steven Whitehousec7526662006-03-20 12:30:04 -0500110 dentry->d_op = &gfs2_dops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111
Steven Whitehousec7526662006-03-20 12:30:04 -0500112 inode = gfs2_lookupi(dir, &dentry->d_name, 0, nd);
113 if (inode && IS_ERR(inode))
114 return ERR_PTR(PTR_ERR(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000115
116 if (inode)
117 return d_splice_alias(inode, dentry);
118 d_add(dentry, inode);
119
120 return NULL;
121}
122
123/**
124 * gfs2_link - Link to a file
125 * @old_dentry: The inode to link
126 * @dir: Add link to this directory
127 * @dentry: The name of the link
128 *
129 * Link the inode in "old_dentry" into the directory "dir" with the
130 * name in "dentry".
131 *
132 * Returns: errno
133 */
134
135static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
136 struct dentry *dentry)
137{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400138 struct gfs2_inode *dip = GFS2_I(dir);
139 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140 struct inode *inode = old_dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400141 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000142 struct gfs2_holder ghs[2];
143 int alloc_required;
144 int error;
145
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500146 if (S_ISDIR(inode->i_mode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147 return -EPERM;
148
149 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
150 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
151
152 error = gfs2_glock_nq_m(2, ghs);
153 if (error)
154 goto out;
155
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400156 error = permission(dir, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 if (error)
158 goto out_gunlock;
159
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100160 error = gfs2_dir_check(dir, &dentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 switch (error) {
162 case -ENOENT:
163 break;
164 case 0:
165 error = -EEXIST;
166 default:
167 goto out_gunlock;
168 }
169
170 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500171 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000172 goto out_gunlock;
173 error = -EFBIG;
Steven Whitehousecd915492006-09-04 12:49:07 -0400174 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175 goto out_gunlock;
176 error = -EPERM;
177 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
178 goto out_gunlock;
179 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500180 if (!ip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181 goto out_gunlock;
182 error = -EMLINK;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500183 if (ip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000184 goto out_gunlock;
185
Steven Whitehousec7526662006-03-20 12:30:04 -0500186 alloc_required = error = gfs2_diradd_alloc_required(dir, &dentry->d_name);
187 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000188 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -0500189 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190
191 if (alloc_required) {
192 struct gfs2_alloc *al = gfs2_alloc_get(dip);
193
194 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
195 if (error)
196 goto out_alloc;
197
Steven Whitehouse2933f922006-11-01 13:23:29 -0500198 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000199 if (error)
200 goto out_gunlock_q;
201
202 al->al_requested = sdp->sd_max_dirres;
203
204 error = gfs2_inplace_reserve(dip);
205 if (error)
206 goto out_gunlock_q;
207
Steven Whitehouse1b502592006-05-18 14:10:52 -0400208 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209 al->al_rgd->rd_ri.ri_length +
210 2 * RES_DINODE + RES_STATFS +
211 RES_QUOTA, 0);
212 if (error)
213 goto out_ipres;
214 } else {
215 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
216 if (error)
217 goto out_ipres;
218 }
219
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100220 error = gfs2_dir_add(dir, &dentry->d_name, ip, IF2DT(inode->i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000221 if (error)
222 goto out_end_trans;
223
224 error = gfs2_change_nlink(ip, +1);
225
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400226out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400228out_ipres:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229 if (alloc_required)
230 gfs2_inplace_release(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400231out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000232 if (alloc_required)
233 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400234out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235 if (alloc_required)
236 gfs2_alloc_put(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400237out_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000238 gfs2_glock_dq_m(2, ghs);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400239out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240 gfs2_holder_uninit(ghs);
241 gfs2_holder_uninit(ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000242 if (!error) {
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400243 atomic_inc(&inode->i_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000244 d_instantiate(dentry, inode);
245 mark_inode_dirty(inode);
246 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000247 return error;
248}
249
250/**
251 * gfs2_unlink - Unlink a file
252 * @dir: The inode of the directory containing the file to unlink
253 * @dentry: The file itself
254 *
255 * Unlink a file. Call gfs2_unlinki()
256 *
257 * Returns: errno
258 */
259
260static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
261{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400262 struct gfs2_inode *dip = GFS2_I(dir);
263 struct gfs2_sbd *sdp = GFS2_SB(dir);
264 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Russell Cattelanddee7602007-01-29 17:13:44 -0600265 struct gfs2_holder ghs[3];
266 struct gfs2_rgrpd *rgd;
267 struct gfs2_holder ri_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000268 int error;
269
Russell Cattelanddee7602007-01-29 17:13:44 -0600270 error = gfs2_rindex_hold(sdp, &ri_gh);
271 if (error)
272 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273
Russell Cattelanddee7602007-01-29 17:13:44 -0600274 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
275 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
276
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100277 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600278 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
279
280
281 error = gfs2_glock_nq_m(3, ghs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000282 if (error)
283 goto out;
284
285 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
286 if (error)
287 goto out_gunlock;
288
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400289 error = gfs2_trans_begin(sdp, 2*RES_DINODE + RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000290 if (error)
291 goto out_gunlock;
292
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400293 error = gfs2_dir_del(dip, &dentry->d_name);
294 if (error)
295 goto out_end_trans;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400297 error = gfs2_change_nlink(ip, -1);
298
299out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000300 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400301out_gunlock:
Russell Cattelanddee7602007-01-29 17:13:44 -0600302 gfs2_glock_dq_m(3, ghs);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400303out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304 gfs2_holder_uninit(ghs);
305 gfs2_holder_uninit(ghs + 1);
Russell Cattelanddee7602007-01-29 17:13:44 -0600306 gfs2_holder_uninit(ghs + 2);
307 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000308 return error;
309}
310
311/**
312 * gfs2_symlink - Create a symlink
313 * @dir: The directory to create the symlink in
314 * @dentry: The dentry to put the symlink in
315 * @symname: The thing which the link points to
316 *
317 * Returns: errno
318 */
319
320static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
321 const char *symname)
322{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400323 struct gfs2_inode *dip = GFS2_I(dir), *ip;
324 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325 struct gfs2_holder ghs[2];
326 struct inode *inode;
327 struct buffer_head *dibh;
328 int size;
329 int error;
330
David Teiglandb3b94fa2006-01-16 16:50:04 +0000331 /* Must be stuffed with a null terminator for gfs2_follow_link() */
332 size = strlen(symname);
333 if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode) - 1)
334 return -ENAMETOOLONG;
335
336 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
337
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500338 inode = gfs2_createi(ghs, &dentry->d_name, S_IFLNK | S_IRWXUGO, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000339 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000340 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000341 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342 }
343
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500344 ip = ghs[1].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000345
346 ip->i_di.di_size = size;
347
348 error = gfs2_meta_inode_buffer(ip, &dibh);
349
350 if (!gfs2_assert_withdraw(sdp, !error)) {
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500351 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000352 memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname,
353 size);
354 brelse(dibh);
355 }
356
357 gfs2_trans_end(sdp);
358 if (dip->i_alloc.al_rgd)
359 gfs2_inplace_release(dip);
360 gfs2_quota_unlock(dip);
361 gfs2_alloc_put(dip);
362
363 gfs2_glock_dq_uninit_m(2, ghs);
364
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365 d_instantiate(dentry, inode);
366 mark_inode_dirty(inode);
367
368 return 0;
369}
370
371/**
372 * gfs2_mkdir - Make a directory
373 * @dir: The parent directory of the new one
374 * @dentry: The dentry of the new directory
375 * @mode: The mode of the new directory
376 *
377 * Returns: errno
378 */
379
380static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode)
381{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400382 struct gfs2_inode *dip = GFS2_I(dir), *ip;
383 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000384 struct gfs2_holder ghs[2];
385 struct inode *inode;
386 struct buffer_head *dibh;
387 int error;
388
David Teiglandb3b94fa2006-01-16 16:50:04 +0000389 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
390
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500391 inode = gfs2_createi(ghs, &dentry->d_name, S_IFDIR | mode, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000392 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000393 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000394 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000395 }
396
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500397 ip = ghs[1].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000398
Steven Whitehouse4f561102006-11-01 14:04:17 -0500399 ip->i_inode.i_nlink = 2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400 ip->i_di.di_size = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode);
401 ip->i_di.di_flags |= GFS2_DIF_JDATA;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000402 ip->i_di.di_entries = 2;
403
404 error = gfs2_meta_inode_buffer(ip, &dibh);
405
406 if (!gfs2_assert_withdraw(sdp, !error)) {
407 struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -0500408 struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500409 struct qstr str;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500411 gfs2_str2qstr(&str, ".");
Steven Whitehousec7526662006-03-20 12:30:04 -0500412 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
413 gfs2_qstr2dirent(&str, GFS2_DIRENT_SIZE(str.len), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000414 dent->de_inum = di->di_num; /* already GFS2 endian */
Steven Whitehouse7ecdb702006-10-03 21:03:35 -0400415 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000416 di->di_entries = cpu_to_be32(1);
417
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500418 gfs2_str2qstr(&str, "..");
Steven Whitehousec7526662006-03-20 12:30:04 -0500419 dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
420 gfs2_qstr2dirent(&str, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000421
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100422 gfs2_inum_out(dip, dent);
Steven Whitehouse7ecdb702006-10-03 21:03:35 -0400423 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500425 gfs2_dinode_out(ip, di);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000426
427 brelse(dibh);
428 }
429
430 error = gfs2_change_nlink(dip, +1);
431 gfs2_assert_withdraw(sdp, !error); /* dip already pinned */
432
433 gfs2_trans_end(sdp);
434 if (dip->i_alloc.al_rgd)
435 gfs2_inplace_release(dip);
436 gfs2_quota_unlock(dip);
437 gfs2_alloc_put(dip);
438
439 gfs2_glock_dq_uninit_m(2, ghs);
440
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441 d_instantiate(dentry, inode);
442 mark_inode_dirty(inode);
443
444 return 0;
445}
446
447/**
448 * gfs2_rmdir - Remove a directory
449 * @dir: The parent directory of the directory to be removed
450 * @dentry: The dentry of the directory to remove
451 *
452 * Remove a directory. Call gfs2_rmdiri()
453 *
454 * Returns: errno
455 */
456
457static int gfs2_rmdir(struct inode *dir, struct dentry *dentry)
458{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400459 struct gfs2_inode *dip = GFS2_I(dir);
460 struct gfs2_sbd *sdp = GFS2_SB(dir);
461 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Russell Cattelanddee7602007-01-29 17:13:44 -0600462 struct gfs2_holder ghs[3];
463 struct gfs2_rgrpd *rgd;
464 struct gfs2_holder ri_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000465 int error;
466
Russell Cattelanddee7602007-01-29 17:13:44 -0600467
468 error = gfs2_rindex_hold(sdp, &ri_gh);
469 if (error)
470 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000471 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
472 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
473
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100474 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600475 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
476
477 error = gfs2_glock_nq_m(3, ghs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478 if (error)
479 goto out;
480
481 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
482 if (error)
483 goto out_gunlock;
484
485 if (ip->i_di.di_entries < 2) {
486 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500487 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000488 error = -EIO;
489 goto out_gunlock;
490 }
491 if (ip->i_di.di_entries > 2) {
492 error = -ENOTEMPTY;
493 goto out_gunlock;
494 }
495
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400496 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + 3 * RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497 if (error)
498 goto out_gunlock;
499
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400500 error = gfs2_rmdiri(dip, &dentry->d_name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501
502 gfs2_trans_end(sdp);
503
Steven Whitehousea91ea692006-09-04 12:04:26 -0400504out_gunlock:
Russell Cattelanddee7602007-01-29 17:13:44 -0600505 gfs2_glock_dq_m(3, ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400506out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507 gfs2_holder_uninit(ghs);
508 gfs2_holder_uninit(ghs + 1);
Russell Cattelanddee7602007-01-29 17:13:44 -0600509 gfs2_holder_uninit(ghs + 2);
510 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511 return error;
512}
513
514/**
515 * gfs2_mknod - Make a special file
516 * @dir: The directory in which the special file will reside
517 * @dentry: The dentry of the special file
518 * @mode: The mode of the special file
519 * @rdev: The device specification of the special file
520 *
521 */
522
523static int gfs2_mknod(struct inode *dir, struct dentry *dentry, int mode,
524 dev_t dev)
525{
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500526 struct gfs2_inode *dip = GFS2_I(dir);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400527 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528 struct gfs2_holder ghs[2];
529 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530
531 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
532
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500533 inode = gfs2_createi(ghs, &dentry->d_name, mode, dev);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000534 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000536 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537 }
538
David Teiglandb3b94fa2006-01-16 16:50:04 +0000539 gfs2_trans_end(sdp);
540 if (dip->i_alloc.al_rgd)
541 gfs2_inplace_release(dip);
542 gfs2_quota_unlock(dip);
543 gfs2_alloc_put(dip);
544
545 gfs2_glock_dq_uninit_m(2, ghs);
546
David Teiglandb3b94fa2006-01-16 16:50:04 +0000547 d_instantiate(dentry, inode);
548 mark_inode_dirty(inode);
549
550 return 0;
551}
552
553/**
554 * gfs2_rename - Rename a file
555 * @odir: Parent directory of old file name
556 * @odentry: The old dentry of the file
557 * @ndir: Parent directory of new file name
558 * @ndentry: The new dentry of the file
559 *
560 * Returns: errno
561 */
562
563static int gfs2_rename(struct inode *odir, struct dentry *odentry,
564 struct inode *ndir, struct dentry *ndentry)
565{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400566 struct gfs2_inode *odip = GFS2_I(odir);
567 struct gfs2_inode *ndip = GFS2_I(ndir);
568 struct gfs2_inode *ip = GFS2_I(odentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000569 struct gfs2_inode *nip = NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400570 struct gfs2_sbd *sdp = GFS2_SB(odir);
Russell Cattelanddee7602007-01-29 17:13:44 -0600571 struct gfs2_holder ghs[5], r_gh;
572 struct gfs2_rgrpd *nrgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000573 unsigned int num_gh;
574 int dir_rename = 0;
575 int alloc_required;
576 unsigned int x;
577 int error;
578
David Teiglandb3b94fa2006-01-16 16:50:04 +0000579 if (ndentry->d_inode) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400580 nip = GFS2_I(ndentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581 if (ip == nip)
582 return 0;
583 }
584
David Teiglandb3b94fa2006-01-16 16:50:04 +0000585 /* Make sure we aren't trying to move a dirctory into it's subdir */
586
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500587 if (S_ISDIR(ip->i_inode.i_mode) && odip != ndip) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000588 dir_rename = 1;
589
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500590 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000591 &r_gh);
592 if (error)
593 goto out;
594
595 error = gfs2_ok_to_move(ip, ndip);
596 if (error)
597 goto out_gunlock_r;
598 }
599
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400600 num_gh = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400602 if (odip != ndip) {
603 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
604 num_gh++;
605 }
606 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
607 num_gh++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000608
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400609 if (nip) {
610 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
611 num_gh++;
Russell Cattelanddee7602007-01-29 17:13:44 -0600612 /* grab the resource lock for unlink flag twiddling
613 * this is the case of the target file already existing
614 * so we unlink before doing the rename
615 */
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100616 nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -0600617 if (nrgd)
618 gfs2_holder_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh++);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -0400619 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000620
621 error = gfs2_glock_nq_m(num_gh, ghs);
622 if (error)
623 goto out_uninit;
624
625 /* Check out the old directory */
626
627 error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
628 if (error)
629 goto out_gunlock;
630
631 /* Check out the new directory */
632
633 if (nip) {
634 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
635 if (error)
636 goto out_gunlock;
637
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500638 if (S_ISDIR(nip->i_inode.i_mode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639 if (nip->i_di.di_entries < 2) {
640 if (gfs2_consist_inode(nip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500641 gfs2_dinode_print(nip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642 error = -EIO;
643 goto out_gunlock;
644 }
645 if (nip->i_di.di_entries > 2) {
646 error = -ENOTEMPTY;
647 goto out_gunlock;
648 }
649 }
650 } else {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400651 error = permission(ndir, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652 if (error)
653 goto out_gunlock;
654
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100655 error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 switch (error) {
657 case -ENOENT:
658 error = 0;
659 break;
660 case 0:
661 error = -EEXIST;
662 default:
663 goto out_gunlock;
664 };
665
666 if (odip != ndip) {
Steven Whitehouse4f561102006-11-01 14:04:17 -0500667 if (!ndip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000668 error = -EINVAL;
669 goto out_gunlock;
670 }
Steven Whitehousecd915492006-09-04 12:49:07 -0400671 if (ndip->i_di.di_entries == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672 error = -EFBIG;
673 goto out_gunlock;
674 }
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500675 if (S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse4f561102006-11-01 14:04:17 -0500676 ndip->i_inode.i_nlink == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000677 error = -EMLINK;
678 goto out_gunlock;
679 }
680 }
681 }
682
683 /* Check out the dir to be renamed */
684
685 if (dir_rename) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400686 error = permission(odentry->d_inode, MAY_WRITE, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687 if (error)
688 goto out_gunlock;
689 }
690
Steven Whitehousec7526662006-03-20 12:30:04 -0500691 alloc_required = error = gfs2_diradd_alloc_required(ndir, &ndentry->d_name);
692 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -0500694 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695
696 if (alloc_required) {
697 struct gfs2_alloc *al = gfs2_alloc_get(ndip);
698
699 error = gfs2_quota_lock(ndip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
700 if (error)
701 goto out_alloc;
702
Steven Whitehouse2933f922006-11-01 13:23:29 -0500703 error = gfs2_quota_check(ndip, ndip->i_inode.i_uid, ndip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000704 if (error)
705 goto out_gunlock_q;
706
707 al->al_requested = sdp->sd_max_dirres;
708
709 error = gfs2_inplace_reserve(ndip);
710 if (error)
711 goto out_gunlock_q;
712
Steven Whitehousefe1bded2006-04-18 10:09:15 -0400713 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000714 al->al_rgd->rd_ri.ri_length +
715 4 * RES_DINODE + 4 * RES_LEAF +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500716 RES_STATFS + RES_QUOTA + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000717 if (error)
718 goto out_ipreserv;
719 } else {
720 error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500721 5 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722 if (error)
723 goto out_gunlock;
724 }
725
726 /* Remove the target file, if it exists */
727
728 if (nip) {
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500729 if (S_ISDIR(nip->i_inode.i_mode))
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400730 error = gfs2_rmdiri(ndip, &ndentry->d_name, nip);
731 else {
732 error = gfs2_dir_del(ndip, &ndentry->d_name);
733 if (error)
734 goto out_end_trans;
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500735 error = gfs2_change_nlink(nip, -1);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400736 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000737 if (error)
738 goto out_end_trans;
739 }
740
741 if (dir_rename) {
742 struct qstr name;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500743 gfs2_str2qstr(&name, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744
745 error = gfs2_change_nlink(ndip, +1);
746 if (error)
747 goto out_end_trans;
748 error = gfs2_change_nlink(odip, -1);
749 if (error)
750 goto out_end_trans;
751
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100752 error = gfs2_dir_mvino(ip, &name, nip, DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000753 if (error)
754 goto out_end_trans;
755 } else {
756 struct buffer_head *dibh;
757 error = gfs2_meta_inode_buffer(ip, &dibh);
758 if (error)
759 goto out_end_trans;
Eric Sandeenddfe0622007-01-18 16:41:23 -0600760 ip->i_inode.i_ctime = CURRENT_TIME_SEC;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000761 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500762 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 brelse(dibh);
764 }
765
766 error = gfs2_dir_del(odip, &odentry->d_name);
767 if (error)
768 goto out_end_trans;
769
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100770 error = gfs2_dir_add(ndir, &ndentry->d_name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000771 if (error)
772 goto out_end_trans;
773
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400774out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400776out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000777 if (alloc_required)
778 gfs2_inplace_release(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400779out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780 if (alloc_required)
781 gfs2_quota_unlock(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400782out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000783 if (alloc_required)
784 gfs2_alloc_put(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400785out_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 gfs2_glock_dq_m(num_gh, ghs);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400787out_uninit:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000788 for (x = 0; x < num_gh; x++)
789 gfs2_holder_uninit(ghs + x);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400790out_gunlock_r:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000791 if (dir_rename)
792 gfs2_glock_dq_uninit(&r_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400793out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000794 return error;
795}
796
797/**
798 * gfs2_readlink - Read the value of a symlink
799 * @dentry: the symlink
800 * @buf: the buffer to read the symlink data into
801 * @size: the size of the buffer
802 *
803 * Returns: errno
804 */
805
806static int gfs2_readlink(struct dentry *dentry, char __user *user_buf,
807 int user_size)
808{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400809 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810 char array[GFS2_FAST_NAME_SIZE], *buf = array;
811 unsigned int len = GFS2_FAST_NAME_SIZE;
812 int error;
813
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814 error = gfs2_readlinki(ip, &buf, &len);
815 if (error)
816 return error;
817
818 if (user_size > len - 1)
819 user_size = len - 1;
820
821 if (copy_to_user(user_buf, buf, user_size))
822 error = -EFAULT;
823 else
824 error = user_size;
825
826 if (buf != array)
827 kfree(buf);
828
829 return error;
830}
831
832/**
833 * gfs2_follow_link - Follow a symbolic link
834 * @dentry: The dentry of the link
835 * @nd: Data that we pass to vfs_follow_link()
836 *
837 * This can handle symlinks of any size. It is optimised for symlinks
838 * under GFS2_FAST_NAME_SIZE.
839 *
840 * Returns: 0 on success or error code
841 */
842
843static void *gfs2_follow_link(struct dentry *dentry, struct nameidata *nd)
844{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400845 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 char array[GFS2_FAST_NAME_SIZE], *buf = array;
847 unsigned int len = GFS2_FAST_NAME_SIZE;
848 int error;
849
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850 error = gfs2_readlinki(ip, &buf, &len);
851 if (!error) {
852 error = vfs_follow_link(nd, buf);
853 if (buf != array)
854 kfree(buf);
855 }
856
857 return ERR_PTR(error);
858}
859
860/**
861 * gfs2_permission -
862 * @inode:
863 * @mask:
864 * @nd: passed from Linux VFS, ignored by us
865 *
Steven Whitehouse300c7d72006-11-27 09:55:28 -0500866 * This may be called from the VFS directly, or from within GFS2 with the
867 * inode locked, so we look to see if the glock is already locked and only
868 * lock the glock if its not already been done.
869 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000870 * Returns: errno
871 */
872
873static int gfs2_permission(struct inode *inode, int mask, struct nameidata *nd)
874{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400875 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000876 struct gfs2_holder i_gh;
877 int error;
Steven Whitehouse300c7d72006-11-27 09:55:28 -0500878 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879
Steven Whitehouse300c7d72006-11-27 09:55:28 -0500880 if (gfs2_glock_is_locked_by_me(ip->i_gl) == 0) {
881 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
882 if (error)
883 return error;
884 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000885 }
886
Steven Whitehouse77386e12006-11-29 10:41:49 -0500887 error = generic_permission(inode, mask, gfs2_check_acl);
Steven Whitehouse300c7d72006-11-27 09:55:28 -0500888 if (unlock)
889 gfs2_glock_dq_uninit(&i_gh);
890
David Teiglandb3b94fa2006-01-16 16:50:04 +0000891 return error;
892}
893
894static int setattr_size(struct inode *inode, struct iattr *attr)
895{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400896 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897 int error;
898
899 if (attr->ia_size != ip->i_di.di_size) {
900 error = vmtruncate(inode, attr->ia_size);
901 if (error)
902 return error;
903 }
904
Steven Whitehouseaa6a85a2006-01-24 10:37:06 +0000905 error = gfs2_truncatei(ip, attr->ia_size);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906 if (error)
907 return error;
908
909 return error;
910}
911
912static int setattr_chown(struct inode *inode, struct iattr *attr)
913{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400914 struct gfs2_inode *ip = GFS2_I(inode);
915 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000916 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400917 u32 ouid, ogid, nuid, ngid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918 int error;
919
Steven Whitehouse2933f922006-11-01 13:23:29 -0500920 ouid = inode->i_uid;
921 ogid = inode->i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 nuid = attr->ia_uid;
923 ngid = attr->ia_gid;
924
925 if (!(attr->ia_valid & ATTR_UID) || ouid == nuid)
926 ouid = nuid = NO_QUOTA_CHANGE;
927 if (!(attr->ia_valid & ATTR_GID) || ogid == ngid)
928 ogid = ngid = NO_QUOTA_CHANGE;
929
930 gfs2_alloc_get(ip);
931
932 error = gfs2_quota_lock(ip, nuid, ngid);
933 if (error)
934 goto out_alloc;
935
936 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
937 error = gfs2_quota_check(ip, nuid, ngid);
938 if (error)
939 goto out_gunlock_q;
940 }
941
942 error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
943 if (error)
944 goto out_gunlock_q;
945
946 error = gfs2_meta_inode_buffer(ip, &dibh);
947 if (error)
948 goto out_end_trans;
949
950 error = inode_setattr(inode, attr);
951 gfs2_assert_warn(sdp, !error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000953 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500954 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955 brelse(dibh);
956
957 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
Steven Whitehouseaf18ddb82006-06-24 15:42:21 -0400958 gfs2_quota_change(ip, -ip->i_di.di_blocks, ouid, ogid);
959 gfs2_quota_change(ip, ip->i_di.di_blocks, nuid, ngid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960 }
961
Steven Whitehousea91ea692006-09-04 12:04:26 -0400962out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000963 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400964out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 gfs2_quota_unlock(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400966out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968 return error;
969}
970
971/**
972 * gfs2_setattr - Change attributes on an inode
973 * @dentry: The dentry which is changing
974 * @attr: The structure describing the change
975 *
976 * The VFS layer wants to change one or more of an inodes attributes. Write
977 * that change out to disk.
978 *
979 * Returns: errno
980 */
981
982static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
983{
984 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400985 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986 struct gfs2_holder i_gh;
987 int error;
988
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
990 if (error)
991 return error;
992
993 error = -EPERM;
994 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
995 goto out;
996
997 error = inode_change_ok(inode, attr);
998 if (error)
999 goto out;
1000
1001 if (attr->ia_valid & ATTR_SIZE)
1002 error = setattr_size(inode, attr);
1003 else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
1004 error = setattr_chown(inode, attr);
1005 else if ((attr->ia_valid & ATTR_MODE) && IS_POSIXACL(inode))
1006 error = gfs2_acl_chmod(ip, attr);
1007 else
1008 error = gfs2_setattr_simple(ip, attr);
1009
Steven Whitehousea91ea692006-09-04 12:04:26 -04001010out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001011 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001012 if (!error)
1013 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001014 return error;
1015}
1016
1017/**
1018 * gfs2_getattr - Read out an inode's attributes
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001019 * @mnt: The vfsmount the inode is being accessed from
David Teiglandb3b94fa2006-01-16 16:50:04 +00001020 * @dentry: The dentry to stat
1021 * @stat: The inode's stats
1022 *
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001023 * This may be called from the VFS directly, or from within GFS2 with the
1024 * inode locked, so we look to see if the glock is already locked and only
1025 * lock the glock if its not already been done. Note that its the NFS
1026 * readdirplus operation which causes this to be called (from filldir)
1027 * with the glock already held.
1028 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001029 * Returns: errno
1030 */
1031
1032static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry,
1033 struct kstat *stat)
1034{
1035 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001036 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001037 struct gfs2_holder gh;
1038 int error;
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001039 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001040
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001041 if (gfs2_glock_is_locked_by_me(ip->i_gl) == 0) {
1042 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1043 if (error)
1044 return error;
1045 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001046 }
1047
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001048 generic_fillattr(inode, stat);
Steven Whitehoused7c103d2007-01-25 17:14:59 +00001049 if (unlock)
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001050 gfs2_glock_dq_uninit(&gh);
1051
1052 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001053}
1054
1055static int gfs2_setxattr(struct dentry *dentry, const char *name,
1056 const void *data, size_t size, int flags)
1057{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001058 struct inode *inode = dentry->d_inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001059 struct gfs2_ea_request er;
1060
David Teiglandb3b94fa2006-01-16 16:50:04 +00001061 memset(&er, 0, sizeof(struct gfs2_ea_request));
1062 er.er_type = gfs2_ea_name2type(name, &er.er_name);
1063 if (er.er_type == GFS2_EATYPE_UNUSED)
1064 return -EOPNOTSUPP;
1065 er.er_data = (char *)data;
1066 er.er_name_len = strlen(er.er_name);
1067 er.er_data_len = size;
1068 er.er_flags = flags;
1069
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001070 gfs2_assert_warn(GFS2_SB(inode), !(er.er_flags & GFS2_ERF_MODE));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001072 return gfs2_ea_set(GFS2_I(inode), &er);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001073}
1074
1075static ssize_t gfs2_getxattr(struct dentry *dentry, const char *name,
1076 void *data, size_t size)
1077{
1078 struct gfs2_ea_request er;
1079
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080 memset(&er, 0, sizeof(struct gfs2_ea_request));
1081 er.er_type = gfs2_ea_name2type(name, &er.er_name);
1082 if (er.er_type == GFS2_EATYPE_UNUSED)
1083 return -EOPNOTSUPP;
1084 er.er_data = data;
1085 er.er_name_len = strlen(er.er_name);
1086 er.er_data_len = size;
1087
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001088 return gfs2_ea_get(GFS2_I(dentry->d_inode), &er);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001089}
1090
1091static ssize_t gfs2_listxattr(struct dentry *dentry, char *buffer, size_t size)
1092{
1093 struct gfs2_ea_request er;
1094
David Teiglandb3b94fa2006-01-16 16:50:04 +00001095 memset(&er, 0, sizeof(struct gfs2_ea_request));
1096 er.er_data = (size) ? buffer : NULL;
1097 er.er_data_len = size;
1098
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001099 return gfs2_ea_list(GFS2_I(dentry->d_inode), &er);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100}
1101
1102static int gfs2_removexattr(struct dentry *dentry, const char *name)
1103{
1104 struct gfs2_ea_request er;
1105
David Teiglandb3b94fa2006-01-16 16:50:04 +00001106 memset(&er, 0, sizeof(struct gfs2_ea_request));
1107 er.er_type = gfs2_ea_name2type(name, &er.er_name);
1108 if (er.er_type == GFS2_EATYPE_UNUSED)
1109 return -EOPNOTSUPP;
1110 er.er_name_len = strlen(er.er_name);
1111
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001112 return gfs2_ea_remove(GFS2_I(dentry->d_inode), &er);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113}
1114
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001115const struct inode_operations gfs2_file_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116 .permission = gfs2_permission,
1117 .setattr = gfs2_setattr,
1118 .getattr = gfs2_getattr,
1119 .setxattr = gfs2_setxattr,
1120 .getxattr = gfs2_getxattr,
1121 .listxattr = gfs2_listxattr,
1122 .removexattr = gfs2_removexattr,
1123};
1124
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001125const struct inode_operations gfs2_dev_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001126 .permission = gfs2_permission,
1127 .setattr = gfs2_setattr,
1128 .getattr = gfs2_getattr,
1129 .setxattr = gfs2_setxattr,
1130 .getxattr = gfs2_getxattr,
1131 .listxattr = gfs2_listxattr,
1132 .removexattr = gfs2_removexattr,
1133};
1134
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001135const struct inode_operations gfs2_dir_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001136 .create = gfs2_create,
1137 .lookup = gfs2_lookup,
1138 .link = gfs2_link,
1139 .unlink = gfs2_unlink,
1140 .symlink = gfs2_symlink,
1141 .mkdir = gfs2_mkdir,
1142 .rmdir = gfs2_rmdir,
1143 .mknod = gfs2_mknod,
1144 .rename = gfs2_rename,
1145 .permission = gfs2_permission,
1146 .setattr = gfs2_setattr,
1147 .getattr = gfs2_getattr,
1148 .setxattr = gfs2_setxattr,
1149 .getxattr = gfs2_getxattr,
1150 .listxattr = gfs2_listxattr,
1151 .removexattr = gfs2_removexattr,
1152};
1153
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001154const struct inode_operations gfs2_symlink_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155 .readlink = gfs2_readlink,
1156 .follow_link = gfs2_follow_link,
1157 .permission = gfs2_permission,
1158 .setattr = gfs2_setattr,
1159 .getattr = gfs2_getattr,
1160 .setxattr = gfs2_setxattr,
1161 .getxattr = gfs2_getxattr,
1162 .listxattr = gfs2_listxattr,
1163 .removexattr = gfs2_removexattr,
1164};
1165