blob: c22ae3c3a4448c2d75f02b19094c7c1f7c1c130a [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'Harafcb47e0b2006-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;
Steven Whitehousec2668712006-09-04 13:55:48 -040054 i_size_write(inode, di->di_size);
Steven Whitehousec2668712006-09-04 13:55:48 -040055 inode->i_blocks = di->di_blocks <<
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040056 (GFS2_SB(inode)->sd_sb.sb_bsize_shift - GFS2_BASIC_BLOCK_SHIFT);
David Teiglandb3b94fa2006-01-16 16:50:04 +000057
Steven Whitehousec2668712006-09-04 13:55:48 -040058 if (di->di_flags & GFS2_DIF_IMMUTABLE)
David Teiglandb3b94fa2006-01-16 16:50:04 +000059 inode->i_flags |= S_IMMUTABLE;
60 else
61 inode->i_flags &= ~S_IMMUTABLE;
62
Steven Whitehousec2668712006-09-04 13:55:48 -040063 if (di->di_flags & GFS2_DIF_APPENDONLY)
David Teiglandb3b94fa2006-01-16 16:50:04 +000064 inode->i_flags |= S_APPEND;
65 else
66 inode->i_flags &= ~S_APPEND;
67}
68
David Teiglandb3b94fa2006-01-16 16:50:04 +000069static int iget_test(struct inode *inode, void *opaque)
70{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040071 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -040072 struct gfs2_inum_host *inum = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +000073
74 if (ip && ip->i_num.no_addr == inum->no_addr)
75 return 1;
76
77 return 0;
78}
79
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040080static int iget_set(struct inode *inode, void *opaque)
81{
82 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -040083 struct gfs2_inum_host *inum = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040084
85 ip->i_num = *inum;
86 return 0;
87}
88
Al Viro629a21e2006-10-13 22:51:24 -040089struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +000090{
91 return ilookup5(sb, (unsigned long)inum->no_formal_ino,
92 iget_test, inum);
93}
94
Al Viro629a21e2006-10-13 22:51:24 -040095static struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +000096{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040097 return iget5_locked(sb, (unsigned long)inum->no_formal_ino,
98 iget_test, iget_set, inum);
99}
100
101/**
102 * gfs2_inode_lookup - Lookup an inode
103 * @sb: The super block
104 * @inum: The inode number
105 * @type: The type of the inode
106 *
107 * Returns: A VFS inode, or an error
108 */
109
Al Viro629a21e2006-10-13 22:51:24 -0400110struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum_host *inum, unsigned int type)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400111{
112 struct inode *inode = gfs2_iget(sb, inum);
113 struct gfs2_inode *ip = GFS2_I(inode);
114 struct gfs2_glock *io_gl;
115 int error;
116
Steven Whitehouse26d83de2006-10-30 16:59:08 -0500117 if (!inode)
118 return ERR_PTR(-ENOBUFS);
119
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400120 if (inode->i_state & I_NEW) {
121 struct gfs2_sbd *sdp = GFS2_SB(inode);
122 umode_t mode = DT2IF(type);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700123 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400124 inode->i_mode = mode;
125
126 if (S_ISREG(mode)) {
127 inode->i_op = &gfs2_file_iops;
128 inode->i_fop = &gfs2_file_fops;
129 inode->i_mapping->a_ops = &gfs2_file_aops;
130 } else if (S_ISDIR(mode)) {
131 inode->i_op = &gfs2_dir_iops;
132 inode->i_fop = &gfs2_dir_fops;
133 } else if (S_ISLNK(mode)) {
134 inode->i_op = &gfs2_symlink_iops;
135 } else {
136 inode->i_op = &gfs2_dev_iops;
137 }
138
139 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
140 if (unlikely(error))
141 goto fail;
142 ip->i_gl->gl_object = ip;
143
144 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
145 if (unlikely(error))
146 goto fail_put;
147
148 ip->i_vn = ip->i_gl->gl_vn - 1;
149 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
150 if (unlikely(error))
151 goto fail_iopen;
152
153 gfs2_glock_put(io_gl);
154 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400156
157 return inode;
158fail_iopen:
159 gfs2_glock_put(io_gl);
160fail_put:
161 ip->i_gl->gl_object = NULL;
162 gfs2_glock_put(ip->i_gl);
163fail:
164 iput(inode);
165 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000166}
167
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500168static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500169{
170 struct gfs2_dinode_host *di = &ip->i_di;
171 const struct gfs2_dinode *str = buf;
172
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500173 if (ip->i_num.no_addr != be64_to_cpu(str->di_num.no_addr)) {
174 if (gfs2_consist_inode(ip))
175 gfs2_dinode_print(ip);
176 return -EIO;
177 }
178 if (ip->i_num.no_formal_ino != be64_to_cpu(str->di_num.no_formal_ino))
179 return -ESTALE;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500180
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500181 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500182 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500183 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500184 case S_IFBLK:
185 case S_IFCHR:
186 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
187 be32_to_cpu(str->di_minor));
188 break;
189 };
190
Steven Whitehouse2933f922006-11-01 13:23:29 -0500191 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
192 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500193 /*
194 * We will need to review setting the nlink count here in the
195 * light of the forthcoming ro bind mount work. This is a reminder
196 * to do that.
197 */
198 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500199 di->di_size = be64_to_cpu(str->di_size);
200 di->di_blocks = be64_to_cpu(str->di_blocks);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500201 ip->i_inode.i_atime.tv_sec = be64_to_cpu(str->di_atime);
202 ip->i_inode.i_atime.tv_nsec = 0;
203 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
204 ip->i_inode.i_mtime.tv_nsec = 0;
205 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
206 ip->i_inode.i_ctime.tv_nsec = 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500207
208 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
209 di->di_goal_data = be64_to_cpu(str->di_goal_data);
210 di->di_generation = be64_to_cpu(str->di_generation);
211
212 di->di_flags = be32_to_cpu(str->di_flags);
213 di->di_payload_format = be32_to_cpu(str->di_payload_format);
214 di->di_height = be16_to_cpu(str->di_height);
215
216 di->di_depth = be16_to_cpu(str->di_depth);
217 di->di_entries = be32_to_cpu(str->di_entries);
218
219 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500220 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500221}
222
David Teiglandb3b94fa2006-01-16 16:50:04 +0000223/**
224 * gfs2_inode_refresh - Refresh the incore copy of the dinode
225 * @ip: The GFS2 inode
226 *
227 * Returns: errno
228 */
229
230int gfs2_inode_refresh(struct gfs2_inode *ip)
231{
232 struct buffer_head *dibh;
233 int error;
234
235 error = gfs2_meta_inode_buffer(ip, &dibh);
236 if (error)
237 return error;
238
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400239 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240 brelse(dibh);
241 return -EIO;
242 }
243
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500244 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246 ip->i_vn = ip->i_gl->gl_vn;
247
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500248 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000249}
250
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400251int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000252{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400253 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000254 struct gfs2_alloc *al;
255 struct gfs2_rgrpd *rgd;
256 int error;
257
258 if (ip->i_di.di_blocks != 1) {
259 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500260 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000261 return -EIO;
262 }
263
264 al = gfs2_alloc_get(ip);
265
266 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
267 if (error)
268 goto out;
269
270 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
271 if (error)
272 goto out_qs;
273
274 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
275 if (!rgd) {
276 gfs2_consist_inode(ip);
277 error = -EIO;
278 goto out_rindex_relse;
279 }
280
281 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
282 &al->al_rgd_gh);
283 if (error)
284 goto out_rindex_relse;
285
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400286 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000287 if (error)
288 goto out_rg_gunlock;
289
290 gfs2_trans_add_gl(ip->i_gl);
291
292 gfs2_free_di(rgd, ip);
293
David Teiglandb3b94fa2006-01-16 16:50:04 +0000294 gfs2_trans_end(sdp);
295 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
296
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400297out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000298 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400299out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000300 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400301out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000302 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400303out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400304 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000305 return error;
306}
307
308/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000309 * gfs2_change_nlink - Change nlink count on inode
310 * @ip: The GFS2 inode
311 * @diff: The change in the nlink count required
312 *
313 * Returns: errno
314 */
315
316int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
317{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400318 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400320 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000321 int error;
322
Steven Whitehouse4f561102006-11-01 14:04:17 -0500323 BUG_ON(diff != 1 && diff != -1);
324 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325
326 /* If we are reducing the nlink count, but the new value ends up being
327 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500328 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500330 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000331 return -EIO;
332 }
333
334 error = gfs2_meta_inode_buffer(ip, &dibh);
335 if (error)
336 return error;
337
Steven Whitehouse4f561102006-11-01 14:04:17 -0500338 if (diff > 0)
339 inc_nlink(&ip->i_inode);
340 else
341 drop_nlink(&ip->i_inode);
342
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500343 ip->i_inode.i_ctime.tv_sec = get_seconds();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000344
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000345 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500346 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400348 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349
Steven Whitehouse4f561102006-11-01 14:04:17 -0500350 if (ip->i_inode.i_nlink == 0) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400351 struct gfs2_rgrpd *rgd;
352 struct gfs2_holder ri_gh, rg_gh;
353
354 error = gfs2_rindex_hold(sdp, &ri_gh);
355 if (error)
356 goto out;
357 error = -EIO;
358 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
359 if (!rgd)
360 goto out_norgrp;
361 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
362 if (error)
363 goto out_norgrp;
364
365 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
366 gfs2_glock_dq_uninit(&rg_gh);
367out_norgrp:
368 gfs2_glock_dq_uninit(&ri_gh);
369 }
370out:
371 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372}
373
Steven Whitehousec7526662006-03-20 12:30:04 -0500374struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
375{
376 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500377 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500378 return gfs2_lookupi(dip, &qstr, 1, NULL);
379}
380
381
David Teiglandb3b94fa2006-01-16 16:50:04 +0000382/**
383 * gfs2_lookupi - Look up a filename in a directory and return its inode
384 * @d_gh: An initialized holder for the directory glock
385 * @name: The name of the inode to look for
386 * @is_root: If 1, ignore the caller's permissions
387 * @i_gh: An uninitialized holder for the new inode glock
388 *
389 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
390 * @is_root is true.
391 *
392 * Returns: errno
393 */
394
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400395struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
396 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000397{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500398 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400399 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400 struct gfs2_holder d_gh;
Al Viro629a21e2006-10-13 22:51:24 -0400401 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000402 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000403 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500404 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000405
406 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500407 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000408
Steven Whitehousec7526662006-03-20 12:30:04 -0500409 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
410 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
411 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400412 igrab(dir);
413 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000414 }
415
416 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
417 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500418 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419
420 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400421 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000422 if (error)
423 goto out;
424 }
425
Steven Whitehousec7526662006-03-20 12:30:04 -0500426 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000427 if (error)
428 goto out;
429
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400430 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000431
Steven Whitehouse7359a192006-02-13 12:27:43 +0000432out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500434 if (error == -ENOENT)
435 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400436 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000437}
438
Steven Whitehousecd915492006-09-04 12:49:07 -0400439static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000440{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400441 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000442 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400443 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000444 int error;
445
446 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
447 if (error)
448 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000449 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450
451 error = gfs2_meta_inode_buffer(ip, &bh);
452 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000453 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000454 gfs2_trans_end(sdp);
455 return error;
456 }
457
458 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
459
460 if (ir.ir_length) {
461 *formal_ino = ir.ir_start++;
462 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000463 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464 gfs2_inum_range_out(&ir,
465 bh->b_data + sizeof(struct gfs2_dinode));
466 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000467 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468 gfs2_trans_end(sdp);
469 return 0;
470 }
471
472 brelse(bh);
473
Steven Whitehousef55ab262006-02-21 12:51:39 +0000474 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475 gfs2_trans_end(sdp);
476
477 return 1;
478}
479
Steven Whitehousecd915492006-09-04 12:49:07 -0400480static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400482 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
483 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484 struct gfs2_holder gh;
485 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400486 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000487 int error;
488
489 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
490 if (error)
491 return error;
492
493 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
494 if (error)
495 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000496 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497
498 error = gfs2_meta_inode_buffer(ip, &bh);
499 if (error)
500 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400501
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
503
504 if (!ir.ir_length) {
505 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400506 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400507 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000508
509 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
510 if (error)
511 goto out_brelse;
512
Al Virob44b84d2006-10-14 10:46:30 -0400513 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
514 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000515 ir.ir_start = x;
516 ir.ir_length = GFS2_INUM_QUANTUM;
517 x += GFS2_INUM_QUANTUM;
518 if (x < y)
519 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400520 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000521 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400522 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523
524 brelse(m_bh);
525 }
526
527 *formal_ino = ir.ir_start++;
528 ir.ir_length--;
529
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000530 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000531 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
532
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400533out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000534 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400535out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000536 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400538out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000539 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000540 return error;
541}
542
Steven Whitehousecd915492006-09-04 12:49:07 -0400543static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000544{
545 int error;
546
547 error = pick_formal_ino_1(sdp, inum);
548 if (error <= 0)
549 return error;
550
551 error = pick_formal_ino_2(sdp, inum);
552
553 return error;
554}
555
556/**
557 * create_ok - OK to create a new on-disk inode here?
558 * @dip: Directory in which dinode is to be created
559 * @name: Name of new dinode
560 * @mode:
561 *
562 * Returns: errno
563 */
564
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400565static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566 unsigned int mode)
567{
568 int error;
569
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400570 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571 if (error)
572 return error;
573
574 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500575 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000576 return -EPERM;
577
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400578 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000579 switch (error) {
580 case -ENOENT:
581 error = 0;
582 break;
583 case 0:
584 return -EEXIST;
585 default:
586 return error;
587 }
588
Steven Whitehousecd915492006-09-04 12:49:07 -0400589 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000590 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500591 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592 return -EMLINK;
593
594 return 0;
595}
596
597static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
598 unsigned int *uid, unsigned int *gid)
599{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400600 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500601 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000602 if (S_ISDIR(*mode))
603 *mode |= S_ISUID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500604 else if (dip->i_inode.i_uid != current->fsuid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500606 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607 } else
608 *uid = current->fsuid;
609
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500610 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000611 if (S_ISDIR(*mode))
612 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500613 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000614 } else
615 *gid = current->fsgid;
616}
617
Al Viro629a21e2006-10-13 22:51:24 -0400618static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400619 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000620{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400621 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 int error;
623
624 gfs2_alloc_get(dip);
625
626 dip->i_alloc.al_requested = RES_DINODE;
627 error = gfs2_inplace_reserve(dip);
628 if (error)
629 goto out;
630
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400631 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632 if (error)
633 goto out_ipreserv;
634
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400635 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000636
637 gfs2_trans_end(sdp);
638
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400639out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000640 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400641out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000643 return error;
644}
645
646/**
647 * init_dinode - Fill in a new dinode structure
648 * @dip: the directory this inode is being created in
649 * @gl: The glock covering the new inode
650 * @inum: the inode number
651 * @mode: the file permissions
652 * @uid:
653 * @gid:
654 *
655 */
656
657static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400658 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400659 unsigned int uid, unsigned int gid,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500660 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000661{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400662 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000663 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000664 struct buffer_head *dibh;
665
666 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000667 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000668 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
669 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000670 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671
Steven Whitehouse2442a092006-01-30 11:49:32 +0000672 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
673 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000674 di->di_mode = cpu_to_be32(mode);
675 di->di_uid = cpu_to_be32(uid);
676 di->di_gid = cpu_to_be32(gid);
677 di->di_nlink = cpu_to_be32(0);
678 di->di_size = cpu_to_be64(0);
679 di->di_blocks = cpu_to_be64(1);
680 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500681 di->di_major = cpu_to_be32(MAJOR(dev));
682 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000683 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400684 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000685 di->di_flags = cpu_to_be32(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000686
687 if (S_ISREG(mode)) {
688 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
689 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000690 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
692 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000693 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000694 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500695 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
696 GFS2_DIF_INHERIT_DIRECTIO);
697 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
698 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000699 }
700
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000701 di->__pad1 = 0;
Abhijith Dasb2a580d2006-07-10 12:36:12 -0500702 di->di_payload_format = cpu_to_be32(0);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000703 di->di_height = cpu_to_be32(0);
704 di->__pad2 = 0;
705 di->__pad3 = 0;
706 di->di_depth = cpu_to_be16(0);
707 di->di_entries = cpu_to_be32(0);
708 memset(&di->__pad4, 0, sizeof(di->__pad4));
709 di->di_eattr = cpu_to_be64(0);
710 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
711
David Teiglandb3b94fa2006-01-16 16:50:04 +0000712 brelse(dibh);
713}
714
715static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400716 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500717 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000718{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400719 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720 unsigned int uid, gid;
721 int error;
722
723 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724 gfs2_alloc_get(dip);
725
726 error = gfs2_quota_lock(dip, uid, gid);
727 if (error)
728 goto out;
729
730 error = gfs2_quota_check(dip, uid, gid);
731 if (error)
732 goto out_quota;
733
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400734 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000735 if (error)
736 goto out_quota;
737
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500738 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000740 gfs2_trans_end(sdp);
741
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400742out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000743 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400744out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000746 return error;
747}
748
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400749static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
750 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000751{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400752 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000753 struct gfs2_alloc *al;
754 int alloc_required;
755 struct buffer_head *dibh;
756 int error;
757
758 al = gfs2_alloc_get(dip);
759
760 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
761 if (error)
762 goto fail;
763
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400764 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500765 if (alloc_required < 0)
766 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000767 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500768 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769 if (error)
770 goto fail_quota_locks;
771
772 al->al_requested = sdp->sd_max_dirres;
773
774 error = gfs2_inplace_reserve(dip);
775 if (error)
776 goto fail_quota_locks;
777
Steven Whitehouse320dd102006-05-18 16:25:27 -0400778 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400780 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000781 RES_STATFS + RES_QUOTA, 0);
782 if (error)
783 goto fail_ipreserv;
784 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400785 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 if (error)
787 goto fail_quota_locks;
788 }
789
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500790 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000791 if (error)
792 goto fail_end_trans;
793
794 error = gfs2_meta_inode_buffer(ip, &dibh);
795 if (error)
796 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500797 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000798 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500799 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000800 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801 return 0;
802
Steven Whitehouse320dd102006-05-18 16:25:27 -0400803fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000804 gfs2_trans_end(sdp);
805
Steven Whitehouse320dd102006-05-18 16:25:27 -0400806fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000807 if (dip->i_alloc.al_rgd)
808 gfs2_inplace_release(dip);
809
Steven Whitehouse320dd102006-05-18 16:25:27 -0400810fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000811 gfs2_quota_unlock(dip);
812
Steven Whitehouse320dd102006-05-18 16:25:27 -0400813fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000815 return error;
816}
817
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400818static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
819{
820 int err;
821 size_t len;
822 void *value;
823 char *name;
824 struct gfs2_ea_request er;
825
826 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
827 &name, &value, &len);
828
829 if (err) {
830 if (err == -EOPNOTSUPP)
831 return 0;
832 return err;
833 }
834
835 memset(&er, 0, sizeof(struct gfs2_ea_request));
836
837 er.er_type = GFS2_EATYPE_SECURITY;
838 er.er_name = name;
839 er.er_data = value;
840 er.er_name_len = strlen(name);
841 er.er_data_len = len;
842
843 err = gfs2_ea_set_i(ip, &er);
844
845 kfree(value);
846 kfree(name);
847
848 return err;
849}
850
David Teiglandb3b94fa2006-01-16 16:50:04 +0000851/**
852 * gfs2_createi - Create a new inode
853 * @ghs: An array of two holders
854 * @name: The name of the new file
855 * @mode: the permissions on the new inode
856 *
857 * @ghs[0] is an initialized holder for the directory
858 * @ghs[1] is the holder for the inode lock
859 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000860 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 * file are held. A transaction has been started and an inplace reservation
862 * is held, as well.
863 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000864 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000865 */
866
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400867struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500868 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000869{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000870 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500871 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400872 struct inode *dir = &dip->i_inode;
873 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Al Viro629a21e2006-10-13 22:51:24 -0400874 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000875 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400876 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877
878 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000879 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000880
David Teiglandb3b94fa2006-01-16 16:50:04 +0000881 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
882 error = gfs2_glock_nq(ghs);
883 if (error)
884 goto fail;
885
886 error = create_ok(dip, name, mode);
887 if (error)
888 goto fail_gunlock;
889
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400890 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000891 if (error)
892 goto fail_gunlock;
893
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400894 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895 if (error)
896 goto fail_gunlock;
897
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400898 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899 gfs2_glock_dq(ghs);
900
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400901 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400902 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
903 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000905 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906 }
907
908 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
909 error = gfs2_glock_nq(ghs);
910 if (error) {
911 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000912 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000913 }
914
915 error = create_ok(dip, name, mode);
916 if (error)
917 goto fail_gunlock2;
918 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400919 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400920 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
921 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 if (error)
923 goto fail_gunlock;
924 }
925
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500926 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000927 if (error)
928 goto fail_gunlock2;
929
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400930 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
931 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000932 goto fail_gunlock2;
933
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400934 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935 if (error)
936 goto fail_iput;
937
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400938 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000939 if (error)
940 goto fail_iput;
941
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400942 error = gfs2_security_init(dip, GFS2_I(inode));
943 if (error)
944 goto fail_iput;
945
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400946 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947 if (error)
948 goto fail_iput;
949
Steven Whitehouse7359a192006-02-13 12:27:43 +0000950 if (!inode)
951 return ERR_PTR(-ENOMEM);
952 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953
Steven Whitehouse320dd102006-05-18 16:25:27 -0400954fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400955 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400956fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400958fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400960fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000961 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962}
963
964/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 * gfs2_rmdiri - Remove a directory
966 * @dip: The parent directory of the directory to be removed
967 * @name: The name of the directory to be removed
968 * @ip: The GFS2 inode of the directory to be removed
969 *
970 * Assumes Glocks on dip and ip are held
971 *
972 * Returns: errno
973 */
974
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400975int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
976 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000978 struct qstr dotname;
979 int error;
980
981 if (ip->i_di.di_entries != 2) {
982 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500983 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984 return -EIO;
985 }
986
987 error = gfs2_dir_del(dip, name);
988 if (error)
989 return error;
990
991 error = gfs2_change_nlink(dip, -1);
992 if (error)
993 return error;
994
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500995 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000996 error = gfs2_dir_del(ip, &dotname);
997 if (error)
998 return error;
999
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001000 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001 error = gfs2_dir_del(ip, &dotname);
1002 if (error)
1003 return error;
1004
Steven Whitehouse4f561102006-11-01 14:04:17 -05001005 /* It looks odd, but it really should be done twice */
1006 error = gfs2_change_nlink(ip, -1);
1007 if (error)
1008 return error;
1009
1010 error = gfs2_change_nlink(ip, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001011 if (error)
1012 return error;
1013
David Teiglandb3b94fa2006-01-16 16:50:04 +00001014 return error;
1015}
1016
1017/*
1018 * gfs2_unlink_ok - check to see that a inode is still in a directory
1019 * @dip: the directory
1020 * @name: the name of the file
1021 * @ip: the inode
1022 *
1023 * Assumes that the lock on (at least) @dip is held.
1024 *
1025 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1026 */
1027
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001028int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001029 struct gfs2_inode *ip)
1030{
Al Viro629a21e2006-10-13 22:51:24 -04001031 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032 unsigned int type;
1033 int error;
1034
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001035 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036 return -EPERM;
1037
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001038 if ((dip->i_inode.i_mode & S_ISVTX) &&
Steven Whitehouse2933f922006-11-01 13:23:29 -05001039 dip->i_inode.i_uid != current->fsuid &&
1040 ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041 return -EPERM;
1042
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001043 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044 return -EPERM;
1045
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001046 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001047 if (error)
1048 return error;
1049
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001050 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001051 if (error)
1052 return error;
1053
1054 if (!gfs2_inum_equal(&inum, &ip->i_num))
1055 return -ENOENT;
1056
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001057 if (IF2DT(ip->i_inode.i_mode) != type) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 gfs2_consist_inode(dip);
1059 return -EIO;
1060 }
1061
1062 return 0;
1063}
1064
1065/*
1066 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1067 * @this: move this
1068 * @to: to here
1069 *
1070 * Follow @to back to the root and make sure we don't encounter @this
1071 * Assumes we already hold the rename lock.
1072 *
1073 * Returns: errno
1074 */
1075
1076int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1077{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001078 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001079 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001080 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 struct qstr dotdot;
1082 int error = 0;
1083
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001084 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085
Steven Whitehouse7359a192006-02-13 12:27:43 +00001086 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001087
1088 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001089 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001090 error = -EINVAL;
1091 break;
1092 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001093 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094 error = 0;
1095 break;
1096 }
1097
Steven Whitehousec7526662006-03-20 12:30:04 -05001098 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1099 if (IS_ERR(tmp)) {
1100 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001101 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001102 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001103
Steven Whitehouse7359a192006-02-13 12:27:43 +00001104 iput(dir);
1105 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001106 }
1107
Steven Whitehouse7359a192006-02-13 12:27:43 +00001108 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001109
1110 return error;
1111}
1112
1113/**
1114 * gfs2_readlinki - return the contents of a symlink
1115 * @ip: the symlink's inode
1116 * @buf: a pointer to the buffer to be filled
1117 * @len: a pointer to the length of @buf
1118 *
1119 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1120 * to be freed by the caller.
1121 *
1122 * Returns: errno
1123 */
1124
1125int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1126{
1127 struct gfs2_holder i_gh;
1128 struct buffer_head *dibh;
1129 unsigned int x;
1130 int error;
1131
1132 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1133 error = gfs2_glock_nq_atime(&i_gh);
1134 if (error) {
1135 gfs2_holder_uninit(&i_gh);
1136 return error;
1137 }
1138
1139 if (!ip->i_di.di_size) {
1140 gfs2_consist_inode(ip);
1141 error = -EIO;
1142 goto out;
1143 }
1144
1145 error = gfs2_meta_inode_buffer(ip, &dibh);
1146 if (error)
1147 goto out;
1148
1149 x = ip->i_di.di_size + 1;
1150 if (x > *len) {
1151 *buf = kmalloc(x, GFP_KERNEL);
1152 if (!*buf) {
1153 error = -ENOMEM;
1154 goto out_brelse;
1155 }
1156 }
1157
1158 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1159 *len = x;
1160
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001161out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001162 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001163out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001164 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001165 return error;
1166}
1167
1168/**
1169 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1170 * conditionally update the inode's atime
1171 * @gh: the holder to acquire
1172 *
1173 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1174 * Update if the difference between the current time and the inode's current
1175 * atime is greater than an interval specified at mount.
1176 *
1177 * Returns: errno
1178 */
1179
1180int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1181{
1182 struct gfs2_glock *gl = gh->gh_gl;
1183 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001184 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001185 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001186 unsigned int state;
1187 int flags;
1188 int error;
1189
1190 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1191 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1192 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1193 return -EINVAL;
1194
1195 state = gh->gh_state;
1196 flags = gh->gh_flags;
1197
1198 error = gfs2_glock_nq(gh);
1199 if (error)
1200 return error;
1201
1202 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1203 (sdp->sd_vfs->s_flags & MS_RDONLY))
1204 return 0;
1205
1206 curtime = get_seconds();
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001207 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001208 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001209 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1210 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 error = gfs2_glock_nq(gh);
1212 if (error)
1213 return error;
1214
1215 /* Verify that atime hasn't been updated while we were
1216 trying to get exclusive lock. */
1217
1218 curtime = get_seconds();
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001219 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001220 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001221 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001222
1223 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1224 if (error == -EROFS)
1225 return 0;
1226 if (error)
1227 goto fail;
1228
1229 error = gfs2_meta_inode_buffer(ip, &dibh);
1230 if (error)
1231 goto fail_end_trans;
1232
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001233 ip->i_inode.i_atime.tv_sec = curtime;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001235 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001236 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001237 di->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001238 brelse(dibh);
1239
1240 gfs2_trans_end(sdp);
1241 }
1242
1243 /* If someone else has asked for the glock,
1244 unlock and let them have it. Then reacquire
1245 in the original state. */
1246 if (gfs2_glock_is_blocking(gl)) {
1247 gfs2_glock_dq(gh);
1248 gfs2_holder_reinit(state, flags, gh);
1249 return gfs2_glock_nq(gh);
1250 }
1251 }
1252
1253 return 0;
1254
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001255fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001256 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001257fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001258 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259 return error;
1260}
1261
1262/**
1263 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1264 * @arg_a: the first structure
1265 * @arg_b: the second structure
1266 *
1267 * Returns: 1 if A > B
1268 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001269 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001270 */
1271
1272static int glock_compare_atime(const void *arg_a, const void *arg_b)
1273{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001274 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1275 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1276 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1277 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278
1279 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001280 return 1;
1281 if (a->ln_number < b->ln_number)
1282 return -1;
1283 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1284 return 1;
1285 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1286 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001287
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001288 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001289}
1290
1291/**
1292 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1293 * atime update
1294 * @num_gh: the number of structures
1295 * @ghs: an array of struct gfs2_holder structures
1296 *
1297 * Returns: 0 on success (all glocks acquired),
1298 * errno on failure (no glocks acquired)
1299 */
1300
1301int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1302{
1303 struct gfs2_holder **p;
1304 unsigned int x;
1305 int error = 0;
1306
1307 if (!num_gh)
1308 return 0;
1309
1310 if (num_gh == 1) {
1311 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1312 if (ghs->gh_flags & GL_ATIME)
1313 error = gfs2_glock_nq_atime(ghs);
1314 else
1315 error = gfs2_glock_nq(ghs);
1316 return error;
1317 }
1318
1319 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1320 if (!p)
1321 return -ENOMEM;
1322
1323 for (x = 0; x < num_gh; x++)
1324 p[x] = &ghs[x];
1325
1326 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1327
1328 for (x = 0; x < num_gh; x++) {
1329 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1330
1331 if (p[x]->gh_flags & GL_ATIME)
1332 error = gfs2_glock_nq_atime(p[x]);
1333 else
1334 error = gfs2_glock_nq(p[x]);
1335
1336 if (error) {
1337 while (x--)
1338 gfs2_glock_dq(p[x]);
1339 break;
1340 }
1341 }
1342
1343 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001344 return error;
1345}
1346
David Teiglandb3b94fa2006-01-16 16:50:04 +00001347
1348static int
1349__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1350{
1351 struct buffer_head *dibh;
1352 int error;
1353
1354 error = gfs2_meta_inode_buffer(ip, &dibh);
1355 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001356 error = inode_setattr(&ip->i_inode, attr);
1357 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001358 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001359 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001360 brelse(dibh);
1361 }
1362 return error;
1363}
1364
1365/**
1366 * gfs2_setattr_simple -
1367 * @ip:
1368 * @attr:
1369 *
1370 * Called with a reference on the vnode.
1371 *
1372 * Returns: errno
1373 */
1374
1375int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1376{
1377 int error;
1378
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001379 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001380 return __gfs2_setattr_simple(ip, attr);
1381
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001382 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001383 if (error)
1384 return error;
1385
1386 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001387 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001388 return error;
1389}
1390