blob: 58f5a67e1c356d54a5804cbd16155b3b62d9f137 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/posix_acl.h>
16#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050018#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020019#include <linux/lm_interface.h>
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -040020#include <linux/security.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "acl.h"
25#include "bmap.h"
26#include "dir.h"
27#include "eattr.h"
28#include "glock.h"
29#include "glops.h"
30#include "inode.h"
31#include "log.h"
32#include "meta_io.h"
33#include "ops_address.h"
34#include "ops_file.h"
35#include "ops_inode.h"
36#include "quota.h"
37#include "rgrp.h"
38#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050039#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
David Teiglandb3b94fa2006-01-16 16:50:04 +000041static int iget_test(struct inode *inode, void *opaque)
42{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040043 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010044 u64 *no_addr = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +000045
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010046 if (ip->i_no_addr == *no_addr &&
Steven Whitehouse1be38672007-03-01 10:00:53 +000047 inode->i_private != NULL)
David Teiglandb3b94fa2006-01-16 16:50:04 +000048 return 1;
49
50 return 0;
51}
52
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040053static int iget_set(struct inode *inode, void *opaque)
54{
55 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010056 u64 *no_addr = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040057
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010058 inode->i_ino = (unsigned long)*no_addr;
59 ip->i_no_addr = *no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040060 return 0;
61}
62
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010063struct inode *gfs2_ilookup(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000064{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010065 unsigned long hash = (unsigned long)no_addr;
66 return ilookup5(sb, hash, iget_test, &no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000067}
68
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010069static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000070{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010071 unsigned long hash = (unsigned long)no_addr;
72 return iget5_locked(sb, hash, iget_test, iget_set, &no_addr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040073}
74
75/**
76 * gfs2_inode_lookup - Lookup an inode
77 * @sb: The super block
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010078 * @no_addr: The inode number
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040079 * @type: The type of the inode
80 *
81 * Returns: A VFS inode, or an error
82 */
83
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010084struct inode *gfs2_inode_lookup(struct super_block *sb, u64 no_addr, unsigned int type)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040085{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010086 struct inode *inode = gfs2_iget(sb, no_addr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040087 struct gfs2_inode *ip = GFS2_I(inode);
88 struct gfs2_glock *io_gl;
89 int error;
90
Steven Whitehouse26d83de2006-10-30 16:59:08 -050091 if (!inode)
92 return ERR_PTR(-ENOBUFS);
93
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040094 if (inode->i_state & I_NEW) {
95 struct gfs2_sbd *sdp = GFS2_SB(inode);
96 umode_t mode = DT2IF(type);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -070097 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040098 inode->i_mode = mode;
99
100 if (S_ISREG(mode)) {
101 inode->i_op = &gfs2_file_iops;
102 inode->i_fop = &gfs2_file_fops;
103 inode->i_mapping->a_ops = &gfs2_file_aops;
104 } else if (S_ISDIR(mode)) {
105 inode->i_op = &gfs2_dir_iops;
106 inode->i_fop = &gfs2_dir_fops;
107 } else if (S_ISLNK(mode)) {
108 inode->i_op = &gfs2_symlink_iops;
109 } else {
110 inode->i_op = &gfs2_dev_iops;
111 }
112
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100113 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400114 if (unlikely(error))
115 goto fail;
116 ip->i_gl->gl_object = ip;
117
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100118 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400119 if (unlikely(error))
120 goto fail_put;
121
Steven Whitehousebfded272006-11-01 16:05:38 -0500122 set_bit(GIF_INVALID, &ip->i_flags);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400123 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
124 if (unlikely(error))
125 goto fail_iopen;
126
127 gfs2_glock_put(io_gl);
128 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000129 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400130
131 return inode;
132fail_iopen:
133 gfs2_glock_put(io_gl);
134fail_put:
135 ip->i_gl->gl_object = NULL;
136 gfs2_glock_put(ip->i_gl);
137fail:
138 iput(inode);
139 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140}
141
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500142static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500143{
144 struct gfs2_dinode_host *di = &ip->i_di;
145 const struct gfs2_dinode *str = buf;
146
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100147 if (ip->i_no_addr != be64_to_cpu(str->di_num.no_addr)) {
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500148 if (gfs2_consist_inode(ip))
149 gfs2_dinode_print(ip);
150 return -EIO;
151 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100152 ip->i_no_formal_ino = be64_to_cpu(str->di_num.no_formal_ino);
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500153 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500154 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500155 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500156 case S_IFBLK:
157 case S_IFCHR:
158 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
159 be32_to_cpu(str->di_minor));
160 break;
161 };
162
Steven Whitehouse2933f922006-11-01 13:23:29 -0500163 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
164 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500165 /*
166 * We will need to review setting the nlink count here in the
167 * light of the forthcoming ro bind mount work. This is a reminder
168 * to do that.
169 */
170 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500171 di->di_size = be64_to_cpu(str->di_size);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500172 i_size_write(&ip->i_inode, di->di_size);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500173 di->di_blocks = be64_to_cpu(str->di_blocks);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500174 gfs2_set_inode_blocks(&ip->i_inode);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500175 ip->i_inode.i_atime.tv_sec = be64_to_cpu(str->di_atime);
176 ip->i_inode.i_atime.tv_nsec = 0;
177 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
178 ip->i_inode.i_mtime.tv_nsec = 0;
179 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
180 ip->i_inode.i_ctime.tv_nsec = 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500181
182 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
183 di->di_goal_data = be64_to_cpu(str->di_goal_data);
184 di->di_generation = be64_to_cpu(str->di_generation);
185
186 di->di_flags = be32_to_cpu(str->di_flags);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500187 gfs2_set_inode_flags(&ip->i_inode);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500188 di->di_height = be16_to_cpu(str->di_height);
189
190 di->di_depth = be16_to_cpu(str->di_depth);
191 di->di_entries = be32_to_cpu(str->di_entries);
192
193 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500194 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500195}
196
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197/**
198 * gfs2_inode_refresh - Refresh the incore copy of the dinode
199 * @ip: The GFS2 inode
200 *
201 * Returns: errno
202 */
203
204int gfs2_inode_refresh(struct gfs2_inode *ip)
205{
206 struct buffer_head *dibh;
207 int error;
208
209 error = gfs2_meta_inode_buffer(ip, &dibh);
210 if (error)
211 return error;
212
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400213 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000214 brelse(dibh);
215 return -EIO;
216 }
217
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500218 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219 brelse(dibh);
Steven Whitehousebfded272006-11-01 16:05:38 -0500220 clear_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000221
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500222 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000223}
224
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400225int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400227 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000228 struct gfs2_alloc *al;
229 struct gfs2_rgrpd *rgd;
230 int error;
231
232 if (ip->i_di.di_blocks != 1) {
233 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500234 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235 return -EIO;
236 }
237
238 al = gfs2_alloc_get(ip);
239
240 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
241 if (error)
242 goto out;
243
244 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
245 if (error)
246 goto out_qs;
247
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100248 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000249 if (!rgd) {
250 gfs2_consist_inode(ip);
251 error = -EIO;
252 goto out_rindex_relse;
253 }
254
255 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
256 &al->al_rgd_gh);
257 if (error)
258 goto out_rindex_relse;
259
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400260 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000261 if (error)
262 goto out_rg_gunlock;
263
264 gfs2_trans_add_gl(ip->i_gl);
265
266 gfs2_free_di(rgd, ip);
267
David Teiglandb3b94fa2006-01-16 16:50:04 +0000268 gfs2_trans_end(sdp);
269 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
270
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400271out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000272 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400273out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400275out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000276 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400277out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400278 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 return error;
280}
281
282/**
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500283 * gfs2_change_nlink - Change nlink count on inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000284 * @ip: The GFS2 inode
285 * @diff: The change in the nlink count required
286 *
287 * Returns: errno
288 */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500289int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000290{
291 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400292 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000293 int error;
294
Steven Whitehouse4f561102006-11-01 14:04:17 -0500295 BUG_ON(diff != 1 && diff != -1);
296 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000297
298 /* If we are reducing the nlink count, but the new value ends up being
299 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500300 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500302 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000303 return -EIO;
304 }
305
306 error = gfs2_meta_inode_buffer(ip, &dibh);
307 if (error)
308 return error;
309
Steven Whitehouse4f561102006-11-01 14:04:17 -0500310 if (diff > 0)
311 inc_nlink(&ip->i_inode);
312 else
313 drop_nlink(&ip->i_inode);
314
Eric Sandeenddfe0622007-01-18 16:41:23 -0600315 ip->i_inode.i_ctime = CURRENT_TIME_SEC;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000316
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000317 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500318 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400320 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000321
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500322 if (ip->i_inode.i_nlink == 0)
Russell Cattelanddee7602007-01-29 17:13:44 -0600323 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500324
S. Wendy Cheng55098262007-01-18 15:56:34 -0500325 return error;
326}
327
Steven Whitehousec7526662006-03-20 12:30:04 -0500328struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
329{
330 struct qstr qstr;
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600331 struct inode *inode;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500332 gfs2_str2qstr(&qstr, name);
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600333 inode = gfs2_lookupi(dip, &qstr, 1, NULL);
334 /* gfs2_lookupi has inconsistent callers: vfs
335 * related routines expect NULL for no entry found,
336 * gfs2_lookup_simple callers expect ENOENT
337 * and do not check for NULL.
338 */
339 if (inode == NULL)
340 return ERR_PTR(-ENOENT);
341 else
342 return inode;
Steven Whitehousec7526662006-03-20 12:30:04 -0500343}
344
345
David Teiglandb3b94fa2006-01-16 16:50:04 +0000346/**
347 * gfs2_lookupi - Look up a filename in a directory and return its inode
348 * @d_gh: An initialized holder for the directory glock
349 * @name: The name of the inode to look for
350 * @is_root: If 1, ignore the caller's permissions
351 * @i_gh: An uninitialized holder for the new inode glock
352 *
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000353 * This can be called via the VFS filldir function when NFS is doing
354 * a readdirplus and the inode which its intending to stat isn't
355 * already in cache. In this case we must not take the directory glock
356 * again, since the readdir call will have already taken that lock.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357 *
358 * Returns: errno
359 */
360
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400361struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
362 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500364 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400365 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000366 struct gfs2_holder d_gh;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000367 int error;
Steven Whitehousec7526662006-03-20 12:30:04 -0500368 struct inode *inode = NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000369 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000370
371 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500372 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373
Steven Whitehousec7526662006-03-20 12:30:04 -0500374 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
375 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
376 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400377 igrab(dir);
378 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000379 }
380
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000381 if (gfs2_glock_is_locked_by_me(dip->i_gl) == 0) {
382 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
383 if (error)
384 return ERR_PTR(error);
385 unlock = 1;
386 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000387
388 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400389 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000390 if (error)
391 goto out;
392 }
393
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100394 inode = gfs2_dir_search(dir, name);
395 if (IS_ERR(inode))
396 error = PTR_ERR(inode);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000397out:
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000398 if (unlock)
399 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500400 if (error == -ENOENT)
401 return NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000402 return inode ? inode : ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000403}
404
Steven Whitehousecd915492006-09-04 12:49:07 -0400405static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000406{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400407 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000408 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400409 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410 int error;
411
412 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
413 if (error)
414 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000415 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000416
417 error = gfs2_meta_inode_buffer(ip, &bh);
418 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000419 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000420 gfs2_trans_end(sdp);
421 return error;
422 }
423
424 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
425
426 if (ir.ir_length) {
427 *formal_ino = ir.ir_start++;
428 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000429 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000430 gfs2_inum_range_out(&ir,
431 bh->b_data + sizeof(struct gfs2_dinode));
432 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000433 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000434 gfs2_trans_end(sdp);
435 return 0;
436 }
437
438 brelse(bh);
439
Steven Whitehousef55ab262006-02-21 12:51:39 +0000440 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441 gfs2_trans_end(sdp);
442
443 return 1;
444}
445
Steven Whitehousecd915492006-09-04 12:49:07 -0400446static int pick_formal_ino_2(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);
449 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450 struct gfs2_holder gh;
451 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400452 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000453 int error;
454
455 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
456 if (error)
457 return error;
458
459 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
460 if (error)
461 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000462 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000463
464 error = gfs2_meta_inode_buffer(ip, &bh);
465 if (error)
466 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400467
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
469
470 if (!ir.ir_length) {
471 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400472 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400473 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474
475 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
476 if (error)
477 goto out_brelse;
478
Al Virob44b84d2006-10-14 10:46:30 -0400479 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
480 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481 ir.ir_start = x;
482 ir.ir_length = GFS2_INUM_QUANTUM;
483 x += GFS2_INUM_QUANTUM;
484 if (x < y)
485 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400486 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000487 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400488 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489
490 brelse(m_bh);
491 }
492
493 *formal_ino = ir.ir_start++;
494 ir.ir_length--;
495
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000496 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
498
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400499out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000500 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400501out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000502 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000503 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400504out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000505 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000506 return error;
507}
508
Steven Whitehousecd915492006-09-04 12:49:07 -0400509static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000510{
511 int error;
512
513 error = pick_formal_ino_1(sdp, inum);
514 if (error <= 0)
515 return error;
516
517 error = pick_formal_ino_2(sdp, inum);
518
519 return error;
520}
521
522/**
523 * create_ok - OK to create a new on-disk inode here?
524 * @dip: Directory in which dinode is to be created
525 * @name: Name of new dinode
526 * @mode:
527 *
528 * Returns: errno
529 */
530
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400531static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000532 unsigned int mode)
533{
534 int error;
535
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400536 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537 if (error)
538 return error;
539
540 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500541 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000542 return -EPERM;
543
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100544 error = gfs2_dir_check(&dip->i_inode, name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545 switch (error) {
546 case -ENOENT:
547 error = 0;
548 break;
549 case 0:
550 return -EEXIST;
551 default:
552 return error;
553 }
554
Steven Whitehousecd915492006-09-04 12:49:07 -0400555 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500557 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000558 return -EMLINK;
559
560 return 0;
561}
562
563static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
564 unsigned int *uid, unsigned int *gid)
565{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400566 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500567 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000568 if (S_ISDIR(*mode))
569 *mode |= S_ISUID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500570 else if (dip->i_inode.i_uid != current->fsuid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500572 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000573 } else
574 *uid = current->fsuid;
575
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500576 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577 if (S_ISDIR(*mode))
578 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500579 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580 } else
581 *gid = current->fsgid;
582}
583
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100584static int alloc_dinode(struct gfs2_inode *dip, u64 *no_addr, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000585{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400586 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587 int error;
588
589 gfs2_alloc_get(dip);
590
591 dip->i_alloc.al_requested = RES_DINODE;
592 error = gfs2_inplace_reserve(dip);
593 if (error)
594 goto out;
595
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400596 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597 if (error)
598 goto out_ipreserv;
599
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100600 *no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601
602 gfs2_trans_end(sdp);
603
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400604out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400606out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000608 return error;
609}
610
611/**
612 * init_dinode - Fill in a new dinode structure
613 * @dip: the directory this inode is being created in
614 * @gl: The glock covering the new inode
615 * @inum: the inode number
616 * @mode: the file permissions
617 * @uid:
618 * @gid:
619 *
620 */
621
622static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400623 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400624 unsigned int uid, unsigned int gid,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500625 const u64 *generation, dev_t dev)
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);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000628 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629 struct buffer_head *dibh;
630
631 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000632 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000633 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
634 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000635 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000636
Steven Whitehouse2442a092006-01-30 11:49:32 +0000637 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
638 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000639 di->di_mode = cpu_to_be32(mode);
640 di->di_uid = cpu_to_be32(uid);
641 di->di_gid = cpu_to_be32(gid);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500642 di->di_nlink = 0;
643 di->di_size = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000644 di->di_blocks = cpu_to_be64(1);
645 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500646 di->di_major = cpu_to_be32(MAJOR(dev));
647 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000648 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400649 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500650 di->di_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000651
652 if (S_ISREG(mode)) {
653 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
654 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000655 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
657 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000658 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000659 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500660 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
661 GFS2_DIF_INHERIT_DIRECTIO);
662 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
663 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000664 }
665
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000666 di->__pad1 = 0;
Steven Whitehousea9583c72006-11-01 20:09:14 -0500667 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500668 di->di_height = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000669 di->__pad2 = 0;
670 di->__pad3 = 0;
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500671 di->di_depth = 0;
672 di->di_entries = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000673 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500674 di->di_eattr = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000675 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
676
David Teiglandb3b94fa2006-01-16 16:50:04 +0000677 brelse(dibh);
678}
679
680static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400681 unsigned int mode, const struct gfs2_inum_host *inum,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500682 const u64 *generation, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400684 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000685 unsigned int uid, gid;
686 int error;
687
688 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000689 gfs2_alloc_get(dip);
690
691 error = gfs2_quota_lock(dip, uid, gid);
692 if (error)
693 goto out;
694
695 error = gfs2_quota_check(dip, uid, gid);
696 if (error)
697 goto out_quota;
698
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400699 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000700 if (error)
701 goto out_quota;
702
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500703 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000704 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000705 gfs2_trans_end(sdp);
706
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400707out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000708 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400709out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000710 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000711 return error;
712}
713
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400714static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
715 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000716{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400717 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000718 struct gfs2_alloc *al;
719 int alloc_required;
720 struct buffer_head *dibh;
721 int error;
722
723 al = gfs2_alloc_get(dip);
724
725 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
726 if (error)
727 goto fail;
728
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400729 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500730 if (alloc_required < 0)
731 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000732 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500733 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734 if (error)
735 goto fail_quota_locks;
736
737 al->al_requested = sdp->sd_max_dirres;
738
739 error = gfs2_inplace_reserve(dip);
740 if (error)
741 goto fail_quota_locks;
742
Steven Whitehouse320dd102006-05-18 16:25:27 -0400743 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400745 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000746 RES_STATFS + RES_QUOTA, 0);
747 if (error)
748 goto fail_ipreserv;
749 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400750 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000751 if (error)
752 goto fail_quota_locks;
753 }
754
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100755 error = gfs2_dir_add(&dip->i_inode, name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 if (error)
757 goto fail_end_trans;
758
759 error = gfs2_meta_inode_buffer(ip, &dibh);
760 if (error)
761 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500762 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000763 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500764 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 return 0;
767
Steven Whitehouse320dd102006-05-18 16:25:27 -0400768fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769 gfs2_trans_end(sdp);
770
Steven Whitehouse320dd102006-05-18 16:25:27 -0400771fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000772 if (dip->i_alloc.al_rgd)
773 gfs2_inplace_release(dip);
774
Steven Whitehouse320dd102006-05-18 16:25:27 -0400775fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000776 gfs2_quota_unlock(dip);
777
Steven Whitehouse320dd102006-05-18 16:25:27 -0400778fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780 return error;
781}
782
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400783static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
784{
785 int err;
786 size_t len;
787 void *value;
788 char *name;
789 struct gfs2_ea_request er;
790
791 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
792 &name, &value, &len);
793
794 if (err) {
795 if (err == -EOPNOTSUPP)
796 return 0;
797 return err;
798 }
799
800 memset(&er, 0, sizeof(struct gfs2_ea_request));
801
802 er.er_type = GFS2_EATYPE_SECURITY;
803 er.er_name = name;
804 er.er_data = value;
805 er.er_name_len = strlen(name);
806 er.er_data_len = len;
807
808 err = gfs2_ea_set_i(ip, &er);
809
810 kfree(value);
811 kfree(name);
812
813 return err;
814}
815
David Teiglandb3b94fa2006-01-16 16:50:04 +0000816/**
817 * gfs2_createi - Create a new inode
818 * @ghs: An array of two holders
819 * @name: The name of the new file
820 * @mode: the permissions on the new inode
821 *
822 * @ghs[0] is an initialized holder for the directory
823 * @ghs[1] is the holder for the inode lock
824 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000825 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826 * file are held. A transaction has been started and an inplace reservation
827 * is held, as well.
828 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000829 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 */
831
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400832struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500833 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000835 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500836 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400837 struct inode *dir = &dip->i_inode;
838 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100839 struct gfs2_inum_host inum = { .no_addr = 0, .no_formal_ino = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400841 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000842
843 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000844 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
847 error = gfs2_glock_nq(ghs);
848 if (error)
849 goto fail;
850
851 error = create_ok(dip, name, mode);
852 if (error)
853 goto fail_gunlock;
854
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400855 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000856 if (error)
857 goto fail_gunlock;
858
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100859 error = alloc_dinode(dip, &inum.no_addr, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000860 if (error)
861 goto fail_gunlock;
862
Steven Whitehouse28626e22006-11-22 11:13:21 -0500863 error = gfs2_glock_nq_num(sdp, inum.no_addr, &gfs2_inode_glops,
864 LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
865 if (error)
866 goto fail_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500868 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000869 if (error)
870 goto fail_gunlock2;
871
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100872 inode = gfs2_inode_lookup(dir->i_sb, inum.no_addr, IF2DT(mode));
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400873 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000874 goto fail_gunlock2;
875
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400876 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877 if (error)
878 goto fail_iput;
879
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400880 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000881 if (error)
882 goto fail_iput;
883
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400884 error = gfs2_security_init(dip, GFS2_I(inode));
885 if (error)
886 goto fail_iput;
887
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400888 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000889 if (error)
890 goto fail_iput;
891
Steven Whitehouse7359a192006-02-13 12:27:43 +0000892 if (!inode)
893 return ERR_PTR(-ENOMEM);
894 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895
Steven Whitehouse320dd102006-05-18 16:25:27 -0400896fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400897 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400898fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400900fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000901 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400902fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000903 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904}
905
906/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907 * gfs2_rmdiri - Remove a directory
908 * @dip: The parent directory of the directory to be removed
909 * @name: The name of the directory to be removed
910 * @ip: The GFS2 inode of the directory to be removed
911 *
912 * Assumes Glocks on dip and ip are held
913 *
914 * Returns: errno
915 */
916
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400917int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
918 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000920 struct qstr dotname;
921 int error;
922
923 if (ip->i_di.di_entries != 2) {
924 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500925 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 return -EIO;
927 }
928
929 error = gfs2_dir_del(dip, name);
930 if (error)
931 return error;
932
933 error = gfs2_change_nlink(dip, -1);
934 if (error)
935 return error;
936
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500937 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000938 error = gfs2_dir_del(ip, &dotname);
939 if (error)
940 return error;
941
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400942 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000943 error = gfs2_dir_del(ip, &dotname);
944 if (error)
945 return error;
946
Steven Whitehouse4f561102006-11-01 14:04:17 -0500947 /* It looks odd, but it really should be done twice */
948 error = gfs2_change_nlink(ip, -1);
949 if (error)
950 return error;
951
952 error = gfs2_change_nlink(ip, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 if (error)
954 return error;
955
David Teiglandb3b94fa2006-01-16 16:50:04 +0000956 return error;
957}
958
959/*
960 * gfs2_unlink_ok - check to see that a inode is still in a directory
961 * @dip: the directory
962 * @name: the name of the file
963 * @ip: the inode
964 *
965 * Assumes that the lock on (at least) @dip is held.
966 *
967 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
968 */
969
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400970int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100971 const struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000972{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000973 int error;
974
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400975 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976 return -EPERM;
977
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500978 if ((dip->i_inode.i_mode & S_ISVTX) &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500979 dip->i_inode.i_uid != current->fsuid &&
980 ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000981 return -EPERM;
982
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400983 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984 return -EPERM;
985
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400986 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000987 if (error)
988 return error;
989
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100990 error = gfs2_dir_check(&dip->i_inode, name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000991 if (error)
992 return error;
993
David Teiglandb3b94fa2006-01-16 16:50:04 +0000994 return 0;
995}
996
997/*
998 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
999 * @this: move this
1000 * @to: to here
1001 *
1002 * Follow @to back to the root and make sure we don't encounter @this
1003 * Assumes we already hold the rename lock.
1004 *
1005 * Returns: errno
1006 */
1007
1008int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1009{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001010 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001011 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001012 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001013 struct qstr dotdot;
1014 int error = 0;
1015
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001016 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001017
Steven Whitehouse7359a192006-02-13 12:27:43 +00001018 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001019
1020 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001021 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001022 error = -EINVAL;
1023 break;
1024 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001025 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026 error = 0;
1027 break;
1028 }
1029
Steven Whitehousec7526662006-03-20 12:30:04 -05001030 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1031 if (IS_ERR(tmp)) {
1032 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001033 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001034 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035
Steven Whitehouse7359a192006-02-13 12:27:43 +00001036 iput(dir);
1037 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001038 }
1039
Steven Whitehouse7359a192006-02-13 12:27:43 +00001040 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041
1042 return error;
1043}
1044
1045/**
1046 * gfs2_readlinki - return the contents of a symlink
1047 * @ip: the symlink's inode
1048 * @buf: a pointer to the buffer to be filled
1049 * @len: a pointer to the length of @buf
1050 *
1051 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1052 * to be freed by the caller.
1053 *
1054 * Returns: errno
1055 */
1056
1057int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1058{
1059 struct gfs2_holder i_gh;
1060 struct buffer_head *dibh;
1061 unsigned int x;
1062 int error;
1063
1064 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1065 error = gfs2_glock_nq_atime(&i_gh);
1066 if (error) {
1067 gfs2_holder_uninit(&i_gh);
1068 return error;
1069 }
1070
1071 if (!ip->i_di.di_size) {
1072 gfs2_consist_inode(ip);
1073 error = -EIO;
1074 goto out;
1075 }
1076
1077 error = gfs2_meta_inode_buffer(ip, &dibh);
1078 if (error)
1079 goto out;
1080
1081 x = ip->i_di.di_size + 1;
1082 if (x > *len) {
1083 *buf = kmalloc(x, GFP_KERNEL);
1084 if (!*buf) {
1085 error = -ENOMEM;
1086 goto out_brelse;
1087 }
1088 }
1089
1090 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1091 *len = x;
1092
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001093out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001095out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001096 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001097 return error;
1098}
1099
1100/**
1101 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1102 * conditionally update the inode's atime
1103 * @gh: the holder to acquire
1104 *
1105 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1106 * Update if the difference between the current time and the inode's current
1107 * atime is greater than an interval specified at mount.
1108 *
1109 * Returns: errno
1110 */
1111
1112int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1113{
1114 struct gfs2_glock *gl = gh->gh_gl;
1115 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001116 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001117 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001118 unsigned int state;
1119 int flags;
1120 int error;
1121
1122 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1123 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1124 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1125 return -EINVAL;
1126
1127 state = gh->gh_state;
1128 flags = gh->gh_flags;
1129
1130 error = gfs2_glock_nq(gh);
1131 if (error)
1132 return error;
1133
1134 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1135 (sdp->sd_vfs->s_flags & MS_RDONLY))
1136 return 0;
1137
1138 curtime = get_seconds();
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001139 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001140 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001141 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1142 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001143 error = gfs2_glock_nq(gh);
1144 if (error)
1145 return error;
1146
1147 /* Verify that atime hasn't been updated while we were
1148 trying to get exclusive lock. */
1149
1150 curtime = get_seconds();
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001151 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001152 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001153 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001154
1155 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1156 if (error == -EROFS)
1157 return 0;
1158 if (error)
1159 goto fail;
1160
1161 error = gfs2_meta_inode_buffer(ip, &dibh);
1162 if (error)
1163 goto fail_end_trans;
1164
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001165 ip->i_inode.i_atime.tv_sec = curtime;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001167 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001168 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001169 di->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170 brelse(dibh);
1171
1172 gfs2_trans_end(sdp);
1173 }
1174
1175 /* If someone else has asked for the glock,
1176 unlock and let them have it. Then reacquire
1177 in the original state. */
1178 if (gfs2_glock_is_blocking(gl)) {
1179 gfs2_glock_dq(gh);
1180 gfs2_holder_reinit(state, flags, gh);
1181 return gfs2_glock_nq(gh);
1182 }
1183 }
1184
1185 return 0;
1186
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001187fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001188 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001189fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001190 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001191 return error;
1192}
1193
David Teiglandb3b94fa2006-01-16 16:50:04 +00001194static int
1195__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1196{
1197 struct buffer_head *dibh;
1198 int error;
1199
1200 error = gfs2_meta_inode_buffer(ip, &dibh);
1201 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001202 error = inode_setattr(&ip->i_inode, attr);
1203 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001204 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001205 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 brelse(dibh);
1207 }
1208 return error;
1209}
1210
1211/**
1212 * gfs2_setattr_simple -
1213 * @ip:
1214 * @attr:
1215 *
1216 * Called with a reference on the vnode.
1217 *
1218 * Returns: errno
1219 */
1220
1221int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1222{
1223 int error;
1224
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001225 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001226 return __gfs2_setattr_simple(ip, attr);
1227
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001228 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001229 if (error)
1230 return error;
1231
1232 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001233 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234 return error;
1235}
1236