blob: 7ba05fc553aa622d4e879bd79143d17885f0467b [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/posix_acl.h>
16#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050018#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020019#include <linux/lm_interface.h>
Ryan O'Harafcb47e02006-10-03 11:57:35 -040020#include <linux/security.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "acl.h"
25#include "bmap.h"
26#include "dir.h"
27#include "eattr.h"
28#include "glock.h"
29#include "glops.h"
30#include "inode.h"
31#include "log.h"
32#include "meta_io.h"
33#include "ops_address.h"
34#include "ops_file.h"
35#include "ops_inode.h"
36#include "quota.h"
37#include "rgrp.h"
38#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050039#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
41/**
Steven Whitehouse4340fe62006-07-11 09:46:33 -040042 * gfs2_inode_attr_in - Copy attributes from the dinode into the VFS inode
David Teiglandb3b94fa2006-01-16 16:50:04 +000043 * @ip: The GFS2 inode (with embedded disk inode data)
44 * @inode: The Linux VFS inode
45 *
46 */
47
Steven Whitehouse4340fe62006-07-11 09:46:33 -040048void gfs2_inode_attr_in(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +000049{
Steven Whitehouse4340fe62006-07-11 09:46:33 -040050 struct inode *inode = &ip->i_inode;
Al Viro3ca68df2006-10-13 20:11:25 -040051 struct gfs2_dinode_host *di = &ip->i_di;
Steven Whitehouse4340fe62006-07-11 09:46:33 -040052
53 inode->i_ino = ip->i_num.no_addr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000054
Steven Whitehousec2668712006-09-04 13:55:48 -040055 switch (di->di_mode & S_IFMT) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000056 case S_IFBLK:
57 case S_IFCHR:
Steven Whitehousec2668712006-09-04 13:55:48 -040058 inode->i_rdev = MKDEV(di->di_major, di->di_minor);
David Teiglandb3b94fa2006-01-16 16:50:04 +000059 break;
60 default:
61 inode->i_rdev = 0;
62 break;
63 };
64
Steven Whitehousec2668712006-09-04 13:55:48 -040065 inode->i_mode = di->di_mode;
66 inode->i_nlink = di->di_nlink;
67 inode->i_uid = di->di_uid;
68 inode->i_gid = di->di_gid;
69 i_size_write(inode, di->di_size);
70 inode->i_atime.tv_sec = di->di_atime;
71 inode->i_mtime.tv_sec = di->di_mtime;
72 inode->i_ctime.tv_sec = di->di_ctime;
David Teiglandb3b94fa2006-01-16 16:50:04 +000073 inode->i_atime.tv_nsec = 0;
74 inode->i_mtime.tv_nsec = 0;
75 inode->i_ctime.tv_nsec = 0;
Steven Whitehousec2668712006-09-04 13:55:48 -040076 inode->i_blocks = di->di_blocks <<
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040077 (GFS2_SB(inode)->sd_sb.sb_bsize_shift - GFS2_BASIC_BLOCK_SHIFT);
David Teiglandb3b94fa2006-01-16 16:50:04 +000078
Steven Whitehousec2668712006-09-04 13:55:48 -040079 if (di->di_flags & GFS2_DIF_IMMUTABLE)
David Teiglandb3b94fa2006-01-16 16:50:04 +000080 inode->i_flags |= S_IMMUTABLE;
81 else
82 inode->i_flags &= ~S_IMMUTABLE;
83
Steven Whitehousec2668712006-09-04 13:55:48 -040084 if (di->di_flags & GFS2_DIF_APPENDONLY)
David Teiglandb3b94fa2006-01-16 16:50:04 +000085 inode->i_flags |= S_APPEND;
86 else
87 inode->i_flags &= ~S_APPEND;
88}
89
90/**
David Teiglandb3b94fa2006-01-16 16:50:04 +000091 * gfs2_inode_attr_out - Copy attributes from VFS inode into the dinode
92 * @ip: The GFS2 inode
93 *
94 * Only copy out the attributes that we want the VFS layer
95 * to be able to modify.
96 */
97
98void gfs2_inode_attr_out(struct gfs2_inode *ip)
99{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400100 struct inode *inode = &ip->i_inode;
Al Viro3ca68df2006-10-13 20:11:25 -0400101 struct gfs2_dinode_host *di = &ip->i_di;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400102 gfs2_assert_withdraw(GFS2_SB(inode),
Steven Whitehouse75d3b812006-09-04 11:41:31 -0400103 (di->di_mode & S_IFMT) == (inode->i_mode & S_IFMT));
104 di->di_mode = inode->i_mode;
105 di->di_uid = inode->i_uid;
106 di->di_gid = inode->i_gid;
107 di->di_atime = inode->i_atime.tv_sec;
108 di->di_mtime = inode->i_mtime.tv_sec;
109 di->di_ctime = inode->i_ctime.tv_sec;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110}
111
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112static int iget_test(struct inode *inode, void *opaque)
113{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400114 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -0400115 struct gfs2_inum_host *inum = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116
117 if (ip && ip->i_num.no_addr == inum->no_addr)
118 return 1;
119
120 return 0;
121}
122
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400123static int iget_set(struct inode *inode, void *opaque)
124{
125 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -0400126 struct gfs2_inum_host *inum = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400127
128 ip->i_num = *inum;
129 return 0;
130}
131
Al Viro629a21e2006-10-13 22:51:24 -0400132struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000133{
134 return ilookup5(sb, (unsigned long)inum->no_formal_ino,
135 iget_test, inum);
136}
137
Al Viro629a21e2006-10-13 22:51:24 -0400138static struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400140 return iget5_locked(sb, (unsigned long)inum->no_formal_ino,
141 iget_test, iget_set, inum);
142}
143
144/**
145 * gfs2_inode_lookup - Lookup an inode
146 * @sb: The super block
147 * @inum: The inode number
148 * @type: The type of the inode
149 *
150 * Returns: A VFS inode, or an error
151 */
152
Al Viro629a21e2006-10-13 22:51:24 -0400153struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum_host *inum, unsigned int type)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400154{
155 struct inode *inode = gfs2_iget(sb, inum);
156 struct gfs2_inode *ip = GFS2_I(inode);
157 struct gfs2_glock *io_gl;
158 int error;
159
Steven Whitehouse26d83de2006-10-30 16:59:08 -0500160 if (!inode)
161 return ERR_PTR(-ENOBUFS);
162
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400163 if (inode->i_state & I_NEW) {
164 struct gfs2_sbd *sdp = GFS2_SB(inode);
165 umode_t mode = DT2IF(type);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700166 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400167 inode->i_mode = mode;
168
169 if (S_ISREG(mode)) {
170 inode->i_op = &gfs2_file_iops;
171 inode->i_fop = &gfs2_file_fops;
172 inode->i_mapping->a_ops = &gfs2_file_aops;
173 } else if (S_ISDIR(mode)) {
174 inode->i_op = &gfs2_dir_iops;
175 inode->i_fop = &gfs2_dir_fops;
176 } else if (S_ISLNK(mode)) {
177 inode->i_op = &gfs2_symlink_iops;
178 } else {
179 inode->i_op = &gfs2_dev_iops;
180 }
181
182 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
183 if (unlikely(error))
184 goto fail;
185 ip->i_gl->gl_object = ip;
186
187 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
188 if (unlikely(error))
189 goto fail_put;
190
191 ip->i_vn = ip->i_gl->gl_vn - 1;
192 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
193 if (unlikely(error))
194 goto fail_iopen;
195
196 gfs2_glock_put(io_gl);
197 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000198 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400199
200 return inode;
201fail_iopen:
202 gfs2_glock_put(io_gl);
203fail_put:
204 ip->i_gl->gl_object = NULL;
205 gfs2_glock_put(ip->i_gl);
206fail:
207 iput(inode);
208 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209}
210
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500211static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500212{
213 struct gfs2_dinode_host *di = &ip->i_di;
214 const struct gfs2_dinode *str = buf;
215
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500216 if (ip->i_num.no_addr != be64_to_cpu(str->di_num.no_addr)) {
217 if (gfs2_consist_inode(ip))
218 gfs2_dinode_print(ip);
219 return -EIO;
220 }
221 if (ip->i_num.no_formal_ino != be64_to_cpu(str->di_num.no_formal_ino))
222 return -ESTALE;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500223
224 di->di_mode = be32_to_cpu(str->di_mode);
225 di->di_uid = be32_to_cpu(str->di_uid);
226 di->di_gid = be32_to_cpu(str->di_gid);
227 di->di_nlink = be32_to_cpu(str->di_nlink);
228 di->di_size = be64_to_cpu(str->di_size);
229 di->di_blocks = be64_to_cpu(str->di_blocks);
230 di->di_atime = be64_to_cpu(str->di_atime);
231 di->di_mtime = be64_to_cpu(str->di_mtime);
232 di->di_ctime = be64_to_cpu(str->di_ctime);
233 di->di_major = be32_to_cpu(str->di_major);
234 di->di_minor = be32_to_cpu(str->di_minor);
235
236 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
237 di->di_goal_data = be64_to_cpu(str->di_goal_data);
238 di->di_generation = be64_to_cpu(str->di_generation);
239
240 di->di_flags = be32_to_cpu(str->di_flags);
241 di->di_payload_format = be32_to_cpu(str->di_payload_format);
242 di->di_height = be16_to_cpu(str->di_height);
243
244 di->di_depth = be16_to_cpu(str->di_depth);
245 di->di_entries = be32_to_cpu(str->di_entries);
246
247 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500248 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500249}
250
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251/**
252 * gfs2_inode_refresh - Refresh the incore copy of the dinode
253 * @ip: The GFS2 inode
254 *
255 * Returns: errno
256 */
257
258int gfs2_inode_refresh(struct gfs2_inode *ip)
259{
260 struct buffer_head *dibh;
261 int error;
262
263 error = gfs2_meta_inode_buffer(ip, &dibh);
264 if (error)
265 return error;
266
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400267 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000268 brelse(dibh);
269 return -EIO;
270 }
271
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500272 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273
274 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275 ip->i_vn = ip->i_gl->gl_vn;
276
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500277 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278}
279
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400280int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400282 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000283 struct gfs2_alloc *al;
284 struct gfs2_rgrpd *rgd;
285 int error;
286
287 if (ip->i_di.di_blocks != 1) {
288 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500289 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000290 return -EIO;
291 }
292
293 al = gfs2_alloc_get(ip);
294
295 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
296 if (error)
297 goto out;
298
299 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
300 if (error)
301 goto out_qs;
302
303 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
304 if (!rgd) {
305 gfs2_consist_inode(ip);
306 error = -EIO;
307 goto out_rindex_relse;
308 }
309
310 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
311 &al->al_rgd_gh);
312 if (error)
313 goto out_rindex_relse;
314
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400315 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000316 if (error)
317 goto out_rg_gunlock;
318
319 gfs2_trans_add_gl(ip->i_gl);
320
321 gfs2_free_di(rgd, ip);
322
David Teiglandb3b94fa2006-01-16 16:50:04 +0000323 gfs2_trans_end(sdp);
324 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
325
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400326out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400328out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400330out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000331 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400332out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400333 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000334 return error;
335}
336
337/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000338 * gfs2_change_nlink - Change nlink count on inode
339 * @ip: The GFS2 inode
340 * @diff: The change in the nlink count required
341 *
342 * Returns: errno
343 */
344
345int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
346{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400347 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000348 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400349 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000350 int error;
351
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400352 BUG_ON(ip->i_di.di_nlink != ip->i_inode.i_nlink);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000353 nlink = ip->i_di.di_nlink + diff;
354
355 /* If we are reducing the nlink count, but the new value ends up being
356 bigger than the old one, we must have underflowed. */
357 if (diff < 0 && nlink > ip->i_di.di_nlink) {
358 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500359 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000360 return -EIO;
361 }
362
363 error = gfs2_meta_inode_buffer(ip, &dibh);
364 if (error)
365 return error;
366
367 ip->i_di.di_nlink = nlink;
368 ip->i_di.di_ctime = get_seconds();
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400369 ip->i_inode.i_nlink = nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000370
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000371 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500372 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400374 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000375
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400376 if (ip->i_di.di_nlink == 0) {
377 struct gfs2_rgrpd *rgd;
378 struct gfs2_holder ri_gh, rg_gh;
379
380 error = gfs2_rindex_hold(sdp, &ri_gh);
381 if (error)
382 goto out;
383 error = -EIO;
384 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
385 if (!rgd)
386 goto out_norgrp;
387 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
388 if (error)
389 goto out_norgrp;
390
Steven Whitehousef92a0b62006-10-02 16:01:53 -0400391 clear_nlink(&ip->i_inode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400392 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
393 gfs2_glock_dq_uninit(&rg_gh);
394out_norgrp:
395 gfs2_glock_dq_uninit(&ri_gh);
396 }
397out:
398 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000399}
400
Steven Whitehousec7526662006-03-20 12:30:04 -0500401struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
402{
403 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500404 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500405 return gfs2_lookupi(dip, &qstr, 1, NULL);
406}
407
408
David Teiglandb3b94fa2006-01-16 16:50:04 +0000409/**
410 * gfs2_lookupi - Look up a filename in a directory and return its inode
411 * @d_gh: An initialized holder for the directory glock
412 * @name: The name of the inode to look for
413 * @is_root: If 1, ignore the caller's permissions
414 * @i_gh: An uninitialized holder for the new inode glock
415 *
416 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
417 * @is_root is true.
418 *
419 * Returns: errno
420 */
421
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400422struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
423 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500425 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400426 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000427 struct gfs2_holder d_gh;
Al Viro629a21e2006-10-13 22:51:24 -0400428 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000429 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000430 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500431 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000432
433 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500434 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000435
Steven Whitehousec7526662006-03-20 12:30:04 -0500436 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
437 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
438 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400439 igrab(dir);
440 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441 }
442
443 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
444 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500445 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000446
447 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400448 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000449 if (error)
450 goto out;
451 }
452
Steven Whitehousec7526662006-03-20 12:30:04 -0500453 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000454 if (error)
455 goto out;
456
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400457 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458
Steven Whitehouse7359a192006-02-13 12:27:43 +0000459out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000460 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500461 if (error == -ENOENT)
462 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400463 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464}
465
Steven Whitehousecd915492006-09-04 12:49:07 -0400466static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000467{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400468 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000469 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400470 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000471 int error;
472
473 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
474 if (error)
475 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000476 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000477
478 error = gfs2_meta_inode_buffer(ip, &bh);
479 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000480 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481 gfs2_trans_end(sdp);
482 return error;
483 }
484
485 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
486
487 if (ir.ir_length) {
488 *formal_ino = ir.ir_start++;
489 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000490 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000491 gfs2_inum_range_out(&ir,
492 bh->b_data + sizeof(struct gfs2_dinode));
493 brelse(bh);
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 return 0;
497 }
498
499 brelse(bh);
500
Steven Whitehousef55ab262006-02-21 12:51:39 +0000501 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502 gfs2_trans_end(sdp);
503
504 return 1;
505}
506
Steven Whitehousecd915492006-09-04 12:49:07 -0400507static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000508{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400509 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
510 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511 struct gfs2_holder gh;
512 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400513 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514 int error;
515
516 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
517 if (error)
518 return error;
519
520 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
521 if (error)
522 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000523 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000524
525 error = gfs2_meta_inode_buffer(ip, &bh);
526 if (error)
527 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400528
David Teiglandb3b94fa2006-01-16 16:50:04 +0000529 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
530
531 if (!ir.ir_length) {
532 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400533 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400534 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535
536 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
537 if (error)
538 goto out_brelse;
539
Al Virob44b84d2006-10-14 10:46:30 -0400540 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
541 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000542 ir.ir_start = x;
543 ir.ir_length = GFS2_INUM_QUANTUM;
544 x += GFS2_INUM_QUANTUM;
545 if (x < y)
546 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400547 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000548 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400549 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000550
551 brelse(m_bh);
552 }
553
554 *formal_ino = ir.ir_start++;
555 ir.ir_length--;
556
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000557 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000558 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
559
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400560out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400562out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000563 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400565out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567 return error;
568}
569
Steven Whitehousecd915492006-09-04 12:49:07 -0400570static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571{
572 int error;
573
574 error = pick_formal_ino_1(sdp, inum);
575 if (error <= 0)
576 return error;
577
578 error = pick_formal_ino_2(sdp, inum);
579
580 return error;
581}
582
583/**
584 * create_ok - OK to create a new on-disk inode here?
585 * @dip: Directory in which dinode is to be created
586 * @name: Name of new dinode
587 * @mode:
588 *
589 * Returns: errno
590 */
591
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400592static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000593 unsigned int mode)
594{
595 int error;
596
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400597 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000598 if (error)
599 return error;
600
601 /* Don't create entries in an unlinked directory */
602 if (!dip->i_di.di_nlink)
603 return -EPERM;
604
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400605 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000606 switch (error) {
607 case -ENOENT:
608 error = 0;
609 break;
610 case 0:
611 return -EEXIST;
612 default:
613 return error;
614 }
615
Steven Whitehousecd915492006-09-04 12:49:07 -0400616 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000617 return -EFBIG;
Steven Whitehousecd915492006-09-04 12:49:07 -0400618 if (S_ISDIR(mode) && dip->i_di.di_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000619 return -EMLINK;
620
621 return 0;
622}
623
624static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
625 unsigned int *uid, unsigned int *gid)
626{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400627 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400628 (dip->i_di.di_mode & S_ISUID) && dip->i_di.di_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629 if (S_ISDIR(*mode))
630 *mode |= S_ISUID;
631 else if (dip->i_di.di_uid != current->fsuid)
632 *mode &= ~07111;
633 *uid = dip->i_di.di_uid;
634 } else
635 *uid = current->fsuid;
636
637 if (dip->i_di.di_mode & S_ISGID) {
638 if (S_ISDIR(*mode))
639 *mode |= S_ISGID;
640 *gid = dip->i_di.di_gid;
641 } else
642 *gid = current->fsgid;
643}
644
Al Viro629a21e2006-10-13 22:51:24 -0400645static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400646 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000647{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400648 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000649 int error;
650
651 gfs2_alloc_get(dip);
652
653 dip->i_alloc.al_requested = RES_DINODE;
654 error = gfs2_inplace_reserve(dip);
655 if (error)
656 goto out;
657
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400658 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000659 if (error)
660 goto out_ipreserv;
661
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400662 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000663
664 gfs2_trans_end(sdp);
665
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400666out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400668out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000669 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670 return error;
671}
672
673/**
674 * init_dinode - Fill in a new dinode structure
675 * @dip: the directory this inode is being created in
676 * @gl: The glock covering the new inode
677 * @inum: the inode number
678 * @mode: the file permissions
679 * @uid:
680 * @gid:
681 *
682 */
683
684static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400685 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400686 unsigned int uid, unsigned int gid,
687 const u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000688{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400689 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000690 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691 struct buffer_head *dibh;
692
693 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000694 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
696 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000697 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000698
Steven Whitehouse2442a092006-01-30 11:49:32 +0000699 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
700 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000701 di->di_mode = cpu_to_be32(mode);
702 di->di_uid = cpu_to_be32(uid);
703 di->di_gid = cpu_to_be32(gid);
704 di->di_nlink = cpu_to_be32(0);
705 di->di_size = cpu_to_be64(0);
706 di->di_blocks = cpu_to_be64(1);
707 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
708 di->di_major = di->di_minor = cpu_to_be32(0);
709 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400710 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000711 di->di_flags = cpu_to_be32(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000712
713 if (S_ISREG(mode)) {
714 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
715 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000716 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000717 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
718 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000719 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500721 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
722 GFS2_DIF_INHERIT_DIRECTIO);
723 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
724 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725 }
726
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000727 di->__pad1 = 0;
Abhijith Dasb2a580d2006-07-10 12:36:12 -0500728 di->di_payload_format = cpu_to_be32(0);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000729 di->di_height = cpu_to_be32(0);
730 di->__pad2 = 0;
731 di->__pad3 = 0;
732 di->di_depth = cpu_to_be16(0);
733 di->di_entries = cpu_to_be32(0);
734 memset(&di->__pad4, 0, sizeof(di->__pad4));
735 di->di_eattr = cpu_to_be64(0);
736 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
737
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738 brelse(dibh);
739}
740
741static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400742 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400743 const u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400745 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000746 unsigned int uid, gid;
747 int error;
748
749 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000750 gfs2_alloc_get(dip);
751
752 error = gfs2_quota_lock(dip, uid, gid);
753 if (error)
754 goto out;
755
756 error = gfs2_quota_check(dip, uid, gid);
757 if (error)
758 goto out_quota;
759
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400760 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761 if (error)
762 goto out_quota;
763
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400764 init_dinode(dip, gl, inum, mode, uid, gid, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 gfs2_trans_end(sdp);
767
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400768out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400770out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000771 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000772 return error;
773}
774
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400775static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
776 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000777{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400778 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779 struct gfs2_alloc *al;
780 int alloc_required;
781 struct buffer_head *dibh;
782 int error;
783
784 al = gfs2_alloc_get(dip);
785
786 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
787 if (error)
788 goto fail;
789
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400790 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500791 if (alloc_required < 0)
792 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793 if (alloc_required) {
794 error = gfs2_quota_check(dip, dip->i_di.di_uid,
795 dip->i_di.di_gid);
796 if (error)
797 goto fail_quota_locks;
798
799 al->al_requested = sdp->sd_max_dirres;
800
801 error = gfs2_inplace_reserve(dip);
802 if (error)
803 goto fail_quota_locks;
804
Steven Whitehouse320dd102006-05-18 16:25:27 -0400805 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400807 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000808 RES_STATFS + RES_QUOTA, 0);
809 if (error)
810 goto fail_ipreserv;
811 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400812 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000813 if (error)
814 goto fail_quota_locks;
815 }
816
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400817 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_di.di_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 if (error)
819 goto fail_end_trans;
820
821 error = gfs2_meta_inode_buffer(ip, &dibh);
822 if (error)
823 goto fail_end_trans;
824 ip->i_di.di_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000825 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500826 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000827 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000828 return 0;
829
Steven Whitehouse320dd102006-05-18 16:25:27 -0400830fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000831 gfs2_trans_end(sdp);
832
Steven Whitehouse320dd102006-05-18 16:25:27 -0400833fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834 if (dip->i_alloc.al_rgd)
835 gfs2_inplace_release(dip);
836
Steven Whitehouse320dd102006-05-18 16:25:27 -0400837fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000838 gfs2_quota_unlock(dip);
839
Steven Whitehouse320dd102006-05-18 16:25:27 -0400840fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000841 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000842 return error;
843}
844
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400845static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
846{
847 int err;
848 size_t len;
849 void *value;
850 char *name;
851 struct gfs2_ea_request er;
852
853 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
854 &name, &value, &len);
855
856 if (err) {
857 if (err == -EOPNOTSUPP)
858 return 0;
859 return err;
860 }
861
862 memset(&er, 0, sizeof(struct gfs2_ea_request));
863
864 er.er_type = GFS2_EATYPE_SECURITY;
865 er.er_name = name;
866 er.er_data = value;
867 er.er_name_len = strlen(name);
868 er.er_data_len = len;
869
870 err = gfs2_ea_set_i(ip, &er);
871
872 kfree(value);
873 kfree(name);
874
875 return err;
876}
877
David Teiglandb3b94fa2006-01-16 16:50:04 +0000878/**
879 * gfs2_createi - Create a new inode
880 * @ghs: An array of two holders
881 * @name: The name of the new file
882 * @mode: the permissions on the new inode
883 *
884 * @ghs[0] is an initialized holder for the directory
885 * @ghs[1] is the holder for the inode lock
886 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000887 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000888 * file are held. A transaction has been started and an inplace reservation
889 * is held, as well.
890 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000891 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892 */
893
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400894struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500895 unsigned int mode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000897 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500898 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400899 struct inode *dir = &dip->i_inode;
900 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Al Viro629a21e2006-10-13 22:51:24 -0400901 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000902 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400903 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904
905 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000906 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907
David Teiglandb3b94fa2006-01-16 16:50:04 +0000908 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
909 error = gfs2_glock_nq(ghs);
910 if (error)
911 goto fail;
912
913 error = create_ok(dip, name, mode);
914 if (error)
915 goto fail_gunlock;
916
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400917 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918 if (error)
919 goto fail_gunlock;
920
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400921 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 if (error)
923 goto fail_gunlock;
924
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400925 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 gfs2_glock_dq(ghs);
927
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400928 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400929 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
930 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000932 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000933 }
934
935 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
936 error = gfs2_glock_nq(ghs);
937 if (error) {
938 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000939 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940 }
941
942 error = create_ok(dip, name, mode);
943 if (error)
944 goto fail_gunlock2;
945 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400946 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400947 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
948 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949 if (error)
950 goto fail_gunlock;
951 }
952
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400953 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000954 if (error)
955 goto fail_gunlock2;
956
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400957 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
958 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959 goto fail_gunlock2;
960
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400961 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 if (error)
963 goto fail_iput;
964
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400965 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000966 if (error)
967 goto fail_iput;
968
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400969 error = gfs2_security_init(dip, GFS2_I(inode));
970 if (error)
971 goto fail_iput;
972
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400973 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000974 if (error)
975 goto fail_iput;
976
Steven Whitehouse7359a192006-02-13 12:27:43 +0000977 if (!inode)
978 return ERR_PTR(-ENOMEM);
979 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000980
Steven Whitehouse320dd102006-05-18 16:25:27 -0400981fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400982 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400983fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400985fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400987fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000988 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989}
990
991/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992 * gfs2_rmdiri - Remove a directory
993 * @dip: The parent directory of the directory to be removed
994 * @name: The name of the directory to be removed
995 * @ip: The GFS2 inode of the directory to be removed
996 *
997 * Assumes Glocks on dip and ip are held
998 *
999 * Returns: errno
1000 */
1001
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001002int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
1003 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001004{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 struct qstr dotname;
1006 int error;
1007
1008 if (ip->i_di.di_entries != 2) {
1009 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -05001010 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001011 return -EIO;
1012 }
1013
1014 error = gfs2_dir_del(dip, name);
1015 if (error)
1016 return error;
1017
1018 error = gfs2_change_nlink(dip, -1);
1019 if (error)
1020 return error;
1021
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001022 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 error = gfs2_dir_del(ip, &dotname);
1024 if (error)
1025 return error;
1026
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001027 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001028 error = gfs2_dir_del(ip, &dotname);
1029 if (error)
1030 return error;
1031
1032 error = gfs2_change_nlink(ip, -2);
1033 if (error)
1034 return error;
1035
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036 return error;
1037}
1038
1039/*
1040 * gfs2_unlink_ok - check to see that a inode is still in a directory
1041 * @dip: the directory
1042 * @name: the name of the file
1043 * @ip: the inode
1044 *
1045 * Assumes that the lock on (at least) @dip is held.
1046 *
1047 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1048 */
1049
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001050int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001051 struct gfs2_inode *ip)
1052{
Al Viro629a21e2006-10-13 22:51:24 -04001053 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054 unsigned int type;
1055 int error;
1056
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001057 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 return -EPERM;
1059
1060 if ((dip->i_di.di_mode & S_ISVTX) &&
1061 dip->i_di.di_uid != current->fsuid &&
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001062 ip->i_di.di_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001063 return -EPERM;
1064
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001065 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001066 return -EPERM;
1067
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001068 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001069 if (error)
1070 return error;
1071
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001072 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001073 if (error)
1074 return error;
1075
1076 if (!gfs2_inum_equal(&inum, &ip->i_num))
1077 return -ENOENT;
1078
1079 if (IF2DT(ip->i_di.di_mode) != type) {
1080 gfs2_consist_inode(dip);
1081 return -EIO;
1082 }
1083
1084 return 0;
1085}
1086
1087/*
1088 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1089 * @this: move this
1090 * @to: to here
1091 *
1092 * Follow @to back to the root and make sure we don't encounter @this
1093 * Assumes we already hold the rename lock.
1094 *
1095 * Returns: errno
1096 */
1097
1098int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1099{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001100 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001101 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001102 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001103 struct qstr dotdot;
1104 int error = 0;
1105
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001106 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107
Steven Whitehouse7359a192006-02-13 12:27:43 +00001108 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001109
1110 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001111 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112 error = -EINVAL;
1113 break;
1114 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001115 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116 error = 0;
1117 break;
1118 }
1119
Steven Whitehousec7526662006-03-20 12:30:04 -05001120 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1121 if (IS_ERR(tmp)) {
1122 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001124 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001125
Steven Whitehouse7359a192006-02-13 12:27:43 +00001126 iput(dir);
1127 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001128 }
1129
Steven Whitehouse7359a192006-02-13 12:27:43 +00001130 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001131
1132 return error;
1133}
1134
1135/**
1136 * gfs2_readlinki - return the contents of a symlink
1137 * @ip: the symlink's inode
1138 * @buf: a pointer to the buffer to be filled
1139 * @len: a pointer to the length of @buf
1140 *
1141 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1142 * to be freed by the caller.
1143 *
1144 * Returns: errno
1145 */
1146
1147int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1148{
1149 struct gfs2_holder i_gh;
1150 struct buffer_head *dibh;
1151 unsigned int x;
1152 int error;
1153
1154 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1155 error = gfs2_glock_nq_atime(&i_gh);
1156 if (error) {
1157 gfs2_holder_uninit(&i_gh);
1158 return error;
1159 }
1160
1161 if (!ip->i_di.di_size) {
1162 gfs2_consist_inode(ip);
1163 error = -EIO;
1164 goto out;
1165 }
1166
1167 error = gfs2_meta_inode_buffer(ip, &dibh);
1168 if (error)
1169 goto out;
1170
1171 x = ip->i_di.di_size + 1;
1172 if (x > *len) {
1173 *buf = kmalloc(x, GFP_KERNEL);
1174 if (!*buf) {
1175 error = -ENOMEM;
1176 goto out_brelse;
1177 }
1178 }
1179
1180 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1181 *len = x;
1182
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001183out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001184 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001185out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001186 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001187 return error;
1188}
1189
1190/**
1191 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1192 * conditionally update the inode's atime
1193 * @gh: the holder to acquire
1194 *
1195 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1196 * Update if the difference between the current time and the inode's current
1197 * atime is greater than an interval specified at mount.
1198 *
1199 * Returns: errno
1200 */
1201
1202int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1203{
1204 struct gfs2_glock *gl = gh->gh_gl;
1205 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001206 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001207 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001208 unsigned int state;
1209 int flags;
1210 int error;
1211
1212 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1213 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1214 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1215 return -EINVAL;
1216
1217 state = gh->gh_state;
1218 flags = gh->gh_flags;
1219
1220 error = gfs2_glock_nq(gh);
1221 if (error)
1222 return error;
1223
1224 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1225 (sdp->sd_vfs->s_flags & MS_RDONLY))
1226 return 0;
1227
1228 curtime = get_seconds();
1229 if (curtime - ip->i_di.di_atime >= quantum) {
1230 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001231 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1232 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001233 error = gfs2_glock_nq(gh);
1234 if (error)
1235 return error;
1236
1237 /* Verify that atime hasn't been updated while we were
1238 trying to get exclusive lock. */
1239
1240 curtime = get_seconds();
1241 if (curtime - ip->i_di.di_atime >= quantum) {
1242 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001243 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001244
1245 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1246 if (error == -EROFS)
1247 return 0;
1248 if (error)
1249 goto fail;
1250
1251 error = gfs2_meta_inode_buffer(ip, &dibh);
1252 if (error)
1253 goto fail_end_trans;
1254
1255 ip->i_di.di_atime = curtime;
1256
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001257 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001258 di = (struct gfs2_dinode *)dibh->b_data;
1259 di->di_atime = cpu_to_be64(ip->i_di.di_atime);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001260 brelse(dibh);
1261
1262 gfs2_trans_end(sdp);
1263 }
1264
1265 /* If someone else has asked for the glock,
1266 unlock and let them have it. Then reacquire
1267 in the original state. */
1268 if (gfs2_glock_is_blocking(gl)) {
1269 gfs2_glock_dq(gh);
1270 gfs2_holder_reinit(state, flags, gh);
1271 return gfs2_glock_nq(gh);
1272 }
1273 }
1274
1275 return 0;
1276
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001277fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001279fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001281 return error;
1282}
1283
1284/**
1285 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1286 * @arg_a: the first structure
1287 * @arg_b: the second structure
1288 *
1289 * Returns: 1 if A > B
1290 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001291 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001292 */
1293
1294static int glock_compare_atime(const void *arg_a, const void *arg_b)
1295{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001296 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1297 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1298 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1299 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001300
1301 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001302 return 1;
1303 if (a->ln_number < b->ln_number)
1304 return -1;
1305 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1306 return 1;
1307 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1308 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001309
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001310 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001311}
1312
1313/**
1314 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1315 * atime update
1316 * @num_gh: the number of structures
1317 * @ghs: an array of struct gfs2_holder structures
1318 *
1319 * Returns: 0 on success (all glocks acquired),
1320 * errno on failure (no glocks acquired)
1321 */
1322
1323int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1324{
1325 struct gfs2_holder **p;
1326 unsigned int x;
1327 int error = 0;
1328
1329 if (!num_gh)
1330 return 0;
1331
1332 if (num_gh == 1) {
1333 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1334 if (ghs->gh_flags & GL_ATIME)
1335 error = gfs2_glock_nq_atime(ghs);
1336 else
1337 error = gfs2_glock_nq(ghs);
1338 return error;
1339 }
1340
1341 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1342 if (!p)
1343 return -ENOMEM;
1344
1345 for (x = 0; x < num_gh; x++)
1346 p[x] = &ghs[x];
1347
1348 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1349
1350 for (x = 0; x < num_gh; x++) {
1351 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1352
1353 if (p[x]->gh_flags & GL_ATIME)
1354 error = gfs2_glock_nq_atime(p[x]);
1355 else
1356 error = gfs2_glock_nq(p[x]);
1357
1358 if (error) {
1359 while (x--)
1360 gfs2_glock_dq(p[x]);
1361 break;
1362 }
1363 }
1364
1365 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001366 return error;
1367}
1368
David Teiglandb3b94fa2006-01-16 16:50:04 +00001369
1370static int
1371__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1372{
1373 struct buffer_head *dibh;
1374 int error;
1375
1376 error = gfs2_meta_inode_buffer(ip, &dibh);
1377 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001378 error = inode_setattr(&ip->i_inode, attr);
1379 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001380 gfs2_inode_attr_out(ip);
1381
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001382 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001383 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001384 brelse(dibh);
1385 }
1386 return error;
1387}
1388
1389/**
1390 * gfs2_setattr_simple -
1391 * @ip:
1392 * @attr:
1393 *
1394 * Called with a reference on the vnode.
1395 *
1396 * Returns: errno
1397 */
1398
1399int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1400{
1401 int error;
1402
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001403 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001404 return __gfs2_setattr_simple(ip, attr);
1405
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001406 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001407 if (error)
1408 return error;
1409
1410 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001411 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001412 return error;
1413}
1414