blob: b861ddba8688d9fec25a058b0caffd4607928f21 [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
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/posix_acl.h>
16#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050018#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020019#include <linux/lm_interface.h>
Ryan O'Harafcb47e02006-10-03 11:57:35 -040020#include <linux/security.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "acl.h"
25#include "bmap.h"
26#include "dir.h"
27#include "eattr.h"
28#include "glock.h"
29#include "glops.h"
30#include "inode.h"
31#include "log.h"
32#include "meta_io.h"
33#include "ops_address.h"
34#include "ops_file.h"
35#include "ops_inode.h"
36#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/**
Steven Whitehouse4340fe62006-07-11 09:46:33 -040042 * gfs2_inode_attr_in - Copy attributes from the dinode into the VFS inode
David Teiglandb3b94fa2006-01-16 16:50:04 +000043 * @ip: The GFS2 inode (with embedded disk inode data)
44 * @inode: The Linux VFS inode
45 *
46 */
47
Steven Whitehouse4340fe62006-07-11 09:46:33 -040048void gfs2_inode_attr_in(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +000049{
Steven Whitehouse4340fe62006-07-11 09:46:33 -040050 struct inode *inode = &ip->i_inode;
Al Viro3ca68df2006-10-13 20:11:25 -040051 struct gfs2_dinode_host *di = &ip->i_di;
Steven Whitehouse4340fe62006-07-11 09:46:33 -040052
53 inode->i_ino = ip->i_num.no_addr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000054
Steven Whitehousec2668712006-09-04 13:55:48 -040055 switch (di->di_mode & S_IFMT) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000056 case S_IFBLK:
57 case S_IFCHR:
Steven Whitehousec2668712006-09-04 13:55:48 -040058 inode->i_rdev = MKDEV(di->di_major, di->di_minor);
David Teiglandb3b94fa2006-01-16 16:50:04 +000059 break;
60 default:
61 inode->i_rdev = 0;
62 break;
63 };
64
Steven Whitehousec2668712006-09-04 13:55:48 -040065 inode->i_mode = di->di_mode;
66 inode->i_nlink = di->di_nlink;
67 inode->i_uid = di->di_uid;
68 inode->i_gid = di->di_gid;
69 i_size_write(inode, di->di_size);
70 inode->i_atime.tv_sec = di->di_atime;
71 inode->i_mtime.tv_sec = di->di_mtime;
72 inode->i_ctime.tv_sec = di->di_ctime;
David Teiglandb3b94fa2006-01-16 16:50:04 +000073 inode->i_atime.tv_nsec = 0;
74 inode->i_mtime.tv_nsec = 0;
75 inode->i_ctime.tv_nsec = 0;
Steven Whitehousec2668712006-09-04 13:55:48 -040076 inode->i_blocks = di->di_blocks <<
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040077 (GFS2_SB(inode)->sd_sb.sb_bsize_shift - GFS2_BASIC_BLOCK_SHIFT);
David Teiglandb3b94fa2006-01-16 16:50:04 +000078
Steven Whitehousec2668712006-09-04 13:55:48 -040079 if (di->di_flags & GFS2_DIF_IMMUTABLE)
David Teiglandb3b94fa2006-01-16 16:50:04 +000080 inode->i_flags |= S_IMMUTABLE;
81 else
82 inode->i_flags &= ~S_IMMUTABLE;
83
Steven Whitehousec2668712006-09-04 13:55:48 -040084 if (di->di_flags & GFS2_DIF_APPENDONLY)
David Teiglandb3b94fa2006-01-16 16:50:04 +000085 inode->i_flags |= S_APPEND;
86 else
87 inode->i_flags &= ~S_APPEND;
88}
89
90/**
David Teiglandb3b94fa2006-01-16 16:50:04 +000091 * gfs2_inode_attr_out - Copy attributes from VFS inode into the dinode
92 * @ip: The GFS2 inode
93 *
94 * Only copy out the attributes that we want the VFS layer
95 * to be able to modify.
96 */
97
98void gfs2_inode_attr_out(struct gfs2_inode *ip)
99{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400100 struct inode *inode = &ip->i_inode;
Al Viro3ca68df2006-10-13 20:11:25 -0400101 struct gfs2_dinode_host *di = &ip->i_di;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400102 gfs2_assert_withdraw(GFS2_SB(inode),
Steven Whitehouse75d3b812006-09-04 11:41:31 -0400103 (di->di_mode & S_IFMT) == (inode->i_mode & S_IFMT));
104 di->di_mode = inode->i_mode;
105 di->di_uid = inode->i_uid;
106 di->di_gid = inode->i_gid;
107 di->di_atime = inode->i_atime.tv_sec;
108 di->di_mtime = inode->i_mtime.tv_sec;
109 di->di_ctime = inode->i_ctime.tv_sec;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110}
111
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112static int iget_test(struct inode *inode, void *opaque)
113{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400114 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -0400115 struct gfs2_inum_host *inum = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116
117 if (ip && ip->i_num.no_addr == inum->no_addr)
118 return 1;
119
120 return 0;
121}
122
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400123static int iget_set(struct inode *inode, void *opaque)
124{
125 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -0400126 struct gfs2_inum_host *inum = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400127
128 ip->i_num = *inum;
129 return 0;
130}
131
Al Viro629a21e2006-10-13 22:51:24 -0400132struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000133{
134 return ilookup5(sb, (unsigned long)inum->no_formal_ino,
135 iget_test, inum);
136}
137
Al Viro629a21e2006-10-13 22:51:24 -0400138static struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400140 return iget5_locked(sb, (unsigned long)inum->no_formal_ino,
141 iget_test, iget_set, inum);
142}
143
144/**
145 * gfs2_inode_lookup - Lookup an inode
146 * @sb: The super block
147 * @inum: The inode number
148 * @type: The type of the inode
149 *
150 * Returns: A VFS inode, or an error
151 */
152
Al Viro629a21e2006-10-13 22:51:24 -0400153struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum_host *inum, unsigned int type)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400154{
155 struct inode *inode = gfs2_iget(sb, inum);
156 struct gfs2_inode *ip = GFS2_I(inode);
157 struct gfs2_glock *io_gl;
158 int error;
159
Steven Whitehouse26d83de2006-10-30 16:59:08 -0500160 if (!inode)
161 return ERR_PTR(-ENOBUFS);
162
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400163 if (inode->i_state & I_NEW) {
164 struct gfs2_sbd *sdp = GFS2_SB(inode);
165 umode_t mode = DT2IF(type);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700166 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400167 inode->i_mode = mode;
168
169 if (S_ISREG(mode)) {
170 inode->i_op = &gfs2_file_iops;
171 inode->i_fop = &gfs2_file_fops;
172 inode->i_mapping->a_ops = &gfs2_file_aops;
173 } else if (S_ISDIR(mode)) {
174 inode->i_op = &gfs2_dir_iops;
175 inode->i_fop = &gfs2_dir_fops;
176 } else if (S_ISLNK(mode)) {
177 inode->i_op = &gfs2_symlink_iops;
178 } else {
179 inode->i_op = &gfs2_dev_iops;
180 }
181
182 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
183 if (unlikely(error))
184 goto fail;
185 ip->i_gl->gl_object = ip;
186
187 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
188 if (unlikely(error))
189 goto fail_put;
190
191 ip->i_vn = ip->i_gl->gl_vn - 1;
192 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
193 if (unlikely(error))
194 goto fail_iopen;
195
196 gfs2_glock_put(io_gl);
197 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000198 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400199
200 return inode;
201fail_iopen:
202 gfs2_glock_put(io_gl);
203fail_put:
204 ip->i_gl->gl_object = NULL;
205 gfs2_glock_put(ip->i_gl);
206fail:
207 iput(inode);
208 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209}
210
211/**
212 * gfs2_inode_refresh - Refresh the incore copy of the dinode
213 * @ip: The GFS2 inode
214 *
215 * Returns: errno
216 */
217
218int gfs2_inode_refresh(struct gfs2_inode *ip)
219{
220 struct buffer_head *dibh;
221 int error;
222
223 error = gfs2_meta_inode_buffer(ip, &dibh);
224 if (error)
225 return error;
226
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400227 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000228 brelse(dibh);
229 return -EIO;
230 }
231
David Teiglandb3b94fa2006-01-16 16:50:04 +0000232 gfs2_dinode_in(&ip->i_di, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000233
234 brelse(dibh);
235
236 if (ip->i_num.no_addr != ip->i_di.di_num.no_addr) {
237 if (gfs2_consist_inode(ip))
238 gfs2_dinode_print(&ip->i_di);
239 return -EIO;
240 }
241 if (ip->i_num.no_formal_ino != ip->i_di.di_num.no_formal_ino)
242 return -ESTALE;
243
244 ip->i_vn = ip->i_gl->gl_vn;
245
246 return 0;
247}
248
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400249int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000250{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400251 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000252 struct gfs2_alloc *al;
253 struct gfs2_rgrpd *rgd;
254 int error;
255
256 if (ip->i_di.di_blocks != 1) {
257 if (gfs2_consist_inode(ip))
258 gfs2_dinode_print(&ip->i_di);
259 return -EIO;
260 }
261
262 al = gfs2_alloc_get(ip);
263
264 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
265 if (error)
266 goto out;
267
268 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
269 if (error)
270 goto out_qs;
271
272 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
273 if (!rgd) {
274 gfs2_consist_inode(ip);
275 error = -EIO;
276 goto out_rindex_relse;
277 }
278
279 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
280 &al->al_rgd_gh);
281 if (error)
282 goto out_rindex_relse;
283
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400284 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000285 if (error)
286 goto out_rg_gunlock;
287
288 gfs2_trans_add_gl(ip->i_gl);
289
290 gfs2_free_di(rgd, ip);
291
David Teiglandb3b94fa2006-01-16 16:50:04 +0000292 gfs2_trans_end(sdp);
293 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
294
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400295out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400297out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000298 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400299out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000300 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400301out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400302 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000303 return error;
304}
305
306/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000307 * gfs2_change_nlink - Change nlink count on inode
308 * @ip: The GFS2 inode
309 * @diff: The change in the nlink count required
310 *
311 * Returns: errno
312 */
313
314int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
315{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400316 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000317 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400318 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319 int error;
320
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400321 BUG_ON(ip->i_di.di_nlink != ip->i_inode.i_nlink);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000322 nlink = ip->i_di.di_nlink + diff;
323
324 /* If we are reducing the nlink count, but the new value ends up being
325 bigger than the old one, we must have underflowed. */
326 if (diff < 0 && nlink > ip->i_di.di_nlink) {
327 if (gfs2_consist_inode(ip))
328 gfs2_dinode_print(&ip->i_di);
329 return -EIO;
330 }
331
332 error = gfs2_meta_inode_buffer(ip, &dibh);
333 if (error)
334 return error;
335
336 ip->i_di.di_nlink = nlink;
337 ip->i_di.di_ctime = get_seconds();
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400338 ip->i_inode.i_nlink = nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000339
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000340 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500341 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400343 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000344
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400345 if (ip->i_di.di_nlink == 0) {
346 struct gfs2_rgrpd *rgd;
347 struct gfs2_holder ri_gh, rg_gh;
348
349 error = gfs2_rindex_hold(sdp, &ri_gh);
350 if (error)
351 goto out;
352 error = -EIO;
353 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
354 if (!rgd)
355 goto out_norgrp;
356 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
357 if (error)
358 goto out_norgrp;
359
Steven Whitehousef92a0b62006-10-02 16:01:53 -0400360 clear_nlink(&ip->i_inode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400361 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
362 gfs2_glock_dq_uninit(&rg_gh);
363out_norgrp:
364 gfs2_glock_dq_uninit(&ri_gh);
365 }
366out:
367 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000368}
369
Steven Whitehousec7526662006-03-20 12:30:04 -0500370struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
371{
372 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500373 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500374 return gfs2_lookupi(dip, &qstr, 1, NULL);
375}
376
377
David Teiglandb3b94fa2006-01-16 16:50:04 +0000378/**
379 * gfs2_lookupi - Look up a filename in a directory and return its inode
380 * @d_gh: An initialized holder for the directory glock
381 * @name: The name of the inode to look for
382 * @is_root: If 1, ignore the caller's permissions
383 * @i_gh: An uninitialized holder for the new inode glock
384 *
385 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
386 * @is_root is true.
387 *
388 * Returns: errno
389 */
390
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400391struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
392 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000393{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500394 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400395 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396 struct gfs2_holder d_gh;
Al Viro629a21e2006-10-13 22:51:24 -0400397 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000398 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000399 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500400 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000401
402 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500403 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404
Steven Whitehousec7526662006-03-20 12:30:04 -0500405 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
406 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
407 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400408 igrab(dir);
409 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410 }
411
412 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
413 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500414 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000415
416 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400417 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000418 if (error)
419 goto out;
420 }
421
Steven Whitehousec7526662006-03-20 12:30:04 -0500422 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000423 if (error)
424 goto out;
425
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400426 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000427
Steven Whitehouse7359a192006-02-13 12:27:43 +0000428out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000429 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500430 if (error == -ENOENT)
431 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400432 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433}
434
Steven Whitehousecd915492006-09-04 12:49:07 -0400435static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000436{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400437 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000438 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400439 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000440 int error;
441
442 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
443 if (error)
444 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000445 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000446
447 error = gfs2_meta_inode_buffer(ip, &bh);
448 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000449 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450 gfs2_trans_end(sdp);
451 return error;
452 }
453
454 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
455
456 if (ir.ir_length) {
457 *formal_ino = ir.ir_start++;
458 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000459 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000460 gfs2_inum_range_out(&ir,
461 bh->b_data + sizeof(struct gfs2_dinode));
462 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000463 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464 gfs2_trans_end(sdp);
465 return 0;
466 }
467
468 brelse(bh);
469
Steven Whitehousef55ab262006-02-21 12:51:39 +0000470 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000471 gfs2_trans_end(sdp);
472
473 return 1;
474}
475
Steven Whitehousecd915492006-09-04 12:49:07 -0400476static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000477{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400478 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
479 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000480 struct gfs2_holder gh;
481 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400482 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000483 int error;
484
485 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
486 if (error)
487 return error;
488
489 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
490 if (error)
491 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000492 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000493
494 error = gfs2_meta_inode_buffer(ip, &bh);
495 if (error)
496 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400497
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
499
500 if (!ir.ir_length) {
501 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400502 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400503 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000504
505 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
506 if (error)
507 goto out_brelse;
508
Al Virob44b84d2006-10-14 10:46:30 -0400509 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
510 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511 ir.ir_start = x;
512 ir.ir_length = GFS2_INUM_QUANTUM;
513 x += GFS2_INUM_QUANTUM;
514 if (x < y)
515 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400516 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000517 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400518 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519
520 brelse(m_bh);
521 }
522
523 *formal_ino = ir.ir_start++;
524 ir.ir_length--;
525
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000526 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
528
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400529out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400531out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000532 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000533 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400534out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000536 return error;
537}
538
Steven Whitehousecd915492006-09-04 12:49:07 -0400539static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000540{
541 int error;
542
543 error = pick_formal_ino_1(sdp, inum);
544 if (error <= 0)
545 return error;
546
547 error = pick_formal_ino_2(sdp, inum);
548
549 return error;
550}
551
552/**
553 * create_ok - OK to create a new on-disk inode here?
554 * @dip: Directory in which dinode is to be created
555 * @name: Name of new dinode
556 * @mode:
557 *
558 * Returns: errno
559 */
560
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400561static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000562 unsigned int mode)
563{
564 int error;
565
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400566 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567 if (error)
568 return error;
569
570 /* Don't create entries in an unlinked directory */
571 if (!dip->i_di.di_nlink)
572 return -EPERM;
573
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400574 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000575 switch (error) {
576 case -ENOENT:
577 error = 0;
578 break;
579 case 0:
580 return -EEXIST;
581 default:
582 return error;
583 }
584
Steven Whitehousecd915492006-09-04 12:49:07 -0400585 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000586 return -EFBIG;
Steven Whitehousecd915492006-09-04 12:49:07 -0400587 if (S_ISDIR(mode) && dip->i_di.di_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000588 return -EMLINK;
589
590 return 0;
591}
592
593static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
594 unsigned int *uid, unsigned int *gid)
595{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400596 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400597 (dip->i_di.di_mode & S_ISUID) && dip->i_di.di_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000598 if (S_ISDIR(*mode))
599 *mode |= S_ISUID;
600 else if (dip->i_di.di_uid != current->fsuid)
601 *mode &= ~07111;
602 *uid = dip->i_di.di_uid;
603 } else
604 *uid = current->fsuid;
605
606 if (dip->i_di.di_mode & S_ISGID) {
607 if (S_ISDIR(*mode))
608 *mode |= S_ISGID;
609 *gid = dip->i_di.di_gid;
610 } else
611 *gid = current->fsgid;
612}
613
Al Viro629a21e2006-10-13 22:51:24 -0400614static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400615 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000616{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400617 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 int error;
619
620 gfs2_alloc_get(dip);
621
622 dip->i_alloc.al_requested = RES_DINODE;
623 error = gfs2_inplace_reserve(dip);
624 if (error)
625 goto out;
626
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400627 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000628 if (error)
629 goto out_ipreserv;
630
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400631 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632
633 gfs2_trans_end(sdp);
634
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400635out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000636 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400637out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000638 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639 return error;
640}
641
642/**
643 * init_dinode - Fill in a new dinode structure
644 * @dip: the directory this inode is being created in
645 * @gl: The glock covering the new inode
646 * @inum: the inode number
647 * @mode: the file permissions
648 * @uid:
649 * @gid:
650 *
651 */
652
653static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400654 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400655 unsigned int uid, unsigned int gid,
656 const u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000657{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400658 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000659 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000660 struct buffer_head *dibh;
661
662 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000663 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000664 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
665 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000666 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667
Steven Whitehouse2442a092006-01-30 11:49:32 +0000668 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
669 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000670 di->di_mode = cpu_to_be32(mode);
671 di->di_uid = cpu_to_be32(uid);
672 di->di_gid = cpu_to_be32(gid);
673 di->di_nlink = cpu_to_be32(0);
674 di->di_size = cpu_to_be64(0);
675 di->di_blocks = cpu_to_be64(1);
676 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
677 di->di_major = di->di_minor = cpu_to_be32(0);
678 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400679 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000680 di->di_flags = cpu_to_be32(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000681
682 if (S_ISREG(mode)) {
683 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
684 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000685 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000686 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
687 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000688 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000689 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500690 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
691 GFS2_DIF_INHERIT_DIRECTIO);
692 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
693 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000694 }
695
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000696 di->__pad1 = 0;
Abhijith Dasb2a580d2006-07-10 12:36:12 -0500697 di->di_payload_format = cpu_to_be32(0);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000698 di->di_height = cpu_to_be32(0);
699 di->__pad2 = 0;
700 di->__pad3 = 0;
701 di->di_depth = cpu_to_be16(0);
702 di->di_entries = cpu_to_be32(0);
703 memset(&di->__pad4, 0, sizeof(di->__pad4));
704 di->di_eattr = cpu_to_be64(0);
705 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
706
David Teiglandb3b94fa2006-01-16 16:50:04 +0000707 brelse(dibh);
708}
709
710static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400711 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400712 const u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000713{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400714 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715 unsigned int uid, gid;
716 int error;
717
718 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000719 gfs2_alloc_get(dip);
720
721 error = gfs2_quota_lock(dip, uid, gid);
722 if (error)
723 goto out;
724
725 error = gfs2_quota_check(dip, uid, gid);
726 if (error)
727 goto out_quota;
728
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400729 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000730 if (error)
731 goto out_quota;
732
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400733 init_dinode(dip, gl, inum, mode, uid, gid, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000735 gfs2_trans_end(sdp);
736
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400737out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400739out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000740 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000741 return error;
742}
743
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400744static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
745 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000746{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400747 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000748 struct gfs2_alloc *al;
749 int alloc_required;
750 struct buffer_head *dibh;
751 int error;
752
753 al = gfs2_alloc_get(dip);
754
755 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
756 if (error)
757 goto fail;
758
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400759 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500760 if (alloc_required < 0)
761 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000762 if (alloc_required) {
763 error = gfs2_quota_check(dip, dip->i_di.di_uid,
764 dip->i_di.di_gid);
765 if (error)
766 goto fail_quota_locks;
767
768 al->al_requested = sdp->sd_max_dirres;
769
770 error = gfs2_inplace_reserve(dip);
771 if (error)
772 goto fail_quota_locks;
773
Steven Whitehouse320dd102006-05-18 16:25:27 -0400774 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400776 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000777 RES_STATFS + RES_QUOTA, 0);
778 if (error)
779 goto fail_ipreserv;
780 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400781 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000782 if (error)
783 goto fail_quota_locks;
784 }
785
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400786 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_di.di_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000787 if (error)
788 goto fail_end_trans;
789
790 error = gfs2_meta_inode_buffer(ip, &dibh);
791 if (error)
792 goto fail_end_trans;
793 ip->i_di.di_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000794 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500795 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797 return 0;
798
Steven Whitehouse320dd102006-05-18 16:25:27 -0400799fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000800 gfs2_trans_end(sdp);
801
Steven Whitehouse320dd102006-05-18 16:25:27 -0400802fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000803 if (dip->i_alloc.al_rgd)
804 gfs2_inplace_release(dip);
805
Steven Whitehouse320dd102006-05-18 16:25:27 -0400806fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000807 gfs2_quota_unlock(dip);
808
Steven Whitehouse320dd102006-05-18 16:25:27 -0400809fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000811 return error;
812}
813
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400814static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
815{
816 int err;
817 size_t len;
818 void *value;
819 char *name;
820 struct gfs2_ea_request er;
821
822 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
823 &name, &value, &len);
824
825 if (err) {
826 if (err == -EOPNOTSUPP)
827 return 0;
828 return err;
829 }
830
831 memset(&er, 0, sizeof(struct gfs2_ea_request));
832
833 er.er_type = GFS2_EATYPE_SECURITY;
834 er.er_name = name;
835 er.er_data = value;
836 er.er_name_len = strlen(name);
837 er.er_data_len = len;
838
839 err = gfs2_ea_set_i(ip, &er);
840
841 kfree(value);
842 kfree(name);
843
844 return err;
845}
846
David Teiglandb3b94fa2006-01-16 16:50:04 +0000847/**
848 * gfs2_createi - Create a new inode
849 * @ghs: An array of two holders
850 * @name: The name of the new file
851 * @mode: the permissions on the new inode
852 *
853 * @ghs[0] is an initialized holder for the directory
854 * @ghs[1] is the holder for the inode lock
855 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000856 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000857 * file are held. A transaction has been started and an inplace reservation
858 * is held, as well.
859 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000860 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 */
862
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400863struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500864 unsigned int mode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000865{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000866 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500867 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400868 struct inode *dir = &dip->i_inode;
869 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Al Viro629a21e2006-10-13 22:51:24 -0400870 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000871 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400872 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873
874 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000875 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000876
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
878 error = gfs2_glock_nq(ghs);
879 if (error)
880 goto fail;
881
882 error = create_ok(dip, name, mode);
883 if (error)
884 goto fail_gunlock;
885
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400886 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000887 if (error)
888 goto fail_gunlock;
889
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400890 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000891 if (error)
892 goto fail_gunlock;
893
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400894 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895 gfs2_glock_dq(ghs);
896
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400897 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400898 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
899 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000901 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000902 }
903
904 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
905 error = gfs2_glock_nq(ghs);
906 if (error) {
907 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000908 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000909 }
910
911 error = create_ok(dip, name, mode);
912 if (error)
913 goto fail_gunlock2;
914 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400915 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400916 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
917 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918 if (error)
919 goto fail_gunlock;
920 }
921
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400922 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000923 if (error)
924 goto fail_gunlock2;
925
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400926 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
927 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 goto fail_gunlock2;
929
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400930 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931 if (error)
932 goto fail_iput;
933
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400934 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935 if (error)
936 goto fail_iput;
937
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400938 error = gfs2_security_init(dip, GFS2_I(inode));
939 if (error)
940 goto fail_iput;
941
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400942 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000943 if (error)
944 goto fail_iput;
945
Steven Whitehouse7359a192006-02-13 12:27:43 +0000946 if (!inode)
947 return ERR_PTR(-ENOMEM);
948 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949
Steven Whitehouse320dd102006-05-18 16:25:27 -0400950fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400951 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400952fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400954fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400956fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000957 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958}
959
960/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961 * gfs2_rmdiri - Remove a directory
962 * @dip: The parent directory of the directory to be removed
963 * @name: The name of the directory to be removed
964 * @ip: The GFS2 inode of the directory to be removed
965 *
966 * Assumes Glocks on dip and ip are held
967 *
968 * Returns: errno
969 */
970
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400971int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
972 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000973{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000974 struct qstr dotname;
975 int error;
976
977 if (ip->i_di.di_entries != 2) {
978 if (gfs2_consist_inode(ip))
979 gfs2_dinode_print(&ip->i_di);
980 return -EIO;
981 }
982
983 error = gfs2_dir_del(dip, name);
984 if (error)
985 return error;
986
987 error = gfs2_change_nlink(dip, -1);
988 if (error)
989 return error;
990
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500991 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992 error = gfs2_dir_del(ip, &dotname);
993 if (error)
994 return error;
995
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400996 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000997 error = gfs2_dir_del(ip, &dotname);
998 if (error)
999 return error;
1000
1001 error = gfs2_change_nlink(ip, -2);
1002 if (error)
1003 return error;
1004
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 return error;
1006}
1007
1008/*
1009 * gfs2_unlink_ok - check to see that a inode is still in a directory
1010 * @dip: the directory
1011 * @name: the name of the file
1012 * @ip: the inode
1013 *
1014 * Assumes that the lock on (at least) @dip is held.
1015 *
1016 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1017 */
1018
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001019int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001020 struct gfs2_inode *ip)
1021{
Al Viro629a21e2006-10-13 22:51:24 -04001022 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 unsigned int type;
1024 int error;
1025
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001026 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027 return -EPERM;
1028
1029 if ((dip->i_di.di_mode & S_ISVTX) &&
1030 dip->i_di.di_uid != current->fsuid &&
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001031 ip->i_di.di_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032 return -EPERM;
1033
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001034 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035 return -EPERM;
1036
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001037 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001038 if (error)
1039 return error;
1040
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001041 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042 if (error)
1043 return error;
1044
1045 if (!gfs2_inum_equal(&inum, &ip->i_num))
1046 return -ENOENT;
1047
1048 if (IF2DT(ip->i_di.di_mode) != type) {
1049 gfs2_consist_inode(dip);
1050 return -EIO;
1051 }
1052
1053 return 0;
1054}
1055
1056/*
1057 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1058 * @this: move this
1059 * @to: to here
1060 *
1061 * Follow @to back to the root and make sure we don't encounter @this
1062 * Assumes we already hold the rename lock.
1063 *
1064 * Returns: errno
1065 */
1066
1067int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1068{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001069 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001070 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001071 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001072 struct qstr dotdot;
1073 int error = 0;
1074
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001075 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076
Steven Whitehouse7359a192006-02-13 12:27:43 +00001077 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078
1079 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001080 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 error = -EINVAL;
1082 break;
1083 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001084 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085 error = 0;
1086 break;
1087 }
1088
Steven Whitehousec7526662006-03-20 12:30:04 -05001089 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1090 if (IS_ERR(tmp)) {
1091 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001092 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001093 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094
Steven Whitehouse7359a192006-02-13 12:27:43 +00001095 iput(dir);
1096 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001097 }
1098
Steven Whitehouse7359a192006-02-13 12:27:43 +00001099 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100
1101 return error;
1102}
1103
1104/**
1105 * gfs2_readlinki - return the contents of a symlink
1106 * @ip: the symlink's inode
1107 * @buf: a pointer to the buffer to be filled
1108 * @len: a pointer to the length of @buf
1109 *
1110 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1111 * to be freed by the caller.
1112 *
1113 * Returns: errno
1114 */
1115
1116int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1117{
1118 struct gfs2_holder i_gh;
1119 struct buffer_head *dibh;
1120 unsigned int x;
1121 int error;
1122
1123 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1124 error = gfs2_glock_nq_atime(&i_gh);
1125 if (error) {
1126 gfs2_holder_uninit(&i_gh);
1127 return error;
1128 }
1129
1130 if (!ip->i_di.di_size) {
1131 gfs2_consist_inode(ip);
1132 error = -EIO;
1133 goto out;
1134 }
1135
1136 error = gfs2_meta_inode_buffer(ip, &dibh);
1137 if (error)
1138 goto out;
1139
1140 x = ip->i_di.di_size + 1;
1141 if (x > *len) {
1142 *buf = kmalloc(x, GFP_KERNEL);
1143 if (!*buf) {
1144 error = -ENOMEM;
1145 goto out_brelse;
1146 }
1147 }
1148
1149 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1150 *len = x;
1151
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001152out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001153 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001154out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001156 return error;
1157}
1158
1159/**
1160 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1161 * conditionally update the inode's atime
1162 * @gh: the holder to acquire
1163 *
1164 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1165 * Update if the difference between the current time and the inode's current
1166 * atime is greater than an interval specified at mount.
1167 *
1168 * Returns: errno
1169 */
1170
1171int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1172{
1173 struct gfs2_glock *gl = gh->gh_gl;
1174 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001175 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001176 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001177 unsigned int state;
1178 int flags;
1179 int error;
1180
1181 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1182 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1183 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1184 return -EINVAL;
1185
1186 state = gh->gh_state;
1187 flags = gh->gh_flags;
1188
1189 error = gfs2_glock_nq(gh);
1190 if (error)
1191 return error;
1192
1193 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1194 (sdp->sd_vfs->s_flags & MS_RDONLY))
1195 return 0;
1196
1197 curtime = get_seconds();
1198 if (curtime - ip->i_di.di_atime >= quantum) {
1199 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001200 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1201 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202 error = gfs2_glock_nq(gh);
1203 if (error)
1204 return error;
1205
1206 /* Verify that atime hasn't been updated while we were
1207 trying to get exclusive lock. */
1208
1209 curtime = get_seconds();
1210 if (curtime - ip->i_di.di_atime >= quantum) {
1211 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001212 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001213
1214 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1215 if (error == -EROFS)
1216 return 0;
1217 if (error)
1218 goto fail;
1219
1220 error = gfs2_meta_inode_buffer(ip, &dibh);
1221 if (error)
1222 goto fail_end_trans;
1223
1224 ip->i_di.di_atime = curtime;
1225
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001226 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001227 di = (struct gfs2_dinode *)dibh->b_data;
1228 di->di_atime = cpu_to_be64(ip->i_di.di_atime);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001229 brelse(dibh);
1230
1231 gfs2_trans_end(sdp);
1232 }
1233
1234 /* If someone else has asked for the glock,
1235 unlock and let them have it. Then reacquire
1236 in the original state. */
1237 if (gfs2_glock_is_blocking(gl)) {
1238 gfs2_glock_dq(gh);
1239 gfs2_holder_reinit(state, flags, gh);
1240 return gfs2_glock_nq(gh);
1241 }
1242 }
1243
1244 return 0;
1245
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001246fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001247 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001248fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001250 return error;
1251}
1252
1253/**
1254 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1255 * @arg_a: the first structure
1256 * @arg_b: the second structure
1257 *
1258 * Returns: 1 if A > B
1259 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001260 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001261 */
1262
1263static int glock_compare_atime(const void *arg_a, const void *arg_b)
1264{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001265 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1266 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1267 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1268 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001269
1270 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001271 return 1;
1272 if (a->ln_number < b->ln_number)
1273 return -1;
1274 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1275 return 1;
1276 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1277 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001279 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280}
1281
1282/**
1283 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1284 * atime update
1285 * @num_gh: the number of structures
1286 * @ghs: an array of struct gfs2_holder structures
1287 *
1288 * Returns: 0 on success (all glocks acquired),
1289 * errno on failure (no glocks acquired)
1290 */
1291
1292int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1293{
1294 struct gfs2_holder **p;
1295 unsigned int x;
1296 int error = 0;
1297
1298 if (!num_gh)
1299 return 0;
1300
1301 if (num_gh == 1) {
1302 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1303 if (ghs->gh_flags & GL_ATIME)
1304 error = gfs2_glock_nq_atime(ghs);
1305 else
1306 error = gfs2_glock_nq(ghs);
1307 return error;
1308 }
1309
1310 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1311 if (!p)
1312 return -ENOMEM;
1313
1314 for (x = 0; x < num_gh; x++)
1315 p[x] = &ghs[x];
1316
1317 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1318
1319 for (x = 0; x < num_gh; x++) {
1320 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1321
1322 if (p[x]->gh_flags & GL_ATIME)
1323 error = gfs2_glock_nq_atime(p[x]);
1324 else
1325 error = gfs2_glock_nq(p[x]);
1326
1327 if (error) {
1328 while (x--)
1329 gfs2_glock_dq(p[x]);
1330 break;
1331 }
1332 }
1333
1334 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001335 return error;
1336}
1337
David Teiglandb3b94fa2006-01-16 16:50:04 +00001338
1339static int
1340__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1341{
1342 struct buffer_head *dibh;
1343 int error;
1344
1345 error = gfs2_meta_inode_buffer(ip, &dibh);
1346 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001347 error = inode_setattr(&ip->i_inode, attr);
1348 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001349 gfs2_inode_attr_out(ip);
1350
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001351 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001352 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001353 brelse(dibh);
1354 }
1355 return error;
1356}
1357
1358/**
1359 * gfs2_setattr_simple -
1360 * @ip:
1361 * @attr:
1362 *
1363 * Called with a reference on the vnode.
1364 *
1365 * Returns: errno
1366 */
1367
1368int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1369{
1370 int error;
1371
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001372 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001373 return __gfs2_setattr_simple(ip, attr);
1374
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001375 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001376 if (error)
1377 return error;
1378
1379 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001380 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001381 return error;
1382}
1383