blob: f6177fc683200d6faa959ba7789ab266591d683e [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;
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);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500213 di->di_height = be16_to_cpu(str->di_height);
214
215 di->di_depth = be16_to_cpu(str->di_depth);
216 di->di_entries = be32_to_cpu(str->di_entries);
217
218 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500219 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500220}
221
David Teiglandb3b94fa2006-01-16 16:50:04 +0000222/**
223 * gfs2_inode_refresh - Refresh the incore copy of the dinode
224 * @ip: The GFS2 inode
225 *
226 * Returns: errno
227 */
228
229int gfs2_inode_refresh(struct gfs2_inode *ip)
230{
231 struct buffer_head *dibh;
232 int error;
233
234 error = gfs2_meta_inode_buffer(ip, &dibh);
235 if (error)
236 return error;
237
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400238 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 brelse(dibh);
240 return -EIO;
241 }
242
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500243 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000244 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245 ip->i_vn = ip->i_gl->gl_vn;
246
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500247 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248}
249
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400250int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400252 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253 struct gfs2_alloc *al;
254 struct gfs2_rgrpd *rgd;
255 int error;
256
257 if (ip->i_di.di_blocks != 1) {
258 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500259 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260 return -EIO;
261 }
262
263 al = gfs2_alloc_get(ip);
264
265 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
266 if (error)
267 goto out;
268
269 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
270 if (error)
271 goto out_qs;
272
273 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
274 if (!rgd) {
275 gfs2_consist_inode(ip);
276 error = -EIO;
277 goto out_rindex_relse;
278 }
279
280 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
281 &al->al_rgd_gh);
282 if (error)
283 goto out_rindex_relse;
284
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400285 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000286 if (error)
287 goto out_rg_gunlock;
288
289 gfs2_trans_add_gl(ip->i_gl);
290
291 gfs2_free_di(rgd, ip);
292
David Teiglandb3b94fa2006-01-16 16:50:04 +0000293 gfs2_trans_end(sdp);
294 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
295
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400296out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000297 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400298out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000299 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400300out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400302out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400303 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304 return error;
305}
306
307/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000308 * gfs2_change_nlink - Change nlink count on inode
309 * @ip: The GFS2 inode
310 * @diff: The change in the nlink count required
311 *
312 * Returns: errno
313 */
314
315int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
316{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400317 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400319 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000320 int error;
321
Steven Whitehouse4f561102006-11-01 14:04:17 -0500322 BUG_ON(diff != 1 && diff != -1);
323 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000324
325 /* If we are reducing the nlink count, but the new value ends up being
326 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500327 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000328 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500329 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000330 return -EIO;
331 }
332
333 error = gfs2_meta_inode_buffer(ip, &dibh);
334 if (error)
335 return error;
336
Steven Whitehouse4f561102006-11-01 14:04:17 -0500337 if (diff > 0)
338 inc_nlink(&ip->i_inode);
339 else
340 drop_nlink(&ip->i_inode);
341
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500342 ip->i_inode.i_ctime.tv_sec = get_seconds();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000343
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000344 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500345 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000346 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400347 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000348
Steven Whitehouse4f561102006-11-01 14:04:17 -0500349 if (ip->i_inode.i_nlink == 0) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400350 struct gfs2_rgrpd *rgd;
351 struct gfs2_holder ri_gh, rg_gh;
352
353 error = gfs2_rindex_hold(sdp, &ri_gh);
354 if (error)
355 goto out;
356 error = -EIO;
357 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
358 if (!rgd)
359 goto out_norgrp;
360 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
361 if (error)
362 goto out_norgrp;
363
364 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
365 gfs2_glock_dq_uninit(&rg_gh);
366out_norgrp:
367 gfs2_glock_dq_uninit(&ri_gh);
368 }
369out:
370 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371}
372
Steven Whitehousec7526662006-03-20 12:30:04 -0500373struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
374{
375 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500376 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500377 return gfs2_lookupi(dip, &qstr, 1, NULL);
378}
379
380
David Teiglandb3b94fa2006-01-16 16:50:04 +0000381/**
382 * gfs2_lookupi - Look up a filename in a directory and return its inode
383 * @d_gh: An initialized holder for the directory glock
384 * @name: The name of the inode to look for
385 * @is_root: If 1, ignore the caller's permissions
386 * @i_gh: An uninitialized holder for the new inode glock
387 *
388 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
389 * @is_root is true.
390 *
391 * Returns: errno
392 */
393
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400394struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
395 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500397 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400398 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000399 struct gfs2_holder d_gh;
Al Viro629a21e2006-10-13 22:51:24 -0400400 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000401 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000402 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500403 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404
405 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500406 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000407
Steven Whitehousec7526662006-03-20 12:30:04 -0500408 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
409 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
410 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400411 igrab(dir);
412 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000413 }
414
415 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
416 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500417 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000418
419 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400420 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000421 if (error)
422 goto out;
423 }
424
Steven Whitehousec7526662006-03-20 12:30:04 -0500425 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000426 if (error)
427 goto out;
428
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400429 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000430
Steven Whitehouse7359a192006-02-13 12:27:43 +0000431out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000432 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500433 if (error == -ENOENT)
434 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400435 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000436}
437
Steven Whitehousecd915492006-09-04 12:49:07 -0400438static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000439{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400440 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400442 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000443 int error;
444
445 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
446 if (error)
447 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000448 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000449
450 error = gfs2_meta_inode_buffer(ip, &bh);
451 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000452 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000453 gfs2_trans_end(sdp);
454 return error;
455 }
456
457 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
458
459 if (ir.ir_length) {
460 *formal_ino = ir.ir_start++;
461 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000462 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000463 gfs2_inum_range_out(&ir,
464 bh->b_data + sizeof(struct gfs2_dinode));
465 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000466 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000467 gfs2_trans_end(sdp);
468 return 0;
469 }
470
471 brelse(bh);
472
Steven Whitehousef55ab262006-02-21 12:51:39 +0000473 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474 gfs2_trans_end(sdp);
475
476 return 1;
477}
478
Steven Whitehousecd915492006-09-04 12:49:07 -0400479static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000480{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400481 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
482 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000483 struct gfs2_holder gh;
484 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400485 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486 int error;
487
488 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
489 if (error)
490 return error;
491
492 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
493 if (error)
494 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000495 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496
497 error = gfs2_meta_inode_buffer(ip, &bh);
498 if (error)
499 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400500
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
502
503 if (!ir.ir_length) {
504 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400505 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400506 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507
508 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
509 if (error)
510 goto out_brelse;
511
Al Virob44b84d2006-10-14 10:46:30 -0400512 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
513 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514 ir.ir_start = x;
515 ir.ir_length = GFS2_INUM_QUANTUM;
516 x += GFS2_INUM_QUANTUM;
517 if (x < y)
518 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400519 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000520 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400521 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000522
523 brelse(m_bh);
524 }
525
526 *formal_ino = ir.ir_start++;
527 ir.ir_length--;
528
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000529 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
531
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400532out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000533 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400534out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000535 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000536 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400537out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000538 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000539 return error;
540}
541
Steven Whitehousecd915492006-09-04 12:49:07 -0400542static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000543{
544 int error;
545
546 error = pick_formal_ino_1(sdp, inum);
547 if (error <= 0)
548 return error;
549
550 error = pick_formal_ino_2(sdp, inum);
551
552 return error;
553}
554
555/**
556 * create_ok - OK to create a new on-disk inode here?
557 * @dip: Directory in which dinode is to be created
558 * @name: Name of new dinode
559 * @mode:
560 *
561 * Returns: errno
562 */
563
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400564static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565 unsigned int mode)
566{
567 int error;
568
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400569 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000570 if (error)
571 return error;
572
573 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500574 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000575 return -EPERM;
576
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400577 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578 switch (error) {
579 case -ENOENT:
580 error = 0;
581 break;
582 case 0:
583 return -EEXIST;
584 default:
585 return error;
586 }
587
Steven Whitehousecd915492006-09-04 12:49:07 -0400588 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500590 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000591 return -EMLINK;
592
593 return 0;
594}
595
596static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
597 unsigned int *uid, unsigned int *gid)
598{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400599 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500600 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601 if (S_ISDIR(*mode))
602 *mode |= S_ISUID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500603 else if (dip->i_inode.i_uid != current->fsuid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500605 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000606 } else
607 *uid = current->fsuid;
608
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500609 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000610 if (S_ISDIR(*mode))
611 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500612 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613 } else
614 *gid = current->fsgid;
615}
616
Al Viro629a21e2006-10-13 22:51:24 -0400617static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400618 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000619{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400620 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000621 int error;
622
623 gfs2_alloc_get(dip);
624
625 dip->i_alloc.al_requested = RES_DINODE;
626 error = gfs2_inplace_reserve(dip);
627 if (error)
628 goto out;
629
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400630 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000631 if (error)
632 goto out_ipreserv;
633
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400634 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000635
636 gfs2_trans_end(sdp);
637
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400638out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400640out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000641 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642 return error;
643}
644
645/**
646 * init_dinode - Fill in a new dinode structure
647 * @dip: the directory this inode is being created in
648 * @gl: The glock covering the new inode
649 * @inum: the inode number
650 * @mode: the file permissions
651 * @uid:
652 * @gid:
653 *
654 */
655
656static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400657 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400658 unsigned int uid, unsigned int gid,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500659 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000660{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400661 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000662 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000663 struct buffer_head *dibh;
664
665 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000666 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
668 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000669 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670
Steven Whitehouse2442a092006-01-30 11:49:32 +0000671 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
672 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000673 di->di_mode = cpu_to_be32(mode);
674 di->di_uid = cpu_to_be32(uid);
675 di->di_gid = cpu_to_be32(gid);
676 di->di_nlink = cpu_to_be32(0);
677 di->di_size = cpu_to_be64(0);
678 di->di_blocks = cpu_to_be64(1);
679 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500680 di->di_major = cpu_to_be32(MAJOR(dev));
681 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000682 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400683 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000684 di->di_flags = cpu_to_be32(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000685
686 if (S_ISREG(mode)) {
687 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
688 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000689 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000690 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
691 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000692 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500694 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
695 GFS2_DIF_INHERIT_DIRECTIO);
696 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
697 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000698 }
699
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000700 di->__pad1 = 0;
Steven Whitehousea9583c72006-11-01 20:09:14 -0500701 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000702 di->di_height = cpu_to_be32(0);
703 di->__pad2 = 0;
704 di->__pad3 = 0;
705 di->di_depth = cpu_to_be16(0);
706 di->di_entries = cpu_to_be32(0);
707 memset(&di->__pad4, 0, sizeof(di->__pad4));
708 di->di_eattr = cpu_to_be64(0);
709 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
710
David Teiglandb3b94fa2006-01-16 16:50:04 +0000711 brelse(dibh);
712}
713
714static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400715 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500716 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000717{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400718 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000719 unsigned int uid, gid;
720 int error;
721
722 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000723 gfs2_alloc_get(dip);
724
725 error = gfs2_quota_lock(dip, uid, gid);
726 if (error)
727 goto out;
728
729 error = gfs2_quota_check(dip, uid, gid);
730 if (error)
731 goto out_quota;
732
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400733 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734 if (error)
735 goto out_quota;
736
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500737 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 gfs2_trans_end(sdp);
740
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400741out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400743out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745 return error;
746}
747
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400748static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
749 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000750{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400751 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000752 struct gfs2_alloc *al;
753 int alloc_required;
754 struct buffer_head *dibh;
755 int error;
756
757 al = gfs2_alloc_get(dip);
758
759 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
760 if (error)
761 goto fail;
762
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400763 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500764 if (alloc_required < 0)
765 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500767 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 if (error)
769 goto fail_quota_locks;
770
771 al->al_requested = sdp->sd_max_dirres;
772
773 error = gfs2_inplace_reserve(dip);
774 if (error)
775 goto fail_quota_locks;
776
Steven Whitehouse320dd102006-05-18 16:25:27 -0400777 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400779 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780 RES_STATFS + RES_QUOTA, 0);
781 if (error)
782 goto fail_ipreserv;
783 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400784 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000785 if (error)
786 goto fail_quota_locks;
787 }
788
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500789 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790 if (error)
791 goto fail_end_trans;
792
793 error = gfs2_meta_inode_buffer(ip, &dibh);
794 if (error)
795 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500796 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000797 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500798 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000800 return 0;
801
Steven Whitehouse320dd102006-05-18 16:25:27 -0400802fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000803 gfs2_trans_end(sdp);
804
Steven Whitehouse320dd102006-05-18 16:25:27 -0400805fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806 if (dip->i_alloc.al_rgd)
807 gfs2_inplace_release(dip);
808
Steven Whitehouse320dd102006-05-18 16:25:27 -0400809fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810 gfs2_quota_unlock(dip);
811
Steven Whitehouse320dd102006-05-18 16:25:27 -0400812fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000813 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814 return error;
815}
816
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400817static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
818{
819 int err;
820 size_t len;
821 void *value;
822 char *name;
823 struct gfs2_ea_request er;
824
825 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
826 &name, &value, &len);
827
828 if (err) {
829 if (err == -EOPNOTSUPP)
830 return 0;
831 return err;
832 }
833
834 memset(&er, 0, sizeof(struct gfs2_ea_request));
835
836 er.er_type = GFS2_EATYPE_SECURITY;
837 er.er_name = name;
838 er.er_data = value;
839 er.er_name_len = strlen(name);
840 er.er_data_len = len;
841
842 err = gfs2_ea_set_i(ip, &er);
843
844 kfree(value);
845 kfree(name);
846
847 return err;
848}
849
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850/**
851 * gfs2_createi - Create a new inode
852 * @ghs: An array of two holders
853 * @name: The name of the new file
854 * @mode: the permissions on the new inode
855 *
856 * @ghs[0] is an initialized holder for the directory
857 * @ghs[1] is the holder for the inode lock
858 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000859 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000860 * file are held. A transaction has been started and an inplace reservation
861 * is held, as well.
862 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000863 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000864 */
865
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400866struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500867 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000868{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000869 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500870 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400871 struct inode *dir = &dip->i_inode;
872 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Al Viro629a21e2006-10-13 22:51:24 -0400873 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000874 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400875 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000876
877 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000878 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879
David Teiglandb3b94fa2006-01-16 16:50:04 +0000880 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
881 error = gfs2_glock_nq(ghs);
882 if (error)
883 goto fail;
884
885 error = create_ok(dip, name, mode);
886 if (error)
887 goto fail_gunlock;
888
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400889 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000890 if (error)
891 goto fail_gunlock;
892
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400893 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000894 if (error)
895 goto fail_gunlock;
896
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400897 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000898 gfs2_glock_dq(ghs);
899
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400900 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400901 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
902 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000903 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000904 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000905 }
906
907 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
908 error = gfs2_glock_nq(ghs);
909 if (error) {
910 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000911 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912 }
913
914 error = create_ok(dip, name, mode);
915 if (error)
916 goto fail_gunlock2;
917 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400918 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400919 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
920 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000921 if (error)
922 goto fail_gunlock;
923 }
924
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500925 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 if (error)
927 goto fail_gunlock2;
928
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400929 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
930 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931 goto fail_gunlock2;
932
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400933 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000934 if (error)
935 goto fail_iput;
936
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400937 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000938 if (error)
939 goto fail_iput;
940
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400941 error = gfs2_security_init(dip, GFS2_I(inode));
942 if (error)
943 goto fail_iput;
944
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400945 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946 if (error)
947 goto fail_iput;
948
Steven Whitehouse7359a192006-02-13 12:27:43 +0000949 if (!inode)
950 return ERR_PTR(-ENOMEM);
951 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952
Steven Whitehouse320dd102006-05-18 16:25:27 -0400953fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400954 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400955fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000956 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400957fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400959fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000960 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961}
962
963/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000964 * gfs2_rmdiri - Remove a directory
965 * @dip: The parent directory of the directory to be removed
966 * @name: The name of the directory to be removed
967 * @ip: The GFS2 inode of the directory to be removed
968 *
969 * Assumes Glocks on dip and ip are held
970 *
971 * Returns: errno
972 */
973
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400974int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
975 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977 struct qstr dotname;
978 int error;
979
980 if (ip->i_di.di_entries != 2) {
981 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500982 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983 return -EIO;
984 }
985
986 error = gfs2_dir_del(dip, name);
987 if (error)
988 return error;
989
990 error = gfs2_change_nlink(dip, -1);
991 if (error)
992 return error;
993
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500994 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995 error = gfs2_dir_del(ip, &dotname);
996 if (error)
997 return error;
998
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400999 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001000 error = gfs2_dir_del(ip, &dotname);
1001 if (error)
1002 return error;
1003
Steven Whitehouse4f561102006-11-01 14:04:17 -05001004 /* It looks odd, but it really should be done twice */
1005 error = gfs2_change_nlink(ip, -1);
1006 if (error)
1007 return error;
1008
1009 error = gfs2_change_nlink(ip, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 if (error)
1011 return error;
1012
David Teiglandb3b94fa2006-01-16 16:50:04 +00001013 return error;
1014}
1015
1016/*
1017 * gfs2_unlink_ok - check to see that a inode is still in a directory
1018 * @dip: the directory
1019 * @name: the name of the file
1020 * @ip: the inode
1021 *
1022 * Assumes that the lock on (at least) @dip is held.
1023 *
1024 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1025 */
1026
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001027int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001028 struct gfs2_inode *ip)
1029{
Al Viro629a21e2006-10-13 22:51:24 -04001030 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001031 unsigned int type;
1032 int error;
1033
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001034 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035 return -EPERM;
1036
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001037 if ((dip->i_inode.i_mode & S_ISVTX) &&
Steven Whitehouse2933f922006-11-01 13:23:29 -05001038 dip->i_inode.i_uid != current->fsuid &&
1039 ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001040 return -EPERM;
1041
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001042 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001043 return -EPERM;
1044
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001045 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001046 if (error)
1047 return error;
1048
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001049 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001050 if (error)
1051 return error;
1052
1053 if (!gfs2_inum_equal(&inum, &ip->i_num))
1054 return -ENOENT;
1055
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001056 if (IF2DT(ip->i_inode.i_mode) != type) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001057 gfs2_consist_inode(dip);
1058 return -EIO;
1059 }
1060
1061 return 0;
1062}
1063
1064/*
1065 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1066 * @this: move this
1067 * @to: to here
1068 *
1069 * Follow @to back to the root and make sure we don't encounter @this
1070 * Assumes we already hold the rename lock.
1071 *
1072 * Returns: errno
1073 */
1074
1075int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1076{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001077 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001078 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001079 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080 struct qstr dotdot;
1081 int error = 0;
1082
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001083 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084
Steven Whitehouse7359a192006-02-13 12:27:43 +00001085 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001086
1087 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001088 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001089 error = -EINVAL;
1090 break;
1091 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001092 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001093 error = 0;
1094 break;
1095 }
1096
Steven Whitehousec7526662006-03-20 12:30:04 -05001097 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1098 if (IS_ERR(tmp)) {
1099 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001101 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001102
Steven Whitehouse7359a192006-02-13 12:27:43 +00001103 iput(dir);
1104 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001105 }
1106
Steven Whitehouse7359a192006-02-13 12:27:43 +00001107 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108
1109 return error;
1110}
1111
1112/**
1113 * gfs2_readlinki - return the contents of a symlink
1114 * @ip: the symlink's inode
1115 * @buf: a pointer to the buffer to be filled
1116 * @len: a pointer to the length of @buf
1117 *
1118 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1119 * to be freed by the caller.
1120 *
1121 * Returns: errno
1122 */
1123
1124int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1125{
1126 struct gfs2_holder i_gh;
1127 struct buffer_head *dibh;
1128 unsigned int x;
1129 int error;
1130
1131 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1132 error = gfs2_glock_nq_atime(&i_gh);
1133 if (error) {
1134 gfs2_holder_uninit(&i_gh);
1135 return error;
1136 }
1137
1138 if (!ip->i_di.di_size) {
1139 gfs2_consist_inode(ip);
1140 error = -EIO;
1141 goto out;
1142 }
1143
1144 error = gfs2_meta_inode_buffer(ip, &dibh);
1145 if (error)
1146 goto out;
1147
1148 x = ip->i_di.di_size + 1;
1149 if (x > *len) {
1150 *buf = kmalloc(x, GFP_KERNEL);
1151 if (!*buf) {
1152 error = -ENOMEM;
1153 goto out_brelse;
1154 }
1155 }
1156
1157 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1158 *len = x;
1159
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001160out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001162out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001164 return error;
1165}
1166
1167/**
1168 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1169 * conditionally update the inode's atime
1170 * @gh: the holder to acquire
1171 *
1172 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1173 * Update if the difference between the current time and the inode's current
1174 * atime is greater than an interval specified at mount.
1175 *
1176 * Returns: errno
1177 */
1178
1179int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1180{
1181 struct gfs2_glock *gl = gh->gh_gl;
1182 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001183 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001184 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001185 unsigned int state;
1186 int flags;
1187 int error;
1188
1189 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1190 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1191 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1192 return -EINVAL;
1193
1194 state = gh->gh_state;
1195 flags = gh->gh_flags;
1196
1197 error = gfs2_glock_nq(gh);
1198 if (error)
1199 return error;
1200
1201 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1202 (sdp->sd_vfs->s_flags & MS_RDONLY))
1203 return 0;
1204
1205 curtime = get_seconds();
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001206 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001207 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001208 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1209 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001210 error = gfs2_glock_nq(gh);
1211 if (error)
1212 return error;
1213
1214 /* Verify that atime hasn't been updated while we were
1215 trying to get exclusive lock. */
1216
1217 curtime = get_seconds();
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001218 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001219 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001220 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001221
1222 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1223 if (error == -EROFS)
1224 return 0;
1225 if (error)
1226 goto fail;
1227
1228 error = gfs2_meta_inode_buffer(ip, &dibh);
1229 if (error)
1230 goto fail_end_trans;
1231
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001232 ip->i_inode.i_atime.tv_sec = curtime;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001233
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001234 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001235 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001236 di->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001237 brelse(dibh);
1238
1239 gfs2_trans_end(sdp);
1240 }
1241
1242 /* If someone else has asked for the glock,
1243 unlock and let them have it. Then reacquire
1244 in the original state. */
1245 if (gfs2_glock_is_blocking(gl)) {
1246 gfs2_glock_dq(gh);
1247 gfs2_holder_reinit(state, flags, gh);
1248 return gfs2_glock_nq(gh);
1249 }
1250 }
1251
1252 return 0;
1253
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001254fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001255 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001256fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001257 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001258 return error;
1259}
1260
1261/**
1262 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1263 * @arg_a: the first structure
1264 * @arg_b: the second structure
1265 *
1266 * Returns: 1 if A > B
1267 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001268 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001269 */
1270
1271static int glock_compare_atime(const void *arg_a, const void *arg_b)
1272{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001273 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1274 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1275 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1276 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001277
1278 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001279 return 1;
1280 if (a->ln_number < b->ln_number)
1281 return -1;
1282 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1283 return 1;
1284 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1285 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001286
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001287 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288}
1289
1290/**
1291 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1292 * atime update
1293 * @num_gh: the number of structures
1294 * @ghs: an array of struct gfs2_holder structures
1295 *
1296 * Returns: 0 on success (all glocks acquired),
1297 * errno on failure (no glocks acquired)
1298 */
1299
1300int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1301{
1302 struct gfs2_holder **p;
1303 unsigned int x;
1304 int error = 0;
1305
1306 if (!num_gh)
1307 return 0;
1308
1309 if (num_gh == 1) {
1310 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1311 if (ghs->gh_flags & GL_ATIME)
1312 error = gfs2_glock_nq_atime(ghs);
1313 else
1314 error = gfs2_glock_nq(ghs);
1315 return error;
1316 }
1317
1318 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1319 if (!p)
1320 return -ENOMEM;
1321
1322 for (x = 0; x < num_gh; x++)
1323 p[x] = &ghs[x];
1324
1325 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1326
1327 for (x = 0; x < num_gh; x++) {
1328 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1329
1330 if (p[x]->gh_flags & GL_ATIME)
1331 error = gfs2_glock_nq_atime(p[x]);
1332 else
1333 error = gfs2_glock_nq(p[x]);
1334
1335 if (error) {
1336 while (x--)
1337 gfs2_glock_dq(p[x]);
1338 break;
1339 }
1340 }
1341
1342 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001343 return error;
1344}
1345
David Teiglandb3b94fa2006-01-16 16:50:04 +00001346
1347static int
1348__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1349{
1350 struct buffer_head *dibh;
1351 int error;
1352
1353 error = gfs2_meta_inode_buffer(ip, &dibh);
1354 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001355 error = inode_setattr(&ip->i_inode, attr);
1356 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001357 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001358 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001359 brelse(dibh);
1360 }
1361 return error;
1362}
1363
1364/**
1365 * gfs2_setattr_simple -
1366 * @ip:
1367 * @attr:
1368 *
1369 * Called with a reference on the vnode.
1370 *
1371 * Returns: errno
1372 */
1373
1374int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1375{
1376 int error;
1377
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001378 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001379 return __gfs2_setattr_simple(ip, attr);
1380
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001381 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001382 if (error)
1383 return error;
1384
1385 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001386 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001387 return error;
1388}
1389