blob: ea9ca239c8784ebc4610261e30d1c967fc83cc3c [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
David Teiglandb3b94fa2006-01-16 16:50:04 +000041static int iget_test(struct inode *inode, void *opaque)
42{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040043 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -040044 struct gfs2_inum_host *inum = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +000045
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -050046 if (ip->i_num.no_addr == inum->no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000047 return 1;
48
49 return 0;
50}
51
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040052static int iget_set(struct inode *inode, void *opaque)
53{
54 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -040055 struct gfs2_inum_host *inum = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040056
57 ip->i_num = *inum;
Steven Whitehousee7c698d2006-11-08 13:52:05 -050058 inode->i_ino = inum->no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040059 return 0;
60}
61
Al Viro629a21e2006-10-13 22:51:24 -040062struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +000063{
64 return ilookup5(sb, (unsigned long)inum->no_formal_ino,
65 iget_test, inum);
66}
67
Al Viro629a21e2006-10-13 22:51:24 -040068static struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +000069{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040070 return iget5_locked(sb, (unsigned long)inum->no_formal_ino,
71 iget_test, iget_set, inum);
72}
73
74/**
75 * gfs2_inode_lookup - Lookup an inode
76 * @sb: The super block
77 * @inum: The inode number
78 * @type: The type of the inode
79 *
80 * Returns: A VFS inode, or an error
81 */
82
Al Viro629a21e2006-10-13 22:51:24 -040083struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum_host *inum, unsigned int type)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040084{
85 struct inode *inode = gfs2_iget(sb, inum);
86 struct gfs2_inode *ip = GFS2_I(inode);
87 struct gfs2_glock *io_gl;
88 int error;
89
Steven Whitehouse26d83de2006-10-30 16:59:08 -050090 if (!inode)
91 return ERR_PTR(-ENOBUFS);
92
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040093 if (inode->i_state & I_NEW) {
94 struct gfs2_sbd *sdp = GFS2_SB(inode);
95 umode_t mode = DT2IF(type);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -070096 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040097 inode->i_mode = mode;
98
99 if (S_ISREG(mode)) {
100 inode->i_op = &gfs2_file_iops;
101 inode->i_fop = &gfs2_file_fops;
102 inode->i_mapping->a_ops = &gfs2_file_aops;
103 } else if (S_ISDIR(mode)) {
104 inode->i_op = &gfs2_dir_iops;
105 inode->i_fop = &gfs2_dir_fops;
106 } else if (S_ISLNK(mode)) {
107 inode->i_op = &gfs2_symlink_iops;
108 } else {
109 inode->i_op = &gfs2_dev_iops;
110 }
111
112 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
113 if (unlikely(error))
114 goto fail;
115 ip->i_gl->gl_object = ip;
116
117 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
118 if (unlikely(error))
119 goto fail_put;
120
Steven Whitehousebfded272006-11-01 16:05:38 -0500121 set_bit(GIF_INVALID, &ip->i_flags);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400122 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
123 if (unlikely(error))
124 goto fail_iopen;
125
126 gfs2_glock_put(io_gl);
127 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000128 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400129
130 return inode;
131fail_iopen:
132 gfs2_glock_put(io_gl);
133fail_put:
134 ip->i_gl->gl_object = NULL;
135 gfs2_glock_put(ip->i_gl);
136fail:
137 iput(inode);
138 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139}
140
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500141static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500142{
143 struct gfs2_dinode_host *di = &ip->i_di;
144 const struct gfs2_dinode *str = buf;
145
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500146 if (ip->i_num.no_addr != be64_to_cpu(str->di_num.no_addr)) {
147 if (gfs2_consist_inode(ip))
148 gfs2_dinode_print(ip);
149 return -EIO;
150 }
151 if (ip->i_num.no_formal_ino != be64_to_cpu(str->di_num.no_formal_ino))
152 return -ESTALE;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500153
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500154 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500155 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500156 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500157 case S_IFBLK:
158 case S_IFCHR:
159 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
160 be32_to_cpu(str->di_minor));
161 break;
162 };
163
Steven Whitehouse2933f922006-11-01 13:23:29 -0500164 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
165 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500166 /*
167 * We will need to review setting the nlink count here in the
168 * light of the forthcoming ro bind mount work. This is a reminder
169 * to do that.
170 */
171 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500172 di->di_size = be64_to_cpu(str->di_size);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500173 i_size_write(&ip->i_inode, di->di_size);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500174 di->di_blocks = be64_to_cpu(str->di_blocks);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500175 gfs2_set_inode_blocks(&ip->i_inode);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500176 ip->i_inode.i_atime.tv_sec = be64_to_cpu(str->di_atime);
177 ip->i_inode.i_atime.tv_nsec = 0;
178 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
179 ip->i_inode.i_mtime.tv_nsec = 0;
180 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
181 ip->i_inode.i_ctime.tv_nsec = 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500182
183 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
184 di->di_goal_data = be64_to_cpu(str->di_goal_data);
185 di->di_generation = be64_to_cpu(str->di_generation);
186
187 di->di_flags = be32_to_cpu(str->di_flags);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500188 gfs2_set_inode_flags(&ip->i_inode);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500189 di->di_height = be16_to_cpu(str->di_height);
190
191 di->di_depth = be16_to_cpu(str->di_depth);
192 di->di_entries = be32_to_cpu(str->di_entries);
193
194 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500195 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500196}
197
David Teiglandb3b94fa2006-01-16 16:50:04 +0000198/**
199 * gfs2_inode_refresh - Refresh the incore copy of the dinode
200 * @ip: The GFS2 inode
201 *
202 * Returns: errno
203 */
204
205int gfs2_inode_refresh(struct gfs2_inode *ip)
206{
207 struct buffer_head *dibh;
208 int error;
209
210 error = gfs2_meta_inode_buffer(ip, &dibh);
211 if (error)
212 return error;
213
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400214 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 brelse(dibh);
216 return -EIO;
217 }
218
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500219 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000220 brelse(dibh);
Steven Whitehousebfded272006-11-01 16:05:38 -0500221 clear_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000222
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500223 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224}
225
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400226int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400228 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229 struct gfs2_alloc *al;
230 struct gfs2_rgrpd *rgd;
231 int error;
232
233 if (ip->i_di.di_blocks != 1) {
234 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500235 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000236 return -EIO;
237 }
238
239 al = gfs2_alloc_get(ip);
240
241 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
242 if (error)
243 goto out;
244
245 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
246 if (error)
247 goto out_qs;
248
249 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
250 if (!rgd) {
251 gfs2_consist_inode(ip);
252 error = -EIO;
253 goto out_rindex_relse;
254 }
255
256 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
257 &al->al_rgd_gh);
258 if (error)
259 goto out_rindex_relse;
260
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400261 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262 if (error)
263 goto out_rg_gunlock;
264
265 gfs2_trans_add_gl(ip->i_gl);
266
267 gfs2_free_di(rgd, ip);
268
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269 gfs2_trans_end(sdp);
270 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
271
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400272out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400274out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400276out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000277 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400278out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400279 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000280 return error;
281}
282
283/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000284 * gfs2_change_nlink - Change nlink count on inode
285 * @ip: The GFS2 inode
286 * @diff: The change in the nlink count required
287 *
288 * Returns: errno
289 */
290
291int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
292{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400293 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000294 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400295 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296 int error;
297
Steven Whitehouse4f561102006-11-01 14:04:17 -0500298 BUG_ON(diff != 1 && diff != -1);
299 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000300
301 /* If we are reducing the nlink count, but the new value ends up being
302 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500303 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500305 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000306 return -EIO;
307 }
308
309 error = gfs2_meta_inode_buffer(ip, &dibh);
310 if (error)
311 return error;
312
Steven Whitehouse4f561102006-11-01 14:04:17 -0500313 if (diff > 0)
314 inc_nlink(&ip->i_inode);
315 else
316 drop_nlink(&ip->i_inode);
317
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500318 ip->i_inode.i_ctime.tv_sec = get_seconds();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000320 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500321 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000322 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400323 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000324
Steven Whitehouse4f561102006-11-01 14:04:17 -0500325 if (ip->i_inode.i_nlink == 0) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400326 struct gfs2_rgrpd *rgd;
327 struct gfs2_holder ri_gh, rg_gh;
328
329 error = gfs2_rindex_hold(sdp, &ri_gh);
330 if (error)
331 goto out;
332 error = -EIO;
333 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
334 if (!rgd)
335 goto out_norgrp;
336 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
337 if (error)
338 goto out_norgrp;
339
340 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
341 gfs2_glock_dq_uninit(&rg_gh);
342out_norgrp:
343 gfs2_glock_dq_uninit(&ri_gh);
344 }
345out:
346 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347}
348
Steven Whitehousec7526662006-03-20 12:30:04 -0500349struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
350{
351 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500352 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500353 return gfs2_lookupi(dip, &qstr, 1, NULL);
354}
355
356
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357/**
358 * gfs2_lookupi - Look up a filename in a directory and return its inode
359 * @d_gh: An initialized holder for the directory glock
360 * @name: The name of the inode to look for
361 * @is_root: If 1, ignore the caller's permissions
362 * @i_gh: An uninitialized holder for the new inode glock
363 *
364 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
365 * @is_root is true.
366 *
367 * Returns: errno
368 */
369
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400370struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
371 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500373 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400374 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000375 struct gfs2_holder d_gh;
Al Viro629a21e2006-10-13 22:51:24 -0400376 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000377 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000378 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500379 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000380
381 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500382 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000383
Steven Whitehousec7526662006-03-20 12:30:04 -0500384 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
385 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
386 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400387 igrab(dir);
388 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000389 }
390
391 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
392 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500393 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000394
395 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400396 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000397 if (error)
398 goto out;
399 }
400
Steven Whitehousec7526662006-03-20 12:30:04 -0500401 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000402 if (error)
403 goto out;
404
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400405 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000406
Steven Whitehouse7359a192006-02-13 12:27:43 +0000407out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000408 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500409 if (error == -ENOENT)
410 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400411 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000412}
413
Steven Whitehousecd915492006-09-04 12:49:07 -0400414static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000415{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400416 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400418 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419 int error;
420
421 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
422 if (error)
423 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000424 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000425
426 error = gfs2_meta_inode_buffer(ip, &bh);
427 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000428 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000429 gfs2_trans_end(sdp);
430 return error;
431 }
432
433 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
434
435 if (ir.ir_length) {
436 *formal_ino = ir.ir_start++;
437 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000438 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000439 gfs2_inum_range_out(&ir,
440 bh->b_data + sizeof(struct gfs2_dinode));
441 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000442 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000443 gfs2_trans_end(sdp);
444 return 0;
445 }
446
447 brelse(bh);
448
Steven Whitehousef55ab262006-02-21 12:51:39 +0000449 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450 gfs2_trans_end(sdp);
451
452 return 1;
453}
454
Steven Whitehousecd915492006-09-04 12:49:07 -0400455static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400457 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
458 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459 struct gfs2_holder gh;
460 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400461 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462 int error;
463
464 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
465 if (error)
466 return error;
467
468 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
469 if (error)
470 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000471 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000472
473 error = gfs2_meta_inode_buffer(ip, &bh);
474 if (error)
475 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400476
David Teiglandb3b94fa2006-01-16 16:50:04 +0000477 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
478
479 if (!ir.ir_length) {
480 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400481 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400482 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000483
484 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
485 if (error)
486 goto out_brelse;
487
Al Virob44b84d2006-10-14 10:46:30 -0400488 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
489 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000490 ir.ir_start = x;
491 ir.ir_length = GFS2_INUM_QUANTUM;
492 x += GFS2_INUM_QUANTUM;
493 if (x < y)
494 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400495 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000496 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400497 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498
499 brelse(m_bh);
500 }
501
502 *formal_ino = ir.ir_start++;
503 ir.ir_length--;
504
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000505 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000506 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
507
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400508out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000509 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400510out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000511 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000512 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400513out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000515 return error;
516}
517
Steven Whitehousecd915492006-09-04 12:49:07 -0400518static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519{
520 int error;
521
522 error = pick_formal_ino_1(sdp, inum);
523 if (error <= 0)
524 return error;
525
526 error = pick_formal_ino_2(sdp, inum);
527
528 return error;
529}
530
531/**
532 * create_ok - OK to create a new on-disk inode here?
533 * @dip: Directory in which dinode is to be created
534 * @name: Name of new dinode
535 * @mode:
536 *
537 * Returns: errno
538 */
539
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400540static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000541 unsigned int mode)
542{
543 int error;
544
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400545 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000546 if (error)
547 return error;
548
549 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500550 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000551 return -EPERM;
552
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400553 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554 switch (error) {
555 case -ENOENT:
556 error = 0;
557 break;
558 case 0:
559 return -EEXIST;
560 default:
561 return error;
562 }
563
Steven Whitehousecd915492006-09-04 12:49:07 -0400564 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500566 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567 return -EMLINK;
568
569 return 0;
570}
571
572static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
573 unsigned int *uid, unsigned int *gid)
574{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400575 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500576 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577 if (S_ISDIR(*mode))
578 *mode |= S_ISUID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500579 else if (dip->i_inode.i_uid != current->fsuid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500581 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000582 } else
583 *uid = current->fsuid;
584
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500585 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000586 if (S_ISDIR(*mode))
587 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500588 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589 } else
590 *gid = current->fsgid;
591}
592
Al Viro629a21e2006-10-13 22:51:24 -0400593static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400594 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400596 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597 int error;
598
599 gfs2_alloc_get(dip);
600
601 dip->i_alloc.al_requested = RES_DINODE;
602 error = gfs2_inplace_reserve(dip);
603 if (error)
604 goto out;
605
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400606 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607 if (error)
608 goto out_ipreserv;
609
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400610 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000611
612 gfs2_trans_end(sdp);
613
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400614out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000615 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400616out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000617 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 return error;
619}
620
621/**
622 * init_dinode - Fill in a new dinode structure
623 * @dip: the directory this inode is being created in
624 * @gl: The glock covering the new inode
625 * @inum: the inode number
626 * @mode: the file permissions
627 * @uid:
628 * @gid:
629 *
630 */
631
632static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400633 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400634 unsigned int uid, unsigned int gid,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500635 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000636{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400637 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000638 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639 struct buffer_head *dibh;
640
641 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000642 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000643 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
644 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000645 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000646
Steven Whitehouse2442a092006-01-30 11:49:32 +0000647 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
648 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000649 di->di_mode = cpu_to_be32(mode);
650 di->di_uid = cpu_to_be32(uid);
651 di->di_gid = cpu_to_be32(gid);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500652 di->di_nlink = 0;
653 di->di_size = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000654 di->di_blocks = cpu_to_be64(1);
655 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500656 di->di_major = cpu_to_be32(MAJOR(dev));
657 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000658 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400659 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500660 di->di_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000661
662 if (S_ISREG(mode)) {
663 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
664 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000665 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
667 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000668 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000669 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500670 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
671 GFS2_DIF_INHERIT_DIRECTIO);
672 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
673 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000674 }
675
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000676 di->__pad1 = 0;
Steven Whitehousea9583c72006-11-01 20:09:14 -0500677 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500678 di->di_height = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000679 di->__pad2 = 0;
680 di->__pad3 = 0;
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500681 di->di_depth = 0;
682 di->di_entries = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000683 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500684 di->di_eattr = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000685 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
686
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687 brelse(dibh);
688}
689
690static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400691 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500692 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400694 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695 unsigned int uid, gid;
696 int error;
697
698 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000699 gfs2_alloc_get(dip);
700
701 error = gfs2_quota_lock(dip, uid, gid);
702 if (error)
703 goto out;
704
705 error = gfs2_quota_check(dip, uid, gid);
706 if (error)
707 goto out_quota;
708
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400709 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000710 if (error)
711 goto out_quota;
712
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500713 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000714 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715 gfs2_trans_end(sdp);
716
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400717out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000718 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400719out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000721 return error;
722}
723
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400724static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
725 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000726{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400727 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728 struct gfs2_alloc *al;
729 int alloc_required;
730 struct buffer_head *dibh;
731 int error;
732
733 al = gfs2_alloc_get(dip);
734
735 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
736 if (error)
737 goto fail;
738
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400739 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500740 if (alloc_required < 0)
741 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500743 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744 if (error)
745 goto fail_quota_locks;
746
747 al->al_requested = sdp->sd_max_dirres;
748
749 error = gfs2_inplace_reserve(dip);
750 if (error)
751 goto fail_quota_locks;
752
Steven Whitehouse320dd102006-05-18 16:25:27 -0400753 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000754 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400755 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 RES_STATFS + RES_QUOTA, 0);
757 if (error)
758 goto fail_ipreserv;
759 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400760 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761 if (error)
762 goto fail_quota_locks;
763 }
764
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500765 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 if (error)
767 goto fail_end_trans;
768
769 error = gfs2_meta_inode_buffer(ip, &dibh);
770 if (error)
771 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500772 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000773 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500774 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000776 return 0;
777
Steven Whitehouse320dd102006-05-18 16:25:27 -0400778fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779 gfs2_trans_end(sdp);
780
Steven Whitehouse320dd102006-05-18 16:25:27 -0400781fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000782 if (dip->i_alloc.al_rgd)
783 gfs2_inplace_release(dip);
784
Steven Whitehouse320dd102006-05-18 16:25:27 -0400785fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 gfs2_quota_unlock(dip);
787
Steven Whitehouse320dd102006-05-18 16:25:27 -0400788fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000789 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790 return error;
791}
792
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400793static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
794{
795 int err;
796 size_t len;
797 void *value;
798 char *name;
799 struct gfs2_ea_request er;
800
801 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
802 &name, &value, &len);
803
804 if (err) {
805 if (err == -EOPNOTSUPP)
806 return 0;
807 return err;
808 }
809
810 memset(&er, 0, sizeof(struct gfs2_ea_request));
811
812 er.er_type = GFS2_EATYPE_SECURITY;
813 er.er_name = name;
814 er.er_data = value;
815 er.er_name_len = strlen(name);
816 er.er_data_len = len;
817
818 err = gfs2_ea_set_i(ip, &er);
819
820 kfree(value);
821 kfree(name);
822
823 return err;
824}
825
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826/**
827 * gfs2_createi - Create a new inode
828 * @ghs: An array of two holders
829 * @name: The name of the new file
830 * @mode: the permissions on the new inode
831 *
832 * @ghs[0] is an initialized holder for the directory
833 * @ghs[1] is the holder for the inode lock
834 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000835 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836 * file are held. A transaction has been started and an inplace reservation
837 * is held, as well.
838 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000839 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840 */
841
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400842struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500843 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000844{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000845 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500846 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400847 struct inode *dir = &dip->i_inode;
848 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Al Viro629a21e2006-10-13 22:51:24 -0400849 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400851 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000852
853 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000854 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000855
David Teiglandb3b94fa2006-01-16 16:50:04 +0000856 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
857 error = gfs2_glock_nq(ghs);
858 if (error)
859 goto fail;
860
861 error = create_ok(dip, name, mode);
862 if (error)
863 goto fail_gunlock;
864
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400865 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000866 if (error)
867 goto fail_gunlock;
868
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400869 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000870 if (error)
871 goto fail_gunlock;
872
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400873 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000874 gfs2_glock_dq(ghs);
875
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400876 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400877 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
878 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000880 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000881 }
882
883 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
884 error = gfs2_glock_nq(ghs);
885 if (error) {
886 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000887 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000888 }
889
890 error = create_ok(dip, name, mode);
891 if (error)
892 goto fail_gunlock2;
893 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400894 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400895 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
896 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897 if (error)
898 goto fail_gunlock;
899 }
900
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500901 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000902 if (error)
903 goto fail_gunlock2;
904
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400905 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
906 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907 goto fail_gunlock2;
908
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400909 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910 if (error)
911 goto fail_iput;
912
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400913 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000914 if (error)
915 goto fail_iput;
916
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400917 error = gfs2_security_init(dip, GFS2_I(inode));
918 if (error)
919 goto fail_iput;
920
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400921 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 if (error)
923 goto fail_iput;
924
Steven Whitehouse7359a192006-02-13 12:27:43 +0000925 if (!inode)
926 return ERR_PTR(-ENOMEM);
927 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928
Steven Whitehouse320dd102006-05-18 16:25:27 -0400929fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400930 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400931fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000932 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400933fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000934 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400935fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000936 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937}
938
939/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940 * gfs2_rmdiri - Remove a directory
941 * @dip: The parent directory of the directory to be removed
942 * @name: The name of the directory to be removed
943 * @ip: The GFS2 inode of the directory to be removed
944 *
945 * Assumes Glocks on dip and ip are held
946 *
947 * Returns: errno
948 */
949
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400950int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
951 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 struct qstr dotname;
954 int error;
955
956 if (ip->i_di.di_entries != 2) {
957 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500958 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959 return -EIO;
960 }
961
962 error = gfs2_dir_del(dip, name);
963 if (error)
964 return error;
965
966 error = gfs2_change_nlink(dip, -1);
967 if (error)
968 return error;
969
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500970 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000971 error = gfs2_dir_del(ip, &dotname);
972 if (error)
973 return error;
974
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400975 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976 error = gfs2_dir_del(ip, &dotname);
977 if (error)
978 return error;
979
Steven Whitehouse4f561102006-11-01 14:04:17 -0500980 /* It looks odd, but it really should be done twice */
981 error = gfs2_change_nlink(ip, -1);
982 if (error)
983 return error;
984
985 error = gfs2_change_nlink(ip, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986 if (error)
987 return error;
988
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989 return error;
990}
991
992/*
993 * gfs2_unlink_ok - check to see that a inode is still in a directory
994 * @dip: the directory
995 * @name: the name of the file
996 * @ip: the inode
997 *
998 * Assumes that the lock on (at least) @dip is held.
999 *
1000 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1001 */
1002
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001003int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001004 struct gfs2_inode *ip)
1005{
Al Viro629a21e2006-10-13 22:51:24 -04001006 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 unsigned int type;
1008 int error;
1009
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001010 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001011 return -EPERM;
1012
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001013 if ((dip->i_inode.i_mode & S_ISVTX) &&
Steven Whitehouse2933f922006-11-01 13:23:29 -05001014 dip->i_inode.i_uid != current->fsuid &&
1015 ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001016 return -EPERM;
1017
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001018 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001019 return -EPERM;
1020
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001021 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001022 if (error)
1023 return error;
1024
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001025 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026 if (error)
1027 return error;
1028
1029 if (!gfs2_inum_equal(&inum, &ip->i_num))
1030 return -ENOENT;
1031
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001032 if (IF2DT(ip->i_inode.i_mode) != type) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001033 gfs2_consist_inode(dip);
1034 return -EIO;
1035 }
1036
1037 return 0;
1038}
1039
1040/*
1041 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1042 * @this: move this
1043 * @to: to here
1044 *
1045 * Follow @to back to the root and make sure we don't encounter @this
1046 * Assumes we already hold the rename lock.
1047 *
1048 * Returns: errno
1049 */
1050
1051int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1052{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001053 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001054 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001055 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001056 struct qstr dotdot;
1057 int error = 0;
1058
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001059 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001060
Steven Whitehouse7359a192006-02-13 12:27:43 +00001061 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001062
1063 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001064 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001065 error = -EINVAL;
1066 break;
1067 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001068 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001069 error = 0;
1070 break;
1071 }
1072
Steven Whitehousec7526662006-03-20 12:30:04 -05001073 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1074 if (IS_ERR(tmp)) {
1075 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001077 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078
Steven Whitehouse7359a192006-02-13 12:27:43 +00001079 iput(dir);
1080 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 }
1082
Steven Whitehouse7359a192006-02-13 12:27:43 +00001083 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084
1085 return error;
1086}
1087
1088/**
1089 * gfs2_readlinki - return the contents of a symlink
1090 * @ip: the symlink's inode
1091 * @buf: a pointer to the buffer to be filled
1092 * @len: a pointer to the length of @buf
1093 *
1094 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1095 * to be freed by the caller.
1096 *
1097 * Returns: errno
1098 */
1099
1100int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1101{
1102 struct gfs2_holder i_gh;
1103 struct buffer_head *dibh;
1104 unsigned int x;
1105 int error;
1106
1107 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1108 error = gfs2_glock_nq_atime(&i_gh);
1109 if (error) {
1110 gfs2_holder_uninit(&i_gh);
1111 return error;
1112 }
1113
1114 if (!ip->i_di.di_size) {
1115 gfs2_consist_inode(ip);
1116 error = -EIO;
1117 goto out;
1118 }
1119
1120 error = gfs2_meta_inode_buffer(ip, &dibh);
1121 if (error)
1122 goto out;
1123
1124 x = ip->i_di.di_size + 1;
1125 if (x > *len) {
1126 *buf = kmalloc(x, GFP_KERNEL);
1127 if (!*buf) {
1128 error = -ENOMEM;
1129 goto out_brelse;
1130 }
1131 }
1132
1133 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1134 *len = x;
1135
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001136out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001137 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001138out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001140 return error;
1141}
1142
1143/**
1144 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1145 * conditionally update the inode's atime
1146 * @gh: the holder to acquire
1147 *
1148 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1149 * Update if the difference between the current time and the inode's current
1150 * atime is greater than an interval specified at mount.
1151 *
1152 * Returns: errno
1153 */
1154
1155int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1156{
1157 struct gfs2_glock *gl = gh->gh_gl;
1158 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001159 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001160 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161 unsigned int state;
1162 int flags;
1163 int error;
1164
1165 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1166 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1167 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1168 return -EINVAL;
1169
1170 state = gh->gh_state;
1171 flags = gh->gh_flags;
1172
1173 error = gfs2_glock_nq(gh);
1174 if (error)
1175 return error;
1176
1177 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1178 (sdp->sd_vfs->s_flags & MS_RDONLY))
1179 return 0;
1180
1181 curtime = get_seconds();
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001182 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001183 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001184 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1185 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001186 error = gfs2_glock_nq(gh);
1187 if (error)
1188 return error;
1189
1190 /* Verify that atime hasn't been updated while we were
1191 trying to get exclusive lock. */
1192
1193 curtime = get_seconds();
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001194 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001195 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001196 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001197
1198 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1199 if (error == -EROFS)
1200 return 0;
1201 if (error)
1202 goto fail;
1203
1204 error = gfs2_meta_inode_buffer(ip, &dibh);
1205 if (error)
1206 goto fail_end_trans;
1207
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001208 ip->i_inode.i_atime.tv_sec = curtime;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001209
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001210 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001211 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001212 di->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001213 brelse(dibh);
1214
1215 gfs2_trans_end(sdp);
1216 }
1217
1218 /* If someone else has asked for the glock,
1219 unlock and let them have it. Then reacquire
1220 in the original state. */
1221 if (gfs2_glock_is_blocking(gl)) {
1222 gfs2_glock_dq(gh);
1223 gfs2_holder_reinit(state, flags, gh);
1224 return gfs2_glock_nq(gh);
1225 }
1226 }
1227
1228 return 0;
1229
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001230fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001231 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001232fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001233 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234 return error;
1235}
1236
1237/**
1238 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1239 * @arg_a: the first structure
1240 * @arg_b: the second structure
1241 *
1242 * Returns: 1 if A > B
1243 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001244 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001245 */
1246
1247static int glock_compare_atime(const void *arg_a, const void *arg_b)
1248{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001249 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1250 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1251 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1252 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001253
1254 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001255 return 1;
1256 if (a->ln_number < b->ln_number)
1257 return -1;
1258 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1259 return 1;
1260 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1261 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001262
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001263 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001264}
1265
1266/**
1267 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1268 * atime update
1269 * @num_gh: the number of structures
1270 * @ghs: an array of struct gfs2_holder structures
1271 *
1272 * Returns: 0 on success (all glocks acquired),
1273 * errno on failure (no glocks acquired)
1274 */
1275
1276int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1277{
1278 struct gfs2_holder **p;
1279 unsigned int x;
1280 int error = 0;
1281
1282 if (!num_gh)
1283 return 0;
1284
1285 if (num_gh == 1) {
1286 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1287 if (ghs->gh_flags & GL_ATIME)
1288 error = gfs2_glock_nq_atime(ghs);
1289 else
1290 error = gfs2_glock_nq(ghs);
1291 return error;
1292 }
1293
1294 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1295 if (!p)
1296 return -ENOMEM;
1297
1298 for (x = 0; x < num_gh; x++)
1299 p[x] = &ghs[x];
1300
1301 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1302
1303 for (x = 0; x < num_gh; x++) {
1304 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1305
1306 if (p[x]->gh_flags & GL_ATIME)
1307 error = gfs2_glock_nq_atime(p[x]);
1308 else
1309 error = gfs2_glock_nq(p[x]);
1310
1311 if (error) {
1312 while (x--)
1313 gfs2_glock_dq(p[x]);
1314 break;
1315 }
1316 }
1317
1318 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001319 return error;
1320}
1321
David Teiglandb3b94fa2006-01-16 16:50:04 +00001322
1323static int
1324__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1325{
1326 struct buffer_head *dibh;
1327 int error;
1328
1329 error = gfs2_meta_inode_buffer(ip, &dibh);
1330 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001331 error = inode_setattr(&ip->i_inode, attr);
1332 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001333 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001334 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001335 brelse(dibh);
1336 }
1337 return error;
1338}
1339
1340/**
1341 * gfs2_setattr_simple -
1342 * @ip:
1343 * @attr:
1344 *
1345 * Called with a reference on the vnode.
1346 *
1347 * Returns: errno
1348 */
1349
1350int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1351{
1352 int error;
1353
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001354 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001355 return __gfs2_setattr_simple(ip, attr);
1356
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001357 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001358 if (error)
1359 return error;
1360
1361 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001362 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001363 return error;
1364}
1365