blob: 51d8061fa07ac79667148b6fec357feff8b6088f [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersonca390602008-01-28 11:15:57 -06003 * Copyright (C) 2004-2008 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>
Ryan O'Harafcb47e02006-10-03 11:57:35 -040019#include <linux/security.h>
Steven Whitehouse719ee342008-09-18 13:53:59 +010020#include <linux/time.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"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010027#include "xattr.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000028#include "glock.h"
29#include "glops.h"
30#include "inode.h"
31#include "log.h"
32#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033#include "quota.h"
34#include "rgrp.h"
35#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050036#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000037
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010038struct gfs2_inum_range_host {
39 u64 ir_start;
40 u64 ir_length;
41};
42
David Teiglandb3b94fa2006-01-16 16:50:04 +000043static int iget_test(struct inode *inode, void *opaque)
44{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040045 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010046 u64 *no_addr = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +000047
Steven Whitehouse009d8512009-12-08 12:12:13 +000048 if (ip->i_no_addr == *no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000049 return 1;
50
51 return 0;
52}
53
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040054static int iget_set(struct inode *inode, void *opaque)
55{
56 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010057 u64 *no_addr = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040058
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010059 inode->i_ino = (unsigned long)*no_addr;
60 ip->i_no_addr = *no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040061 return 0;
62}
63
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010064struct inode *gfs2_ilookup(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000065{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010066 unsigned long hash = (unsigned long)no_addr;
67 return ilookup5(sb, hash, iget_test, &no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000068}
69
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010070static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000071{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010072 unsigned long hash = (unsigned long)no_addr;
73 return iget5_locked(sb, hash, iget_test, iget_set, &no_addr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040074}
75
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -050076struct gfs2_skip_data {
77 u64 no_addr;
78 int skipped;
79};
80
81static int iget_skip_test(struct inode *inode, void *opaque)
82{
83 struct gfs2_inode *ip = GFS2_I(inode);
84 struct gfs2_skip_data *data = opaque;
85
Steven Whitehouse009d8512009-12-08 12:12:13 +000086 if (ip->i_no_addr == data->no_addr) {
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -050087 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)){
88 data->skipped = 1;
89 return 0;
90 }
91 return 1;
92 }
93 return 0;
94}
95
96static int iget_skip_set(struct inode *inode, void *opaque)
97{
98 struct gfs2_inode *ip = GFS2_I(inode);
99 struct gfs2_skip_data *data = opaque;
100
101 if (data->skipped)
102 return 1;
103 inode->i_ino = (unsigned long)(data->no_addr);
104 ip->i_no_addr = data->no_addr;
105 return 0;
106}
107
108static struct inode *gfs2_iget_skip(struct super_block *sb,
109 u64 no_addr)
110{
111 struct gfs2_skip_data data;
112 unsigned long hash = (unsigned long)no_addr;
113
114 data.no_addr = no_addr;
115 data.skipped = 0;
116 return iget5_locked(sb, hash, iget_skip_test, iget_skip_set, &data);
117}
118
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400119/**
Wendy Cheng35dcc522007-06-27 17:07:53 -0400120 * GFS2 lookup code fills in vfs inode contents based on info obtained
121 * from directory entry inside gfs2_inode_lookup(). This has caused issues
122 * with NFS code path since its get_dentry routine doesn't have the relevant
123 * directory entry when gfs2_inode_lookup() is invoked. Part of the code
124 * segment inside gfs2_inode_lookup code needs to get moved around.
125 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100126 * Clears I_NEW as well.
Wendy Cheng35dcc522007-06-27 17:07:53 -0400127 **/
128
129void gfs2_set_iop(struct inode *inode)
130{
Wendy Chengc97bfe42007-11-29 17:56:51 -0500131 struct gfs2_sbd *sdp = GFS2_SB(inode);
Wendy Cheng35dcc522007-06-27 17:07:53 -0400132 umode_t mode = inode->i_mode;
133
134 if (S_ISREG(mode)) {
135 inode->i_op = &gfs2_file_iops;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000136 if (gfs2_localflocks(sdp))
Christoph Hellwig10d21982009-04-07 19:42:17 +0200137 inode->i_fop = &gfs2_file_fops_nolock;
Wendy Chengc97bfe42007-11-29 17:56:51 -0500138 else
Christoph Hellwig10d21982009-04-07 19:42:17 +0200139 inode->i_fop = &gfs2_file_fops;
Wendy Cheng35dcc522007-06-27 17:07:53 -0400140 } else if (S_ISDIR(mode)) {
141 inode->i_op = &gfs2_dir_iops;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000142 if (gfs2_localflocks(sdp))
Christoph Hellwig10d21982009-04-07 19:42:17 +0200143 inode->i_fop = &gfs2_dir_fops_nolock;
Wendy Chengc97bfe42007-11-29 17:56:51 -0500144 else
Christoph Hellwig10d21982009-04-07 19:42:17 +0200145 inode->i_fop = &gfs2_dir_fops;
Wendy Cheng35dcc522007-06-27 17:07:53 -0400146 } else if (S_ISLNK(mode)) {
147 inode->i_op = &gfs2_symlink_iops;
148 } else {
Denis Chengd83225d2008-02-26 15:25:03 +0800149 inode->i_op = &gfs2_file_iops;
Denis Cheng43a33c52008-02-26 15:25:04 +0800150 init_special_inode(inode, inode->i_mode, inode->i_rdev);
Wendy Cheng35dcc522007-06-27 17:07:53 -0400151 }
152
153 unlock_new_inode(inode);
154}
155
156/**
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400157 * gfs2_inode_lookup - Lookup an inode
158 * @sb: The super block
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100159 * @no_addr: The inode number
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400160 * @type: The type of the inode
161 *
162 * Returns: A VFS inode, or an error
163 */
164
Bob Peterson091806e2008-04-29 12:35:48 -0500165struct inode *gfs2_inode_lookup(struct super_block *sb,
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400166 unsigned int type,
167 u64 no_addr,
Bob Peterson1a0eae82010-04-14 11:58:16 -0400168 u64 no_formal_ino)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400169{
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500170 struct inode *inode;
171 struct gfs2_inode *ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400172 struct gfs2_glock *io_gl;
173 int error;
174
Bob Peterson1a0eae82010-04-14 11:58:16 -0400175 inode = gfs2_iget(sb, no_addr);
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500176 ip = GFS2_I(inode);
177
Steven Whitehouse26d83de2006-10-30 16:59:08 -0500178 if (!inode)
179 return ERR_PTR(-ENOBUFS);
180
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400181 if (inode->i_state & I_NEW) {
182 struct gfs2_sbd *sdp = GFS2_SB(inode);
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400183 ip->i_no_formal_ino = no_formal_ino;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400184
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100185 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400186 if (unlikely(error))
187 goto fail;
188 ip->i_gl->gl_object = ip;
189
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100190 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400191 if (unlikely(error))
192 goto fail_put;
193
Steven Whitehousebfded272006-11-01 16:05:38 -0500194 set_bit(GIF_INVALID, &ip->i_flags);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400195 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
196 if (unlikely(error))
197 goto fail_iopen;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100198 ip->i_iopen_gh.gh_gl->gl_object = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400199
200 gfs2_glock_put(io_gl);
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100201
Wendy Cheng35dcc522007-06-27 17:07:53 -0400202 if ((type == DT_UNKNOWN) && (no_formal_ino == 0))
203 goto gfs2_nfsbypass;
204
205 inode->i_mode = DT2IF(type);
206
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100207 /*
208 * We must read the inode in order to work out its type in
209 * this case. Note that this doesn't happen often as we normally
210 * know the type beforehand. This code path only occurs during
211 * unlinked inode recovery (where it is safe to do this glock,
212 * which is not true in the general case).
213 */
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100214 if (type == DT_UNKNOWN) {
215 struct gfs2_holder gh;
216 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
217 if (unlikely(error))
218 goto fail_glock;
219 /* Inode is now uptodate */
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100220 gfs2_glock_dq_uninit(&gh);
221 }
222
Wendy Cheng35dcc522007-06-27 17:07:53 -0400223 gfs2_set_iop(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400225
Wendy Cheng35dcc522007-06-27 17:07:53 -0400226gfs2_nfsbypass:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400227 return inode;
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100228fail_glock:
229 gfs2_glock_dq(&ip->i_iopen_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400230fail_iopen:
231 gfs2_glock_put(io_gl);
232fail_put:
Bob Peterson1a0eae82010-04-14 11:58:16 -0400233 if (inode->i_state & I_NEW)
234 ip->i_gl->gl_object = NULL;
235 gfs2_glock_put(ip->i_gl);
236fail:
237 if (inode->i_state & I_NEW)
238 iget_failed(inode);
239 else
240 iput(inode);
241 return ERR_PTR(error);
242}
243
244/**
245 * gfs2_unlinked_inode_lookup - Lookup an unlinked inode for reclamation
246 * @sb: The super block
247 * no_addr: The inode number
248 * @@inode: A pointer to the inode found, if any
249 *
250 * Returns: 0 and *inode if no errors occurred. If an error occurs,
251 * the resulting *inode may or may not be NULL.
252 */
253
254int gfs2_unlinked_inode_lookup(struct super_block *sb, u64 no_addr,
255 struct inode **inode)
256{
257 struct gfs2_sbd *sdp;
258 struct gfs2_inode *ip;
259 struct gfs2_glock *io_gl;
260 int error;
261 struct gfs2_holder gh;
262
263 *inode = gfs2_iget_skip(sb, no_addr);
264
265 if (!(*inode))
266 return -ENOBUFS;
267
268 if (!((*inode)->i_state & I_NEW))
269 return -ENOBUFS;
270
271 ip = GFS2_I(*inode);
272 sdp = GFS2_SB(*inode);
273 ip->i_no_formal_ino = -1;
274
275 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
276 if (unlikely(error))
277 goto fail;
278 ip->i_gl->gl_object = ip;
279
280 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
281 if (unlikely(error))
282 goto fail_put;
283
284 set_bit(GIF_INVALID, &ip->i_flags);
285 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, LM_FLAG_TRY | GL_EXACT,
286 &ip->i_iopen_gh);
287 if (unlikely(error)) {
288 if (error == GLR_TRYFAILED)
289 error = 0;
290 goto fail_iopen;
291 }
292 ip->i_iopen_gh.gh_gl->gl_object = ip;
293 gfs2_glock_put(io_gl);
294
295 (*inode)->i_mode = DT2IF(DT_UNKNOWN);
296
297 /*
298 * We must read the inode in order to work out its type in
299 * this case. Note that this doesn't happen often as we normally
300 * know the type beforehand. This code path only occurs during
301 * unlinked inode recovery (where it is safe to do this glock,
302 * which is not true in the general case).
303 */
304 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, LM_FLAG_TRY,
305 &gh);
306 if (unlikely(error)) {
307 if (error == GLR_TRYFAILED)
308 error = 0;
309 goto fail_glock;
310 }
311 /* Inode is now uptodate */
312 gfs2_glock_dq_uninit(&gh);
313 gfs2_set_iop(*inode);
314
315 return 0;
316fail_glock:
317 gfs2_glock_dq(&ip->i_iopen_gh);
318fail_iopen:
319 gfs2_glock_put(io_gl);
320fail_put:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400321 ip->i_gl->gl_object = NULL;
322 gfs2_glock_put(ip->i_gl);
323fail:
Bob Peterson1a0eae82010-04-14 11:58:16 -0400324 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325}
326
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500327static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500328{
Steven Whitehouseea744d02006-10-31 15:28:00 -0500329 const struct gfs2_dinode *str = buf;
Steven Whitehouse719ee342008-09-18 13:53:59 +0100330 struct timespec atime;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000331 u16 height, depth;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500332
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000333 if (unlikely(ip->i_no_addr != be64_to_cpu(str->di_num.no_addr)))
334 goto corrupt;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100335 ip->i_no_formal_ino = be64_to_cpu(str->di_num.no_formal_ino);
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500336 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500337 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500338 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500339 case S_IFBLK:
340 case S_IFCHR:
341 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
342 be32_to_cpu(str->di_minor));
343 break;
344 };
345
Steven Whitehouse2933f922006-11-01 13:23:29 -0500346 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
347 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500348 /*
349 * We will need to review setting the nlink count here in the
350 * light of the forthcoming ro bind mount work. This is a reminder
351 * to do that.
352 */
353 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehousec9e98882008-11-04 09:47:33 +0000354 ip->i_disksize = be64_to_cpu(str->di_size);
355 i_size_write(&ip->i_inode, ip->i_disksize);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000356 gfs2_set_inode_blocks(&ip->i_inode, be64_to_cpu(str->di_blocks));
Steven Whitehouse719ee342008-09-18 13:53:59 +0100357 atime.tv_sec = be64_to_cpu(str->di_atime);
358 atime.tv_nsec = be32_to_cpu(str->di_atime_nsec);
359 if (timespec_compare(&ip->i_inode.i_atime, &atime) < 0)
360 ip->i_inode.i_atime = atime;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500361 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100362 ip->i_inode.i_mtime.tv_nsec = be32_to_cpu(str->di_mtime_nsec);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500363 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100364 ip->i_inode.i_ctime.tv_nsec = be32_to_cpu(str->di_ctime_nsec);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500365
Steven Whitehousece276b02008-02-06 09:25:45 +0000366 ip->i_goal = be64_to_cpu(str->di_goal_meta);
Steven Whitehousebcf0b5b2008-11-03 13:39:46 +0000367 ip->i_generation = be64_to_cpu(str->di_generation);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500368
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000369 ip->i_diskflags = be32_to_cpu(str->di_flags);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500370 gfs2_set_inode_flags(&ip->i_inode);
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000371 height = be16_to_cpu(str->di_height);
372 if (unlikely(height > GFS2_MAX_META_HEIGHT))
373 goto corrupt;
374 ip->i_height = (u8)height;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500375
Steven Whitehouse9a004502008-02-01 09:23:44 +0000376 depth = be16_to_cpu(str->di_depth);
377 if (unlikely(depth > GFS2_DIR_MAX_DEPTH))
378 goto corrupt;
379 ip->i_depth = (u8)depth;
Steven Whitehousead6203f2008-11-03 13:59:19 +0000380 ip->i_entries = be32_to_cpu(str->di_entries);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500381
Steven Whitehouse3767ac22008-11-03 14:28:42 +0000382 ip->i_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouse55610932007-10-17 08:47:38 +0100383 if (S_ISREG(ip->i_inode.i_mode))
384 gfs2_set_aops(&ip->i_inode);
385
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500386 return 0;
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000387corrupt:
388 if (gfs2_consist_inode(ip))
389 gfs2_dinode_print(ip);
390 return -EIO;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500391}
392
David Teiglandb3b94fa2006-01-16 16:50:04 +0000393/**
394 * gfs2_inode_refresh - Refresh the incore copy of the dinode
395 * @ip: The GFS2 inode
396 *
397 * Returns: errno
398 */
399
400int gfs2_inode_refresh(struct gfs2_inode *ip)
401{
402 struct buffer_head *dibh;
403 int error;
404
405 error = gfs2_meta_inode_buffer(ip, &dibh);
406 if (error)
407 return error;
408
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400409 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410 brelse(dibh);
411 return -EIO;
412 }
413
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500414 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000415 brelse(dibh);
Steven Whitehousebfded272006-11-01 16:05:38 -0500416 clear_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500418 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419}
420
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400421int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000422{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400423 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424 struct gfs2_alloc *al;
425 struct gfs2_rgrpd *rgd;
426 int error;
427
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000428 if (gfs2_get_inode_blocks(&ip->i_inode) != 1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000429 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500430 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000431 return -EIO;
432 }
433
434 al = gfs2_alloc_get(ip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300435 if (!al)
436 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000437
438 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
439 if (error)
440 goto out;
441
442 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
443 if (error)
444 goto out_qs;
445
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100446 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447 if (!rgd) {
448 gfs2_consist_inode(ip);
449 error = -EIO;
450 goto out_rindex_relse;
451 }
452
453 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
454 &al->al_rgd_gh);
455 if (error)
456 goto out_rindex_relse;
457
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400458 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459 if (error)
460 goto out_rg_gunlock;
461
Steven Whitehouse2bcd6102007-11-08 14:25:12 +0000462 set_bit(GLF_DIRTY, &ip->i_gl->gl_flags);
463 set_bit(GLF_LFLUSH, &ip->i_gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464
465 gfs2_free_di(rgd, ip);
466
David Teiglandb3b94fa2006-01-16 16:50:04 +0000467 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400469out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400471out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000472 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400473out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400475out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400476 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000477 return error;
478}
479
480/**
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500481 * gfs2_change_nlink - Change nlink count on inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482 * @ip: The GFS2 inode
483 * @diff: The change in the nlink count required
484 *
485 * Returns: errno
486 */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500487int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000488{
489 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400490 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000491 int error;
492
Steven Whitehouse4f561102006-11-01 14:04:17 -0500493 BUG_ON(diff != 1 && diff != -1);
494 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000495
496 /* If we are reducing the nlink count, but the new value ends up being
497 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500498 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000499 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500500 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501 return -EIO;
502 }
503
504 error = gfs2_meta_inode_buffer(ip, &dibh);
505 if (error)
506 return error;
507
Steven Whitehouse4f561102006-11-01 14:04:17 -0500508 if (diff > 0)
509 inc_nlink(&ip->i_inode);
510 else
511 drop_nlink(&ip->i_inode);
512
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100513 ip->i_inode.i_ctime = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000515 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500516 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000517 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400518 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500520 if (ip->i_inode.i_nlink == 0)
Russell Cattelanddee7602007-01-29 17:13:44 -0600521 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500522
S. Wendy Cheng55098262007-01-18 15:56:34 -0500523 return error;
524}
525
Steven Whitehousec7526662006-03-20 12:30:04 -0500526struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
527{
528 struct qstr qstr;
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600529 struct inode *inode;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500530 gfs2_str2qstr(&qstr, name);
Al Viroa569c712008-07-23 14:42:05 -0400531 inode = gfs2_lookupi(dip, &qstr, 1);
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600532 /* gfs2_lookupi has inconsistent callers: vfs
533 * related routines expect NULL for no entry found,
534 * gfs2_lookup_simple callers expect ENOENT
535 * and do not check for NULL.
536 */
537 if (inode == NULL)
538 return ERR_PTR(-ENOENT);
539 else
540 return inode;
Steven Whitehousec7526662006-03-20 12:30:04 -0500541}
542
543
David Teiglandb3b94fa2006-01-16 16:50:04 +0000544/**
545 * gfs2_lookupi - Look up a filename in a directory and return its inode
546 * @d_gh: An initialized holder for the directory glock
547 * @name: The name of the inode to look for
548 * @is_root: If 1, ignore the caller's permissions
549 * @i_gh: An uninitialized holder for the new inode glock
550 *
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000551 * This can be called via the VFS filldir function when NFS is doing
552 * a readdirplus and the inode which its intending to stat isn't
553 * already in cache. In this case we must not take the directory glock
554 * again, since the readdir call will have already taken that lock.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000555 *
556 * Returns: errno
557 */
558
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400559struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
Al Viroa569c712008-07-23 14:42:05 -0400560 int is_root)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500562 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400563 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564 struct gfs2_holder d_gh;
akpm@linux-foundation.org037bcbb2007-06-08 16:42:14 -0700565 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500566 struct inode *inode = NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000567 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000568
569 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500570 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571
Steven Whitehousec7526662006-03-20 12:30:04 -0500572 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
573 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
574 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400575 igrab(dir);
576 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577 }
578
Steven Whitehouse7afd88d2008-02-22 16:07:18 +0000579 if (gfs2_glock_is_locked_by_me(dip->i_gl) == NULL) {
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000580 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
581 if (error)
582 return ERR_PTR(error);
583 unlock = 1;
584 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000585
586 if (!is_root) {
Miklos Szeredif58ba882008-07-02 21:12:01 +0200587 error = gfs2_permission(dir, MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000588 if (error)
589 goto out;
590 }
591
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100592 inode = gfs2_dir_search(dir, name);
593 if (IS_ERR(inode))
594 error = PTR_ERR(inode);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000595out:
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000596 if (unlock)
597 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500598 if (error == -ENOENT)
599 return NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000600 return inode ? inode : ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601}
602
David Teiglandb3b94fa2006-01-16 16:50:04 +0000603/**
604 * create_ok - OK to create a new on-disk inode here?
605 * @dip: Directory in which dinode is to be created
606 * @name: Name of new dinode
607 * @mode:
608 *
609 * Returns: errno
610 */
611
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400612static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613 unsigned int mode)
614{
615 int error;
616
Miklos Szeredif58ba882008-07-02 21:12:01 +0200617 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 if (error)
619 return error;
620
621 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500622 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000623 return -EPERM;
624
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100625 error = gfs2_dir_check(&dip->i_inode, name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626 switch (error) {
627 case -ENOENT:
628 error = 0;
629 break;
630 case 0:
631 return -EEXIST;
632 default:
633 return error;
634 }
635
Steven Whitehousead6203f2008-11-03 13:59:19 +0000636 if (dip->i_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000637 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500638 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639 return -EMLINK;
640
641 return 0;
642}
643
644static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
645 unsigned int *uid, unsigned int *gid)
646{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400647 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500648 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000649 if (S_ISDIR(*mode))
650 *mode |= S_ISUID;
David Howells3de7be32008-11-14 10:38:53 +1100651 else if (dip->i_inode.i_uid != current_fsuid())
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500653 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000654 } else
David Howells3de7be32008-11-14 10:38:53 +1100655 *uid = current_fsuid();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500657 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000658 if (S_ISDIR(*mode))
659 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500660 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000661 } else
David Howells3de7be32008-11-14 10:38:53 +1100662 *gid = current_fsgid();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000663}
664
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100665static int alloc_dinode(struct gfs2_inode *dip, u64 *no_addr, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400667 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000668 int error;
669
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000670 if (gfs2_alloc_get(dip) == NULL)
671 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000673 dip->i_alloc->al_requested = RES_DINODE;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000674 error = gfs2_inplace_reserve(dip);
675 if (error)
676 goto out;
677
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400678 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000679 if (error)
680 goto out_ipreserv;
681
Steven Whitehouse6050b9c2009-07-31 16:19:40 +0100682 error = gfs2_alloc_di(dip, no_addr, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683
684 gfs2_trans_end(sdp);
685
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400686out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400688out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000689 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000690 return error;
691}
692
693/**
694 * init_dinode - Fill in a new dinode structure
695 * @dip: the directory this inode is being created in
696 * @gl: The glock covering the new inode
697 * @inum: the inode number
698 * @mode: the file permissions
699 * @uid:
700 * @gid:
701 *
702 */
703
704static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400705 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400706 unsigned int uid, unsigned int gid,
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400707 const u64 *generation, dev_t dev, struct buffer_head **bhp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000708{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400709 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000710 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000711 struct buffer_head *dibh;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100712 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000713
714 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000715 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000716 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
717 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000718 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000719
Steven Whitehouse2442a092006-01-30 11:49:32 +0000720 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
721 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000722 di->di_mode = cpu_to_be32(mode);
723 di->di_uid = cpu_to_be32(uid);
724 di->di_gid = cpu_to_be32(gid);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500725 di->di_nlink = 0;
726 di->di_size = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000727 di->di_blocks = cpu_to_be64(1);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100728 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(tv.tv_sec);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500729 di->di_major = cpu_to_be32(MAJOR(dev));
730 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000731 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400732 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500733 di->di_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734
735 if (S_ISREG(mode)) {
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000736 if ((dip->i_diskflags & GFS2_DIF_INHERIT_JDATA) ||
David Teiglandb3b94fa2006-01-16 16:50:04 +0000737 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000738 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 } else if (S_ISDIR(mode)) {
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000740 di->di_flags |= cpu_to_be32(dip->i_diskflags &
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500741 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 }
743
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000744 di->__pad1 = 0;
Steven Whitehousea9583c72006-11-01 20:09:14 -0500745 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500746 di->di_height = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000747 di->__pad2 = 0;
748 di->__pad3 = 0;
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500749 di->di_depth = 0;
750 di->di_entries = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000751 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500752 di->di_eattr = 0;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100753 di->di_atime_nsec = cpu_to_be32(tv.tv_nsec);
754 di->di_mtime_nsec = cpu_to_be32(tv.tv_nsec);
755 di->di_ctime_nsec = cpu_to_be32(tv.tv_nsec);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000756 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400757
758 set_buffer_uptodate(dibh);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000759
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400760 *bhp = dibh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761}
762
763static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400764 unsigned int mode, const struct gfs2_inum_host *inum,
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400765 const u64 *generation, dev_t dev, struct buffer_head **bhp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400767 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 unsigned int uid, gid;
769 int error;
770
771 munge_mode_uid_gid(dip, &mode, &uid, &gid);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300772 if (!gfs2_alloc_get(dip))
773 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774
775 error = gfs2_quota_lock(dip, uid, gid);
776 if (error)
777 goto out;
778
779 error = gfs2_quota_check(dip, uid, gid);
780 if (error)
781 goto out_quota;
782
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400783 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000784 if (error)
785 goto out_quota;
786
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400787 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev, bhp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000788 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000789 gfs2_trans_end(sdp);
790
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400791out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400793out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000794 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000795 return error;
796}
797
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400798static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
799 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000800{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400801 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802 struct gfs2_alloc *al;
803 int alloc_required;
804 struct buffer_head *dibh;
805 int error;
806
807 al = gfs2_alloc_get(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300808 if (!al)
809 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810
811 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
812 if (error)
813 goto fail;
814
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400815 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500816 if (alloc_required < 0)
Bob Peterson1b8177e2008-01-19 21:50:24 -0600817 goto fail_quota_locks;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500819 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 if (error)
821 goto fail_quota_locks;
822
823 al->al_requested = sdp->sd_max_dirres;
824
825 error = gfs2_inplace_reserve(dip);
826 if (error)
827 goto fail_quota_locks;
828
Steven Whitehouse320dd102006-05-18 16:25:27 -0400829 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100830 al->al_rgd->rd_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400831 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000832 RES_STATFS + RES_QUOTA, 0);
833 if (error)
834 goto fail_ipreserv;
835 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400836 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000837 if (error)
838 goto fail_quota_locks;
839 }
840
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100841 error = gfs2_dir_add(&dip->i_inode, name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000842 if (error)
843 goto fail_end_trans;
844
845 error = gfs2_meta_inode_buffer(ip, &dibh);
846 if (error)
847 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500848 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000849 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500850 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000851 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000852 return 0;
853
Steven Whitehouse320dd102006-05-18 16:25:27 -0400854fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000855 gfs2_trans_end(sdp);
856
Steven Whitehouse320dd102006-05-18 16:25:27 -0400857fail_ipreserv:
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000858 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000859 gfs2_inplace_release(dip);
860
Steven Whitehouse320dd102006-05-18 16:25:27 -0400861fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000862 gfs2_quota_unlock(dip);
863
Steven Whitehouse320dd102006-05-18 16:25:27 -0400864fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000865 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000866 return error;
867}
868
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400869static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
870{
871 int err;
872 size_t len;
873 void *value;
874 char *name;
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400875
876 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
877 &name, &value, &len);
878
879 if (err) {
880 if (err == -EOPNOTSUPP)
881 return 0;
882 return err;
883 }
884
Christoph Hellwig431547b2009-11-13 09:52:56 +0000885 err = __gfs2_xattr_set(&ip->i_inode, name, value, len, 0,
886 GFS2_EATYPE_SECURITY);
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400887 kfree(value);
888 kfree(name);
889
890 return err;
891}
892
David Teiglandb3b94fa2006-01-16 16:50:04 +0000893/**
894 * gfs2_createi - Create a new inode
895 * @ghs: An array of two holders
896 * @name: The name of the new file
897 * @mode: the permissions on the new inode
898 *
899 * @ghs[0] is an initialized holder for the directory
900 * @ghs[1] is the holder for the inode lock
901 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000902 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000903 * file are held. A transaction has been started and an inplace reservation
904 * is held, as well.
905 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000906 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907 */
908
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400909struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500910 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911{
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100912 struct inode *inode = NULL;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500913 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400914 struct inode *dir = &dip->i_inode;
915 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100916 struct gfs2_inum_host inum = { .no_addr = 0, .no_formal_ino = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000917 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400918 u64 generation;
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100919 struct buffer_head *bh = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000920
921 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000922 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000923
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
925 error = gfs2_glock_nq(ghs);
926 if (error)
927 goto fail;
928
929 error = create_ok(dip, name, mode);
930 if (error)
931 goto fail_gunlock;
932
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100933 error = alloc_dinode(dip, &inum.no_addr, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000934 if (error)
935 goto fail_gunlock;
Steven Whitehouse8d8291a2009-08-27 15:51:07 +0100936 inum.no_formal_ino = generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937
Steven Whitehouse28626e22006-11-22 11:13:21 -0500938 error = gfs2_glock_nq_num(sdp, inum.no_addr, &gfs2_inode_glops,
939 LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
940 if (error)
941 goto fail_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400943 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000944 if (error)
945 goto fail_gunlock2;
946
Steven Whitehouse8d8291a2009-08-27 15:51:07 +0100947 inode = gfs2_inode_lookup(dir->i_sb, IF2DT(mode), inum.no_addr,
Bob Peterson1a0eae82010-04-14 11:58:16 -0400948 inum.no_formal_ino);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400949 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000950 goto fail_gunlock2;
951
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400952 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100954 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955
Steven Whitehouse479c4272009-10-02 12:00:00 +0100956 error = gfs2_acl_create(dip, inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100958 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400960 error = gfs2_security_init(dip, GFS2_I(inode));
961 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100962 goto fail_gunlock2;
Ryan O'Harafcb47e02006-10-03 11:57:35 -0400963
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400964 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100966 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100968 if (bh)
969 brelse(bh);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000970 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000971
Steven Whitehouse320dd102006-05-18 16:25:27 -0400972fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000973 gfs2_glock_dq_uninit(ghs + 1);
Julien Brunelbd1eb882008-09-01 10:51:22 +0200974 if (inode && !IS_ERR(inode))
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100975 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400976fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400978fail:
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100979 if (bh)
980 brelse(bh);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000981 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000982}
983
Steven Whitehouse536baf02009-05-22 10:48:59 +0100984static int __gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985{
986 struct buffer_head *dibh;
987 int error;
988
989 error = gfs2_meta_inode_buffer(ip, &dibh);
990 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400991 error = inode_setattr(&ip->i_inode, attr);
992 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000993 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500994 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995 brelse(dibh);
996 }
997 return error;
998}
999
1000/**
1001 * gfs2_setattr_simple -
1002 * @ip:
1003 * @attr:
1004 *
1005 * Called with a reference on the vnode.
1006 *
1007 * Returns: errno
1008 */
1009
1010int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1011{
1012 int error;
1013
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001014 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001015 return __gfs2_setattr_simple(ip, attr);
1016
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001017 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001018 if (error)
1019 return error;
1020
1021 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001022 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 return error;
1024}
1025
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001026void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
1027{
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001028 struct gfs2_dinode *str = buf;
1029
1030 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
1031 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001032 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001033 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
1034 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
1035 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
1036 str->di_uid = cpu_to_be32(ip->i_inode.i_uid);
1037 str->di_gid = cpu_to_be32(ip->i_inode.i_gid);
1038 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
Steven Whitehousec9e98882008-11-04 09:47:33 +00001039 str->di_size = cpu_to_be64(ip->i_disksize);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001040 str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001041 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
1042 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
1043 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
1044
Steven Whitehousece276b02008-02-06 09:25:45 +00001045 str->di_goal_meta = cpu_to_be64(ip->i_goal);
1046 str->di_goal_data = cpu_to_be64(ip->i_goal);
Steven Whitehousebcf0b5b2008-11-03 13:39:46 +00001047 str->di_generation = cpu_to_be64(ip->i_generation);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001048
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001049 str->di_flags = cpu_to_be32(ip->i_diskflags);
Steven Whitehouseecc30c72008-01-28 10:37:35 +00001050 str->di_height = cpu_to_be16(ip->i_height);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001051 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001052 !(ip->i_diskflags & GFS2_DIF_EXHASH) ?
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001053 GFS2_FORMAT_DE : 0);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001054 str->di_depth = cpu_to_be16(ip->i_depth);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001055 str->di_entries = cpu_to_be32(ip->i_entries);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001056
Steven Whitehouse3767ac22008-11-03 14:28:42 +00001057 str->di_eattr = cpu_to_be64(ip->i_eattr);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001058 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
1059 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
1060 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001061}
1062
1063void gfs2_dinode_print(const struct gfs2_inode *ip)
1064{
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001065 printk(KERN_INFO " no_formal_ino = %llu\n",
1066 (unsigned long long)ip->i_no_formal_ino);
1067 printk(KERN_INFO " no_addr = %llu\n",
1068 (unsigned long long)ip->i_no_addr);
Steven Whitehousec9e98882008-11-04 09:47:33 +00001069 printk(KERN_INFO " i_disksize = %llu\n",
1070 (unsigned long long)ip->i_disksize);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001071 printk(KERN_INFO " blocks = %llu\n",
1072 (unsigned long long)gfs2_get_inode_blocks(&ip->i_inode));
Steven Whitehousece276b02008-02-06 09:25:45 +00001073 printk(KERN_INFO " i_goal = %llu\n",
1074 (unsigned long long)ip->i_goal);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001075 printk(KERN_INFO " i_diskflags = 0x%.8X\n", ip->i_diskflags);
Bob Petersonca390602008-01-28 11:15:57 -06001076 printk(KERN_INFO " i_height = %u\n", ip->i_height);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001077 printk(KERN_INFO " i_depth = %u\n", ip->i_depth);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001078 printk(KERN_INFO " i_entries = %u\n", ip->i_entries);
Steven Whitehouse3767ac22008-11-03 14:28:42 +00001079 printk(KERN_INFO " i_eattr = %llu\n",
1080 (unsigned long long)ip->i_eattr);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001081}
1082