blob: a99591956544e6a87daa8d6b0793aad8713bd4b7 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/posix_acl.h>
16#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050018#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020019#include <linux/lm_interface.h>
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -040020#include <linux/security.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "acl.h"
25#include "bmap.h"
26#include "dir.h"
27#include "eattr.h"
28#include "glock.h"
29#include "glops.h"
30#include "inode.h"
31#include "log.h"
32#include "meta_io.h"
33#include "ops_address.h"
34#include "ops_file.h"
35#include "ops_inode.h"
36#include "quota.h"
37#include "rgrp.h"
38#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050039#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
41/**
Steven Whitehouse4340fe62006-07-11 09:46:33 -040042 * gfs2_inode_attr_in - Copy attributes from the dinode into the VFS inode
David Teiglandb3b94fa2006-01-16 16:50:04 +000043 * @ip: The GFS2 inode (with embedded disk inode data)
44 * @inode: The Linux VFS inode
45 *
46 */
47
Steven Whitehouse4340fe62006-07-11 09:46:33 -040048void gfs2_inode_attr_in(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +000049{
Steven Whitehouse4340fe62006-07-11 09:46:33 -040050 struct inode *inode = &ip->i_inode;
Al Viro3ca68df2006-10-13 20:11:25 -040051 struct gfs2_dinode_host *di = &ip->i_di;
Steven Whitehouse4340fe62006-07-11 09:46:33 -040052
53 inode->i_ino = ip->i_num.no_addr;
Steven Whitehousec2668712006-09-04 13:55:48 -040054 inode->i_mode = di->di_mode;
55 inode->i_nlink = di->di_nlink;
56 inode->i_uid = di->di_uid;
57 inode->i_gid = di->di_gid;
58 i_size_write(inode, di->di_size);
59 inode->i_atime.tv_sec = di->di_atime;
60 inode->i_mtime.tv_sec = di->di_mtime;
61 inode->i_ctime.tv_sec = di->di_ctime;
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 inode->i_atime.tv_nsec = 0;
63 inode->i_mtime.tv_nsec = 0;
64 inode->i_ctime.tv_nsec = 0;
Steven Whitehousec2668712006-09-04 13:55:48 -040065 inode->i_blocks = di->di_blocks <<
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040066 (GFS2_SB(inode)->sd_sb.sb_bsize_shift - GFS2_BASIC_BLOCK_SHIFT);
David Teiglandb3b94fa2006-01-16 16:50:04 +000067
Steven Whitehousec2668712006-09-04 13:55:48 -040068 if (di->di_flags & GFS2_DIF_IMMUTABLE)
David Teiglandb3b94fa2006-01-16 16:50:04 +000069 inode->i_flags |= S_IMMUTABLE;
70 else
71 inode->i_flags &= ~S_IMMUTABLE;
72
Steven Whitehousec2668712006-09-04 13:55:48 -040073 if (di->di_flags & GFS2_DIF_APPENDONLY)
David Teiglandb3b94fa2006-01-16 16:50:04 +000074 inode->i_flags |= S_APPEND;
75 else
76 inode->i_flags &= ~S_APPEND;
77}
78
79/**
David Teiglandb3b94fa2006-01-16 16:50:04 +000080 * gfs2_inode_attr_out - Copy attributes from VFS inode into the dinode
81 * @ip: The GFS2 inode
82 *
83 * Only copy out the attributes that we want the VFS layer
84 * to be able to modify.
85 */
86
87void gfs2_inode_attr_out(struct gfs2_inode *ip)
88{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040089 struct inode *inode = &ip->i_inode;
Al Viro3ca68df2006-10-13 20:11:25 -040090 struct gfs2_dinode_host *di = &ip->i_di;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040091 gfs2_assert_withdraw(GFS2_SB(inode),
Steven Whitehouse75d3b812006-09-04 11:41:31 -040092 (di->di_mode & S_IFMT) == (inode->i_mode & S_IFMT));
93 di->di_mode = inode->i_mode;
94 di->di_uid = inode->i_uid;
95 di->di_gid = inode->i_gid;
96 di->di_atime = inode->i_atime.tv_sec;
97 di->di_mtime = inode->i_mtime.tv_sec;
98 di->di_ctime = inode->i_ctime.tv_sec;
David Teiglandb3b94fa2006-01-16 16:50:04 +000099}
100
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101static int iget_test(struct inode *inode, void *opaque)
102{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400103 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -0400104 struct gfs2_inum_host *inum = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105
106 if (ip && ip->i_num.no_addr == inum->no_addr)
107 return 1;
108
109 return 0;
110}
111
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400112static int iget_set(struct inode *inode, void *opaque)
113{
114 struct gfs2_inode *ip = GFS2_I(inode);
Al Viro629a21e2006-10-13 22:51:24 -0400115 struct gfs2_inum_host *inum = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400116
117 ip->i_num = *inum;
118 return 0;
119}
120
Al Viro629a21e2006-10-13 22:51:24 -0400121struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122{
123 return ilookup5(sb, (unsigned long)inum->no_formal_ino,
124 iget_test, inum);
125}
126
Al Viro629a21e2006-10-13 22:51:24 -0400127static struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum_host *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000128{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400129 return iget5_locked(sb, (unsigned long)inum->no_formal_ino,
130 iget_test, iget_set, inum);
131}
132
133/**
134 * gfs2_inode_lookup - Lookup an inode
135 * @sb: The super block
136 * @inum: The inode number
137 * @type: The type of the inode
138 *
139 * Returns: A VFS inode, or an error
140 */
141
Al Viro629a21e2006-10-13 22:51:24 -0400142struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum_host *inum, unsigned int type)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400143{
144 struct inode *inode = gfs2_iget(sb, inum);
145 struct gfs2_inode *ip = GFS2_I(inode);
146 struct gfs2_glock *io_gl;
147 int error;
148
Steven Whitehouse26d83de2006-10-30 16:59:08 -0500149 if (!inode)
150 return ERR_PTR(-ENOBUFS);
151
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400152 if (inode->i_state & I_NEW) {
153 struct gfs2_sbd *sdp = GFS2_SB(inode);
154 umode_t mode = DT2IF(type);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700155 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400156 inode->i_mode = mode;
157
158 if (S_ISREG(mode)) {
159 inode->i_op = &gfs2_file_iops;
160 inode->i_fop = &gfs2_file_fops;
161 inode->i_mapping->a_ops = &gfs2_file_aops;
162 } else if (S_ISDIR(mode)) {
163 inode->i_op = &gfs2_dir_iops;
164 inode->i_fop = &gfs2_dir_fops;
165 } else if (S_ISLNK(mode)) {
166 inode->i_op = &gfs2_symlink_iops;
167 } else {
168 inode->i_op = &gfs2_dev_iops;
169 }
170
171 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
172 if (unlikely(error))
173 goto fail;
174 ip->i_gl->gl_object = ip;
175
176 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
177 if (unlikely(error))
178 goto fail_put;
179
180 ip->i_vn = ip->i_gl->gl_vn - 1;
181 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
182 if (unlikely(error))
183 goto fail_iopen;
184
185 gfs2_glock_put(io_gl);
186 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400188
189 return inode;
190fail_iopen:
191 gfs2_glock_put(io_gl);
192fail_put:
193 ip->i_gl->gl_object = NULL;
194 gfs2_glock_put(ip->i_gl);
195fail:
196 iput(inode);
197 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000198}
199
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500200static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500201{
202 struct gfs2_dinode_host *di = &ip->i_di;
203 const struct gfs2_dinode *str = buf;
204
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500205 if (ip->i_num.no_addr != be64_to_cpu(str->di_num.no_addr)) {
206 if (gfs2_consist_inode(ip))
207 gfs2_dinode_print(ip);
208 return -EIO;
209 }
210 if (ip->i_num.no_formal_ino != be64_to_cpu(str->di_num.no_formal_ino))
211 return -ESTALE;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500212
213 di->di_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500214 ip->i_inode.i_rdev = 0;
215 switch (di->di_mode & S_IFMT) {
216 case S_IFBLK:
217 case S_IFCHR:
218 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
219 be32_to_cpu(str->di_minor));
220 break;
221 };
222
Steven Whitehouseea744d02006-10-31 15:28:00 -0500223 di->di_uid = be32_to_cpu(str->di_uid);
224 di->di_gid = be32_to_cpu(str->di_gid);
225 di->di_nlink = be32_to_cpu(str->di_nlink);
226 di->di_size = be64_to_cpu(str->di_size);
227 di->di_blocks = be64_to_cpu(str->di_blocks);
228 di->di_atime = be64_to_cpu(str->di_atime);
229 di->di_mtime = be64_to_cpu(str->di_mtime);
230 di->di_ctime = be64_to_cpu(str->di_ctime);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500231
232 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
233 di->di_goal_data = be64_to_cpu(str->di_goal_data);
234 di->di_generation = be64_to_cpu(str->di_generation);
235
236 di->di_flags = be32_to_cpu(str->di_flags);
237 di->di_payload_format = be32_to_cpu(str->di_payload_format);
238 di->di_height = be16_to_cpu(str->di_height);
239
240 di->di_depth = be16_to_cpu(str->di_depth);
241 di->di_entries = be32_to_cpu(str->di_entries);
242
243 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500244 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500245}
246
David Teiglandb3b94fa2006-01-16 16:50:04 +0000247/**
248 * gfs2_inode_refresh - Refresh the incore copy of the dinode
249 * @ip: The GFS2 inode
250 *
251 * Returns: errno
252 */
253
254int gfs2_inode_refresh(struct gfs2_inode *ip)
255{
256 struct buffer_head *dibh;
257 int error;
258
259 error = gfs2_meta_inode_buffer(ip, &dibh);
260 if (error)
261 return error;
262
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400263 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000264 brelse(dibh);
265 return -EIO;
266 }
267
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500268 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000270 ip->i_vn = ip->i_gl->gl_vn;
271
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500272 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273}
274
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400275int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000276{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400277 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278 struct gfs2_alloc *al;
279 struct gfs2_rgrpd *rgd;
280 int error;
281
282 if (ip->i_di.di_blocks != 1) {
283 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500284 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000285 return -EIO;
286 }
287
288 al = gfs2_alloc_get(ip);
289
290 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
291 if (error)
292 goto out;
293
294 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
295 if (error)
296 goto out_qs;
297
298 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
299 if (!rgd) {
300 gfs2_consist_inode(ip);
301 error = -EIO;
302 goto out_rindex_relse;
303 }
304
305 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
306 &al->al_rgd_gh);
307 if (error)
308 goto out_rindex_relse;
309
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400310 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000311 if (error)
312 goto out_rg_gunlock;
313
314 gfs2_trans_add_gl(ip->i_gl);
315
316 gfs2_free_di(rgd, ip);
317
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318 gfs2_trans_end(sdp);
319 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
320
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400321out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000322 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400323out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000324 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400325out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000326 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400327out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400328 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329 return error;
330}
331
332/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333 * gfs2_change_nlink - Change nlink count on inode
334 * @ip: The GFS2 inode
335 * @diff: The change in the nlink count required
336 *
337 * Returns: errno
338 */
339
340int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
341{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400342 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000343 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400344 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000345 int error;
346
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400347 BUG_ON(ip->i_di.di_nlink != ip->i_inode.i_nlink);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000348 nlink = ip->i_di.di_nlink + diff;
349
350 /* If we are reducing the nlink count, but the new value ends up being
351 bigger than the old one, we must have underflowed. */
352 if (diff < 0 && nlink > ip->i_di.di_nlink) {
353 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500354 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000355 return -EIO;
356 }
357
358 error = gfs2_meta_inode_buffer(ip, &dibh);
359 if (error)
360 return error;
361
362 ip->i_di.di_nlink = nlink;
363 ip->i_di.di_ctime = get_seconds();
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400364 ip->i_inode.i_nlink = nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000366 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500367 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000368 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400369 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000370
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400371 if (ip->i_di.di_nlink == 0) {
372 struct gfs2_rgrpd *rgd;
373 struct gfs2_holder ri_gh, rg_gh;
374
375 error = gfs2_rindex_hold(sdp, &ri_gh);
376 if (error)
377 goto out;
378 error = -EIO;
379 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
380 if (!rgd)
381 goto out_norgrp;
382 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
383 if (error)
384 goto out_norgrp;
385
Steven Whitehousef92a0b62006-10-02 16:01:53 -0400386 clear_nlink(&ip->i_inode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400387 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
388 gfs2_glock_dq_uninit(&rg_gh);
389out_norgrp:
390 gfs2_glock_dq_uninit(&ri_gh);
391 }
392out:
393 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000394}
395
Steven Whitehousec7526662006-03-20 12:30:04 -0500396struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
397{
398 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500399 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500400 return gfs2_lookupi(dip, &qstr, 1, NULL);
401}
402
403
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404/**
405 * gfs2_lookupi - Look up a filename in a directory and return its inode
406 * @d_gh: An initialized holder for the directory glock
407 * @name: The name of the inode to look for
408 * @is_root: If 1, ignore the caller's permissions
409 * @i_gh: An uninitialized holder for the new inode glock
410 *
411 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
412 * @is_root is true.
413 *
414 * Returns: errno
415 */
416
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400417struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
418 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500420 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400421 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000422 struct gfs2_holder d_gh;
Al Viro629a21e2006-10-13 22:51:24 -0400423 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000425 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500426 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000427
428 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500429 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000430
Steven Whitehousec7526662006-03-20 12:30:04 -0500431 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
432 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
433 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400434 igrab(dir);
435 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000436 }
437
438 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
439 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500440 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441
442 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400443 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000444 if (error)
445 goto out;
446 }
447
Steven Whitehousec7526662006-03-20 12:30:04 -0500448 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000449 if (error)
450 goto out;
451
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400452 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000453
Steven Whitehouse7359a192006-02-13 12:27:43 +0000454out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000455 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500456 if (error == -ENOENT)
457 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400458 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459}
460
Steven Whitehousecd915492006-09-04 12:49:07 -0400461static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400463 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400465 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466 int error;
467
468 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
469 if (error)
470 return error;
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) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000475 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000476 gfs2_trans_end(sdp);
477 return error;
478 }
479
480 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
481
482 if (ir.ir_length) {
483 *formal_ino = ir.ir_start++;
484 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000485 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486 gfs2_inum_range_out(&ir,
487 bh->b_data + sizeof(struct gfs2_dinode));
488 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000489 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000490 gfs2_trans_end(sdp);
491 return 0;
492 }
493
494 brelse(bh);
495
Steven Whitehousef55ab262006-02-21 12:51:39 +0000496 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497 gfs2_trans_end(sdp);
498
499 return 1;
500}
501
Steven Whitehousecd915492006-09-04 12:49:07 -0400502static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000503{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400504 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
505 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000506 struct gfs2_holder gh;
507 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400508 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000509 int error;
510
511 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
512 if (error)
513 return error;
514
515 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
516 if (error)
517 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000518 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519
520 error = gfs2_meta_inode_buffer(ip, &bh);
521 if (error)
522 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400523
David Teiglandb3b94fa2006-01-16 16:50:04 +0000524 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
525
526 if (!ir.ir_length) {
527 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400528 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400529 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530
531 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
532 if (error)
533 goto out_brelse;
534
Al Virob44b84d2006-10-14 10:46:30 -0400535 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
536 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537 ir.ir_start = x;
538 ir.ir_length = GFS2_INUM_QUANTUM;
539 x += GFS2_INUM_QUANTUM;
540 if (x < y)
541 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400542 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000543 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400544 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545
546 brelse(m_bh);
547 }
548
549 *formal_ino = ir.ir_start++;
550 ir.ir_length--;
551
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000552 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000553 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
554
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400555out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400557out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000558 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400560out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000562 return error;
563}
564
Steven Whitehousecd915492006-09-04 12:49:07 -0400565static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566{
567 int error;
568
569 error = pick_formal_ino_1(sdp, inum);
570 if (error <= 0)
571 return error;
572
573 error = pick_formal_ino_2(sdp, inum);
574
575 return error;
576}
577
578/**
579 * create_ok - OK to create a new on-disk inode here?
580 * @dip: Directory in which dinode is to be created
581 * @name: Name of new dinode
582 * @mode:
583 *
584 * Returns: errno
585 */
586
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400587static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000588 unsigned int mode)
589{
590 int error;
591
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400592 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000593 if (error)
594 return error;
595
596 /* Don't create entries in an unlinked directory */
597 if (!dip->i_di.di_nlink)
598 return -EPERM;
599
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400600 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601 switch (error) {
602 case -ENOENT:
603 error = 0;
604 break;
605 case 0:
606 return -EEXIST;
607 default:
608 return error;
609 }
610
Steven Whitehousecd915492006-09-04 12:49:07 -0400611 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612 return -EFBIG;
Steven Whitehousecd915492006-09-04 12:49:07 -0400613 if (S_ISDIR(mode) && dip->i_di.di_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000614 return -EMLINK;
615
616 return 0;
617}
618
619static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
620 unsigned int *uid, unsigned int *gid)
621{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400622 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400623 (dip->i_di.di_mode & S_ISUID) && dip->i_di.di_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000624 if (S_ISDIR(*mode))
625 *mode |= S_ISUID;
626 else if (dip->i_di.di_uid != current->fsuid)
627 *mode &= ~07111;
628 *uid = dip->i_di.di_uid;
629 } else
630 *uid = current->fsuid;
631
632 if (dip->i_di.di_mode & S_ISGID) {
633 if (S_ISDIR(*mode))
634 *mode |= S_ISGID;
635 *gid = dip->i_di.di_gid;
636 } else
637 *gid = current->fsgid;
638}
639
Al Viro629a21e2006-10-13 22:51:24 -0400640static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400641 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400643 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000644 int error;
645
646 gfs2_alloc_get(dip);
647
648 dip->i_alloc.al_requested = RES_DINODE;
649 error = gfs2_inplace_reserve(dip);
650 if (error)
651 goto out;
652
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400653 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000654 if (error)
655 goto out_ipreserv;
656
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400657 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000658
659 gfs2_trans_end(sdp);
660
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400661out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400663out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000664 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000665 return error;
666}
667
668/**
669 * init_dinode - Fill in a new dinode structure
670 * @dip: the directory this inode is being created in
671 * @gl: The glock covering the new inode
672 * @inum: the inode number
673 * @mode: the file permissions
674 * @uid:
675 * @gid:
676 *
677 */
678
679static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400680 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400681 unsigned int uid, unsigned int gid,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500682 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400684 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000685 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000686 struct buffer_head *dibh;
687
688 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000689 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000690 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
691 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000692 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693
Steven Whitehouse2442a092006-01-30 11:49:32 +0000694 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
695 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000696 di->di_mode = cpu_to_be32(mode);
697 di->di_uid = cpu_to_be32(uid);
698 di->di_gid = cpu_to_be32(gid);
699 di->di_nlink = cpu_to_be32(0);
700 di->di_size = cpu_to_be64(0);
701 di->di_blocks = cpu_to_be64(1);
702 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500703 di->di_major = cpu_to_be32(MAJOR(dev));
704 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000705 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400706 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000707 di->di_flags = cpu_to_be32(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000708
709 if (S_ISREG(mode)) {
710 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
711 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000712 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000713 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
714 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000715 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000716 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500717 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
718 GFS2_DIF_INHERIT_DIRECTIO);
719 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
720 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000721 }
722
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000723 di->__pad1 = 0;
Abhijith Dasb2a580d2006-07-10 12:36:12 -0500724 di->di_payload_format = cpu_to_be32(0);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000725 di->di_height = cpu_to_be32(0);
726 di->__pad2 = 0;
727 di->__pad3 = 0;
728 di->di_depth = cpu_to_be16(0);
729 di->di_entries = cpu_to_be32(0);
730 memset(&di->__pad4, 0, sizeof(di->__pad4));
731 di->di_eattr = cpu_to_be64(0);
732 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
733
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734 brelse(dibh);
735}
736
737static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400738 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500739 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000740{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400741 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 unsigned int uid, gid;
743 int error;
744
745 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000746 gfs2_alloc_get(dip);
747
748 error = gfs2_quota_lock(dip, uid, gid);
749 if (error)
750 goto out;
751
752 error = gfs2_quota_check(dip, uid, gid);
753 if (error)
754 goto out_quota;
755
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400756 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000757 if (error)
758 goto out_quota;
759
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500760 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000762 gfs2_trans_end(sdp);
763
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400764out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400766out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000767 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 return error;
769}
770
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400771static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
772 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000773{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400774 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775 struct gfs2_alloc *al;
776 int alloc_required;
777 struct buffer_head *dibh;
778 int error;
779
780 al = gfs2_alloc_get(dip);
781
782 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
783 if (error)
784 goto fail;
785
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400786 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500787 if (alloc_required < 0)
788 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000789 if (alloc_required) {
790 error = gfs2_quota_check(dip, dip->i_di.di_uid,
791 dip->i_di.di_gid);
792 if (error)
793 goto fail_quota_locks;
794
795 al->al_requested = sdp->sd_max_dirres;
796
797 error = gfs2_inplace_reserve(dip);
798 if (error)
799 goto fail_quota_locks;
800
Steven Whitehouse320dd102006-05-18 16:25:27 -0400801 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400803 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000804 RES_STATFS + RES_QUOTA, 0);
805 if (error)
806 goto fail_ipreserv;
807 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400808 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000809 if (error)
810 goto fail_quota_locks;
811 }
812
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400813 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_di.di_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814 if (error)
815 goto fail_end_trans;
816
817 error = gfs2_meta_inode_buffer(ip, &dibh);
818 if (error)
819 goto fail_end_trans;
820 ip->i_di.di_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000821 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500822 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000823 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 return 0;
825
Steven Whitehouse320dd102006-05-18 16:25:27 -0400826fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000827 gfs2_trans_end(sdp);
828
Steven Whitehouse320dd102006-05-18 16:25:27 -0400829fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 if (dip->i_alloc.al_rgd)
831 gfs2_inplace_release(dip);
832
Steven Whitehouse320dd102006-05-18 16:25:27 -0400833fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834 gfs2_quota_unlock(dip);
835
Steven Whitehouse320dd102006-05-18 16:25:27 -0400836fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000837 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000838 return error;
839}
840
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400841static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
842{
843 int err;
844 size_t len;
845 void *value;
846 char *name;
847 struct gfs2_ea_request er;
848
849 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
850 &name, &value, &len);
851
852 if (err) {
853 if (err == -EOPNOTSUPP)
854 return 0;
855 return err;
856 }
857
858 memset(&er, 0, sizeof(struct gfs2_ea_request));
859
860 er.er_type = GFS2_EATYPE_SECURITY;
861 er.er_name = name;
862 er.er_data = value;
863 er.er_name_len = strlen(name);
864 er.er_data_len = len;
865
866 err = gfs2_ea_set_i(ip, &er);
867
868 kfree(value);
869 kfree(name);
870
871 return err;
872}
873
David Teiglandb3b94fa2006-01-16 16:50:04 +0000874/**
875 * gfs2_createi - Create a new inode
876 * @ghs: An array of two holders
877 * @name: The name of the new file
878 * @mode: the permissions on the new inode
879 *
880 * @ghs[0] is an initialized holder for the directory
881 * @ghs[1] is the holder for the inode lock
882 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000883 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884 * file are held. A transaction has been started and an inplace reservation
885 * is held, as well.
886 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000887 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000888 */
889
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400890struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500891 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000893 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500894 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400895 struct inode *dir = &dip->i_inode;
896 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Al Viro629a21e2006-10-13 22:51:24 -0400897 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000898 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400899 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900
901 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000902 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000903
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
905 error = gfs2_glock_nq(ghs);
906 if (error)
907 goto fail;
908
909 error = create_ok(dip, name, mode);
910 if (error)
911 goto fail_gunlock;
912
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400913 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000914 if (error)
915 goto fail_gunlock;
916
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400917 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918 if (error)
919 goto fail_gunlock;
920
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400921 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 gfs2_glock_dq(ghs);
923
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400924 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400925 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
926 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000927 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000928 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929 }
930
931 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
932 error = gfs2_glock_nq(ghs);
933 if (error) {
934 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000935 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000936 }
937
938 error = create_ok(dip, name, mode);
939 if (error)
940 goto fail_gunlock2;
941 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400942 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400943 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
944 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000945 if (error)
946 goto fail_gunlock;
947 }
948
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500949 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000950 if (error)
951 goto fail_gunlock2;
952
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400953 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
954 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955 goto fail_gunlock2;
956
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400957 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958 if (error)
959 goto fail_iput;
960
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400961 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 if (error)
963 goto fail_iput;
964
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400965 error = gfs2_security_init(dip, GFS2_I(inode));
966 if (error)
967 goto fail_iput;
968
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400969 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970 if (error)
971 goto fail_iput;
972
Steven Whitehouse7359a192006-02-13 12:27:43 +0000973 if (!inode)
974 return ERR_PTR(-ENOMEM);
975 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976
Steven Whitehouse320dd102006-05-18 16:25:27 -0400977fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400978 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400979fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000980 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400981fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000982 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400983fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000984 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985}
986
987/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000988 * gfs2_rmdiri - Remove a directory
989 * @dip: The parent directory of the directory to be removed
990 * @name: The name of the directory to be removed
991 * @ip: The GFS2 inode of the directory to be removed
992 *
993 * Assumes Glocks on dip and ip are held
994 *
995 * Returns: errno
996 */
997
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400998int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
999 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001000{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001 struct qstr dotname;
1002 int error;
1003
1004 if (ip->i_di.di_entries != 2) {
1005 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -05001006 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 return -EIO;
1008 }
1009
1010 error = gfs2_dir_del(dip, name);
1011 if (error)
1012 return error;
1013
1014 error = gfs2_change_nlink(dip, -1);
1015 if (error)
1016 return error;
1017
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001018 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001019 error = gfs2_dir_del(ip, &dotname);
1020 if (error)
1021 return error;
1022
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001023 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001024 error = gfs2_dir_del(ip, &dotname);
1025 if (error)
1026 return error;
1027
1028 error = gfs2_change_nlink(ip, -2);
1029 if (error)
1030 return error;
1031
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032 return error;
1033}
1034
1035/*
1036 * gfs2_unlink_ok - check to see that a inode is still in a directory
1037 * @dip: the directory
1038 * @name: the name of the file
1039 * @ip: the inode
1040 *
1041 * Assumes that the lock on (at least) @dip is held.
1042 *
1043 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1044 */
1045
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001046int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001047 struct gfs2_inode *ip)
1048{
Al Viro629a21e2006-10-13 22:51:24 -04001049 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001050 unsigned int type;
1051 int error;
1052
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001053 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054 return -EPERM;
1055
1056 if ((dip->i_di.di_mode & S_ISVTX) &&
1057 dip->i_di.di_uid != current->fsuid &&
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001058 ip->i_di.di_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001059 return -EPERM;
1060
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001061 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001062 return -EPERM;
1063
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001064 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001065 if (error)
1066 return error;
1067
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001068 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001069 if (error)
1070 return error;
1071
1072 if (!gfs2_inum_equal(&inum, &ip->i_num))
1073 return -ENOENT;
1074
1075 if (IF2DT(ip->i_di.di_mode) != type) {
1076 gfs2_consist_inode(dip);
1077 return -EIO;
1078 }
1079
1080 return 0;
1081}
1082
1083/*
1084 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1085 * @this: move this
1086 * @to: to here
1087 *
1088 * Follow @to back to the root and make sure we don't encounter @this
1089 * Assumes we already hold the rename lock.
1090 *
1091 * Returns: errno
1092 */
1093
1094int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1095{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001096 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001097 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001098 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001099 struct qstr dotdot;
1100 int error = 0;
1101
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001102 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001103
Steven Whitehouse7359a192006-02-13 12:27:43 +00001104 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001105
1106 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001107 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108 error = -EINVAL;
1109 break;
1110 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001111 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112 error = 0;
1113 break;
1114 }
1115
Steven Whitehousec7526662006-03-20 12:30:04 -05001116 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1117 if (IS_ERR(tmp)) {
1118 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001120 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001121
Steven Whitehouse7359a192006-02-13 12:27:43 +00001122 iput(dir);
1123 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001124 }
1125
Steven Whitehouse7359a192006-02-13 12:27:43 +00001126 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001127
1128 return error;
1129}
1130
1131/**
1132 * gfs2_readlinki - return the contents of a symlink
1133 * @ip: the symlink's inode
1134 * @buf: a pointer to the buffer to be filled
1135 * @len: a pointer to the length of @buf
1136 *
1137 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1138 * to be freed by the caller.
1139 *
1140 * Returns: errno
1141 */
1142
1143int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1144{
1145 struct gfs2_holder i_gh;
1146 struct buffer_head *dibh;
1147 unsigned int x;
1148 int error;
1149
1150 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1151 error = gfs2_glock_nq_atime(&i_gh);
1152 if (error) {
1153 gfs2_holder_uninit(&i_gh);
1154 return error;
1155 }
1156
1157 if (!ip->i_di.di_size) {
1158 gfs2_consist_inode(ip);
1159 error = -EIO;
1160 goto out;
1161 }
1162
1163 error = gfs2_meta_inode_buffer(ip, &dibh);
1164 if (error)
1165 goto out;
1166
1167 x = ip->i_di.di_size + 1;
1168 if (x > *len) {
1169 *buf = kmalloc(x, GFP_KERNEL);
1170 if (!*buf) {
1171 error = -ENOMEM;
1172 goto out_brelse;
1173 }
1174 }
1175
1176 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1177 *len = x;
1178
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001179out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001180 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001181out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001182 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001183 return error;
1184}
1185
1186/**
1187 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1188 * conditionally update the inode's atime
1189 * @gh: the holder to acquire
1190 *
1191 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1192 * Update if the difference between the current time and the inode's current
1193 * atime is greater than an interval specified at mount.
1194 *
1195 * Returns: errno
1196 */
1197
1198int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1199{
1200 struct gfs2_glock *gl = gh->gh_gl;
1201 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001202 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001203 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001204 unsigned int state;
1205 int flags;
1206 int error;
1207
1208 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1209 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1210 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1211 return -EINVAL;
1212
1213 state = gh->gh_state;
1214 flags = gh->gh_flags;
1215
1216 error = gfs2_glock_nq(gh);
1217 if (error)
1218 return error;
1219
1220 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1221 (sdp->sd_vfs->s_flags & MS_RDONLY))
1222 return 0;
1223
1224 curtime = get_seconds();
1225 if (curtime - ip->i_di.di_atime >= quantum) {
1226 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001227 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1228 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001229 error = gfs2_glock_nq(gh);
1230 if (error)
1231 return error;
1232
1233 /* Verify that atime hasn't been updated while we were
1234 trying to get exclusive lock. */
1235
1236 curtime = get_seconds();
1237 if (curtime - ip->i_di.di_atime >= quantum) {
1238 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001239 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001240
1241 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1242 if (error == -EROFS)
1243 return 0;
1244 if (error)
1245 goto fail;
1246
1247 error = gfs2_meta_inode_buffer(ip, &dibh);
1248 if (error)
1249 goto fail_end_trans;
1250
1251 ip->i_di.di_atime = curtime;
1252
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001253 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001254 di = (struct gfs2_dinode *)dibh->b_data;
1255 di->di_atime = cpu_to_be64(ip->i_di.di_atime);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001256 brelse(dibh);
1257
1258 gfs2_trans_end(sdp);
1259 }
1260
1261 /* If someone else has asked for the glock,
1262 unlock and let them have it. Then reacquire
1263 in the original state. */
1264 if (gfs2_glock_is_blocking(gl)) {
1265 gfs2_glock_dq(gh);
1266 gfs2_holder_reinit(state, flags, gh);
1267 return gfs2_glock_nq(gh);
1268 }
1269 }
1270
1271 return 0;
1272
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001273fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001274 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001275fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001276 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001277 return error;
1278}
1279
1280/**
1281 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1282 * @arg_a: the first structure
1283 * @arg_b: the second structure
1284 *
1285 * Returns: 1 if A > B
1286 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001287 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288 */
1289
1290static int glock_compare_atime(const void *arg_a, const void *arg_b)
1291{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001292 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1293 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1294 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1295 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001296
1297 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001298 return 1;
1299 if (a->ln_number < b->ln_number)
1300 return -1;
1301 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1302 return 1;
1303 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1304 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001305
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001306 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001307}
1308
1309/**
1310 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1311 * atime update
1312 * @num_gh: the number of structures
1313 * @ghs: an array of struct gfs2_holder structures
1314 *
1315 * Returns: 0 on success (all glocks acquired),
1316 * errno on failure (no glocks acquired)
1317 */
1318
1319int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1320{
1321 struct gfs2_holder **p;
1322 unsigned int x;
1323 int error = 0;
1324
1325 if (!num_gh)
1326 return 0;
1327
1328 if (num_gh == 1) {
1329 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1330 if (ghs->gh_flags & GL_ATIME)
1331 error = gfs2_glock_nq_atime(ghs);
1332 else
1333 error = gfs2_glock_nq(ghs);
1334 return error;
1335 }
1336
1337 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1338 if (!p)
1339 return -ENOMEM;
1340
1341 for (x = 0; x < num_gh; x++)
1342 p[x] = &ghs[x];
1343
1344 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1345
1346 for (x = 0; x < num_gh; x++) {
1347 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1348
1349 if (p[x]->gh_flags & GL_ATIME)
1350 error = gfs2_glock_nq_atime(p[x]);
1351 else
1352 error = gfs2_glock_nq(p[x]);
1353
1354 if (error) {
1355 while (x--)
1356 gfs2_glock_dq(p[x]);
1357 break;
1358 }
1359 }
1360
1361 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001362 return error;
1363}
1364
David Teiglandb3b94fa2006-01-16 16:50:04 +00001365
1366static int
1367__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1368{
1369 struct buffer_head *dibh;
1370 int error;
1371
1372 error = gfs2_meta_inode_buffer(ip, &dibh);
1373 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001374 error = inode_setattr(&ip->i_inode, attr);
1375 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001376 gfs2_inode_attr_out(ip);
1377
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001378 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001379 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001380 brelse(dibh);
1381 }
1382 return error;
1383}
1384
1385/**
1386 * gfs2_setattr_simple -
1387 * @ip:
1388 * @attr:
1389 *
1390 * Called with a reference on the vnode.
1391 *
1392 * Returns: errno
1393 */
1394
1395int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1396{
1397 int error;
1398
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001399 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001400 return __gfs2_setattr_simple(ip, attr);
1401
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001402 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001403 if (error)
1404 return error;
1405
1406 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001407 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001408 return error;
1409}
1410