blob: 26aaf54959d92ace19ab1574d9af1e0894ca995c [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
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010041struct gfs2_inum_range_host {
42 u64 ir_start;
43 u64 ir_length;
44};
45
David Teiglandb3b94fa2006-01-16 16:50:04 +000046static int iget_test(struct inode *inode, void *opaque)
47{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040048 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010049 u64 *no_addr = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +000050
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010051 if (ip->i_no_addr == *no_addr &&
Steven Whitehouse1be38672007-03-01 10:00:53 +000052 inode->i_private != NULL)
David Teiglandb3b94fa2006-01-16 16:50:04 +000053 return 1;
54
55 return 0;
56}
57
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040058static int iget_set(struct inode *inode, void *opaque)
59{
60 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010061 u64 *no_addr = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040062
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010063 inode->i_ino = (unsigned long)*no_addr;
64 ip->i_no_addr = *no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040065 return 0;
66}
67
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010068struct inode *gfs2_ilookup(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000069{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010070 unsigned long hash = (unsigned long)no_addr;
71 return ilookup5(sb, hash, iget_test, &no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000072}
73
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010074static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000075{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010076 unsigned long hash = (unsigned long)no_addr;
77 return iget5_locked(sb, hash, iget_test, iget_set, &no_addr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040078}
79
80/**
81 * gfs2_inode_lookup - Lookup an inode
82 * @sb: The super block
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010083 * @no_addr: The inode number
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040084 * @type: The type of the inode
85 *
86 * Returns: A VFS inode, or an error
87 */
88
Wendy Chengbb9bcf02007-06-27 17:07:08 -040089struct inode *gfs2_inode_lookup(struct super_block *sb,
90 unsigned int type,
91 u64 no_addr,
92 u64 no_formal_ino)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040093{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010094 struct inode *inode = gfs2_iget(sb, no_addr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040095 struct gfs2_inode *ip = GFS2_I(inode);
96 struct gfs2_glock *io_gl;
97 int error;
98
Steven Whitehouse26d83de2006-10-30 16:59:08 -050099 if (!inode)
100 return ERR_PTR(-ENOBUFS);
101
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400102 if (inode->i_state & I_NEW) {
103 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100104 umode_t mode;
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700105 inode->i_private = ip;
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400106 ip->i_no_formal_ino = no_formal_ino;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400107
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100108 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400109 if (unlikely(error))
110 goto fail;
111 ip->i_gl->gl_object = ip;
112
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100113 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400114 if (unlikely(error))
115 goto fail_put;
116
Steven Whitehousebfded272006-11-01 16:05:38 -0500117 set_bit(GIF_INVALID, &ip->i_flags);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400118 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
119 if (unlikely(error))
120 goto fail_iopen;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100121 ip->i_iopen_gh.gh_gl->gl_object = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400122
123 gfs2_glock_put(io_gl);
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100124
125 /*
126 * We must read the inode in order to work out its type in
127 * this case. Note that this doesn't happen often as we normally
128 * know the type beforehand. This code path only occurs during
129 * unlinked inode recovery (where it is safe to do this glock,
130 * which is not true in the general case).
131 */
132 inode->i_mode = mode = DT2IF(type);
133 if (type == DT_UNKNOWN) {
134 struct gfs2_holder gh;
135 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
136 if (unlikely(error))
137 goto fail_glock;
138 /* Inode is now uptodate */
139 mode = inode->i_mode;
140 gfs2_glock_dq_uninit(&gh);
141 }
142
143 if (S_ISREG(mode)) {
144 inode->i_op = &gfs2_file_iops;
145 inode->i_fop = &gfs2_file_fops;
146 inode->i_mapping->a_ops = &gfs2_file_aops;
147 } else if (S_ISDIR(mode)) {
148 inode->i_op = &gfs2_dir_iops;
149 inode->i_fop = &gfs2_dir_fops;
150 } else if (S_ISLNK(mode)) {
151 inode->i_op = &gfs2_symlink_iops;
152 } else {
153 inode->i_op = &gfs2_dev_iops;
154 }
155
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400156 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400158
159 return inode;
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100160fail_glock:
161 gfs2_glock_dq(&ip->i_iopen_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400162fail_iopen:
163 gfs2_glock_put(io_gl);
164fail_put:
165 ip->i_gl->gl_object = NULL;
166 gfs2_glock_put(ip->i_gl);
167fail:
168 iput(inode);
169 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000170}
171
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500172static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500173{
174 struct gfs2_dinode_host *di = &ip->i_di;
175 const struct gfs2_dinode *str = buf;
176
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100177 if (ip->i_no_addr != be64_to_cpu(str->di_num.no_addr)) {
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500178 if (gfs2_consist_inode(ip))
179 gfs2_dinode_print(ip);
180 return -EIO;
181 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100182 ip->i_no_formal_ino = be64_to_cpu(str->di_num.no_formal_ino);
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500183 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500184 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500185 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500186 case S_IFBLK:
187 case S_IFCHR:
188 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
189 be32_to_cpu(str->di_minor));
190 break;
191 };
192
Steven Whitehouse2933f922006-11-01 13:23:29 -0500193 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
194 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500195 /*
196 * We will need to review setting the nlink count here in the
197 * light of the forthcoming ro bind mount work. This is a reminder
198 * to do that.
199 */
200 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500201 di->di_size = be64_to_cpu(str->di_size);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500202 i_size_write(&ip->i_inode, di->di_size);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500203 di->di_blocks = be64_to_cpu(str->di_blocks);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500204 gfs2_set_inode_blocks(&ip->i_inode);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500205 ip->i_inode.i_atime.tv_sec = be64_to_cpu(str->di_atime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100206 ip->i_inode.i_atime.tv_nsec = be32_to_cpu(str->di_atime_nsec);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500207 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100208 ip->i_inode.i_mtime.tv_nsec = be32_to_cpu(str->di_mtime_nsec);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500209 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100210 ip->i_inode.i_ctime.tv_nsec = be32_to_cpu(str->di_ctime_nsec);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500211
212 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
213 di->di_goal_data = be64_to_cpu(str->di_goal_data);
214 di->di_generation = be64_to_cpu(str->di_generation);
215
216 di->di_flags = be32_to_cpu(str->di_flags);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500217 gfs2_set_inode_flags(&ip->i_inode);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500218 di->di_height = be16_to_cpu(str->di_height);
219
220 di->di_depth = be16_to_cpu(str->di_depth);
221 di->di_entries = be32_to_cpu(str->di_entries);
222
223 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500224 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500225}
226
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227/**
228 * gfs2_inode_refresh - Refresh the incore copy of the dinode
229 * @ip: The GFS2 inode
230 *
231 * Returns: errno
232 */
233
234int gfs2_inode_refresh(struct gfs2_inode *ip)
235{
236 struct buffer_head *dibh;
237 int error;
238
239 error = gfs2_meta_inode_buffer(ip, &dibh);
240 if (error)
241 return error;
242
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400243 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000244 brelse(dibh);
245 return -EIO;
246 }
247
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500248 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000249 brelse(dibh);
Steven Whitehousebfded272006-11-01 16:05:38 -0500250 clear_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500252 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253}
254
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400255int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000256{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400257 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000258 struct gfs2_alloc *al;
259 struct gfs2_rgrpd *rgd;
260 int error;
261
262 if (ip->i_di.di_blocks != 1) {
263 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500264 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265 return -EIO;
266 }
267
268 al = gfs2_alloc_get(ip);
269
270 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
271 if (error)
272 goto out;
273
274 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
275 if (error)
276 goto out_qs;
277
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100278 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 if (!rgd) {
280 gfs2_consist_inode(ip);
281 error = -EIO;
282 goto out_rindex_relse;
283 }
284
285 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
286 &al->al_rgd_gh);
287 if (error)
288 goto out_rindex_relse;
289
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400290 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000291 if (error)
292 goto out_rg_gunlock;
293
294 gfs2_trans_add_gl(ip->i_gl);
295
296 gfs2_free_di(rgd, ip);
297
David Teiglandb3b94fa2006-01-16 16:50:04 +0000298 gfs2_trans_end(sdp);
299 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
300
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400301out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000302 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400303out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400305out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000306 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400307out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400308 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000309 return error;
310}
311
312/**
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500313 * gfs2_change_nlink - Change nlink count on inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000314 * @ip: The GFS2 inode
315 * @diff: The change in the nlink count required
316 *
317 * Returns: errno
318 */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500319int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000320{
321 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400322 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000323 int error;
324
Steven Whitehouse4f561102006-11-01 14:04:17 -0500325 BUG_ON(diff != 1 && diff != -1);
326 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327
328 /* If we are reducing the nlink count, but the new value ends up being
329 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500330 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000331 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500332 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333 return -EIO;
334 }
335
336 error = gfs2_meta_inode_buffer(ip, &dibh);
337 if (error)
338 return error;
339
Steven Whitehouse4f561102006-11-01 14:04:17 -0500340 if (diff > 0)
341 inc_nlink(&ip->i_inode);
342 else
343 drop_nlink(&ip->i_inode);
344
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100345 ip->i_inode.i_ctime = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000346
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000347 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500348 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400350 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500352 if (ip->i_inode.i_nlink == 0)
Russell Cattelanddee7602007-01-29 17:13:44 -0600353 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500354
S. Wendy Cheng55098262007-01-18 15:56:34 -0500355 return error;
356}
357
Steven Whitehousec7526662006-03-20 12:30:04 -0500358struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
359{
360 struct qstr qstr;
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600361 struct inode *inode;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500362 gfs2_str2qstr(&qstr, name);
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600363 inode = gfs2_lookupi(dip, &qstr, 1, NULL);
364 /* gfs2_lookupi has inconsistent callers: vfs
365 * related routines expect NULL for no entry found,
366 * gfs2_lookup_simple callers expect ENOENT
367 * and do not check for NULL.
368 */
369 if (inode == NULL)
370 return ERR_PTR(-ENOENT);
371 else
372 return inode;
Steven Whitehousec7526662006-03-20 12:30:04 -0500373}
374
375
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376/**
377 * gfs2_lookupi - Look up a filename in a directory and return its inode
378 * @d_gh: An initialized holder for the directory glock
379 * @name: The name of the inode to look for
380 * @is_root: If 1, ignore the caller's permissions
381 * @i_gh: An uninitialized holder for the new inode glock
382 *
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000383 * This can be called via the VFS filldir function when NFS is doing
384 * a readdirplus and the inode which its intending to stat isn't
385 * already in cache. In this case we must not take the directory glock
386 * again, since the readdir call will have already taken that lock.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000387 *
388 * Returns: errno
389 */
390
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400391struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
392 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000393{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500394 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400395 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396 struct gfs2_holder d_gh;
akpm@linux-foundation.org037bcbb2007-06-08 16:42:14 -0700397 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500398 struct inode *inode = NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000399 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400
401 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500402 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000403
Steven Whitehousec7526662006-03-20 12:30:04 -0500404 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
405 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
406 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400407 igrab(dir);
408 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000409 }
410
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000411 if (gfs2_glock_is_locked_by_me(dip->i_gl) == 0) {
412 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
413 if (error)
414 return ERR_PTR(error);
415 unlock = 1;
416 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417
418 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400419 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000420 if (error)
421 goto out;
422 }
423
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100424 inode = gfs2_dir_search(dir, name);
425 if (IS_ERR(inode))
426 error = PTR_ERR(inode);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000427out:
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000428 if (unlock)
429 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500430 if (error == -ENOENT)
431 return NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000432 return inode ? inode : ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433}
434
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100435static void gfs2_inum_range_in(struct gfs2_inum_range_host *ir, const void *buf)
436{
437 const struct gfs2_inum_range *str = buf;
438
439 ir->ir_start = be64_to_cpu(str->ir_start);
440 ir->ir_length = be64_to_cpu(str->ir_length);
441}
442
443static void gfs2_inum_range_out(const struct gfs2_inum_range_host *ir, void *buf)
444{
445 struct gfs2_inum_range *str = buf;
446
447 str->ir_start = cpu_to_be64(ir->ir_start);
448 str->ir_length = cpu_to_be64(ir->ir_length);
449}
450
Steven Whitehousecd915492006-09-04 12:49:07 -0400451static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000452{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400453 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000454 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400455 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456 int error;
457
458 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
459 if (error)
460 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000461 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462
463 error = gfs2_meta_inode_buffer(ip, &bh);
464 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000465 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466 gfs2_trans_end(sdp);
467 return error;
468 }
469
470 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
471
472 if (ir.ir_length) {
473 *formal_ino = ir.ir_start++;
474 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000475 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000476 gfs2_inum_range_out(&ir,
477 bh->b_data + sizeof(struct gfs2_dinode));
478 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000479 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000480 gfs2_trans_end(sdp);
481 return 0;
482 }
483
484 brelse(bh);
485
Steven Whitehousef55ab262006-02-21 12:51:39 +0000486 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000487 gfs2_trans_end(sdp);
488
489 return 1;
490}
491
Steven Whitehousecd915492006-09-04 12:49:07 -0400492static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000493{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400494 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
495 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496 struct gfs2_holder gh;
497 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400498 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000499 int error;
500
501 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
502 if (error)
503 return error;
504
505 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
506 if (error)
507 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000508 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000509
510 error = gfs2_meta_inode_buffer(ip, &bh);
511 if (error)
512 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400513
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
515
516 if (!ir.ir_length) {
517 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400518 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400519 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000520
521 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
522 if (error)
523 goto out_brelse;
524
Al Virob44b84d2006-10-14 10:46:30 -0400525 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
526 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527 ir.ir_start = x;
528 ir.ir_length = GFS2_INUM_QUANTUM;
529 x += GFS2_INUM_QUANTUM;
530 if (x < y)
531 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400532 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000533 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400534 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535
536 brelse(m_bh);
537 }
538
539 *formal_ino = ir.ir_start++;
540 ir.ir_length--;
541
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000542 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000543 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
544
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400545out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000546 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400547out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000548 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000549 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400550out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000551 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000552 return error;
553}
554
Steven Whitehousecd915492006-09-04 12:49:07 -0400555static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556{
557 int error;
558
559 error = pick_formal_ino_1(sdp, inum);
560 if (error <= 0)
561 return error;
562
563 error = pick_formal_ino_2(sdp, inum);
564
565 return error;
566}
567
568/**
569 * create_ok - OK to create a new on-disk inode here?
570 * @dip: Directory in which dinode is to be created
571 * @name: Name of new dinode
572 * @mode:
573 *
574 * Returns: errno
575 */
576
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400577static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578 unsigned int mode)
579{
580 int error;
581
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400582 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 if (error)
584 return error;
585
586 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500587 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000588 return -EPERM;
589
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100590 error = gfs2_dir_check(&dip->i_inode, name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000591 switch (error) {
592 case -ENOENT:
593 error = 0;
594 break;
595 case 0:
596 return -EEXIST;
597 default:
598 return error;
599 }
600
Steven Whitehousecd915492006-09-04 12:49:07 -0400601 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000602 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500603 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604 return -EMLINK;
605
606 return 0;
607}
608
609static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
610 unsigned int *uid, unsigned int *gid)
611{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400612 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500613 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000614 if (S_ISDIR(*mode))
615 *mode |= S_ISUID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500616 else if (dip->i_inode.i_uid != current->fsuid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000617 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500618 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000619 } else
620 *uid = current->fsuid;
621
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500622 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000623 if (S_ISDIR(*mode))
624 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500625 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626 } else
627 *gid = current->fsgid;
628}
629
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100630static int alloc_dinode(struct gfs2_inode *dip, u64 *no_addr, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000631{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400632 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000633 int error;
634
635 gfs2_alloc_get(dip);
636
637 dip->i_alloc.al_requested = RES_DINODE;
638 error = gfs2_inplace_reserve(dip);
639 if (error)
640 goto out;
641
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400642 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000643 if (error)
644 goto out_ipreserv;
645
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100646 *no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000647
648 gfs2_trans_end(sdp);
649
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400650out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000651 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400652out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000653 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000654 return error;
655}
656
657/**
658 * init_dinode - Fill in a new dinode structure
659 * @dip: the directory this inode is being created in
660 * @gl: The glock covering the new inode
661 * @inum: the inode number
662 * @mode: the file permissions
663 * @uid:
664 * @gid:
665 *
666 */
667
668static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400669 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400670 unsigned int uid, unsigned int gid,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500671 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400673 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000674 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675 struct buffer_head *dibh;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100676 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000677
678 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000679 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000680 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
681 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000682 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683
Steven Whitehouse2442a092006-01-30 11:49:32 +0000684 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
685 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000686 di->di_mode = cpu_to_be32(mode);
687 di->di_uid = cpu_to_be32(uid);
688 di->di_gid = cpu_to_be32(gid);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500689 di->di_nlink = 0;
690 di->di_size = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000691 di->di_blocks = cpu_to_be64(1);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100692 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(tv.tv_sec);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500693 di->di_major = cpu_to_be32(MAJOR(dev));
694 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000695 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400696 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500697 di->di_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000698
699 if (S_ISREG(mode)) {
700 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
701 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000702 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000703 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
704 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000705 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000706 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500707 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
708 GFS2_DIF_INHERIT_DIRECTIO);
709 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
710 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000711 }
712
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000713 di->__pad1 = 0;
Steven Whitehousea9583c72006-11-01 20:09:14 -0500714 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500715 di->di_height = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000716 di->__pad2 = 0;
717 di->__pad3 = 0;
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500718 di->di_depth = 0;
719 di->di_entries = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000720 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500721 di->di_eattr = 0;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100722 di->di_atime_nsec = cpu_to_be32(tv.tv_nsec);
723 di->di_mtime_nsec = cpu_to_be32(tv.tv_nsec);
724 di->di_ctime_nsec = cpu_to_be32(tv.tv_nsec);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000725 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
726
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727 brelse(dibh);
728}
729
730static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400731 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500732 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000733{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400734 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000735 unsigned int uid, gid;
736 int error;
737
738 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 gfs2_alloc_get(dip);
740
741 error = gfs2_quota_lock(dip, uid, gid);
742 if (error)
743 goto out;
744
745 error = gfs2_quota_check(dip, uid, gid);
746 if (error)
747 goto out_quota;
748
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400749 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000750 if (error)
751 goto out_quota;
752
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500753 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000754 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 gfs2_trans_end(sdp);
756
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400757out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000758 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400759out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761 return error;
762}
763
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400764static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
765 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400767 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 struct gfs2_alloc *al;
769 int alloc_required;
770 struct buffer_head *dibh;
771 int error;
772
773 al = gfs2_alloc_get(dip);
774
775 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
776 if (error)
777 goto fail;
778
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400779 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500780 if (alloc_required < 0)
781 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000782 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500783 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000784 if (error)
785 goto fail_quota_locks;
786
787 al->al_requested = sdp->sd_max_dirres;
788
789 error = gfs2_inplace_reserve(dip);
790 if (error)
791 goto fail_quota_locks;
792
Steven Whitehouse320dd102006-05-18 16:25:27 -0400793 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100794 al->al_rgd->rd_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400795 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 RES_STATFS + RES_QUOTA, 0);
797 if (error)
798 goto fail_ipreserv;
799 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400800 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801 if (error)
802 goto fail_quota_locks;
803 }
804
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100805 error = gfs2_dir_add(&dip->i_inode, name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806 if (error)
807 goto fail_end_trans;
808
809 error = gfs2_meta_inode_buffer(ip, &dibh);
810 if (error)
811 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500812 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000813 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500814 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000815 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000816 return 0;
817
Steven Whitehouse320dd102006-05-18 16:25:27 -0400818fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000819 gfs2_trans_end(sdp);
820
Steven Whitehouse320dd102006-05-18 16:25:27 -0400821fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822 if (dip->i_alloc.al_rgd)
823 gfs2_inplace_release(dip);
824
Steven Whitehouse320dd102006-05-18 16:25:27 -0400825fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826 gfs2_quota_unlock(dip);
827
Steven Whitehouse320dd102006-05-18 16:25:27 -0400828fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000829 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 return error;
831}
832
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400833static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
834{
835 int err;
836 size_t len;
837 void *value;
838 char *name;
839 struct gfs2_ea_request er;
840
841 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
842 &name, &value, &len);
843
844 if (err) {
845 if (err == -EOPNOTSUPP)
846 return 0;
847 return err;
848 }
849
850 memset(&er, 0, sizeof(struct gfs2_ea_request));
851
852 er.er_type = GFS2_EATYPE_SECURITY;
853 er.er_name = name;
854 er.er_data = value;
855 er.er_name_len = strlen(name);
856 er.er_data_len = len;
857
858 err = gfs2_ea_set_i(ip, &er);
859
860 kfree(value);
861 kfree(name);
862
863 return err;
864}
865
David Teiglandb3b94fa2006-01-16 16:50:04 +0000866/**
867 * gfs2_createi - Create a new inode
868 * @ghs: An array of two holders
869 * @name: The name of the new file
870 * @mode: the permissions on the new inode
871 *
872 * @ghs[0] is an initialized holder for the directory
873 * @ghs[1] is the holder for the inode lock
874 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000875 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000876 * file are held. A transaction has been started and an inplace reservation
877 * is held, as well.
878 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000879 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000880 */
881
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400882struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500883 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884{
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100885 struct inode *inode = NULL;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500886 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400887 struct inode *dir = &dip->i_inode;
888 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100889 struct gfs2_inum_host inum = { .no_addr = 0, .no_formal_ino = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000890 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400891 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892
893 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000894 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
897 error = gfs2_glock_nq(ghs);
898 if (error)
899 goto fail;
900
901 error = create_ok(dip, name, mode);
902 if (error)
903 goto fail_gunlock;
904
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400905 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906 if (error)
907 goto fail_gunlock;
908
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100909 error = alloc_dinode(dip, &inum.no_addr, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910 if (error)
911 goto fail_gunlock;
912
Steven Whitehouse28626e22006-11-22 11:13:21 -0500913 error = gfs2_glock_nq_num(sdp, inum.no_addr, &gfs2_inode_glops,
914 LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
915 if (error)
916 goto fail_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000917
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500918 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 if (error)
920 goto fail_gunlock2;
921
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400922 inode = gfs2_inode_lookup(dir->i_sb, IF2DT(mode),
923 inum.no_addr,
924 inum.no_formal_ino);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400925 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 goto fail_gunlock2;
927
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400928 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100930 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400932 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000933 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100934 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400936 error = gfs2_security_init(dip, GFS2_I(inode));
937 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100938 goto fail_gunlock2;
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400939
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400940 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000941 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100942 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000943
Steven Whitehouse7359a192006-02-13 12:27:43 +0000944 if (!inode)
945 return ERR_PTR(-ENOMEM);
946 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947
Steven Whitehouse320dd102006-05-18 16:25:27 -0400948fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100950 if (inode)
951 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400952fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400954fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000955 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000956}
957
958/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959 * gfs2_rmdiri - Remove a directory
960 * @dip: The parent directory of the directory to be removed
961 * @name: The name of the directory to be removed
962 * @ip: The GFS2 inode of the directory to be removed
963 *
964 * Assumes Glocks on dip and ip are held
965 *
966 * Returns: errno
967 */
968
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400969int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
970 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000971{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000972 struct qstr dotname;
973 int error;
974
975 if (ip->i_di.di_entries != 2) {
976 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500977 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000978 return -EIO;
979 }
980
981 error = gfs2_dir_del(dip, name);
982 if (error)
983 return error;
984
985 error = gfs2_change_nlink(dip, -1);
986 if (error)
987 return error;
988
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500989 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000990 error = gfs2_dir_del(ip, &dotname);
991 if (error)
992 return error;
993
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400994 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995 error = gfs2_dir_del(ip, &dotname);
996 if (error)
997 return error;
998
Steven Whitehouse4f561102006-11-01 14:04:17 -0500999 /* It looks odd, but it really should be done twice */
1000 error = gfs2_change_nlink(ip, -1);
1001 if (error)
1002 return error;
1003
1004 error = gfs2_change_nlink(ip, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 if (error)
1006 return error;
1007
David Teiglandb3b94fa2006-01-16 16:50:04 +00001008 return error;
1009}
1010
1011/*
1012 * gfs2_unlink_ok - check to see that a inode is still in a directory
1013 * @dip: the directory
1014 * @name: the name of the file
1015 * @ip: the inode
1016 *
1017 * Assumes that the lock on (at least) @dip is held.
1018 *
1019 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1020 */
1021
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001022int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001023 const struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001024{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001025 int error;
1026
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001027 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001028 return -EPERM;
1029
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001030 if ((dip->i_inode.i_mode & S_ISVTX) &&
Steven Whitehouse2933f922006-11-01 13:23:29 -05001031 dip->i_inode.i_uid != current->fsuid &&
1032 ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001033 return -EPERM;
1034
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001035 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036 return -EPERM;
1037
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001038 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039 if (error)
1040 return error;
1041
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001042 error = gfs2_dir_check(&dip->i_inode, name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001043 if (error)
1044 return error;
1045
David Teiglandb3b94fa2006-01-16 16:50:04 +00001046 return 0;
1047}
1048
1049/*
1050 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1051 * @this: move this
1052 * @to: to here
1053 *
1054 * Follow @to back to the root and make sure we don't encounter @this
1055 * Assumes we already hold the rename lock.
1056 *
1057 * Returns: errno
1058 */
1059
1060int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1061{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001062 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001063 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001064 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001065 struct qstr dotdot;
1066 int error = 0;
1067
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001068 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001069
Steven Whitehouse7359a192006-02-13 12:27:43 +00001070 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071
1072 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001073 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001074 error = -EINVAL;
1075 break;
1076 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001077 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078 error = 0;
1079 break;
1080 }
1081
Steven Whitehousec7526662006-03-20 12:30:04 -05001082 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1083 if (IS_ERR(tmp)) {
1084 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001086 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001087
Steven Whitehouse7359a192006-02-13 12:27:43 +00001088 iput(dir);
1089 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001090 }
1091
Steven Whitehouse7359a192006-02-13 12:27:43 +00001092 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001093
1094 return error;
1095}
1096
1097/**
1098 * gfs2_readlinki - return the contents of a symlink
1099 * @ip: the symlink's inode
1100 * @buf: a pointer to the buffer to be filled
1101 * @len: a pointer to the length of @buf
1102 *
1103 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1104 * to be freed by the caller.
1105 *
1106 * Returns: errno
1107 */
1108
1109int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1110{
1111 struct gfs2_holder i_gh;
1112 struct buffer_head *dibh;
1113 unsigned int x;
1114 int error;
1115
1116 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1117 error = gfs2_glock_nq_atime(&i_gh);
1118 if (error) {
1119 gfs2_holder_uninit(&i_gh);
1120 return error;
1121 }
1122
1123 if (!ip->i_di.di_size) {
1124 gfs2_consist_inode(ip);
1125 error = -EIO;
1126 goto out;
1127 }
1128
1129 error = gfs2_meta_inode_buffer(ip, &dibh);
1130 if (error)
1131 goto out;
1132
1133 x = ip->i_di.di_size + 1;
1134 if (x > *len) {
1135 *buf = kmalloc(x, GFP_KERNEL);
1136 if (!*buf) {
1137 error = -ENOMEM;
1138 goto out_brelse;
1139 }
1140 }
1141
1142 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1143 *len = x;
1144
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001145out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001146 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001147out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001148 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001149 return error;
1150}
1151
1152/**
1153 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1154 * conditionally update the inode's atime
1155 * @gh: the holder to acquire
1156 *
1157 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1158 * Update if the difference between the current time and the inode's current
1159 * atime is greater than an interval specified at mount.
1160 *
1161 * Returns: errno
1162 */
1163
1164int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1165{
1166 struct gfs2_glock *gl = gh->gh_gl;
1167 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001168 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001169 s64 quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170 unsigned int state;
1171 int flags;
1172 int error;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001173 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001174
1175 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1176 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1177 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1178 return -EINVAL;
1179
1180 state = gh->gh_state;
1181 flags = gh->gh_flags;
1182
1183 error = gfs2_glock_nq(gh);
1184 if (error)
1185 return error;
1186
1187 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1188 (sdp->sd_vfs->s_flags & MS_RDONLY))
1189 return 0;
1190
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001191 if (tv.tv_sec - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001192 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001193 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1194 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001195 error = gfs2_glock_nq(gh);
1196 if (error)
1197 return error;
1198
1199 /* Verify that atime hasn't been updated while we were
1200 trying to get exclusive lock. */
1201
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001202 tv = CURRENT_TIME;
1203 if (tv.tv_sec - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001204 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001205 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206
1207 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1208 if (error == -EROFS)
1209 return 0;
1210 if (error)
1211 goto fail;
1212
1213 error = gfs2_meta_inode_buffer(ip, &dibh);
1214 if (error)
1215 goto fail_end_trans;
1216
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001217 ip->i_inode.i_atime = tv;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001218
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001219 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001220 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001221 di->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001222 di->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001223 brelse(dibh);
1224
1225 gfs2_trans_end(sdp);
1226 }
1227
1228 /* If someone else has asked for the glock,
1229 unlock and let them have it. Then reacquire
1230 in the original state. */
1231 if (gfs2_glock_is_blocking(gl)) {
1232 gfs2_glock_dq(gh);
1233 gfs2_holder_reinit(state, flags, gh);
1234 return gfs2_glock_nq(gh);
1235 }
1236 }
1237
1238 return 0;
1239
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001240fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001241 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001242fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001243 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001244 return error;
1245}
1246
David Teiglandb3b94fa2006-01-16 16:50:04 +00001247static int
1248__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1249{
1250 struct buffer_head *dibh;
1251 int error;
1252
1253 error = gfs2_meta_inode_buffer(ip, &dibh);
1254 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001255 error = inode_setattr(&ip->i_inode, attr);
1256 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001257 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001258 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259 brelse(dibh);
1260 }
1261 return error;
1262}
1263
1264/**
1265 * gfs2_setattr_simple -
1266 * @ip:
1267 * @attr:
1268 *
1269 * Called with a reference on the vnode.
1270 *
1271 * Returns: errno
1272 */
1273
1274int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1275{
1276 int error;
1277
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001278 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001279 return __gfs2_setattr_simple(ip, attr);
1280
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001281 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001282 if (error)
1283 return error;
1284
1285 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001286 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001287 return error;
1288}
1289
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001290void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
1291{
1292 const struct gfs2_dinode_host *di = &ip->i_di;
1293 struct gfs2_dinode *str = buf;
1294
1295 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
1296 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
1297 str->di_header.__pad0 = 0;
1298 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
1299 str->di_header.__pad1 = 0;
1300 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
1301 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
1302 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
1303 str->di_uid = cpu_to_be32(ip->i_inode.i_uid);
1304 str->di_gid = cpu_to_be32(ip->i_inode.i_gid);
1305 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
1306 str->di_size = cpu_to_be64(di->di_size);
1307 str->di_blocks = cpu_to_be64(di->di_blocks);
1308 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
1309 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
1310 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
1311
1312 str->di_goal_meta = cpu_to_be64(di->di_goal_meta);
1313 str->di_goal_data = cpu_to_be64(di->di_goal_data);
1314 str->di_generation = cpu_to_be64(di->di_generation);
1315
1316 str->di_flags = cpu_to_be32(di->di_flags);
1317 str->di_height = cpu_to_be16(di->di_height);
1318 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
1319 !(ip->i_di.di_flags & GFS2_DIF_EXHASH) ?
1320 GFS2_FORMAT_DE : 0);
1321 str->di_depth = cpu_to_be16(di->di_depth);
1322 str->di_entries = cpu_to_be32(di->di_entries);
1323
1324 str->di_eattr = cpu_to_be64(di->di_eattr);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001325 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
1326 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
1327 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001328}
1329
1330void gfs2_dinode_print(const struct gfs2_inode *ip)
1331{
1332 const struct gfs2_dinode_host *di = &ip->i_di;
1333
1334 printk(KERN_INFO " no_formal_ino = %llu\n",
1335 (unsigned long long)ip->i_no_formal_ino);
1336 printk(KERN_INFO " no_addr = %llu\n",
1337 (unsigned long long)ip->i_no_addr);
1338 printk(KERN_INFO " di_size = %llu\n", (unsigned long long)di->di_size);
1339 printk(KERN_INFO " di_blocks = %llu\n",
1340 (unsigned long long)di->di_blocks);
1341 printk(KERN_INFO " di_goal_meta = %llu\n",
1342 (unsigned long long)di->di_goal_meta);
1343 printk(KERN_INFO " di_goal_data = %llu\n",
1344 (unsigned long long)di->di_goal_data);
1345 printk(KERN_INFO " di_flags = 0x%.8X\n", di->di_flags);
1346 printk(KERN_INFO " di_height = %u\n", di->di_height);
1347 printk(KERN_INFO " di_depth = %u\n", di->di_depth);
1348 printk(KERN_INFO " di_entries = %u\n", di->di_entries);
1349 printk(KERN_INFO " di_eattr = %llu\n",
1350 (unsigned long long)di->di_eattr);
1351}
1352