blob: cacdb0dfe57789b139c444100c6f63036a72b3cb [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/posix_acl.h>
16#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050018#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020019#include <linux/lm_interface.h>
Ryan O'Harafcb47e02006-10-03 11:57:35 -040020#include <linux/security.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "acl.h"
25#include "bmap.h"
26#include "dir.h"
27#include "eattr.h"
28#include "glock.h"
29#include "glops.h"
30#include "inode.h"
31#include "log.h"
32#include "meta_io.h"
33#include "ops_address.h"
34#include "ops_file.h"
35#include "ops_inode.h"
36#include "quota.h"
37#include "rgrp.h"
38#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050039#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
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
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010089struct inode *gfs2_inode_lookup(struct super_block *sb, u64 no_addr, unsigned int type)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040090{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010091 struct inode *inode = gfs2_iget(sb, no_addr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040092 struct gfs2_inode *ip = GFS2_I(inode);
93 struct gfs2_glock *io_gl;
94 int error;
95
Steven Whitehouse26d83de2006-10-30 16:59:08 -050096 if (!inode)
97 return ERR_PTR(-ENOBUFS);
98
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040099 if (inode->i_state & I_NEW) {
100 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100101 umode_t mode;
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700102 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400103
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100104 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400105 if (unlikely(error))
106 goto fail;
107 ip->i_gl->gl_object = ip;
108
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100109 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400110 if (unlikely(error))
111 goto fail_put;
112
Steven Whitehousebfded272006-11-01 16:05:38 -0500113 set_bit(GIF_INVALID, &ip->i_flags);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400114 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
115 if (unlikely(error))
116 goto fail_iopen;
117
118 gfs2_glock_put(io_gl);
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100119
120 /*
121 * We must read the inode in order to work out its type in
122 * this case. Note that this doesn't happen often as we normally
123 * know the type beforehand. This code path only occurs during
124 * unlinked inode recovery (where it is safe to do this glock,
125 * which is not true in the general case).
126 */
127 inode->i_mode = mode = DT2IF(type);
128 if (type == DT_UNKNOWN) {
129 struct gfs2_holder gh;
130 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
131 if (unlikely(error))
132 goto fail_glock;
133 /* Inode is now uptodate */
134 mode = inode->i_mode;
135 gfs2_glock_dq_uninit(&gh);
136 }
137
138 if (S_ISREG(mode)) {
139 inode->i_op = &gfs2_file_iops;
140 inode->i_fop = &gfs2_file_fops;
141 inode->i_mapping->a_ops = &gfs2_file_aops;
142 } else if (S_ISDIR(mode)) {
143 inode->i_op = &gfs2_dir_iops;
144 inode->i_fop = &gfs2_dir_fops;
145 } else if (S_ISLNK(mode)) {
146 inode->i_op = &gfs2_symlink_iops;
147 } else {
148 inode->i_op = &gfs2_dev_iops;
149 }
150
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400151 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000152 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400153
154 return inode;
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100155fail_glock:
156 gfs2_glock_dq(&ip->i_iopen_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400157fail_iopen:
158 gfs2_glock_put(io_gl);
159fail_put:
160 ip->i_gl->gl_object = NULL;
161 gfs2_glock_put(ip->i_gl);
162fail:
163 iput(inode);
164 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165}
166
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500167static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500168{
169 struct gfs2_dinode_host *di = &ip->i_di;
170 const struct gfs2_dinode *str = buf;
171
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100172 if (ip->i_no_addr != be64_to_cpu(str->di_num.no_addr)) {
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500173 if (gfs2_consist_inode(ip))
174 gfs2_dinode_print(ip);
175 return -EIO;
176 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100177 ip->i_no_formal_ino = be64_to_cpu(str->di_num.no_formal_ino);
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500178 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500179 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500180 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500181 case S_IFBLK:
182 case S_IFCHR:
183 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
184 be32_to_cpu(str->di_minor));
185 break;
186 };
187
Steven Whitehouse2933f922006-11-01 13:23:29 -0500188 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
189 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500190 /*
191 * We will need to review setting the nlink count here in the
192 * light of the forthcoming ro bind mount work. This is a reminder
193 * to do that.
194 */
195 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500196 di->di_size = be64_to_cpu(str->di_size);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500197 i_size_write(&ip->i_inode, di->di_size);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500198 di->di_blocks = be64_to_cpu(str->di_blocks);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500199 gfs2_set_inode_blocks(&ip->i_inode);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500200 ip->i_inode.i_atime.tv_sec = be64_to_cpu(str->di_atime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100201 ip->i_inode.i_atime.tv_nsec = be32_to_cpu(str->di_atime_nsec);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500202 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100203 ip->i_inode.i_mtime.tv_nsec = be32_to_cpu(str->di_mtime_nsec);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500204 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100205 ip->i_inode.i_ctime.tv_nsec = be32_to_cpu(str->di_ctime_nsec);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500206
207 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
208 di->di_goal_data = be64_to_cpu(str->di_goal_data);
209 di->di_generation = be64_to_cpu(str->di_generation);
210
211 di->di_flags = be32_to_cpu(str->di_flags);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500212 gfs2_set_inode_flags(&ip->i_inode);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500213 di->di_height = be16_to_cpu(str->di_height);
214
215 di->di_depth = be16_to_cpu(str->di_depth);
216 di->di_entries = be32_to_cpu(str->di_entries);
217
218 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500219 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500220}
221
David Teiglandb3b94fa2006-01-16 16:50:04 +0000222/**
223 * gfs2_inode_refresh - Refresh the incore copy of the dinode
224 * @ip: The GFS2 inode
225 *
226 * Returns: errno
227 */
228
229int gfs2_inode_refresh(struct gfs2_inode *ip)
230{
231 struct buffer_head *dibh;
232 int error;
233
234 error = gfs2_meta_inode_buffer(ip, &dibh);
235 if (error)
236 return error;
237
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400238 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 brelse(dibh);
240 return -EIO;
241 }
242
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500243 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000244 brelse(dibh);
Steven Whitehousebfded272006-11-01 16:05:38 -0500245 clear_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500247 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248}
249
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400250int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400252 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253 struct gfs2_alloc *al;
254 struct gfs2_rgrpd *rgd;
255 int error;
256
257 if (ip->i_di.di_blocks != 1) {
258 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500259 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260 return -EIO;
261 }
262
263 al = gfs2_alloc_get(ip);
264
265 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
266 if (error)
267 goto out;
268
269 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
270 if (error)
271 goto out_qs;
272
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100273 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274 if (!rgd) {
275 gfs2_consist_inode(ip);
276 error = -EIO;
277 goto out_rindex_relse;
278 }
279
280 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
281 &al->al_rgd_gh);
282 if (error)
283 goto out_rindex_relse;
284
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400285 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000286 if (error)
287 goto out_rg_gunlock;
288
289 gfs2_trans_add_gl(ip->i_gl);
290
291 gfs2_free_di(rgd, ip);
292
David Teiglandb3b94fa2006-01-16 16:50:04 +0000293 gfs2_trans_end(sdp);
294 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
295
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400296out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000297 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400298out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000299 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400300out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400302out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400303 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304 return error;
305}
306
307/**
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500308 * gfs2_change_nlink - Change nlink count on inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000309 * @ip: The GFS2 inode
310 * @diff: The change in the nlink count required
311 *
312 * Returns: errno
313 */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500314int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000315{
316 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400317 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318 int error;
319
Steven Whitehouse4f561102006-11-01 14:04:17 -0500320 BUG_ON(diff != 1 && diff != -1);
321 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000322
323 /* If we are reducing the nlink count, but the new value ends up being
324 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500325 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000326 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500327 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000328 return -EIO;
329 }
330
331 error = gfs2_meta_inode_buffer(ip, &dibh);
332 if (error)
333 return error;
334
Steven Whitehouse4f561102006-11-01 14:04:17 -0500335 if (diff > 0)
336 inc_nlink(&ip->i_inode);
337 else
338 drop_nlink(&ip->i_inode);
339
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100340 ip->i_inode.i_ctime = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000341
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000342 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500343 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000344 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400345 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000346
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500347 if (ip->i_inode.i_nlink == 0)
Russell Cattelanddee7602007-01-29 17:13:44 -0600348 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500349
S. Wendy Cheng55098262007-01-18 15:56:34 -0500350 return error;
351}
352
Steven Whitehousec7526662006-03-20 12:30:04 -0500353struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
354{
355 struct qstr qstr;
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600356 struct inode *inode;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500357 gfs2_str2qstr(&qstr, name);
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600358 inode = gfs2_lookupi(dip, &qstr, 1, NULL);
359 /* gfs2_lookupi has inconsistent callers: vfs
360 * related routines expect NULL for no entry found,
361 * gfs2_lookup_simple callers expect ENOENT
362 * and do not check for NULL.
363 */
364 if (inode == NULL)
365 return ERR_PTR(-ENOENT);
366 else
367 return inode;
Steven Whitehousec7526662006-03-20 12:30:04 -0500368}
369
370
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371/**
372 * gfs2_lookupi - Look up a filename in a directory and return its inode
373 * @d_gh: An initialized holder for the directory glock
374 * @name: The name of the inode to look for
375 * @is_root: If 1, ignore the caller's permissions
376 * @i_gh: An uninitialized holder for the new inode glock
377 *
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000378 * This can be called via the VFS filldir function when NFS is doing
379 * a readdirplus and the inode which its intending to stat isn't
380 * already in cache. In this case we must not take the directory glock
381 * again, since the readdir call will have already taken that lock.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000382 *
383 * Returns: errno
384 */
385
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400386struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
387 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000388{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500389 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400390 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000391 struct gfs2_holder d_gh;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000392 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -0500393 struct inode *inode = NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000394 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000395
396 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500397 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000398
Steven Whitehousec7526662006-03-20 12:30:04 -0500399 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
400 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
401 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400402 igrab(dir);
403 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404 }
405
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000406 if (gfs2_glock_is_locked_by_me(dip->i_gl) == 0) {
407 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
408 if (error)
409 return ERR_PTR(error);
410 unlock = 1;
411 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000412
413 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400414 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000415 if (error)
416 goto out;
417 }
418
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100419 inode = gfs2_dir_search(dir, name);
420 if (IS_ERR(inode))
421 error = PTR_ERR(inode);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000422out:
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000423 if (unlock)
424 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500425 if (error == -ENOENT)
426 return NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000427 return inode ? inode : ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428}
429
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100430static void gfs2_inum_range_in(struct gfs2_inum_range_host *ir, const void *buf)
431{
432 const struct gfs2_inum_range *str = buf;
433
434 ir->ir_start = be64_to_cpu(str->ir_start);
435 ir->ir_length = be64_to_cpu(str->ir_length);
436}
437
438static void gfs2_inum_range_out(const struct gfs2_inum_range_host *ir, void *buf)
439{
440 struct gfs2_inum_range *str = buf;
441
442 str->ir_start = cpu_to_be64(ir->ir_start);
443 str->ir_length = cpu_to_be64(ir->ir_length);
444}
445
Steven Whitehousecd915492006-09-04 12:49:07 -0400446static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400448 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000449 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400450 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451 int error;
452
453 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
454 if (error)
455 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000456 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457
458 error = gfs2_meta_inode_buffer(ip, &bh);
459 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000460 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000461 gfs2_trans_end(sdp);
462 return error;
463 }
464
465 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
466
467 if (ir.ir_length) {
468 *formal_ino = ir.ir_start++;
469 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000470 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000471 gfs2_inum_range_out(&ir,
472 bh->b_data + sizeof(struct gfs2_dinode));
473 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000474 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475 gfs2_trans_end(sdp);
476 return 0;
477 }
478
479 brelse(bh);
480
Steven Whitehousef55ab262006-02-21 12:51:39 +0000481 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482 gfs2_trans_end(sdp);
483
484 return 1;
485}
486
Steven Whitehousecd915492006-09-04 12:49:07 -0400487static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000488{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400489 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
490 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000491 struct gfs2_holder gh;
492 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400493 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000494 int error;
495
496 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
497 if (error)
498 return error;
499
500 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
501 if (error)
502 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000503 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000504
505 error = gfs2_meta_inode_buffer(ip, &bh);
506 if (error)
507 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400508
David Teiglandb3b94fa2006-01-16 16:50:04 +0000509 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
510
511 if (!ir.ir_length) {
512 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400513 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400514 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000515
516 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
517 if (error)
518 goto out_brelse;
519
Al Virob44b84d2006-10-14 10:46:30 -0400520 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
521 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000522 ir.ir_start = x;
523 ir.ir_length = GFS2_INUM_QUANTUM;
524 x += GFS2_INUM_QUANTUM;
525 if (x < y)
526 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400527 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000528 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400529 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530
531 brelse(m_bh);
532 }
533
534 *formal_ino = ir.ir_start++;
535 ir.ir_length--;
536
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000537 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000538 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
539
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400540out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000541 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400542out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000543 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000544 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400545out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000546 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000547 return error;
548}
549
Steven Whitehousecd915492006-09-04 12:49:07 -0400550static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000551{
552 int error;
553
554 error = pick_formal_ino_1(sdp, inum);
555 if (error <= 0)
556 return error;
557
558 error = pick_formal_ino_2(sdp, inum);
559
560 return error;
561}
562
563/**
564 * create_ok - OK to create a new on-disk inode here?
565 * @dip: Directory in which dinode is to be created
566 * @name: Name of new dinode
567 * @mode:
568 *
569 * Returns: errno
570 */
571
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400572static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000573 unsigned int mode)
574{
575 int error;
576
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400577 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578 if (error)
579 return error;
580
581 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500582 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 return -EPERM;
584
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100585 error = gfs2_dir_check(&dip->i_inode, name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000586 switch (error) {
587 case -ENOENT:
588 error = 0;
589 break;
590 case 0:
591 return -EEXIST;
592 default:
593 return error;
594 }
595
Steven Whitehousecd915492006-09-04 12:49:07 -0400596 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500598 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599 return -EMLINK;
600
601 return 0;
602}
603
604static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
605 unsigned int *uid, unsigned int *gid)
606{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400607 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500608 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609 if (S_ISDIR(*mode))
610 *mode |= S_ISUID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500611 else if (dip->i_inode.i_uid != current->fsuid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500613 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000614 } else
615 *uid = current->fsuid;
616
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500617 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 if (S_ISDIR(*mode))
619 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500620 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000621 } else
622 *gid = current->fsgid;
623}
624
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100625static int alloc_dinode(struct gfs2_inode *dip, u64 *no_addr, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400627 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000628 int error;
629
630 gfs2_alloc_get(dip);
631
632 dip->i_alloc.al_requested = RES_DINODE;
633 error = gfs2_inplace_reserve(dip);
634 if (error)
635 goto out;
636
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400637 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000638 if (error)
639 goto out_ipreserv;
640
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100641 *no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642
643 gfs2_trans_end(sdp);
644
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400645out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000646 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400647out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000648 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000649 return error;
650}
651
652/**
653 * init_dinode - Fill in a new dinode structure
654 * @dip: the directory this inode is being created in
655 * @gl: The glock covering the new inode
656 * @inum: the inode number
657 * @mode: the file permissions
658 * @uid:
659 * @gid:
660 *
661 */
662
663static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400664 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400665 unsigned int uid, unsigned int gid,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500666 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400668 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000669 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670 struct buffer_head *dibh;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100671 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672
673 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000674 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
676 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000677 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000678
Steven Whitehouse2442a092006-01-30 11:49:32 +0000679 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
680 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000681 di->di_mode = cpu_to_be32(mode);
682 di->di_uid = cpu_to_be32(uid);
683 di->di_gid = cpu_to_be32(gid);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500684 di->di_nlink = 0;
685 di->di_size = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000686 di->di_blocks = cpu_to_be64(1);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100687 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(tv.tv_sec);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500688 di->di_major = cpu_to_be32(MAJOR(dev));
689 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000690 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400691 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500692 di->di_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693
694 if (S_ISREG(mode)) {
695 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
696 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000697 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000698 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
699 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000700 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000701 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500702 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
703 GFS2_DIF_INHERIT_DIRECTIO);
704 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
705 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000706 }
707
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000708 di->__pad1 = 0;
Steven Whitehousea9583c72006-11-01 20:09:14 -0500709 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500710 di->di_height = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000711 di->__pad2 = 0;
712 di->__pad3 = 0;
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500713 di->di_depth = 0;
714 di->di_entries = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000715 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500716 di->di_eattr = 0;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100717 di->di_atime_nsec = cpu_to_be32(tv.tv_nsec);
718 di->di_mtime_nsec = cpu_to_be32(tv.tv_nsec);
719 di->di_ctime_nsec = cpu_to_be32(tv.tv_nsec);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000720 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
721
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722 brelse(dibh);
723}
724
725static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400726 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500727 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400729 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000730 unsigned int uid, gid;
731 int error;
732
733 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734 gfs2_alloc_get(dip);
735
736 error = gfs2_quota_lock(dip, uid, gid);
737 if (error)
738 goto out;
739
740 error = gfs2_quota_check(dip, uid, gid);
741 if (error)
742 goto out_quota;
743
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400744 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745 if (error)
746 goto out_quota;
747
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500748 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000749 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000750 gfs2_trans_end(sdp);
751
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400752out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000753 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400754out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 return error;
757}
758
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400759static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
760 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400762 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 struct gfs2_alloc *al;
764 int alloc_required;
765 struct buffer_head *dibh;
766 int error;
767
768 al = gfs2_alloc_get(dip);
769
770 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
771 if (error)
772 goto fail;
773
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400774 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500775 if (alloc_required < 0)
776 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000777 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500778 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779 if (error)
780 goto fail_quota_locks;
781
782 al->al_requested = sdp->sd_max_dirres;
783
784 error = gfs2_inplace_reserve(dip);
785 if (error)
786 goto fail_quota_locks;
787
Steven Whitehouse320dd102006-05-18 16:25:27 -0400788 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100789 al->al_rgd->rd_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400790 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000791 RES_STATFS + RES_QUOTA, 0);
792 if (error)
793 goto fail_ipreserv;
794 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400795 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 if (error)
797 goto fail_quota_locks;
798 }
799
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100800 error = gfs2_dir_add(&dip->i_inode, name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801 if (error)
802 goto fail_end_trans;
803
804 error = gfs2_meta_inode_buffer(ip, &dibh);
805 if (error)
806 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500807 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000808 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500809 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000811 return 0;
812
Steven Whitehouse320dd102006-05-18 16:25:27 -0400813fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814 gfs2_trans_end(sdp);
815
Steven Whitehouse320dd102006-05-18 16:25:27 -0400816fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000817 if (dip->i_alloc.al_rgd)
818 gfs2_inplace_release(dip);
819
Steven Whitehouse320dd102006-05-18 16:25:27 -0400820fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000821 gfs2_quota_unlock(dip);
822
Steven Whitehouse320dd102006-05-18 16:25:27 -0400823fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000825 return error;
826}
827
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400828static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
829{
830 int err;
831 size_t len;
832 void *value;
833 char *name;
834 struct gfs2_ea_request er;
835
836 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
837 &name, &value, &len);
838
839 if (err) {
840 if (err == -EOPNOTSUPP)
841 return 0;
842 return err;
843 }
844
845 memset(&er, 0, sizeof(struct gfs2_ea_request));
846
847 er.er_type = GFS2_EATYPE_SECURITY;
848 er.er_name = name;
849 er.er_data = value;
850 er.er_name_len = strlen(name);
851 er.er_data_len = len;
852
853 err = gfs2_ea_set_i(ip, &er);
854
855 kfree(value);
856 kfree(name);
857
858 return err;
859}
860
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861/**
862 * gfs2_createi - Create a new inode
863 * @ghs: An array of two holders
864 * @name: The name of the new file
865 * @mode: the permissions on the new inode
866 *
867 * @ghs[0] is an initialized holder for the directory
868 * @ghs[1] is the holder for the inode lock
869 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000870 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000871 * file are held. A transaction has been started and an inplace reservation
872 * is held, as well.
873 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000874 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000875 */
876
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400877struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500878 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879{
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100880 struct inode *inode = NULL;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500881 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400882 struct inode *dir = &dip->i_inode;
883 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100884 struct gfs2_inum_host inum = { .no_addr = 0, .no_formal_ino = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000885 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400886 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000887
888 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000889 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000890
David Teiglandb3b94fa2006-01-16 16:50:04 +0000891 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
892 error = gfs2_glock_nq(ghs);
893 if (error)
894 goto fail;
895
896 error = create_ok(dip, name, mode);
897 if (error)
898 goto fail_gunlock;
899
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400900 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000901 if (error)
902 goto fail_gunlock;
903
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100904 error = alloc_dinode(dip, &inum.no_addr, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000905 if (error)
906 goto fail_gunlock;
907
Steven Whitehouse28626e22006-11-22 11:13:21 -0500908 error = gfs2_glock_nq_num(sdp, inum.no_addr, &gfs2_inode_glops,
909 LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
910 if (error)
911 goto fail_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500913 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000914 if (error)
915 goto fail_gunlock2;
916
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100917 inode = gfs2_inode_lookup(dir->i_sb, inum.no_addr, IF2DT(mode));
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400918 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 goto fail_gunlock2;
920
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400921 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100923 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400925 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100927 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400929 error = gfs2_security_init(dip, GFS2_I(inode));
930 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100931 goto fail_gunlock2;
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400932
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400933 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000934 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100935 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000936
Steven Whitehouse7359a192006-02-13 12:27:43 +0000937 if (!inode)
938 return ERR_PTR(-ENOMEM);
939 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940
Steven Whitehouse320dd102006-05-18 16:25:27 -0400941fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100943 if (inode)
944 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400945fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400947fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000948 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949}
950
951/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000952 * gfs2_rmdiri - Remove a directory
953 * @dip: The parent directory of the directory to be removed
954 * @name: The name of the directory to be removed
955 * @ip: The GFS2 inode of the directory to be removed
956 *
957 * Assumes Glocks on dip and ip are held
958 *
959 * Returns: errno
960 */
961
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400962int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
963 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000964{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 struct qstr dotname;
966 int error;
967
968 if (ip->i_di.di_entries != 2) {
969 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500970 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000971 return -EIO;
972 }
973
974 error = gfs2_dir_del(dip, name);
975 if (error)
976 return error;
977
978 error = gfs2_change_nlink(dip, -1);
979 if (error)
980 return error;
981
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500982 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983 error = gfs2_dir_del(ip, &dotname);
984 if (error)
985 return error;
986
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400987 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000988 error = gfs2_dir_del(ip, &dotname);
989 if (error)
990 return error;
991
Steven Whitehouse4f561102006-11-01 14:04:17 -0500992 /* It looks odd, but it really should be done twice */
993 error = gfs2_change_nlink(ip, -1);
994 if (error)
995 return error;
996
997 error = gfs2_change_nlink(ip, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998 if (error)
999 return error;
1000
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001 return error;
1002}
1003
1004/*
1005 * gfs2_unlink_ok - check to see that a inode is still in a directory
1006 * @dip: the directory
1007 * @name: the name of the file
1008 * @ip: the inode
1009 *
1010 * Assumes that the lock on (at least) @dip is held.
1011 *
1012 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1013 */
1014
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001015int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001016 const struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001017{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001018 int error;
1019
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001020 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001021 return -EPERM;
1022
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001023 if ((dip->i_inode.i_mode & S_ISVTX) &&
Steven Whitehouse2933f922006-11-01 13:23:29 -05001024 dip->i_inode.i_uid != current->fsuid &&
1025 ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026 return -EPERM;
1027
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001028 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001029 return -EPERM;
1030
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001031 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032 if (error)
1033 return error;
1034
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001035 error = gfs2_dir_check(&dip->i_inode, name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036 if (error)
1037 return error;
1038
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039 return 0;
1040}
1041
1042/*
1043 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1044 * @this: move this
1045 * @to: to here
1046 *
1047 * Follow @to back to the root and make sure we don't encounter @this
1048 * Assumes we already hold the rename lock.
1049 *
1050 * Returns: errno
1051 */
1052
1053int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1054{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001055 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001056 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001057 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 struct qstr dotdot;
1059 int error = 0;
1060
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001061 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001062
Steven Whitehouse7359a192006-02-13 12:27:43 +00001063 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001064
1065 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001066 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067 error = -EINVAL;
1068 break;
1069 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001070 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071 error = 0;
1072 break;
1073 }
1074
Steven Whitehousec7526662006-03-20 12:30:04 -05001075 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1076 if (IS_ERR(tmp)) {
1077 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001079 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080
Steven Whitehouse7359a192006-02-13 12:27:43 +00001081 iput(dir);
1082 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001083 }
1084
Steven Whitehouse7359a192006-02-13 12:27:43 +00001085 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001086
1087 return error;
1088}
1089
1090/**
1091 * gfs2_readlinki - return the contents of a symlink
1092 * @ip: the symlink's inode
1093 * @buf: a pointer to the buffer to be filled
1094 * @len: a pointer to the length of @buf
1095 *
1096 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1097 * to be freed by the caller.
1098 *
1099 * Returns: errno
1100 */
1101
1102int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1103{
1104 struct gfs2_holder i_gh;
1105 struct buffer_head *dibh;
1106 unsigned int x;
1107 int error;
1108
1109 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1110 error = gfs2_glock_nq_atime(&i_gh);
1111 if (error) {
1112 gfs2_holder_uninit(&i_gh);
1113 return error;
1114 }
1115
1116 if (!ip->i_di.di_size) {
1117 gfs2_consist_inode(ip);
1118 error = -EIO;
1119 goto out;
1120 }
1121
1122 error = gfs2_meta_inode_buffer(ip, &dibh);
1123 if (error)
1124 goto out;
1125
1126 x = ip->i_di.di_size + 1;
1127 if (x > *len) {
1128 *buf = kmalloc(x, GFP_KERNEL);
1129 if (!*buf) {
1130 error = -ENOMEM;
1131 goto out_brelse;
1132 }
1133 }
1134
1135 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1136 *len = x;
1137
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001138out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001140out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001142 return error;
1143}
1144
1145/**
1146 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1147 * conditionally update the inode's atime
1148 * @gh: the holder to acquire
1149 *
1150 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1151 * Update if the difference between the current time and the inode's current
1152 * atime is greater than an interval specified at mount.
1153 *
1154 * Returns: errno
1155 */
1156
1157int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1158{
1159 struct gfs2_glock *gl = gh->gh_gl;
1160 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001161 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001162 s64 quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163 unsigned int state;
1164 int flags;
1165 int error;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001166 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001167
1168 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1169 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1170 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1171 return -EINVAL;
1172
1173 state = gh->gh_state;
1174 flags = gh->gh_flags;
1175
1176 error = gfs2_glock_nq(gh);
1177 if (error)
1178 return error;
1179
1180 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1181 (sdp->sd_vfs->s_flags & MS_RDONLY))
1182 return 0;
1183
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001184 if (tv.tv_sec - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001185 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001186 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1187 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001188 error = gfs2_glock_nq(gh);
1189 if (error)
1190 return error;
1191
1192 /* Verify that atime hasn't been updated while we were
1193 trying to get exclusive lock. */
1194
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001195 tv = CURRENT_TIME;
1196 if (tv.tv_sec - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001197 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001198 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001199
1200 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1201 if (error == -EROFS)
1202 return 0;
1203 if (error)
1204 goto fail;
1205
1206 error = gfs2_meta_inode_buffer(ip, &dibh);
1207 if (error)
1208 goto fail_end_trans;
1209
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001210 ip->i_inode.i_atime = tv;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001212 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001213 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001214 di->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001215 di->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001216 brelse(dibh);
1217
1218 gfs2_trans_end(sdp);
1219 }
1220
1221 /* If someone else has asked for the glock,
1222 unlock and let them have it. Then reacquire
1223 in the original state. */
1224 if (gfs2_glock_is_blocking(gl)) {
1225 gfs2_glock_dq(gh);
1226 gfs2_holder_reinit(state, flags, gh);
1227 return gfs2_glock_nq(gh);
1228 }
1229 }
1230
1231 return 0;
1232
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001233fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001235fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001237 return error;
1238}
1239
David Teiglandb3b94fa2006-01-16 16:50:04 +00001240static int
1241__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1242{
1243 struct buffer_head *dibh;
1244 int error;
1245
1246 error = gfs2_meta_inode_buffer(ip, &dibh);
1247 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001248 error = inode_setattr(&ip->i_inode, attr);
1249 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001250 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001251 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001252 brelse(dibh);
1253 }
1254 return error;
1255}
1256
1257/**
1258 * gfs2_setattr_simple -
1259 * @ip:
1260 * @attr:
1261 *
1262 * Called with a reference on the vnode.
1263 *
1264 * Returns: errno
1265 */
1266
1267int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1268{
1269 int error;
1270
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001271 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001272 return __gfs2_setattr_simple(ip, attr);
1273
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001274 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001275 if (error)
1276 return error;
1277
1278 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001279 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280 return error;
1281}
1282
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001283void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
1284{
1285 const struct gfs2_dinode_host *di = &ip->i_di;
1286 struct gfs2_dinode *str = buf;
1287
1288 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
1289 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
1290 str->di_header.__pad0 = 0;
1291 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
1292 str->di_header.__pad1 = 0;
1293 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
1294 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
1295 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
1296 str->di_uid = cpu_to_be32(ip->i_inode.i_uid);
1297 str->di_gid = cpu_to_be32(ip->i_inode.i_gid);
1298 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
1299 str->di_size = cpu_to_be64(di->di_size);
1300 str->di_blocks = cpu_to_be64(di->di_blocks);
1301 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
1302 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
1303 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
1304
1305 str->di_goal_meta = cpu_to_be64(di->di_goal_meta);
1306 str->di_goal_data = cpu_to_be64(di->di_goal_data);
1307 str->di_generation = cpu_to_be64(di->di_generation);
1308
1309 str->di_flags = cpu_to_be32(di->di_flags);
1310 str->di_height = cpu_to_be16(di->di_height);
1311 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
1312 !(ip->i_di.di_flags & GFS2_DIF_EXHASH) ?
1313 GFS2_FORMAT_DE : 0);
1314 str->di_depth = cpu_to_be16(di->di_depth);
1315 str->di_entries = cpu_to_be32(di->di_entries);
1316
1317 str->di_eattr = cpu_to_be64(di->di_eattr);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001318 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
1319 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
1320 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001321}
1322
1323void gfs2_dinode_print(const struct gfs2_inode *ip)
1324{
1325 const struct gfs2_dinode_host *di = &ip->i_di;
1326
1327 printk(KERN_INFO " no_formal_ino = %llu\n",
1328 (unsigned long long)ip->i_no_formal_ino);
1329 printk(KERN_INFO " no_addr = %llu\n",
1330 (unsigned long long)ip->i_no_addr);
1331 printk(KERN_INFO " di_size = %llu\n", (unsigned long long)di->di_size);
1332 printk(KERN_INFO " di_blocks = %llu\n",
1333 (unsigned long long)di->di_blocks);
1334 printk(KERN_INFO " di_goal_meta = %llu\n",
1335 (unsigned long long)di->di_goal_meta);
1336 printk(KERN_INFO " di_goal_data = %llu\n",
1337 (unsigned long long)di->di_goal_data);
1338 printk(KERN_INFO " di_flags = 0x%.8X\n", di->di_flags);
1339 printk(KERN_INFO " di_height = %u\n", di->di_height);
1340 printk(KERN_INFO " di_depth = %u\n", di->di_depth);
1341 printk(KERN_INFO " di_entries = %u\n", di->di_entries);
1342 printk(KERN_INFO " di_eattr = %llu\n",
1343 (unsigned long long)di->di_eattr);
1344}
1345