blob: 71120398482376c63f795289bb88585109d2eba2 [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);
55 inode->i_atime.tv_sec = di->di_atime;
56 inode->i_mtime.tv_sec = di->di_mtime;
57 inode->i_ctime.tv_sec = di->di_ctime;
David Teiglandb3b94fa2006-01-16 16:50:04 +000058 inode->i_atime.tv_nsec = 0;
59 inode->i_mtime.tv_nsec = 0;
60 inode->i_ctime.tv_nsec = 0;
Steven Whitehousec2668712006-09-04 13:55:48 -040061 inode->i_blocks = di->di_blocks <<
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040062 (GFS2_SB(inode)->sd_sb.sb_bsize_shift - GFS2_BASIC_BLOCK_SHIFT);
David Teiglandb3b94fa2006-01-16 16:50:04 +000063
Steven Whitehousec2668712006-09-04 13:55:48 -040064 if (di->di_flags & GFS2_DIF_IMMUTABLE)
David Teiglandb3b94fa2006-01-16 16:50:04 +000065 inode->i_flags |= S_IMMUTABLE;
66 else
67 inode->i_flags &= ~S_IMMUTABLE;
68
Steven Whitehousec2668712006-09-04 13:55:48 -040069 if (di->di_flags & GFS2_DIF_APPENDONLY)
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 inode->i_flags |= S_APPEND;
71 else
72 inode->i_flags &= ~S_APPEND;
73}
74
75/**
David Teiglandb3b94fa2006-01-16 16:50:04 +000076 * gfs2_inode_attr_out - Copy attributes from VFS inode into the dinode
77 * @ip: The GFS2 inode
78 *
79 * Only copy out the attributes that we want the VFS layer
80 * to be able to modify.
81 */
82
83void gfs2_inode_attr_out(struct gfs2_inode *ip)
84{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040085 struct inode *inode = &ip->i_inode;
Al Viro3ca68df2006-10-13 20:11:25 -040086 struct gfs2_dinode_host *di = &ip->i_di;
Steven Whitehouse75d3b812006-09-04 11:41:31 -040087 di->di_atime = inode->i_atime.tv_sec;
88 di->di_mtime = inode->i_mtime.tv_sec;
89 di->di_ctime = inode->i_ctime.tv_sec;
David Teiglandb3b94fa2006-01-16 16:50:04 +000090}
91
David Teiglandb3b94fa2006-01-16 16:50:04 +000092static int iget_test(struct inode *inode, void *opaque)
93{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040094 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -040095 struct gfs2_inum_host *inum = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +000096
97 if (ip && ip->i_num.no_addr == inum->no_addr)
98 return 1;
99
100 return 0;
101}
102
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400103static int iget_set(struct inode *inode, void *opaque)
104{
105 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -0400106 struct gfs2_inum_host *inum = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400107
108 ip->i_num = *inum;
109 return 0;
110}
111
Al Viro629a21e2006-10-13 22:51:24 -0400112struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113{
114 return ilookup5(sb, (unsigned long)inum->no_formal_ino,
115 iget_test, inum);
116}
117
Al Viro629a21e2006-10-13 22:51:24 -0400118static struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400120 return iget5_locked(sb, (unsigned long)inum->no_formal_ino,
121 iget_test, iget_set, inum);
122}
123
124/**
125 * gfs2_inode_lookup - Lookup an inode
126 * @sb: The super block
127 * @inum: The inode number
128 * @type: The type of the inode
129 *
130 * Returns: A VFS inode, or an error
131 */
132
Al Viro629a21e2006-10-13 22:51:24 -0400133struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum_host *inum, unsigned int type)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400134{
135 struct inode *inode = gfs2_iget(sb, inum);
136 struct gfs2_inode *ip = GFS2_I(inode);
137 struct gfs2_glock *io_gl;
138 int error;
139
Steven Whitehouse26d83de2006-10-30 16:59:08 -0500140 if (!inode)
141 return ERR_PTR(-ENOBUFS);
142
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400143 if (inode->i_state & I_NEW) {
144 struct gfs2_sbd *sdp = GFS2_SB(inode);
145 umode_t mode = DT2IF(type);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700146 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400147 inode->i_mode = mode;
148
149 if (S_ISREG(mode)) {
150 inode->i_op = &gfs2_file_iops;
151 inode->i_fop = &gfs2_file_fops;
152 inode->i_mapping->a_ops = &gfs2_file_aops;
153 } else if (S_ISDIR(mode)) {
154 inode->i_op = &gfs2_dir_iops;
155 inode->i_fop = &gfs2_dir_fops;
156 } else if (S_ISLNK(mode)) {
157 inode->i_op = &gfs2_symlink_iops;
158 } else {
159 inode->i_op = &gfs2_dev_iops;
160 }
161
162 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
163 if (unlikely(error))
164 goto fail;
165 ip->i_gl->gl_object = ip;
166
167 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
168 if (unlikely(error))
169 goto fail_put;
170
171 ip->i_vn = ip->i_gl->gl_vn - 1;
172 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
173 if (unlikely(error))
174 goto fail_iopen;
175
176 gfs2_glock_put(io_gl);
177 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000178 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400179
180 return inode;
181fail_iopen:
182 gfs2_glock_put(io_gl);
183fail_put:
184 ip->i_gl->gl_object = NULL;
185 gfs2_glock_put(ip->i_gl);
186fail:
187 iput(inode);
188 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189}
190
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500191static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500192{
193 struct gfs2_dinode_host *di = &ip->i_di;
194 const struct gfs2_dinode *str = buf;
195
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500196 if (ip->i_num.no_addr != be64_to_cpu(str->di_num.no_addr)) {
197 if (gfs2_consist_inode(ip))
198 gfs2_dinode_print(ip);
199 return -EIO;
200 }
201 if (ip->i_num.no_formal_ino != be64_to_cpu(str->di_num.no_formal_ino))
202 return -ESTALE;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500203
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500204 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500205 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500206 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500207 case S_IFBLK:
208 case S_IFCHR:
209 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
210 be32_to_cpu(str->di_minor));
211 break;
212 };
213
Steven Whitehouse2933f922006-11-01 13:23:29 -0500214 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
215 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500216 /*
217 * We will need to review setting the nlink count here in the
218 * light of the forthcoming ro bind mount work. This is a reminder
219 * to do that.
220 */
221 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500222 di->di_size = be64_to_cpu(str->di_size);
223 di->di_blocks = be64_to_cpu(str->di_blocks);
224 di->di_atime = be64_to_cpu(str->di_atime);
225 di->di_mtime = be64_to_cpu(str->di_mtime);
226 di->di_ctime = be64_to_cpu(str->di_ctime);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500227
228 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
229 di->di_goal_data = be64_to_cpu(str->di_goal_data);
230 di->di_generation = be64_to_cpu(str->di_generation);
231
232 di->di_flags = be32_to_cpu(str->di_flags);
233 di->di_payload_format = be32_to_cpu(str->di_payload_format);
234 di->di_height = be16_to_cpu(str->di_height);
235
236 di->di_depth = be16_to_cpu(str->di_depth);
237 di->di_entries = be32_to_cpu(str->di_entries);
238
239 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500240 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500241}
242
David Teiglandb3b94fa2006-01-16 16:50:04 +0000243/**
244 * gfs2_inode_refresh - Refresh the incore copy of the dinode
245 * @ip: The GFS2 inode
246 *
247 * Returns: errno
248 */
249
250int gfs2_inode_refresh(struct gfs2_inode *ip)
251{
252 struct buffer_head *dibh;
253 int error;
254
255 error = gfs2_meta_inode_buffer(ip, &dibh);
256 if (error)
257 return error;
258
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400259 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260 brelse(dibh);
261 return -EIO;
262 }
263
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500264 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266 ip->i_vn = ip->i_gl->gl_vn;
267
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500268 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269}
270
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400271int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000272{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400273 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274 struct gfs2_alloc *al;
275 struct gfs2_rgrpd *rgd;
276 int error;
277
278 if (ip->i_di.di_blocks != 1) {
279 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500280 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281 return -EIO;
282 }
283
284 al = gfs2_alloc_get(ip);
285
286 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
287 if (error)
288 goto out;
289
290 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
291 if (error)
292 goto out_qs;
293
294 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
295 if (!rgd) {
296 gfs2_consist_inode(ip);
297 error = -EIO;
298 goto out_rindex_relse;
299 }
300
301 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
302 &al->al_rgd_gh);
303 if (error)
304 goto out_rindex_relse;
305
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400306 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000307 if (error)
308 goto out_rg_gunlock;
309
310 gfs2_trans_add_gl(ip->i_gl);
311
312 gfs2_free_di(rgd, ip);
313
David Teiglandb3b94fa2006-01-16 16:50:04 +0000314 gfs2_trans_end(sdp);
315 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
316
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400317out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400319out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000320 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400321out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000322 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400323out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400324 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325 return error;
326}
327
328/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329 * gfs2_change_nlink - Change nlink count on inode
330 * @ip: The GFS2 inode
331 * @diff: The change in the nlink count required
332 *
333 * Returns: errno
334 */
335
336int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
337{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400338 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000339 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400340 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000341 int error;
342
Steven Whitehouse4f561102006-11-01 14:04:17 -0500343 BUG_ON(diff != 1 && diff != -1);
344 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000345
346 /* If we are reducing the nlink count, but the new value ends up being
347 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500348 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500350 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351 return -EIO;
352 }
353
354 error = gfs2_meta_inode_buffer(ip, &dibh);
355 if (error)
356 return error;
357
Steven Whitehouse4f561102006-11-01 14:04:17 -0500358 if (diff > 0)
359 inc_nlink(&ip->i_inode);
360 else
361 drop_nlink(&ip->i_inode);
362
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363 ip->i_di.di_ctime = get_seconds();
364
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000365 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500366 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400368 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000369
Steven Whitehouse4f561102006-11-01 14:04:17 -0500370 if (ip->i_inode.i_nlink == 0) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400371 struct gfs2_rgrpd *rgd;
372 struct gfs2_holder ri_gh, rg_gh;
373
374 error = gfs2_rindex_hold(sdp, &ri_gh);
375 if (error)
376 goto out;
377 error = -EIO;
378 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
379 if (!rgd)
380 goto out_norgrp;
381 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
382 if (error)
383 goto out_norgrp;
384
385 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
386 gfs2_glock_dq_uninit(&rg_gh);
387out_norgrp:
388 gfs2_glock_dq_uninit(&ri_gh);
389 }
390out:
391 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000392}
393
Steven Whitehousec7526662006-03-20 12:30:04 -0500394struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
395{
396 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500397 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500398 return gfs2_lookupi(dip, &qstr, 1, NULL);
399}
400
401
David Teiglandb3b94fa2006-01-16 16:50:04 +0000402/**
403 * gfs2_lookupi - Look up a filename in a directory and return its inode
404 * @d_gh: An initialized holder for the directory glock
405 * @name: The name of the inode to look for
406 * @is_root: If 1, ignore the caller's permissions
407 * @i_gh: An uninitialized holder for the new inode glock
408 *
409 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
410 * @is_root is true.
411 *
412 * Returns: errno
413 */
414
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400415struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
416 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500418 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400419 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000420 struct gfs2_holder d_gh;
Al Viro629a21e2006-10-13 22:51:24 -0400421 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000422 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000423 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500424 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000425
426 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500427 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428
Steven Whitehousec7526662006-03-20 12:30:04 -0500429 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
430 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
431 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400432 igrab(dir);
433 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000434 }
435
436 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
437 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500438 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000439
440 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400441 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000442 if (error)
443 goto out;
444 }
445
Steven Whitehousec7526662006-03-20 12:30:04 -0500446 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447 if (error)
448 goto out;
449
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400450 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451
Steven Whitehouse7359a192006-02-13 12:27:43 +0000452out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000453 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500454 if (error == -ENOENT)
455 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400456 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457}
458
Steven Whitehousecd915492006-09-04 12:49:07 -0400459static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000460{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400461 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400463 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464 int error;
465
466 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
467 if (error)
468 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000469 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470
471 error = gfs2_meta_inode_buffer(ip, &bh);
472 if (error) {
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 return error;
476 }
477
478 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
479
480 if (ir.ir_length) {
481 *formal_ino = ir.ir_start++;
482 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000483 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484 gfs2_inum_range_out(&ir,
485 bh->b_data + sizeof(struct gfs2_dinode));
486 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000487 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000488 gfs2_trans_end(sdp);
489 return 0;
490 }
491
492 brelse(bh);
493
Steven Whitehousef55ab262006-02-21 12:51:39 +0000494 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000495 gfs2_trans_end(sdp);
496
497 return 1;
498}
499
Steven Whitehousecd915492006-09-04 12:49:07 -0400500static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400502 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
503 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000504 struct gfs2_holder gh;
505 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400506 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507 int error;
508
509 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
510 if (error)
511 return error;
512
513 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
514 if (error)
515 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000516 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000517
518 error = gfs2_meta_inode_buffer(ip, &bh);
519 if (error)
520 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400521
David Teiglandb3b94fa2006-01-16 16:50:04 +0000522 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
523
524 if (!ir.ir_length) {
525 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400526 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400527 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528
529 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
530 if (error)
531 goto out_brelse;
532
Al Virob44b84d2006-10-14 10:46:30 -0400533 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
534 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535 ir.ir_start = x;
536 ir.ir_length = GFS2_INUM_QUANTUM;
537 x += GFS2_INUM_QUANTUM;
538 if (x < y)
539 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400540 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000541 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400542 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000543
544 brelse(m_bh);
545 }
546
547 *formal_ino = ir.ir_start++;
548 ir.ir_length--;
549
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000550 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000551 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
552
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400553out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400555out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000556 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000557 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400558out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000560 return error;
561}
562
Steven Whitehousecd915492006-09-04 12:49:07 -0400563static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564{
565 int error;
566
567 error = pick_formal_ino_1(sdp, inum);
568 if (error <= 0)
569 return error;
570
571 error = pick_formal_ino_2(sdp, inum);
572
573 return error;
574}
575
576/**
577 * create_ok - OK to create a new on-disk inode here?
578 * @dip: Directory in which dinode is to be created
579 * @name: Name of new dinode
580 * @mode:
581 *
582 * Returns: errno
583 */
584
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400585static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000586 unsigned int mode)
587{
588 int error;
589
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400590 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000591 if (error)
592 return error;
593
594 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500595 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000596 return -EPERM;
597
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400598 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599 switch (error) {
600 case -ENOENT:
601 error = 0;
602 break;
603 case 0:
604 return -EEXIST;
605 default:
606 return error;
607 }
608
Steven Whitehousecd915492006-09-04 12:49:07 -0400609 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000610 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500611 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612 return -EMLINK;
613
614 return 0;
615}
616
617static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
618 unsigned int *uid, unsigned int *gid)
619{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400620 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500621 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 if (S_ISDIR(*mode))
623 *mode |= S_ISUID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500624 else if (dip->i_inode.i_uid != current->fsuid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000625 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500626 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000627 } else
628 *uid = current->fsuid;
629
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500630 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000631 if (S_ISDIR(*mode))
632 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500633 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000634 } else
635 *gid = current->fsgid;
636}
637
Al Viro629a21e2006-10-13 22:51:24 -0400638static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400639 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000640{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400641 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642 int error;
643
644 gfs2_alloc_get(dip);
645
646 dip->i_alloc.al_requested = RES_DINODE;
647 error = gfs2_inplace_reserve(dip);
648 if (error)
649 goto out;
650
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400651 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652 if (error)
653 goto out_ipreserv;
654
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400655 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656
657 gfs2_trans_end(sdp);
658
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400659out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000660 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400661out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000663 return error;
664}
665
666/**
667 * init_dinode - Fill in a new dinode structure
668 * @dip: the directory this inode is being created in
669 * @gl: The glock covering the new inode
670 * @inum: the inode number
671 * @mode: the file permissions
672 * @uid:
673 * @gid:
674 *
675 */
676
677static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400678 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400679 unsigned int uid, unsigned int gid,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500680 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000681{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400682 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000683 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000684 struct buffer_head *dibh;
685
686 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000687 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000688 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
689 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000690 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691
Steven Whitehouse2442a092006-01-30 11:49:32 +0000692 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
693 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000694 di->di_mode = cpu_to_be32(mode);
695 di->di_uid = cpu_to_be32(uid);
696 di->di_gid = cpu_to_be32(gid);
697 di->di_nlink = cpu_to_be32(0);
698 di->di_size = cpu_to_be64(0);
699 di->di_blocks = cpu_to_be64(1);
700 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500701 di->di_major = cpu_to_be32(MAJOR(dev));
702 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000703 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400704 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000705 di->di_flags = cpu_to_be32(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000706
707 if (S_ISREG(mode)) {
708 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
709 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000710 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000711 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
712 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000713 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000714 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500715 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
716 GFS2_DIF_INHERIT_DIRECTIO);
717 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
718 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000719 }
720
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000721 di->__pad1 = 0;
Abhijith Dasb2a580d2006-07-10 12:36:12 -0500722 di->di_payload_format = cpu_to_be32(0);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000723 di->di_height = cpu_to_be32(0);
724 di->__pad2 = 0;
725 di->__pad3 = 0;
726 di->di_depth = cpu_to_be16(0);
727 di->di_entries = cpu_to_be32(0);
728 memset(&di->__pad4, 0, sizeof(di->__pad4));
729 di->di_eattr = cpu_to_be64(0);
730 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
731
David Teiglandb3b94fa2006-01-16 16:50:04 +0000732 brelse(dibh);
733}
734
735static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400736 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500737 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400739 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000740 unsigned int uid, gid;
741 int error;
742
743 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744 gfs2_alloc_get(dip);
745
746 error = gfs2_quota_lock(dip, uid, gid);
747 if (error)
748 goto out;
749
750 error = gfs2_quota_check(dip, uid, gid);
751 if (error)
752 goto out_quota;
753
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400754 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 if (error)
756 goto out_quota;
757
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500758 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000759 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760 gfs2_trans_end(sdp);
761
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400762out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400764out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 return error;
767}
768
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400769static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
770 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000771{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400772 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000773 struct gfs2_alloc *al;
774 int alloc_required;
775 struct buffer_head *dibh;
776 int error;
777
778 al = gfs2_alloc_get(dip);
779
780 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
781 if (error)
782 goto fail;
783
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400784 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500785 if (alloc_required < 0)
786 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000787 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500788 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000789 if (error)
790 goto fail_quota_locks;
791
792 al->al_requested = sdp->sd_max_dirres;
793
794 error = gfs2_inplace_reserve(dip);
795 if (error)
796 goto fail_quota_locks;
797
Steven Whitehouse320dd102006-05-18 16:25:27 -0400798 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400800 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801 RES_STATFS + RES_QUOTA, 0);
802 if (error)
803 goto fail_ipreserv;
804 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400805 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806 if (error)
807 goto fail_quota_locks;
808 }
809
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500810 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000811 if (error)
812 goto fail_end_trans;
813
814 error = gfs2_meta_inode_buffer(ip, &dibh);
815 if (error)
816 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500817 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000818 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500819 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000821 return 0;
822
Steven Whitehouse320dd102006-05-18 16:25:27 -0400823fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 gfs2_trans_end(sdp);
825
Steven Whitehouse320dd102006-05-18 16:25:27 -0400826fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000827 if (dip->i_alloc.al_rgd)
828 gfs2_inplace_release(dip);
829
Steven Whitehouse320dd102006-05-18 16:25:27 -0400830fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000831 gfs2_quota_unlock(dip);
832
Steven Whitehouse320dd102006-05-18 16:25:27 -0400833fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000835 return error;
836}
837
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400838static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
839{
840 int err;
841 size_t len;
842 void *value;
843 char *name;
844 struct gfs2_ea_request er;
845
846 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
847 &name, &value, &len);
848
849 if (err) {
850 if (err == -EOPNOTSUPP)
851 return 0;
852 return err;
853 }
854
855 memset(&er, 0, sizeof(struct gfs2_ea_request));
856
857 er.er_type = GFS2_EATYPE_SECURITY;
858 er.er_name = name;
859 er.er_data = value;
860 er.er_name_len = strlen(name);
861 er.er_data_len = len;
862
863 err = gfs2_ea_set_i(ip, &er);
864
865 kfree(value);
866 kfree(name);
867
868 return err;
869}
870
David Teiglandb3b94fa2006-01-16 16:50:04 +0000871/**
872 * gfs2_createi - Create a new inode
873 * @ghs: An array of two holders
874 * @name: The name of the new file
875 * @mode: the permissions on the new inode
876 *
877 * @ghs[0] is an initialized holder for the directory
878 * @ghs[1] is the holder for the inode lock
879 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000880 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000881 * file are held. A transaction has been started and an inplace reservation
882 * is held, as well.
883 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000884 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000885 */
886
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400887struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500888 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000889{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000890 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500891 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400892 struct inode *dir = &dip->i_inode;
893 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Al Viro629a21e2006-10-13 22:51:24 -0400894 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400896 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897
898 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000899 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900
David Teiglandb3b94fa2006-01-16 16:50:04 +0000901 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
902 error = gfs2_glock_nq(ghs);
903 if (error)
904 goto fail;
905
906 error = create_ok(dip, name, mode);
907 if (error)
908 goto fail_gunlock;
909
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400910 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911 if (error)
912 goto fail_gunlock;
913
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400914 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915 if (error)
916 goto fail_gunlock;
917
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400918 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 gfs2_glock_dq(ghs);
920
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400921 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400922 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
923 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000925 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 }
927
928 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
929 error = gfs2_glock_nq(ghs);
930 if (error) {
931 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000932 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000933 }
934
935 error = create_ok(dip, name, mode);
936 if (error)
937 goto fail_gunlock2;
938 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400939 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400940 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
941 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 if (error)
943 goto fail_gunlock;
944 }
945
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500946 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947 if (error)
948 goto fail_gunlock2;
949
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400950 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
951 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952 goto fail_gunlock2;
953
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400954 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955 if (error)
956 goto fail_iput;
957
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400958 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959 if (error)
960 goto fail_iput;
961
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400962 error = gfs2_security_init(dip, GFS2_I(inode));
963 if (error)
964 goto fail_iput;
965
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400966 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967 if (error)
968 goto fail_iput;
969
Steven Whitehouse7359a192006-02-13 12:27:43 +0000970 if (!inode)
971 return ERR_PTR(-ENOMEM);
972 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000973
Steven Whitehouse320dd102006-05-18 16:25:27 -0400974fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400975 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400976fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400978fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000979 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400980fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000981 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000982}
983
984/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985 * gfs2_rmdiri - Remove a directory
986 * @dip: The parent directory of the directory to be removed
987 * @name: The name of the directory to be removed
988 * @ip: The GFS2 inode of the directory to be removed
989 *
990 * Assumes Glocks on dip and ip are held
991 *
992 * Returns: errno
993 */
994
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400995int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
996 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000997{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998 struct qstr dotname;
999 int error;
1000
1001 if (ip->i_di.di_entries != 2) {
1002 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -05001003 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001004 return -EIO;
1005 }
1006
1007 error = gfs2_dir_del(dip, name);
1008 if (error)
1009 return error;
1010
1011 error = gfs2_change_nlink(dip, -1);
1012 if (error)
1013 return error;
1014
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001015 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001016 error = gfs2_dir_del(ip, &dotname);
1017 if (error)
1018 return error;
1019
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001020 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001021 error = gfs2_dir_del(ip, &dotname);
1022 if (error)
1023 return error;
1024
Steven Whitehouse4f561102006-11-01 14:04:17 -05001025 /* It looks odd, but it really should be done twice */
1026 error = gfs2_change_nlink(ip, -1);
1027 if (error)
1028 return error;
1029
1030 error = gfs2_change_nlink(ip, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001031 if (error)
1032 return error;
1033
David Teiglandb3b94fa2006-01-16 16:50:04 +00001034 return error;
1035}
1036
1037/*
1038 * gfs2_unlink_ok - check to see that a inode is still in a directory
1039 * @dip: the directory
1040 * @name: the name of the file
1041 * @ip: the inode
1042 *
1043 * Assumes that the lock on (at least) @dip is held.
1044 *
1045 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1046 */
1047
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001048int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001049 struct gfs2_inode *ip)
1050{
Al Viro629a21e2006-10-13 22:51:24 -04001051 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001052 unsigned int type;
1053 int error;
1054
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001055 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001056 return -EPERM;
1057
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001058 if ((dip->i_inode.i_mode & S_ISVTX) &&
Steven Whitehouse2933f922006-11-01 13:23:29 -05001059 dip->i_inode.i_uid != current->fsuid &&
1060 ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001061 return -EPERM;
1062
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001063 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001064 return -EPERM;
1065
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001066 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067 if (error)
1068 return error;
1069
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001070 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071 if (error)
1072 return error;
1073
1074 if (!gfs2_inum_equal(&inum, &ip->i_num))
1075 return -ENOENT;
1076
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001077 if (IF2DT(ip->i_inode.i_mode) != type) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078 gfs2_consist_inode(dip);
1079 return -EIO;
1080 }
1081
1082 return 0;
1083}
1084
1085/*
1086 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1087 * @this: move this
1088 * @to: to here
1089 *
1090 * Follow @to back to the root and make sure we don't encounter @this
1091 * Assumes we already hold the rename lock.
1092 *
1093 * Returns: errno
1094 */
1095
1096int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1097{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001098 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001099 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001100 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001101 struct qstr dotdot;
1102 int error = 0;
1103
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001104 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001105
Steven Whitehouse7359a192006-02-13 12:27:43 +00001106 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107
1108 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001109 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001110 error = -EINVAL;
1111 break;
1112 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001113 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001114 error = 0;
1115 break;
1116 }
1117
Steven Whitehousec7526662006-03-20 12:30:04 -05001118 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1119 if (IS_ERR(tmp)) {
1120 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001121 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001122 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123
Steven Whitehouse7359a192006-02-13 12:27:43 +00001124 iput(dir);
1125 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001126 }
1127
Steven Whitehouse7359a192006-02-13 12:27:43 +00001128 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001129
1130 return error;
1131}
1132
1133/**
1134 * gfs2_readlinki - return the contents of a symlink
1135 * @ip: the symlink's inode
1136 * @buf: a pointer to the buffer to be filled
1137 * @len: a pointer to the length of @buf
1138 *
1139 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1140 * to be freed by the caller.
1141 *
1142 * Returns: errno
1143 */
1144
1145int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1146{
1147 struct gfs2_holder i_gh;
1148 struct buffer_head *dibh;
1149 unsigned int x;
1150 int error;
1151
1152 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1153 error = gfs2_glock_nq_atime(&i_gh);
1154 if (error) {
1155 gfs2_holder_uninit(&i_gh);
1156 return error;
1157 }
1158
1159 if (!ip->i_di.di_size) {
1160 gfs2_consist_inode(ip);
1161 error = -EIO;
1162 goto out;
1163 }
1164
1165 error = gfs2_meta_inode_buffer(ip, &dibh);
1166 if (error)
1167 goto out;
1168
1169 x = ip->i_di.di_size + 1;
1170 if (x > *len) {
1171 *buf = kmalloc(x, GFP_KERNEL);
1172 if (!*buf) {
1173 error = -ENOMEM;
1174 goto out_brelse;
1175 }
1176 }
1177
1178 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1179 *len = x;
1180
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001181out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001182 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001183out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001184 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001185 return error;
1186}
1187
1188/**
1189 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1190 * conditionally update the inode's atime
1191 * @gh: the holder to acquire
1192 *
1193 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1194 * Update if the difference between the current time and the inode's current
1195 * atime is greater than an interval specified at mount.
1196 *
1197 * Returns: errno
1198 */
1199
1200int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1201{
1202 struct gfs2_glock *gl = gh->gh_gl;
1203 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001204 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001205 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 unsigned int state;
1207 int flags;
1208 int error;
1209
1210 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1211 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1212 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1213 return -EINVAL;
1214
1215 state = gh->gh_state;
1216 flags = gh->gh_flags;
1217
1218 error = gfs2_glock_nq(gh);
1219 if (error)
1220 return error;
1221
1222 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1223 (sdp->sd_vfs->s_flags & MS_RDONLY))
1224 return 0;
1225
1226 curtime = get_seconds();
1227 if (curtime - ip->i_di.di_atime >= quantum) {
1228 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001229 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1230 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001231 error = gfs2_glock_nq(gh);
1232 if (error)
1233 return error;
1234
1235 /* Verify that atime hasn't been updated while we were
1236 trying to get exclusive lock. */
1237
1238 curtime = get_seconds();
1239 if (curtime - ip->i_di.di_atime >= quantum) {
1240 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001241 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001242
1243 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1244 if (error == -EROFS)
1245 return 0;
1246 if (error)
1247 goto fail;
1248
1249 error = gfs2_meta_inode_buffer(ip, &dibh);
1250 if (error)
1251 goto fail_end_trans;
1252
1253 ip->i_di.di_atime = curtime;
1254
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001255 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001256 di = (struct gfs2_dinode *)dibh->b_data;
1257 di->di_atime = cpu_to_be64(ip->i_di.di_atime);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001258 brelse(dibh);
1259
1260 gfs2_trans_end(sdp);
1261 }
1262
1263 /* If someone else has asked for the glock,
1264 unlock and let them have it. Then reacquire
1265 in the original state. */
1266 if (gfs2_glock_is_blocking(gl)) {
1267 gfs2_glock_dq(gh);
1268 gfs2_holder_reinit(state, flags, gh);
1269 return gfs2_glock_nq(gh);
1270 }
1271 }
1272
1273 return 0;
1274
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001275fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001276 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001277fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001279 return error;
1280}
1281
1282/**
1283 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1284 * @arg_a: the first structure
1285 * @arg_b: the second structure
1286 *
1287 * Returns: 1 if A > B
1288 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001289 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001290 */
1291
1292static int glock_compare_atime(const void *arg_a, const void *arg_b)
1293{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001294 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1295 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1296 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1297 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001298
1299 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001300 return 1;
1301 if (a->ln_number < b->ln_number)
1302 return -1;
1303 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1304 return 1;
1305 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1306 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001307
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001308 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001309}
1310
1311/**
1312 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1313 * atime update
1314 * @num_gh: the number of structures
1315 * @ghs: an array of struct gfs2_holder structures
1316 *
1317 * Returns: 0 on success (all glocks acquired),
1318 * errno on failure (no glocks acquired)
1319 */
1320
1321int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1322{
1323 struct gfs2_holder **p;
1324 unsigned int x;
1325 int error = 0;
1326
1327 if (!num_gh)
1328 return 0;
1329
1330 if (num_gh == 1) {
1331 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1332 if (ghs->gh_flags & GL_ATIME)
1333 error = gfs2_glock_nq_atime(ghs);
1334 else
1335 error = gfs2_glock_nq(ghs);
1336 return error;
1337 }
1338
1339 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1340 if (!p)
1341 return -ENOMEM;
1342
1343 for (x = 0; x < num_gh; x++)
1344 p[x] = &ghs[x];
1345
1346 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1347
1348 for (x = 0; x < num_gh; x++) {
1349 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1350
1351 if (p[x]->gh_flags & GL_ATIME)
1352 error = gfs2_glock_nq_atime(p[x]);
1353 else
1354 error = gfs2_glock_nq(p[x]);
1355
1356 if (error) {
1357 while (x--)
1358 gfs2_glock_dq(p[x]);
1359 break;
1360 }
1361 }
1362
1363 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001364 return error;
1365}
1366
David Teiglandb3b94fa2006-01-16 16:50:04 +00001367
1368static int
1369__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1370{
1371 struct buffer_head *dibh;
1372 int error;
1373
1374 error = gfs2_meta_inode_buffer(ip, &dibh);
1375 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001376 error = inode_setattr(&ip->i_inode, attr);
1377 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001378 gfs2_inode_attr_out(ip);
1379
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001380 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001381 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001382 brelse(dibh);
1383 }
1384 return error;
1385}
1386
1387/**
1388 * gfs2_setattr_simple -
1389 * @ip:
1390 * @attr:
1391 *
1392 * Called with a reference on the vnode.
1393 *
1394 * Returns: errno
1395 */
1396
1397int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1398{
1399 int error;
1400
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001401 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001402 return __gfs2_setattr_simple(ip, attr);
1403
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001404 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001405 if (error)
1406 return error;
1407
1408 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001409 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001410 return error;
1411}
1412