blob: af493fc6c8ce7596c453068b6d34e765646f57d4 [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"
David Teiglandb3b94fa2006-01-16 16:50:04 +000034#include "ops_inode.h"
35#include "quota.h"
36#include "rgrp.h"
37#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050038#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000039
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010040struct gfs2_inum_range_host {
41 u64 ir_start;
42 u64 ir_length;
43};
44
David Teiglandb3b94fa2006-01-16 16:50:04 +000045static int iget_test(struct inode *inode, void *opaque)
46{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040047 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010048 u64 *no_addr = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +000049
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010050 if (ip->i_no_addr == *no_addr &&
Steven Whitehouse1be38672007-03-01 10:00:53 +000051 inode->i_private != NULL)
David Teiglandb3b94fa2006-01-16 16:50:04 +000052 return 1;
53
54 return 0;
55}
56
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040057static int iget_set(struct inode *inode, void *opaque)
58{
59 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010060 u64 *no_addr = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040061
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010062 inode->i_ino = (unsigned long)*no_addr;
63 ip->i_no_addr = *no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040064 return 0;
65}
66
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010067struct inode *gfs2_ilookup(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000068{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010069 unsigned long hash = (unsigned long)no_addr;
70 return ilookup5(sb, hash, iget_test, &no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000071}
72
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010073static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000074{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010075 unsigned long hash = (unsigned long)no_addr;
76 return iget5_locked(sb, hash, iget_test, iget_set, &no_addr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040077}
78
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -050079struct gfs2_skip_data {
80 u64 no_addr;
81 int skipped;
82};
83
84static int iget_skip_test(struct inode *inode, void *opaque)
85{
86 struct gfs2_inode *ip = GFS2_I(inode);
87 struct gfs2_skip_data *data = opaque;
88
89 if (ip->i_no_addr == data->no_addr && inode->i_private != NULL){
90 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)){
91 data->skipped = 1;
92 return 0;
93 }
94 return 1;
95 }
96 return 0;
97}
98
99static int iget_skip_set(struct inode *inode, void *opaque)
100{
101 struct gfs2_inode *ip = GFS2_I(inode);
102 struct gfs2_skip_data *data = opaque;
103
104 if (data->skipped)
105 return 1;
106 inode->i_ino = (unsigned long)(data->no_addr);
107 ip->i_no_addr = data->no_addr;
108 return 0;
109}
110
111static struct inode *gfs2_iget_skip(struct super_block *sb,
112 u64 no_addr)
113{
114 struct gfs2_skip_data data;
115 unsigned long hash = (unsigned long)no_addr;
116
117 data.no_addr = no_addr;
118 data.skipped = 0;
119 return iget5_locked(sb, hash, iget_skip_test, iget_skip_set, &data);
120}
121
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400122/**
Wendy Cheng35dcc522007-06-27 17:07:53 -0400123 * GFS2 lookup code fills in vfs inode contents based on info obtained
124 * from directory entry inside gfs2_inode_lookup(). This has caused issues
125 * with NFS code path since its get_dentry routine doesn't have the relevant
126 * directory entry when gfs2_inode_lookup() is invoked. Part of the code
127 * segment inside gfs2_inode_lookup code needs to get moved around.
128 *
129 * Clean up I_LOCK and I_NEW as well.
130 **/
131
132void gfs2_set_iop(struct inode *inode)
133{
134 umode_t mode = inode->i_mode;
135
136 if (S_ISREG(mode)) {
137 inode->i_op = &gfs2_file_iops;
138 inode->i_fop = &gfs2_file_fops;
139 inode->i_mapping->a_ops = &gfs2_file_aops;
140 } else if (S_ISDIR(mode)) {
141 inode->i_op = &gfs2_dir_iops;
142 inode->i_fop = &gfs2_dir_fops;
143 } else if (S_ISLNK(mode)) {
144 inode->i_op = &gfs2_symlink_iops;
145 } else {
146 inode->i_op = &gfs2_dev_iops;
147 }
148
149 unlock_new_inode(inode);
150}
151
152/**
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400153 * gfs2_inode_lookup - Lookup an inode
154 * @sb: The super block
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100155 * @no_addr: The inode number
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400156 * @type: The type of the inode
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500157 * @skip_freeing: set this not return an inode if it is currently being freed.
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400158 *
159 * Returns: A VFS inode, or an error
160 */
161
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400162struct inode *gfs2_inode_lookup(struct super_block *sb,
163 unsigned int type,
164 u64 no_addr,
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500165 u64 no_formal_ino, int skip_freeing)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400166{
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500167 struct inode *inode;
168 struct gfs2_inode *ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400169 struct gfs2_glock *io_gl;
170 int error;
171
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500172 if (skip_freeing)
173 inode = gfs2_iget_skip(sb, no_addr);
174 else
175 inode = gfs2_iget(sb, no_addr);
176 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);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700183 inode->i_private = ip;
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400184 ip->i_no_formal_ino = no_formal_ino;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400185
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100186 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400187 if (unlikely(error))
188 goto fail;
189 ip->i_gl->gl_object = ip;
190
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100191 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400192 if (unlikely(error))
193 goto fail_put;
194
Steven Whitehousebfded272006-11-01 16:05:38 -0500195 set_bit(GIF_INVALID, &ip->i_flags);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400196 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
197 if (unlikely(error))
198 goto fail_iopen;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100199 ip->i_iopen_gh.gh_gl->gl_object = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400200
201 gfs2_glock_put(io_gl);
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100202
Wendy Cheng35dcc522007-06-27 17:07:53 -0400203 if ((type == DT_UNKNOWN) && (no_formal_ino == 0))
204 goto gfs2_nfsbypass;
205
206 inode->i_mode = DT2IF(type);
207
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100208 /*
209 * We must read the inode in order to work out its type in
210 * this case. Note that this doesn't happen often as we normally
211 * know the type beforehand. This code path only occurs during
212 * unlinked inode recovery (where it is safe to do this glock,
213 * which is not true in the general case).
214 */
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100215 if (type == DT_UNKNOWN) {
216 struct gfs2_holder gh;
217 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
218 if (unlikely(error))
219 goto fail_glock;
220 /* Inode is now uptodate */
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100221 gfs2_glock_dq_uninit(&gh);
222 }
223
Wendy Cheng35dcc522007-06-27 17:07:53 -0400224 gfs2_set_iop(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000225 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400226
Wendy Cheng35dcc522007-06-27 17:07:53 -0400227gfs2_nfsbypass:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400228 return inode;
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100229fail_glock:
230 gfs2_glock_dq(&ip->i_iopen_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400231fail_iopen:
232 gfs2_glock_put(io_gl);
233fail_put:
234 ip->i_gl->gl_object = NULL;
235 gfs2_glock_put(ip->i_gl);
236fail:
237 iput(inode);
238 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239}
240
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500241static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500242{
243 struct gfs2_dinode_host *di = &ip->i_di;
244 const struct gfs2_dinode *str = buf;
245
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100246 if (ip->i_no_addr != be64_to_cpu(str->di_num.no_addr)) {
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500247 if (gfs2_consist_inode(ip))
248 gfs2_dinode_print(ip);
249 return -EIO;
250 }
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100251 ip->i_no_formal_ino = be64_to_cpu(str->di_num.no_formal_ino);
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500252 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500253 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500254 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500255 case S_IFBLK:
256 case S_IFCHR:
257 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
258 be32_to_cpu(str->di_minor));
259 break;
260 };
261
Steven Whitehouse2933f922006-11-01 13:23:29 -0500262 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
263 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500264 /*
265 * We will need to review setting the nlink count here in the
266 * light of the forthcoming ro bind mount work. This is a reminder
267 * to do that.
268 */
269 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500270 di->di_size = be64_to_cpu(str->di_size);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500271 i_size_write(&ip->i_inode, di->di_size);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500272 di->di_blocks = be64_to_cpu(str->di_blocks);
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500273 gfs2_set_inode_blocks(&ip->i_inode);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500274 ip->i_inode.i_atime.tv_sec = be64_to_cpu(str->di_atime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100275 ip->i_inode.i_atime.tv_nsec = be32_to_cpu(str->di_atime_nsec);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500276 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100277 ip->i_inode.i_mtime.tv_nsec = be32_to_cpu(str->di_mtime_nsec);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500278 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100279 ip->i_inode.i_ctime.tv_nsec = be32_to_cpu(str->di_ctime_nsec);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500280
281 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
282 di->di_goal_data = be64_to_cpu(str->di_goal_data);
283 di->di_generation = be64_to_cpu(str->di_generation);
284
285 di->di_flags = be32_to_cpu(str->di_flags);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500286 gfs2_set_inode_flags(&ip->i_inode);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500287 di->di_height = be16_to_cpu(str->di_height);
288
289 di->di_depth = be16_to_cpu(str->di_depth);
290 di->di_entries = be32_to_cpu(str->di_entries);
291
292 di->di_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500293 return 0;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500294}
295
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296/**
297 * gfs2_inode_refresh - Refresh the incore copy of the dinode
298 * @ip: The GFS2 inode
299 *
300 * Returns: errno
301 */
302
303int gfs2_inode_refresh(struct gfs2_inode *ip)
304{
305 struct buffer_head *dibh;
306 int error;
307
308 error = gfs2_meta_inode_buffer(ip, &dibh);
309 if (error)
310 return error;
311
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400312 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000313 brelse(dibh);
314 return -EIO;
315 }
316
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500317 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318 brelse(dibh);
Steven Whitehousebfded272006-11-01 16:05:38 -0500319 clear_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000320
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500321 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000322}
323
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400324int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400326 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327 struct gfs2_alloc *al;
328 struct gfs2_rgrpd *rgd;
329 int error;
330
331 if (ip->i_di.di_blocks != 1) {
332 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500333 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000334 return -EIO;
335 }
336
337 al = gfs2_alloc_get(ip);
338
339 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
340 if (error)
341 goto out;
342
343 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
344 if (error)
345 goto out_qs;
346
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100347 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000348 if (!rgd) {
349 gfs2_consist_inode(ip);
350 error = -EIO;
351 goto out_rindex_relse;
352 }
353
354 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
355 &al->al_rgd_gh);
356 if (error)
357 goto out_rindex_relse;
358
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400359 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000360 if (error)
361 goto out_rg_gunlock;
362
363 gfs2_trans_add_gl(ip->i_gl);
364
365 gfs2_free_di(rgd, ip);
366
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367 gfs2_trans_end(sdp);
368 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
369
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400370out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400372out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400374out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000375 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400376out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400377 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000378 return error;
379}
380
381/**
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500382 * gfs2_change_nlink - Change nlink count on inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000383 * @ip: The GFS2 inode
384 * @diff: The change in the nlink count required
385 *
386 * Returns: errno
387 */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500388int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000389{
390 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400391 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000392 int error;
393
Steven Whitehouse4f561102006-11-01 14:04:17 -0500394 BUG_ON(diff != 1 && diff != -1);
395 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396
397 /* If we are reducing the nlink count, but the new value ends up being
398 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500399 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500401 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000402 return -EIO;
403 }
404
405 error = gfs2_meta_inode_buffer(ip, &dibh);
406 if (error)
407 return error;
408
Steven Whitehouse4f561102006-11-01 14:04:17 -0500409 if (diff > 0)
410 inc_nlink(&ip->i_inode);
411 else
412 drop_nlink(&ip->i_inode);
413
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100414 ip->i_inode.i_ctime = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000415
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000416 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500417 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000418 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400419 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000420
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500421 if (ip->i_inode.i_nlink == 0)
Russell Cattelanddee7602007-01-29 17:13:44 -0600422 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500423
S. Wendy Cheng55098262007-01-18 15:56:34 -0500424 return error;
425}
426
Steven Whitehousec7526662006-03-20 12:30:04 -0500427struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
428{
429 struct qstr qstr;
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600430 struct inode *inode;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500431 gfs2_str2qstr(&qstr, name);
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600432 inode = gfs2_lookupi(dip, &qstr, 1, NULL);
433 /* gfs2_lookupi has inconsistent callers: vfs
434 * related routines expect NULL for no entry found,
435 * gfs2_lookup_simple callers expect ENOENT
436 * and do not check for NULL.
437 */
438 if (inode == NULL)
439 return ERR_PTR(-ENOENT);
440 else
441 return inode;
Steven Whitehousec7526662006-03-20 12:30:04 -0500442}
443
444
David Teiglandb3b94fa2006-01-16 16:50:04 +0000445/**
446 * gfs2_lookupi - Look up a filename in a directory and return its inode
447 * @d_gh: An initialized holder for the directory glock
448 * @name: The name of the inode to look for
449 * @is_root: If 1, ignore the caller's permissions
450 * @i_gh: An uninitialized holder for the new inode glock
451 *
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000452 * This can be called via the VFS filldir function when NFS is doing
453 * a readdirplus and the inode which its intending to stat isn't
454 * already in cache. In this case we must not take the directory glock
455 * again, since the readdir call will have already taken that lock.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456 *
457 * Returns: errno
458 */
459
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400460struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
461 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500463 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400464 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000465 struct gfs2_holder d_gh;
akpm@linux-foundation.org037bcbb2007-06-08 16:42:14 -0700466 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500467 struct inode *inode = NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000468 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000469
470 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500471 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000472
Steven Whitehousec7526662006-03-20 12:30:04 -0500473 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
474 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
475 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400476 igrab(dir);
477 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478 }
479
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000480 if (gfs2_glock_is_locked_by_me(dip->i_gl) == 0) {
481 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
482 if (error)
483 return ERR_PTR(error);
484 unlock = 1;
485 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486
487 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400488 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489 if (error)
490 goto out;
491 }
492
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100493 inode = gfs2_dir_search(dir, name);
494 if (IS_ERR(inode))
495 error = PTR_ERR(inode);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000496out:
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000497 if (unlock)
498 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500499 if (error == -ENOENT)
500 return NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000501 return inode ? inode : ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502}
503
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100504static void gfs2_inum_range_in(struct gfs2_inum_range_host *ir, const void *buf)
505{
506 const struct gfs2_inum_range *str = buf;
507
508 ir->ir_start = be64_to_cpu(str->ir_start);
509 ir->ir_length = be64_to_cpu(str->ir_length);
510}
511
512static void gfs2_inum_range_out(const struct gfs2_inum_range_host *ir, void *buf)
513{
514 struct gfs2_inum_range *str = buf;
515
516 str->ir_start = cpu_to_be64(ir->ir_start);
517 str->ir_length = cpu_to_be64(ir->ir_length);
518}
519
Steven Whitehousecd915492006-09-04 12:49:07 -0400520static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000521{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400522 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400524 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000525 int error;
526
527 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
528 if (error)
529 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000530 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000531
532 error = gfs2_meta_inode_buffer(ip, &bh);
533 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000534 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535 gfs2_trans_end(sdp);
536 return error;
537 }
538
539 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
540
541 if (ir.ir_length) {
542 *formal_ino = ir.ir_start++;
543 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000544 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545 gfs2_inum_range_out(&ir,
546 bh->b_data + sizeof(struct gfs2_dinode));
547 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000548 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000549 gfs2_trans_end(sdp);
550 return 0;
551 }
552
553 brelse(bh);
554
Steven Whitehousef55ab262006-02-21 12:51:39 +0000555 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556 gfs2_trans_end(sdp);
557
558 return 1;
559}
560
Steven Whitehousecd915492006-09-04 12:49:07 -0400561static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000562{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400563 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
564 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565 struct gfs2_holder gh;
566 struct buffer_head *bh;
Al Viroe6972642006-10-13 21:29:46 -0400567 struct gfs2_inum_range_host ir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000568 int error;
569
570 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
571 if (error)
572 return error;
573
574 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
575 if (error)
576 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000577 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578
579 error = gfs2_meta_inode_buffer(ip, &bh);
580 if (error)
581 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400582
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
584
585 if (!ir.ir_length) {
586 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400587 u64 x, y;
Al Virob44b84d2006-10-14 10:46:30 -0400588 __be64 z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589
590 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
591 if (error)
592 goto out_brelse;
593
Al Virob44b84d2006-10-14 10:46:30 -0400594 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
595 x = y = be64_to_cpu(z);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000596 ir.ir_start = x;
597 ir.ir_length = GFS2_INUM_QUANTUM;
598 x += GFS2_INUM_QUANTUM;
599 if (x < y)
600 gfs2_consist_inode(m_ip);
Al Virob44b84d2006-10-14 10:46:30 -0400601 z = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000602 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Al Virob44b84d2006-10-14 10:46:30 -0400603 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604
605 brelse(m_bh);
606 }
607
608 *formal_ino = ir.ir_start++;
609 ir.ir_length--;
610
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000611 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
613
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400614out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000615 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400616out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000617 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400619out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000620 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000621 return error;
622}
623
Steven Whitehousecd915492006-09-04 12:49:07 -0400624static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000625{
626 int error;
627
628 error = pick_formal_ino_1(sdp, inum);
629 if (error <= 0)
630 return error;
631
632 error = pick_formal_ino_2(sdp, inum);
633
634 return error;
635}
636
637/**
638 * create_ok - OK to create a new on-disk inode here?
639 * @dip: Directory in which dinode is to be created
640 * @name: Name of new dinode
641 * @mode:
642 *
643 * Returns: errno
644 */
645
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400646static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000647 unsigned int mode)
648{
649 int error;
650
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400651 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652 if (error)
653 return error;
654
655 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500656 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000657 return -EPERM;
658
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100659 error = gfs2_dir_check(&dip->i_inode, name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000660 switch (error) {
661 case -ENOENT:
662 error = 0;
663 break;
664 case 0:
665 return -EEXIST;
666 default:
667 return error;
668 }
669
Steven Whitehousecd915492006-09-04 12:49:07 -0400670 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500672 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000673 return -EMLINK;
674
675 return 0;
676}
677
678static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
679 unsigned int *uid, unsigned int *gid)
680{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400681 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500682 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683 if (S_ISDIR(*mode))
684 *mode |= S_ISUID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500685 else if (dip->i_inode.i_uid != current->fsuid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000686 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500687 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000688 } else
689 *uid = current->fsuid;
690
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500691 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000692 if (S_ISDIR(*mode))
693 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500694 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695 } else
696 *gid = current->fsgid;
697}
698
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100699static int alloc_dinode(struct gfs2_inode *dip, u64 *no_addr, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000700{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400701 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702 int error;
703
704 gfs2_alloc_get(dip);
705
706 dip->i_alloc.al_requested = RES_DINODE;
707 error = gfs2_inplace_reserve(dip);
708 if (error)
709 goto out;
710
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400711 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000712 if (error)
713 goto out_ipreserv;
714
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100715 *no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000716
717 gfs2_trans_end(sdp);
718
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400719out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400721out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000723 return error;
724}
725
726/**
727 * init_dinode - Fill in a new dinode structure
728 * @dip: the directory this inode is being created in
729 * @gl: The glock covering the new inode
730 * @inum: the inode number
731 * @mode: the file permissions
732 * @uid:
733 * @gid:
734 *
735 */
736
737static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400738 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400739 unsigned int uid, unsigned int gid,
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400740 const u64 *generation, dev_t dev, struct buffer_head **bhp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000741{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400742 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000743 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744 struct buffer_head *dibh;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100745 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000746
747 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000748 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000749 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
750 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000751 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000752
Steven Whitehouse2442a092006-01-30 11:49:32 +0000753 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
754 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000755 di->di_mode = cpu_to_be32(mode);
756 di->di_uid = cpu_to_be32(uid);
757 di->di_gid = cpu_to_be32(gid);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500758 di->di_nlink = 0;
759 di->di_size = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000760 di->di_blocks = cpu_to_be64(1);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100761 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(tv.tv_sec);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500762 di->di_major = cpu_to_be32(MAJOR(dev));
763 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000764 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400765 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500766 di->di_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000767
768 if (S_ISREG(mode)) {
769 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
770 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000771 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000772 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
773 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000774 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500776 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
777 GFS2_DIF_INHERIT_DIRECTIO);
778 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
779 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780 }
781
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000782 di->__pad1 = 0;
Steven Whitehousea9583c72006-11-01 20:09:14 -0500783 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500784 di->di_height = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000785 di->__pad2 = 0;
786 di->__pad3 = 0;
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500787 di->di_depth = 0;
788 di->di_entries = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000789 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500790 di->di_eattr = 0;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100791 di->di_atime_nsec = cpu_to_be32(tv.tv_nsec);
792 di->di_mtime_nsec = cpu_to_be32(tv.tv_nsec);
793 di->di_ctime_nsec = cpu_to_be32(tv.tv_nsec);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000794 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400795
796 set_buffer_uptodate(dibh);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000797
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400798 *bhp = dibh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799}
800
801static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400802 unsigned int mode, const struct gfs2_inum_host *inum,
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400803 const u64 *generation, dev_t dev, struct buffer_head **bhp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000804{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400805 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806 unsigned int uid, gid;
807 int error;
808
809 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810 gfs2_alloc_get(dip);
811
812 error = gfs2_quota_lock(dip, uid, gid);
813 if (error)
814 goto out;
815
816 error = gfs2_quota_check(dip, uid, gid);
817 if (error)
818 goto out_quota;
819
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400820 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000821 if (error)
822 goto out_quota;
823
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400824 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev, bhp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000825 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826 gfs2_trans_end(sdp);
827
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400828out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000829 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400830out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000831 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000832 return error;
833}
834
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400835static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
836 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000837{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400838 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000839 struct gfs2_alloc *al;
840 int alloc_required;
841 struct buffer_head *dibh;
842 int error;
843
844 al = gfs2_alloc_get(dip);
845
846 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
847 if (error)
848 goto fail;
849
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400850 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500851 if (alloc_required < 0)
852 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000853 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500854 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000855 if (error)
856 goto fail_quota_locks;
857
858 al->al_requested = sdp->sd_max_dirres;
859
860 error = gfs2_inplace_reserve(dip);
861 if (error)
862 goto fail_quota_locks;
863
Steven Whitehouse320dd102006-05-18 16:25:27 -0400864 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100865 al->al_rgd->rd_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400866 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867 RES_STATFS + RES_QUOTA, 0);
868 if (error)
869 goto fail_ipreserv;
870 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400871 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000872 if (error)
873 goto fail_quota_locks;
874 }
875
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100876 error = gfs2_dir_add(&dip->i_inode, name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877 if (error)
878 goto fail_end_trans;
879
880 error = gfs2_meta_inode_buffer(ip, &dibh);
881 if (error)
882 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500883 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000884 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500885 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000886 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000887 return 0;
888
Steven Whitehouse320dd102006-05-18 16:25:27 -0400889fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000890 gfs2_trans_end(sdp);
891
Steven Whitehouse320dd102006-05-18 16:25:27 -0400892fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000893 if (dip->i_alloc.al_rgd)
894 gfs2_inplace_release(dip);
895
Steven Whitehouse320dd102006-05-18 16:25:27 -0400896fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897 gfs2_quota_unlock(dip);
898
Steven Whitehouse320dd102006-05-18 16:25:27 -0400899fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000901 return error;
902}
903
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400904static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
905{
906 int err;
907 size_t len;
908 void *value;
909 char *name;
910 struct gfs2_ea_request er;
911
912 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
913 &name, &value, &len);
914
915 if (err) {
916 if (err == -EOPNOTSUPP)
917 return 0;
918 return err;
919 }
920
921 memset(&er, 0, sizeof(struct gfs2_ea_request));
922
923 er.er_type = GFS2_EATYPE_SECURITY;
924 er.er_name = name;
925 er.er_data = value;
926 er.er_name_len = strlen(name);
927 er.er_data_len = len;
928
929 err = gfs2_ea_set_i(ip, &er);
930
931 kfree(value);
932 kfree(name);
933
934 return err;
935}
936
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937/**
938 * gfs2_createi - Create a new inode
939 * @ghs: An array of two holders
940 * @name: The name of the new file
941 * @mode: the permissions on the new inode
942 *
943 * @ghs[0] is an initialized holder for the directory
944 * @ghs[1] is the holder for the inode lock
945 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000946 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947 * file are held. A transaction has been started and an inplace reservation
948 * is held, as well.
949 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000950 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951 */
952
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400953struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500954 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955{
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100956 struct inode *inode = NULL;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500957 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400958 struct inode *dir = &dip->i_inode;
959 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100960 struct gfs2_inum_host inum = { .no_addr = 0, .no_formal_ino = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400962 u64 generation;
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100963 struct buffer_head *bh = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000964
965 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000966 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
969 error = gfs2_glock_nq(ghs);
970 if (error)
971 goto fail;
972
973 error = create_ok(dip, name, mode);
974 if (error)
975 goto fail_gunlock;
976
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400977 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000978 if (error)
979 goto fail_gunlock;
980
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100981 error = alloc_dinode(dip, &inum.no_addr, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000982 if (error)
983 goto fail_gunlock;
984
Steven Whitehouse28626e22006-11-22 11:13:21 -0500985 error = gfs2_glock_nq_num(sdp, inum.no_addr, &gfs2_inode_glops,
986 LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
987 if (error)
988 goto fail_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400990 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000991 if (error)
992 goto fail_gunlock2;
993
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400994 inode = gfs2_inode_lookup(dir->i_sb, IF2DT(mode),
995 inum.no_addr,
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500996 inum.no_formal_ino, 0);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400997 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998 goto fail_gunlock2;
999
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001000 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +01001002 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001003
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001004 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +01001006 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -04001008 error = gfs2_security_init(dip, GFS2_I(inode));
1009 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +01001010 goto fail_gunlock2;
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -04001011
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001012 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001013 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +01001014 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001015
Steven Whitehousef91a0d32007-10-15 16:29:05 +01001016 if (bh)
1017 brelse(bh);
Steven Whitehouse7359a192006-02-13 12:27:43 +00001018 if (!inode)
1019 return ERR_PTR(-ENOMEM);
1020 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001021
Steven Whitehouse320dd102006-05-18 16:25:27 -04001022fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehousee1cc8602007-06-07 11:47:52 +01001024 if (inode)
1025 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -04001026fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -04001028fail:
Steven Whitehousef91a0d32007-10-15 16:29:05 +01001029 if (bh)
1030 brelse(bh);
Steven Whitehouse7359a192006-02-13 12:27:43 +00001031 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032}
1033
1034/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035 * gfs2_rmdiri - Remove a directory
1036 * @dip: The parent directory of the directory to be removed
1037 * @name: The name of the directory to be removed
1038 * @ip: The GFS2 inode of the directory to be removed
1039 *
1040 * Assumes Glocks on dip and ip are held
1041 *
1042 * Returns: errno
1043 */
1044
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001045int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
1046 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001047{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048 struct qstr dotname;
1049 int error;
1050
1051 if (ip->i_di.di_entries != 2) {
1052 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -05001053 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054 return -EIO;
1055 }
1056
1057 error = gfs2_dir_del(dip, name);
1058 if (error)
1059 return error;
1060
1061 error = gfs2_change_nlink(dip, -1);
1062 if (error)
1063 return error;
1064
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001065 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001066 error = gfs2_dir_del(ip, &dotname);
1067 if (error)
1068 return error;
1069
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001070 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071 error = gfs2_dir_del(ip, &dotname);
1072 if (error)
1073 return error;
1074
Steven Whitehouse4f561102006-11-01 14:04:17 -05001075 /* It looks odd, but it really should be done twice */
1076 error = gfs2_change_nlink(ip, -1);
1077 if (error)
1078 return error;
1079
1080 error = gfs2_change_nlink(ip, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 if (error)
1082 return error;
1083
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084 return error;
1085}
1086
1087/*
1088 * gfs2_unlink_ok - check to see that a inode is still in a directory
1089 * @dip: the directory
1090 * @name: the name of the file
1091 * @ip: the inode
1092 *
1093 * Assumes that the lock on (at least) @dip is held.
1094 *
1095 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1096 */
1097
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001098int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001099 const struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001101 int error;
1102
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001103 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001104 return -EPERM;
1105
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001106 if ((dip->i_inode.i_mode & S_ISVTX) &&
Steven Whitehouse2933f922006-11-01 13:23:29 -05001107 dip->i_inode.i_uid != current->fsuid &&
1108 ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001109 return -EPERM;
1110
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001111 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112 return -EPERM;
1113
Steven Whitehousefaf450e2006-06-22 10:59:10 -04001114 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115 if (error)
1116 return error;
1117
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001118 error = gfs2_dir_check(&dip->i_inode, name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 if (error)
1120 return error;
1121
David Teiglandb3b94fa2006-01-16 16:50:04 +00001122 return 0;
1123}
1124
1125/*
1126 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1127 * @this: move this
1128 * @to: to here
1129 *
1130 * Follow @to back to the root and make sure we don't encounter @this
1131 * Assumes we already hold the rename lock.
1132 *
1133 * Returns: errno
1134 */
1135
1136int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1137{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001138 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001139 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001140 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 struct qstr dotdot;
1142 int error = 0;
1143
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001144 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001145
Steven Whitehouse7359a192006-02-13 12:27:43 +00001146 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001147
1148 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001149 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001150 error = -EINVAL;
1151 break;
1152 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001153 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001154 error = 0;
1155 break;
1156 }
1157
Steven Whitehousec7526662006-03-20 12:30:04 -05001158 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1159 if (IS_ERR(tmp)) {
1160 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001162 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163
Steven Whitehouse7359a192006-02-13 12:27:43 +00001164 iput(dir);
1165 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166 }
1167
Steven Whitehouse7359a192006-02-13 12:27:43 +00001168 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001169
1170 return error;
1171}
1172
1173/**
1174 * gfs2_readlinki - return the contents of a symlink
1175 * @ip: the symlink's inode
1176 * @buf: a pointer to the buffer to be filled
1177 * @len: a pointer to the length of @buf
1178 *
1179 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1180 * to be freed by the caller.
1181 *
1182 * Returns: errno
1183 */
1184
1185int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1186{
1187 struct gfs2_holder i_gh;
1188 struct buffer_head *dibh;
1189 unsigned int x;
1190 int error;
1191
1192 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1193 error = gfs2_glock_nq_atime(&i_gh);
1194 if (error) {
1195 gfs2_holder_uninit(&i_gh);
1196 return error;
1197 }
1198
1199 if (!ip->i_di.di_size) {
1200 gfs2_consist_inode(ip);
1201 error = -EIO;
1202 goto out;
1203 }
1204
1205 error = gfs2_meta_inode_buffer(ip, &dibh);
1206 if (error)
1207 goto out;
1208
1209 x = ip->i_di.di_size + 1;
1210 if (x > *len) {
1211 *buf = kmalloc(x, GFP_KERNEL);
1212 if (!*buf) {
1213 error = -ENOMEM;
1214 goto out_brelse;
1215 }
1216 }
1217
1218 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1219 *len = x;
1220
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001221out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001222 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001223out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001224 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001225 return error;
1226}
1227
1228/**
1229 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1230 * conditionally update the inode's atime
1231 * @gh: the holder to acquire
1232 *
1233 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1234 * Update if the difference between the current time and the inode's current
1235 * atime is greater than an interval specified at mount.
1236 *
1237 * Returns: errno
1238 */
1239
1240int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1241{
1242 struct gfs2_glock *gl = gh->gh_gl;
1243 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001244 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001245 s64 quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001246 unsigned int state;
1247 int flags;
1248 int error;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001249 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001250
1251 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1252 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1253 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1254 return -EINVAL;
1255
1256 state = gh->gh_state;
1257 flags = gh->gh_flags;
1258
1259 error = gfs2_glock_nq(gh);
1260 if (error)
1261 return error;
1262
1263 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1264 (sdp->sd_vfs->s_flags & MS_RDONLY))
1265 return 0;
1266
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001267 if (tv.tv_sec - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001268 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001269 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1270 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001271 error = gfs2_glock_nq(gh);
1272 if (error)
1273 return error;
1274
1275 /* Verify that atime hasn't been updated while we were
1276 trying to get exclusive lock. */
1277
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001278 tv = CURRENT_TIME;
1279 if (tv.tv_sec - ip->i_inode.i_atime.tv_sec >= quantum) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001281 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001282
1283 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1284 if (error == -EROFS)
1285 return 0;
1286 if (error)
1287 goto fail;
1288
1289 error = gfs2_meta_inode_buffer(ip, &dibh);
1290 if (error)
1291 goto fail_end_trans;
1292
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001293 ip->i_inode.i_atime = tv;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001294
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001295 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001296 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001297 di->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001298 di->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001299 brelse(dibh);
1300
1301 gfs2_trans_end(sdp);
1302 }
1303
1304 /* If someone else has asked for the glock,
1305 unlock and let them have it. Then reacquire
1306 in the original state. */
1307 if (gfs2_glock_is_blocking(gl)) {
1308 gfs2_glock_dq(gh);
1309 gfs2_holder_reinit(state, flags, gh);
1310 return gfs2_glock_nq(gh);
1311 }
1312 }
1313
1314 return 0;
1315
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001316fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001317 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001318fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001319 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001320 return error;
1321}
1322
David Teiglandb3b94fa2006-01-16 16:50:04 +00001323static int
1324__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1325{
1326 struct buffer_head *dibh;
1327 int error;
1328
1329 error = gfs2_meta_inode_buffer(ip, &dibh);
1330 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001331 error = inode_setattr(&ip->i_inode, attr);
1332 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001333 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001334 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001335 brelse(dibh);
1336 }
1337 return error;
1338}
1339
1340/**
1341 * gfs2_setattr_simple -
1342 * @ip:
1343 * @attr:
1344 *
1345 * Called with a reference on the vnode.
1346 *
1347 * Returns: errno
1348 */
1349
1350int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1351{
1352 int error;
1353
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001354 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001355 return __gfs2_setattr_simple(ip, attr);
1356
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001357 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001358 if (error)
1359 return error;
1360
1361 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001362 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001363 return error;
1364}
1365
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001366void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
1367{
1368 const struct gfs2_dinode_host *di = &ip->i_di;
1369 struct gfs2_dinode *str = buf;
1370
1371 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
1372 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
1373 str->di_header.__pad0 = 0;
1374 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
1375 str->di_header.__pad1 = 0;
1376 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
1377 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
1378 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
1379 str->di_uid = cpu_to_be32(ip->i_inode.i_uid);
1380 str->di_gid = cpu_to_be32(ip->i_inode.i_gid);
1381 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
1382 str->di_size = cpu_to_be64(di->di_size);
1383 str->di_blocks = cpu_to_be64(di->di_blocks);
1384 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
1385 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
1386 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
1387
1388 str->di_goal_meta = cpu_to_be64(di->di_goal_meta);
1389 str->di_goal_data = cpu_to_be64(di->di_goal_data);
1390 str->di_generation = cpu_to_be64(di->di_generation);
1391
1392 str->di_flags = cpu_to_be32(di->di_flags);
1393 str->di_height = cpu_to_be16(di->di_height);
1394 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
1395 !(ip->i_di.di_flags & GFS2_DIF_EXHASH) ?
1396 GFS2_FORMAT_DE : 0);
1397 str->di_depth = cpu_to_be16(di->di_depth);
1398 str->di_entries = cpu_to_be32(di->di_entries);
1399
1400 str->di_eattr = cpu_to_be64(di->di_eattr);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001401 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
1402 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
1403 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001404}
1405
1406void gfs2_dinode_print(const struct gfs2_inode *ip)
1407{
1408 const struct gfs2_dinode_host *di = &ip->i_di;
1409
1410 printk(KERN_INFO " no_formal_ino = %llu\n",
1411 (unsigned long long)ip->i_no_formal_ino);
1412 printk(KERN_INFO " no_addr = %llu\n",
1413 (unsigned long long)ip->i_no_addr);
1414 printk(KERN_INFO " di_size = %llu\n", (unsigned long long)di->di_size);
1415 printk(KERN_INFO " di_blocks = %llu\n",
1416 (unsigned long long)di->di_blocks);
1417 printk(KERN_INFO " di_goal_meta = %llu\n",
1418 (unsigned long long)di->di_goal_meta);
1419 printk(KERN_INFO " di_goal_data = %llu\n",
1420 (unsigned long long)di->di_goal_data);
1421 printk(KERN_INFO " di_flags = 0x%.8X\n", di->di_flags);
1422 printk(KERN_INFO " di_height = %u\n", di->di_height);
1423 printk(KERN_INFO " di_depth = %u\n", di->di_depth);
1424 printk(KERN_INFO " di_entries = %u\n", di->di_entries);
1425 printk(KERN_INFO " di_eattr = %llu\n",
1426 (unsigned long long)di->di_eattr);
1427}
1428