blob: b39cfcfe92766e08dc35757ff293fa6404184358 [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
Steven Whitehouseea744d02006-10-31 15:28:00 -0500211static void gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
212{
213 struct gfs2_dinode_host *di = &ip->i_di;
214 const struct gfs2_dinode *str = buf;
215
216 gfs2_meta_header_in(&di->di_header, buf);
217 gfs2_inum_in(&di->di_num, &str->di_num);
218
219 di->di_mode = be32_to_cpu(str->di_mode);
220 di->di_uid = be32_to_cpu(str->di_uid);
221 di->di_gid = be32_to_cpu(str->di_gid);
222 di->di_nlink = be32_to_cpu(str->di_nlink);
223 di->di_size = be64_to_cpu(str->di_size);
224 di->di_blocks = be64_to_cpu(str->di_blocks);
225 di->di_atime = be64_to_cpu(str->di_atime);
226 di->di_mtime = be64_to_cpu(str->di_mtime);
227 di->di_ctime = be64_to_cpu(str->di_ctime);
228 di->di_major = be32_to_cpu(str->di_major);
229 di->di_minor = be32_to_cpu(str->di_minor);
230
231 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
232 di->di_goal_data = be64_to_cpu(str->di_goal_data);
233 di->di_generation = be64_to_cpu(str->di_generation);
234
235 di->di_flags = be32_to_cpu(str->di_flags);
236 di->di_payload_format = be32_to_cpu(str->di_payload_format);
237 di->di_height = be16_to_cpu(str->di_height);
238
239 di->di_depth = be16_to_cpu(str->di_depth);
240 di->di_entries = be32_to_cpu(str->di_entries);
241
242 di->di_eattr = be64_to_cpu(str->di_eattr);
243}
244
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245/**
246 * gfs2_inode_refresh - Refresh the incore copy of the dinode
247 * @ip: The GFS2 inode
248 *
249 * Returns: errno
250 */
251
252int gfs2_inode_refresh(struct gfs2_inode *ip)
253{
254 struct buffer_head *dibh;
255 int error;
256
257 error = gfs2_meta_inode_buffer(ip, &dibh);
258 if (error)
259 return error;
260
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400261 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262 brelse(dibh);
263 return -EIO;
264 }
265
Steven Whitehouse891ea142006-10-31 15:22:10 -0500266 gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267
268 brelse(dibh);
269
270 if (ip->i_num.no_addr != ip->i_di.di_num.no_addr) {
271 if (gfs2_consist_inode(ip))
272 gfs2_dinode_print(&ip->i_di);
273 return -EIO;
274 }
275 if (ip->i_num.no_formal_ino != ip->i_di.di_num.no_formal_ino)
276 return -ESTALE;
277
278 ip->i_vn = ip->i_gl->gl_vn;
279
280 return 0;
281}
282
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400283int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000284{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400285 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000286 struct gfs2_alloc *al;
287 struct gfs2_rgrpd *rgd;
288 int error;
289
290 if (ip->i_di.di_blocks != 1) {
291 if (gfs2_consist_inode(ip))
292 gfs2_dinode_print(&ip->i_di);
293 return -EIO;
294 }
295
296 al = gfs2_alloc_get(ip);
297
298 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
299 if (error)
300 goto out;
301
302 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
303 if (error)
304 goto out_qs;
305
306 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
307 if (!rgd) {
308 gfs2_consist_inode(ip);
309 error = -EIO;
310 goto out_rindex_relse;
311 }
312
313 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
314 &al->al_rgd_gh);
315 if (error)
316 goto out_rindex_relse;
317
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400318 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319 if (error)
320 goto out_rg_gunlock;
321
322 gfs2_trans_add_gl(ip->i_gl);
323
324 gfs2_free_di(rgd, ip);
325
David Teiglandb3b94fa2006-01-16 16:50:04 +0000326 gfs2_trans_end(sdp);
327 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
328
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400329out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000330 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400331out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000332 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400333out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000334 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400335out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400336 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000337 return error;
338}
339
340/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000341 * gfs2_change_nlink - Change nlink count on inode
342 * @ip: The GFS2 inode
343 * @diff: The change in the nlink count required
344 *
345 * Returns: errno
346 */
347
348int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
349{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400350 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400352 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000353 int error;
354
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400355 BUG_ON(ip->i_di.di_nlink != ip->i_inode.i_nlink);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000356 nlink = ip->i_di.di_nlink + diff;
357
358 /* If we are reducing the nlink count, but the new value ends up being
359 bigger than the old one, we must have underflowed. */
360 if (diff < 0 && nlink > ip->i_di.di_nlink) {
361 if (gfs2_consist_inode(ip))
362 gfs2_dinode_print(&ip->i_di);
363 return -EIO;
364 }
365
366 error = gfs2_meta_inode_buffer(ip, &dibh);
367 if (error)
368 return error;
369
370 ip->i_di.di_nlink = nlink;
371 ip->i_di.di_ctime = get_seconds();
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400372 ip->i_inode.i_nlink = nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000374 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500375 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400377 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000378
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400379 if (ip->i_di.di_nlink == 0) {
380 struct gfs2_rgrpd *rgd;
381 struct gfs2_holder ri_gh, rg_gh;
382
383 error = gfs2_rindex_hold(sdp, &ri_gh);
384 if (error)
385 goto out;
386 error = -EIO;
387 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
388 if (!rgd)
389 goto out_norgrp;
390 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
391 if (error)
392 goto out_norgrp;
393
Steven Whitehousef92a0b62006-10-02 16:01:53 -0400394 clear_nlink(&ip->i_inode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400395 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
396 gfs2_glock_dq_uninit(&rg_gh);
397out_norgrp:
398 gfs2_glock_dq_uninit(&ri_gh);
399 }
400out:
401 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000402}
403
Steven Whitehousec7526662006-03-20 12:30:04 -0500404struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
405{
406 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500407 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500408 return gfs2_lookupi(dip, &qstr, 1, NULL);
409}
410
411
David Teiglandb3b94fa2006-01-16 16:50:04 +0000412/**
413 * gfs2_lookupi - Look up a filename in a directory and return its inode
414 * @d_gh: An initialized holder for the directory glock
415 * @name: The name of the inode to look for
416 * @is_root: If 1, ignore the caller's permissions
417 * @i_gh: An uninitialized holder for the new inode glock
418 *
419 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
420 * @is_root is true.
421 *
422 * Returns: errno
423 */
424
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400425struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
426 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000427{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500428 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400429 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000430 struct gfs2_holder d_gh;
Al Viro629a21e2006-10-13 22:51:24 -0400431 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000432 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000433 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500434 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000435
436 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500437 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000438
Steven Whitehousec7526662006-03-20 12:30:04 -0500439 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
440 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
441 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400442 igrab(dir);
443 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000444 }
445
446 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
447 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500448 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000449
450 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400451 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000452 if (error)
453 goto out;
454 }
455
Steven Whitehousec7526662006-03-20 12:30:04 -0500456 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457 if (error)
458 goto out;
459
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400460 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000461
Steven Whitehouse7359a192006-02-13 12:27:43 +0000462out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000463 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500464 if (error == -ENOENT)
465 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400466 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000467}
468
Steven Whitehousecd915492006-09-04 12:49:07 -0400469static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400471 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000472 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400473 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474 int error;
475
476 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
477 if (error)
478 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000479 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000480
481 error = gfs2_meta_inode_buffer(ip, &bh);
482 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000483 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484 gfs2_trans_end(sdp);
485 return error;
486 }
487
488 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
489
490 if (ir.ir_length) {
491 *formal_ino = ir.ir_start++;
492 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000493 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000494 gfs2_inum_range_out(&ir,
495 bh->b_data + sizeof(struct gfs2_dinode));
496 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000497 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498 gfs2_trans_end(sdp);
499 return 0;
500 }
501
502 brelse(bh);
503
Steven Whitehousef55ab262006-02-21 12:51:39 +0000504 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000505 gfs2_trans_end(sdp);
506
507 return 1;
508}
509
Steven Whitehousecd915492006-09-04 12:49:07 -0400510static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400512 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
513 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514 struct gfs2_holder gh;
515 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400516 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000517 int error;
518
519 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
520 if (error)
521 return error;
522
523 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
524 if (error)
525 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000526 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527
528 error = gfs2_meta_inode_buffer(ip, &bh);
529 if (error)
530 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400531
David Teiglandb3b94fa2006-01-16 16:50:04 +0000532 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
533
534 if (!ir.ir_length) {
535 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400536 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400537 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000538
539 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
540 if (error)
541 goto out_brelse;
542
Al Virob44b84d2006-10-14 10:46:30 -0400543 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
544 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545 ir.ir_start = x;
546 ir.ir_length = GFS2_INUM_QUANTUM;
547 x += GFS2_INUM_QUANTUM;
548 if (x < y)
549 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400550 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000551 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400552 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000553
554 brelse(m_bh);
555 }
556
557 *formal_ino = ir.ir_start++;
558 ir.ir_length--;
559
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000560 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
562
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400563out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400565out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000566 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400568out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000569 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000570 return error;
571}
572
Steven Whitehousecd915492006-09-04 12:49:07 -0400573static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000574{
575 int error;
576
577 error = pick_formal_ino_1(sdp, inum);
578 if (error <= 0)
579 return error;
580
581 error = pick_formal_ino_2(sdp, inum);
582
583 return error;
584}
585
586/**
587 * create_ok - OK to create a new on-disk inode here?
588 * @dip: Directory in which dinode is to be created
589 * @name: Name of new dinode
590 * @mode:
591 *
592 * Returns: errno
593 */
594
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400595static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000596 unsigned int mode)
597{
598 int error;
599
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400600 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601 if (error)
602 return error;
603
604 /* Don't create entries in an unlinked directory */
605 if (!dip->i_di.di_nlink)
606 return -EPERM;
607
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400608 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609 switch (error) {
610 case -ENOENT:
611 error = 0;
612 break;
613 case 0:
614 return -EEXIST;
615 default:
616 return error;
617 }
618
Steven Whitehousecd915492006-09-04 12:49:07 -0400619 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000620 return -EFBIG;
Steven Whitehousecd915492006-09-04 12:49:07 -0400621 if (S_ISDIR(mode) && dip->i_di.di_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 return -EMLINK;
623
624 return 0;
625}
626
627static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
628 unsigned int *uid, unsigned int *gid)
629{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400630 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400631 (dip->i_di.di_mode & S_ISUID) && dip->i_di.di_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632 if (S_ISDIR(*mode))
633 *mode |= S_ISUID;
634 else if (dip->i_di.di_uid != current->fsuid)
635 *mode &= ~07111;
636 *uid = dip->i_di.di_uid;
637 } else
638 *uid = current->fsuid;
639
640 if (dip->i_di.di_mode & S_ISGID) {
641 if (S_ISDIR(*mode))
642 *mode |= S_ISGID;
643 *gid = dip->i_di.di_gid;
644 } else
645 *gid = current->fsgid;
646}
647
Al Viro629a21e2006-10-13 22:51:24 -0400648static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400649 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000650{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400651 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652 int error;
653
654 gfs2_alloc_get(dip);
655
656 dip->i_alloc.al_requested = RES_DINODE;
657 error = gfs2_inplace_reserve(dip);
658 if (error)
659 goto out;
660
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400661 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 if (error)
663 goto out_ipreserv;
664
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400665 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666
667 gfs2_trans_end(sdp);
668
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400669out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400671out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000673 return error;
674}
675
676/**
677 * init_dinode - Fill in a new dinode structure
678 * @dip: the directory this inode is being created in
679 * @gl: The glock covering the new inode
680 * @inum: the inode number
681 * @mode: the file permissions
682 * @uid:
683 * @gid:
684 *
685 */
686
687static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400688 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400689 unsigned int uid, unsigned int gid,
690 const u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400692 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000693 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000694 struct buffer_head *dibh;
695
696 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000697 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000698 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
699 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000700 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000701
Steven Whitehouse2442a092006-01-30 11:49:32 +0000702 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
703 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000704 di->di_mode = cpu_to_be32(mode);
705 di->di_uid = cpu_to_be32(uid);
706 di->di_gid = cpu_to_be32(gid);
707 di->di_nlink = cpu_to_be32(0);
708 di->di_size = cpu_to_be64(0);
709 di->di_blocks = cpu_to_be64(1);
710 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
711 di->di_major = di->di_minor = cpu_to_be32(0);
712 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400713 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000714 di->di_flags = cpu_to_be32(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715
716 if (S_ISREG(mode)) {
717 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
718 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000719 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
721 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000722 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000723 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500724 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
725 GFS2_DIF_INHERIT_DIRECTIO);
726 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
727 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728 }
729
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000730 di->__pad1 = 0;
Abhijith Dasb2a580d2006-07-10 12:36:12 -0500731 di->di_payload_format = cpu_to_be32(0);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000732 di->di_height = cpu_to_be32(0);
733 di->__pad2 = 0;
734 di->__pad3 = 0;
735 di->di_depth = cpu_to_be16(0);
736 di->di_entries = cpu_to_be32(0);
737 memset(&di->__pad4, 0, sizeof(di->__pad4));
738 di->di_eattr = cpu_to_be64(0);
739 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
740
David Teiglandb3b94fa2006-01-16 16:50:04 +0000741 brelse(dibh);
742}
743
744static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400745 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400746 const u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000747{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400748 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000749 unsigned int uid, gid;
750 int error;
751
752 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000753 gfs2_alloc_get(dip);
754
755 error = gfs2_quota_lock(dip, uid, gid);
756 if (error)
757 goto out;
758
759 error = gfs2_quota_check(dip, uid, gid);
760 if (error)
761 goto out_quota;
762
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400763 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000764 if (error)
765 goto out_quota;
766
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400767 init_dinode(dip, gl, inum, mode, uid, gid, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769 gfs2_trans_end(sdp);
770
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400771out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000772 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400773out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775 return error;
776}
777
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400778static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
779 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400781 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000782 struct gfs2_alloc *al;
783 int alloc_required;
784 struct buffer_head *dibh;
785 int error;
786
787 al = gfs2_alloc_get(dip);
788
789 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
790 if (error)
791 goto fail;
792
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400793 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500794 if (alloc_required < 0)
795 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 if (alloc_required) {
797 error = gfs2_quota_check(dip, dip->i_di.di_uid,
798 dip->i_di.di_gid);
799 if (error)
800 goto fail_quota_locks;
801
802 al->al_requested = sdp->sd_max_dirres;
803
804 error = gfs2_inplace_reserve(dip);
805 if (error)
806 goto fail_quota_locks;
807
Steven Whitehouse320dd102006-05-18 16:25:27 -0400808 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000809 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400810 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000811 RES_STATFS + RES_QUOTA, 0);
812 if (error)
813 goto fail_ipreserv;
814 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400815 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000816 if (error)
817 goto fail_quota_locks;
818 }
819
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400820 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_di.di_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000821 if (error)
822 goto fail_end_trans;
823
824 error = gfs2_meta_inode_buffer(ip, &dibh);
825 if (error)
826 goto fail_end_trans;
827 ip->i_di.di_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000828 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500829 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000831 return 0;
832
Steven Whitehouse320dd102006-05-18 16:25:27 -0400833fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834 gfs2_trans_end(sdp);
835
Steven Whitehouse320dd102006-05-18 16:25:27 -0400836fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000837 if (dip->i_alloc.al_rgd)
838 gfs2_inplace_release(dip);
839
Steven Whitehouse320dd102006-05-18 16:25:27 -0400840fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000841 gfs2_quota_unlock(dip);
842
Steven Whitehouse320dd102006-05-18 16:25:27 -0400843fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000844 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845 return error;
846}
847
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400848static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
849{
850 int err;
851 size_t len;
852 void *value;
853 char *name;
854 struct gfs2_ea_request er;
855
856 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
857 &name, &value, &len);
858
859 if (err) {
860 if (err == -EOPNOTSUPP)
861 return 0;
862 return err;
863 }
864
865 memset(&er, 0, sizeof(struct gfs2_ea_request));
866
867 er.er_type = GFS2_EATYPE_SECURITY;
868 er.er_name = name;
869 er.er_data = value;
870 er.er_name_len = strlen(name);
871 er.er_data_len = len;
872
873 err = gfs2_ea_set_i(ip, &er);
874
875 kfree(value);
876 kfree(name);
877
878 return err;
879}
880
David Teiglandb3b94fa2006-01-16 16:50:04 +0000881/**
882 * gfs2_createi - Create a new inode
883 * @ghs: An array of two holders
884 * @name: The name of the new file
885 * @mode: the permissions on the new inode
886 *
887 * @ghs[0] is an initialized holder for the directory
888 * @ghs[1] is the holder for the inode lock
889 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000890 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000891 * file are held. A transaction has been started and an inplace reservation
892 * is held, as well.
893 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000894 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895 */
896
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400897struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500898 unsigned int mode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000900 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500901 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400902 struct inode *dir = &dip->i_inode;
903 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Al Viro629a21e2006-10-13 22:51:24 -0400904 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000905 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400906 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907
908 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000909 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
912 error = gfs2_glock_nq(ghs);
913 if (error)
914 goto fail;
915
916 error = create_ok(dip, name, mode);
917 if (error)
918 goto fail_gunlock;
919
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400920 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000921 if (error)
922 goto fail_gunlock;
923
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400924 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000925 if (error)
926 goto fail_gunlock;
927
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400928 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929 gfs2_glock_dq(ghs);
930
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400931 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400932 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
933 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000934 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000935 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000936 }
937
938 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
939 error = gfs2_glock_nq(ghs);
940 if (error) {
941 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000942 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000943 }
944
945 error = create_ok(dip, name, mode);
946 if (error)
947 goto fail_gunlock2;
948 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400949 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400950 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
951 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952 if (error)
953 goto fail_gunlock;
954 }
955
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400956 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 if (error)
958 goto fail_gunlock2;
959
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400960 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
961 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 goto fail_gunlock2;
963
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400964 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 if (error)
966 goto fail_iput;
967
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400968 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 if (error)
970 goto fail_iput;
971
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400972 error = gfs2_security_init(dip, GFS2_I(inode));
973 if (error)
974 goto fail_iput;
975
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400976 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977 if (error)
978 goto fail_iput;
979
Steven Whitehouse7359a192006-02-13 12:27:43 +0000980 if (!inode)
981 return ERR_PTR(-ENOMEM);
982 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983
Steven Whitehouse320dd102006-05-18 16:25:27 -0400984fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400985 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400986fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000987 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400988fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400990fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000991 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992}
993
994/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995 * gfs2_rmdiri - Remove a directory
996 * @dip: The parent directory of the directory to be removed
997 * @name: The name of the directory to be removed
998 * @ip: The GFS2 inode of the directory to be removed
999 *
1000 * Assumes Glocks on dip and ip are held
1001 *
1002 * Returns: errno
1003 */
1004
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001005int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
1006 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001008 struct qstr dotname;
1009 int error;
1010
1011 if (ip->i_di.di_entries != 2) {
1012 if (gfs2_consist_inode(ip))
1013 gfs2_dinode_print(&ip->i_di);
1014 return -EIO;
1015 }
1016
1017 error = gfs2_dir_del(dip, name);
1018 if (error)
1019 return error;
1020
1021 error = gfs2_change_nlink(dip, -1);
1022 if (error)
1023 return error;
1024
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001025 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026 error = gfs2_dir_del(ip, &dotname);
1027 if (error)
1028 return error;
1029
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001030 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001031 error = gfs2_dir_del(ip, &dotname);
1032 if (error)
1033 return error;
1034
1035 error = gfs2_change_nlink(ip, -2);
1036 if (error)
1037 return error;
1038
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039 return error;
1040}
1041
1042/*
1043 * gfs2_unlink_ok - check to see that a inode is still in a directory
1044 * @dip: the directory
1045 * @name: the name of the file
1046 * @ip: the inode
1047 *
1048 * Assumes that the lock on (at least) @dip is held.
1049 *
1050 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1051 */
1052
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001053int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054 struct gfs2_inode *ip)
1055{
Al Viro629a21e2006-10-13 22:51:24 -04001056 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001057 unsigned int type;
1058 int error;
1059
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001060 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001061 return -EPERM;
1062
1063 if ((dip->i_di.di_mode & S_ISVTX) &&
1064 dip->i_di.di_uid != current->fsuid &&
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001065 ip->i_di.di_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001066 return -EPERM;
1067
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001068 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001069 return -EPERM;
1070
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001071 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001072 if (error)
1073 return error;
1074
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001075 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076 if (error)
1077 return error;
1078
1079 if (!gfs2_inum_equal(&inum, &ip->i_num))
1080 return -ENOENT;
1081
1082 if (IF2DT(ip->i_di.di_mode) != type) {
1083 gfs2_consist_inode(dip);
1084 return -EIO;
1085 }
1086
1087 return 0;
1088}
1089
1090/*
1091 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1092 * @this: move this
1093 * @to: to here
1094 *
1095 * Follow @to back to the root and make sure we don't encounter @this
1096 * Assumes we already hold the rename lock.
1097 *
1098 * Returns: errno
1099 */
1100
1101int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1102{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001103 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001104 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001105 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001106 struct qstr dotdot;
1107 int error = 0;
1108
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001109 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001110
Steven Whitehouse7359a192006-02-13 12:27:43 +00001111 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112
1113 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001114 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115 error = -EINVAL;
1116 break;
1117 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001118 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 error = 0;
1120 break;
1121 }
1122
Steven Whitehousec7526662006-03-20 12:30:04 -05001123 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1124 if (IS_ERR(tmp)) {
1125 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001126 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001127 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001128
Steven Whitehouse7359a192006-02-13 12:27:43 +00001129 iput(dir);
1130 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001131 }
1132
Steven Whitehouse7359a192006-02-13 12:27:43 +00001133 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001134
1135 return error;
1136}
1137
1138/**
1139 * gfs2_readlinki - return the contents of a symlink
1140 * @ip: the symlink's inode
1141 * @buf: a pointer to the buffer to be filled
1142 * @len: a pointer to the length of @buf
1143 *
1144 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1145 * to be freed by the caller.
1146 *
1147 * Returns: errno
1148 */
1149
1150int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1151{
1152 struct gfs2_holder i_gh;
1153 struct buffer_head *dibh;
1154 unsigned int x;
1155 int error;
1156
1157 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1158 error = gfs2_glock_nq_atime(&i_gh);
1159 if (error) {
1160 gfs2_holder_uninit(&i_gh);
1161 return error;
1162 }
1163
1164 if (!ip->i_di.di_size) {
1165 gfs2_consist_inode(ip);
1166 error = -EIO;
1167 goto out;
1168 }
1169
1170 error = gfs2_meta_inode_buffer(ip, &dibh);
1171 if (error)
1172 goto out;
1173
1174 x = ip->i_di.di_size + 1;
1175 if (x > *len) {
1176 *buf = kmalloc(x, GFP_KERNEL);
1177 if (!*buf) {
1178 error = -ENOMEM;
1179 goto out_brelse;
1180 }
1181 }
1182
1183 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1184 *len = x;
1185
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001186out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001187 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001188out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001189 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001190 return error;
1191}
1192
1193/**
1194 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1195 * conditionally update the inode's atime
1196 * @gh: the holder to acquire
1197 *
1198 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1199 * Update if the difference between the current time and the inode's current
1200 * atime is greater than an interval specified at mount.
1201 *
1202 * Returns: errno
1203 */
1204
1205int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1206{
1207 struct gfs2_glock *gl = gh->gh_gl;
1208 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001209 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001210 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 unsigned int state;
1212 int flags;
1213 int error;
1214
1215 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1216 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1217 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1218 return -EINVAL;
1219
1220 state = gh->gh_state;
1221 flags = gh->gh_flags;
1222
1223 error = gfs2_glock_nq(gh);
1224 if (error)
1225 return error;
1226
1227 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1228 (sdp->sd_vfs->s_flags & MS_RDONLY))
1229 return 0;
1230
1231 curtime = get_seconds();
1232 if (curtime - ip->i_di.di_atime >= quantum) {
1233 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001234 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1235 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236 error = gfs2_glock_nq(gh);
1237 if (error)
1238 return error;
1239
1240 /* Verify that atime hasn't been updated while we were
1241 trying to get exclusive lock. */
1242
1243 curtime = get_seconds();
1244 if (curtime - ip->i_di.di_atime >= quantum) {
1245 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001246 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001247
1248 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1249 if (error == -EROFS)
1250 return 0;
1251 if (error)
1252 goto fail;
1253
1254 error = gfs2_meta_inode_buffer(ip, &dibh);
1255 if (error)
1256 goto fail_end_trans;
1257
1258 ip->i_di.di_atime = curtime;
1259
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001260 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001261 di = (struct gfs2_dinode *)dibh->b_data;
1262 di->di_atime = cpu_to_be64(ip->i_di.di_atime);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001263 brelse(dibh);
1264
1265 gfs2_trans_end(sdp);
1266 }
1267
1268 /* If someone else has asked for the glock,
1269 unlock and let them have it. Then reacquire
1270 in the original state. */
1271 if (gfs2_glock_is_blocking(gl)) {
1272 gfs2_glock_dq(gh);
1273 gfs2_holder_reinit(state, flags, gh);
1274 return gfs2_glock_nq(gh);
1275 }
1276 }
1277
1278 return 0;
1279
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001280fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001281 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001282fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001283 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001284 return error;
1285}
1286
1287/**
1288 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1289 * @arg_a: the first structure
1290 * @arg_b: the second structure
1291 *
1292 * Returns: 1 if A > B
1293 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001294 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001295 */
1296
1297static int glock_compare_atime(const void *arg_a, const void *arg_b)
1298{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001299 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1300 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1301 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1302 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001303
1304 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001305 return 1;
1306 if (a->ln_number < b->ln_number)
1307 return -1;
1308 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1309 return 1;
1310 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1311 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001312
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001313 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001314}
1315
1316/**
1317 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1318 * atime update
1319 * @num_gh: the number of structures
1320 * @ghs: an array of struct gfs2_holder structures
1321 *
1322 * Returns: 0 on success (all glocks acquired),
1323 * errno on failure (no glocks acquired)
1324 */
1325
1326int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1327{
1328 struct gfs2_holder **p;
1329 unsigned int x;
1330 int error = 0;
1331
1332 if (!num_gh)
1333 return 0;
1334
1335 if (num_gh == 1) {
1336 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1337 if (ghs->gh_flags & GL_ATIME)
1338 error = gfs2_glock_nq_atime(ghs);
1339 else
1340 error = gfs2_glock_nq(ghs);
1341 return error;
1342 }
1343
1344 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1345 if (!p)
1346 return -ENOMEM;
1347
1348 for (x = 0; x < num_gh; x++)
1349 p[x] = &ghs[x];
1350
1351 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1352
1353 for (x = 0; x < num_gh; x++) {
1354 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1355
1356 if (p[x]->gh_flags & GL_ATIME)
1357 error = gfs2_glock_nq_atime(p[x]);
1358 else
1359 error = gfs2_glock_nq(p[x]);
1360
1361 if (error) {
1362 while (x--)
1363 gfs2_glock_dq(p[x]);
1364 break;
1365 }
1366 }
1367
1368 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001369 return error;
1370}
1371
David Teiglandb3b94fa2006-01-16 16:50:04 +00001372
1373static int
1374__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1375{
1376 struct buffer_head *dibh;
1377 int error;
1378
1379 error = gfs2_meta_inode_buffer(ip, &dibh);
1380 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001381 error = inode_setattr(&ip->i_inode, attr);
1382 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001383 gfs2_inode_attr_out(ip);
1384
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001385 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001386 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001387 brelse(dibh);
1388 }
1389 return error;
1390}
1391
1392/**
1393 * gfs2_setattr_simple -
1394 * @ip:
1395 * @attr:
1396 *
1397 * Called with a reference on the vnode.
1398 *
1399 * Returns: errno
1400 */
1401
1402int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1403{
1404 int error;
1405
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001406 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001407 return __gfs2_setattr_simple(ip, attr);
1408
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001409 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001410 if (error)
1411 return error;
1412
1413 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001414 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001415 return error;
1416}
1417