blob: 660dc81849a67248b19b39c4af357df71e2dd21c [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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000020
21#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050022#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000023#include "acl.h"
24#include "bmap.h"
25#include "dir.h"
26#include "eattr.h"
27#include "glock.h"
28#include "glops.h"
29#include "inode.h"
30#include "log.h"
31#include "meta_io.h"
32#include "ops_address.h"
33#include "ops_file.h"
34#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
40/**
Steven Whitehouse4340fe62006-07-11 09:46:33 -040041 * gfs2_inode_attr_in - Copy attributes from the dinode into the VFS inode
David Teiglandb3b94fa2006-01-16 16:50:04 +000042 * @ip: The GFS2 inode (with embedded disk inode data)
43 * @inode: The Linux VFS inode
44 *
45 */
46
Steven Whitehouse4340fe62006-07-11 09:46:33 -040047void gfs2_inode_attr_in(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +000048{
Steven Whitehouse4340fe62006-07-11 09:46:33 -040049 struct inode *inode = &ip->i_inode;
Steven Whitehousec2668712006-09-04 13:55:48 -040050 struct gfs2_dinode *di = &ip->i_di;
Steven Whitehouse4340fe62006-07-11 09:46:33 -040051
52 inode->i_ino = ip->i_num.no_addr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000053
Steven Whitehousec2668712006-09-04 13:55:48 -040054 switch (di->di_mode & S_IFMT) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000055 case S_IFBLK:
56 case S_IFCHR:
Steven Whitehousec2668712006-09-04 13:55:48 -040057 inode->i_rdev = MKDEV(di->di_major, di->di_minor);
David Teiglandb3b94fa2006-01-16 16:50:04 +000058 break;
59 default:
60 inode->i_rdev = 0;
61 break;
62 };
63
Steven Whitehousec2668712006-09-04 13:55:48 -040064 inode->i_mode = di->di_mode;
65 inode->i_nlink = di->di_nlink;
66 inode->i_uid = di->di_uid;
67 inode->i_gid = di->di_gid;
68 i_size_write(inode, di->di_size);
69 inode->i_atime.tv_sec = di->di_atime;
70 inode->i_mtime.tv_sec = di->di_mtime;
71 inode->i_ctime.tv_sec = di->di_ctime;
David Teiglandb3b94fa2006-01-16 16:50:04 +000072 inode->i_atime.tv_nsec = 0;
73 inode->i_mtime.tv_nsec = 0;
74 inode->i_ctime.tv_nsec = 0;
Steven Whitehousec2668712006-09-04 13:55:48 -040075 inode->i_blocks = di->di_blocks <<
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040076 (GFS2_SB(inode)->sd_sb.sb_bsize_shift - GFS2_BASIC_BLOCK_SHIFT);
David Teiglandb3b94fa2006-01-16 16:50:04 +000077
Steven Whitehousec2668712006-09-04 13:55:48 -040078 if (di->di_flags & GFS2_DIF_IMMUTABLE)
David Teiglandb3b94fa2006-01-16 16:50:04 +000079 inode->i_flags |= S_IMMUTABLE;
80 else
81 inode->i_flags &= ~S_IMMUTABLE;
82
Steven Whitehousec2668712006-09-04 13:55:48 -040083 if (di->di_flags & GFS2_DIF_APPENDONLY)
David Teiglandb3b94fa2006-01-16 16:50:04 +000084 inode->i_flags |= S_APPEND;
85 else
86 inode->i_flags &= ~S_APPEND;
87}
88
89/**
David Teiglandb3b94fa2006-01-16 16:50:04 +000090 * gfs2_inode_attr_out - Copy attributes from VFS inode into the dinode
91 * @ip: The GFS2 inode
92 *
93 * Only copy out the attributes that we want the VFS layer
94 * to be able to modify.
95 */
96
97void gfs2_inode_attr_out(struct gfs2_inode *ip)
98{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040099 struct inode *inode = &ip->i_inode;
Steven Whitehouse75d3b812006-09-04 11:41:31 -0400100 struct gfs2_dinode *di = &ip->i_di;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400101 gfs2_assert_withdraw(GFS2_SB(inode),
Steven Whitehouse75d3b812006-09-04 11:41:31 -0400102 (di->di_mode & S_IFMT) == (inode->i_mode & S_IFMT));
103 di->di_mode = inode->i_mode;
104 di->di_uid = inode->i_uid;
105 di->di_gid = inode->i_gid;
106 di->di_atime = inode->i_atime.tv_sec;
107 di->di_mtime = inode->i_mtime.tv_sec;
108 di->di_ctime = inode->i_ctime.tv_sec;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109}
110
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111static int iget_test(struct inode *inode, void *opaque)
112{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400113 struct gfs2_inode *ip = GFS2_I(inode);
114 struct gfs2_inum *inum = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000115
116 if (ip && ip->i_num.no_addr == inum->no_addr)
117 return 1;
118
119 return 0;
120}
121
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400122static int iget_set(struct inode *inode, void *opaque)
123{
124 struct gfs2_inode *ip = GFS2_I(inode);
125 struct gfs2_inum *inum = opaque;
126
127 ip->i_num = *inum;
128 return 0;
129}
130
131struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132{
133 return ilookup5(sb, (unsigned long)inum->no_formal_ino,
134 iget_test, inum);
135}
136
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400137static struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000138{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400139 return iget5_locked(sb, (unsigned long)inum->no_formal_ino,
140 iget_test, iget_set, inum);
141}
142
143/**
144 * gfs2_inode_lookup - Lookup an inode
145 * @sb: The super block
146 * @inum: The inode number
147 * @type: The type of the inode
148 *
149 * Returns: A VFS inode, or an error
150 */
151
152struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum *inum, unsigned int type)
153{
154 struct inode *inode = gfs2_iget(sb, inum);
155 struct gfs2_inode *ip = GFS2_I(inode);
156 struct gfs2_glock *io_gl;
157 int error;
158
159 if (inode->i_state & I_NEW) {
160 struct gfs2_sbd *sdp = GFS2_SB(inode);
161 umode_t mode = DT2IF(type);
Theodore Ts'obba9dfd2006-09-27 01:50:31 -0700162 inode->i_private = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400163 inode->i_mode = mode;
164
165 if (S_ISREG(mode)) {
166 inode->i_op = &gfs2_file_iops;
167 inode->i_fop = &gfs2_file_fops;
168 inode->i_mapping->a_ops = &gfs2_file_aops;
169 } else if (S_ISDIR(mode)) {
170 inode->i_op = &gfs2_dir_iops;
171 inode->i_fop = &gfs2_dir_fops;
172 } else if (S_ISLNK(mode)) {
173 inode->i_op = &gfs2_symlink_iops;
174 } else {
175 inode->i_op = &gfs2_dev_iops;
176 }
177
178 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
179 if (unlikely(error))
180 goto fail;
181 ip->i_gl->gl_object = ip;
182
183 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
184 if (unlikely(error))
185 goto fail_put;
186
187 ip->i_vn = ip->i_gl->gl_vn - 1;
188 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
189 if (unlikely(error))
190 goto fail_iopen;
191
192 gfs2_glock_put(io_gl);
193 unlock_new_inode(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000194 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400195
196 return inode;
197fail_iopen:
198 gfs2_glock_put(io_gl);
199fail_put:
200 ip->i_gl->gl_object = NULL;
201 gfs2_glock_put(ip->i_gl);
202fail:
203 iput(inode);
204 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205}
206
207/**
208 * gfs2_inode_refresh - Refresh the incore copy of the dinode
209 * @ip: The GFS2 inode
210 *
211 * Returns: errno
212 */
213
214int gfs2_inode_refresh(struct gfs2_inode *ip)
215{
216 struct buffer_head *dibh;
217 int error;
218
219 error = gfs2_meta_inode_buffer(ip, &dibh);
220 if (error)
221 return error;
222
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400223 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224 brelse(dibh);
225 return -EIO;
226 }
227
David Teiglandb3b94fa2006-01-16 16:50:04 +0000228 gfs2_dinode_in(&ip->i_di, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229
230 brelse(dibh);
231
232 if (ip->i_num.no_addr != ip->i_di.di_num.no_addr) {
233 if (gfs2_consist_inode(ip))
234 gfs2_dinode_print(&ip->i_di);
235 return -EIO;
236 }
237 if (ip->i_num.no_formal_ino != ip->i_di.di_num.no_formal_ino)
238 return -ESTALE;
239
240 ip->i_vn = ip->i_gl->gl_vn;
241
242 return 0;
243}
244
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400245int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400247 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248 struct gfs2_alloc *al;
249 struct gfs2_rgrpd *rgd;
250 int error;
251
252 if (ip->i_di.di_blocks != 1) {
253 if (gfs2_consist_inode(ip))
254 gfs2_dinode_print(&ip->i_di);
255 return -EIO;
256 }
257
258 al = gfs2_alloc_get(ip);
259
260 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
261 if (error)
262 goto out;
263
264 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
265 if (error)
266 goto out_qs;
267
268 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
269 if (!rgd) {
270 gfs2_consist_inode(ip);
271 error = -EIO;
272 goto out_rindex_relse;
273 }
274
275 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
276 &al->al_rgd_gh);
277 if (error)
278 goto out_rindex_relse;
279
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400280 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281 if (error)
282 goto out_rg_gunlock;
283
284 gfs2_trans_add_gl(ip->i_gl);
285
286 gfs2_free_di(rgd, ip);
287
David Teiglandb3b94fa2006-01-16 16:50:04 +0000288 gfs2_trans_end(sdp);
289 clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
290
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400291out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000292 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400293out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000294 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400295out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400297out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400298 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000299 return error;
300}
301
302/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000303 * gfs2_change_nlink - Change nlink count on inode
304 * @ip: The GFS2 inode
305 * @diff: The change in the nlink count required
306 *
307 * Returns: errno
308 */
309
310int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
311{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400312 struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000313 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400314 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000315 int error;
316
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400317 BUG_ON(ip->i_di.di_nlink != ip->i_inode.i_nlink);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318 nlink = ip->i_di.di_nlink + diff;
319
320 /* If we are reducing the nlink count, but the new value ends up being
321 bigger than the old one, we must have underflowed. */
322 if (diff < 0 && nlink > ip->i_di.di_nlink) {
323 if (gfs2_consist_inode(ip))
324 gfs2_dinode_print(&ip->i_di);
325 return -EIO;
326 }
327
328 error = gfs2_meta_inode_buffer(ip, &dibh);
329 if (error)
330 return error;
331
332 ip->i_di.di_nlink = nlink;
333 ip->i_di.di_ctime = get_seconds();
Steven Whitehouse29937ac2006-07-06 17:58:03 -0400334 ip->i_inode.i_nlink = nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000335
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000336 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000337 gfs2_dinode_out(&ip->i_di, dibh->b_data);
338 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400339 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000340
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400341 if (ip->i_di.di_nlink == 0) {
342 struct gfs2_rgrpd *rgd;
343 struct gfs2_holder ri_gh, rg_gh;
344
345 error = gfs2_rindex_hold(sdp, &ri_gh);
346 if (error)
347 goto out;
348 error = -EIO;
349 rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
350 if (!rgd)
351 goto out_norgrp;
352 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
353 if (error)
354 goto out_norgrp;
355
356 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
357 gfs2_glock_dq_uninit(&rg_gh);
358out_norgrp:
359 gfs2_glock_dq_uninit(&ri_gh);
360 }
361out:
362 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363}
364
Steven Whitehousec7526662006-03-20 12:30:04 -0500365struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
366{
367 struct qstr qstr;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500368 gfs2_str2qstr(&qstr, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500369 return gfs2_lookupi(dip, &qstr, 1, NULL);
370}
371
372
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373/**
374 * gfs2_lookupi - Look up a filename in a directory and return its inode
375 * @d_gh: An initialized holder for the directory glock
376 * @name: The name of the inode to look for
377 * @is_root: If 1, ignore the caller's permissions
378 * @i_gh: An uninitialized holder for the new inode glock
379 *
380 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
381 * @is_root is true.
382 *
383 * Returns: errno
384 */
385
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400386struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
387 int is_root, struct nameidata *nd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000388{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500389 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400390 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000391 struct gfs2_holder d_gh;
392 struct gfs2_inum inum;
393 unsigned int type;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000394 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500395 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396
397 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500398 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000399
Steven Whitehousec7526662006-03-20 12:30:04 -0500400 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
401 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
402 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400403 igrab(dir);
404 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000405 }
406
407 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
408 if (error)
Steven Whitehousec7526662006-03-20 12:30:04 -0500409 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410
411 if (!is_root) {
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400412 error = permission(dir, MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000413 if (error)
414 goto out;
415 }
416
Steven Whitehousec7526662006-03-20 12:30:04 -0500417 error = gfs2_dir_search(dir, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000418 if (error)
419 goto out;
420
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400421 inode = gfs2_inode_lookup(sb, &inum, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000422
Steven Whitehouse7359a192006-02-13 12:27:43 +0000423out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500425 if (error == -ENOENT)
426 return NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400427 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428}
429
Steven Whitehousecd915492006-09-04 12:49:07 -0400430static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000431{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400432 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433 struct buffer_head *bh;
434 struct gfs2_inum_range ir;
435 int error;
436
437 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
438 if (error)
439 return error;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000440 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441
442 error = gfs2_meta_inode_buffer(ip, &bh);
443 if (error) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000444 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000445 gfs2_trans_end(sdp);
446 return error;
447 }
448
449 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
450
451 if (ir.ir_length) {
452 *formal_ino = ir.ir_start++;
453 ir.ir_length--;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000454 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000455 gfs2_inum_range_out(&ir,
456 bh->b_data + sizeof(struct gfs2_dinode));
457 brelse(bh);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000458 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459 gfs2_trans_end(sdp);
460 return 0;
461 }
462
463 brelse(bh);
464
Steven Whitehousef55ab262006-02-21 12:51:39 +0000465 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466 gfs2_trans_end(sdp);
467
468 return 1;
469}
470
Steven Whitehousecd915492006-09-04 12:49:07 -0400471static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000472{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400473 struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
474 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475 struct gfs2_holder gh;
476 struct buffer_head *bh;
477 struct gfs2_inum_range ir;
478 int error;
479
480 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
481 if (error)
482 return error;
483
484 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
485 if (error)
486 goto out;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000487 mutex_lock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000488
489 error = gfs2_meta_inode_buffer(ip, &bh);
490 if (error)
491 goto out_end_trans;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400492
David Teiglandb3b94fa2006-01-16 16:50:04 +0000493 gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
494
495 if (!ir.ir_length) {
496 struct buffer_head *m_bh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400497 u64 x, y;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498
499 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
500 if (error)
501 goto out_brelse;
502
Steven Whitehousecd915492006-09-04 12:49:07 -0400503 x = *(u64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000504 x = y = be64_to_cpu(x);
505 ir.ir_start = x;
506 ir.ir_length = GFS2_INUM_QUANTUM;
507 x += GFS2_INUM_QUANTUM;
508 if (x < y)
509 gfs2_consist_inode(m_ip);
510 x = cpu_to_be64(x);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000511 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
Steven Whitehousecd915492006-09-04 12:49:07 -0400512 *(u64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = x;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513
514 brelse(m_bh);
515 }
516
517 *formal_ino = ir.ir_start++;
518 ir.ir_length--;
519
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000520 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000521 gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
522
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400523out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000524 brelse(bh);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400525out_end_trans:
Steven Whitehousef55ab262006-02-21 12:51:39 +0000526 mutex_unlock(&sdp->sd_inum_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527 gfs2_trans_end(sdp);
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400528out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000529 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530 return error;
531}
532
Steven Whitehousecd915492006-09-04 12:49:07 -0400533static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000534{
535 int error;
536
537 error = pick_formal_ino_1(sdp, inum);
538 if (error <= 0)
539 return error;
540
541 error = pick_formal_ino_2(sdp, inum);
542
543 return error;
544}
545
546/**
547 * create_ok - OK to create a new on-disk inode here?
548 * @dip: Directory in which dinode is to be created
549 * @name: Name of new dinode
550 * @mode:
551 *
552 * Returns: errno
553 */
554
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400555static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556 unsigned int mode)
557{
558 int error;
559
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400560 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561 if (error)
562 return error;
563
564 /* Don't create entries in an unlinked directory */
565 if (!dip->i_di.di_nlink)
566 return -EPERM;
567
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400568 error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000569 switch (error) {
570 case -ENOENT:
571 error = 0;
572 break;
573 case 0:
574 return -EEXIST;
575 default:
576 return error;
577 }
578
Steven Whitehousecd915492006-09-04 12:49:07 -0400579 if (dip->i_di.di_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580 return -EFBIG;
Steven Whitehousecd915492006-09-04 12:49:07 -0400581 if (S_ISDIR(mode) && dip->i_di.di_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000582 return -EMLINK;
583
584 return 0;
585}
586
587static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
588 unsigned int *uid, unsigned int *gid)
589{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400590 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400591 (dip->i_di.di_mode & S_ISUID) && dip->i_di.di_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592 if (S_ISDIR(*mode))
593 *mode |= S_ISUID;
594 else if (dip->i_di.di_uid != current->fsuid)
595 *mode &= ~07111;
596 *uid = dip->i_di.di_uid;
597 } else
598 *uid = current->fsuid;
599
600 if (dip->i_di.di_mode & S_ISGID) {
601 if (S_ISDIR(*mode))
602 *mode |= S_ISGID;
603 *gid = dip->i_di.di_gid;
604 } else
605 *gid = current->fsgid;
606}
607
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400608static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum *inum,
609 u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000610{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400611 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612 int error;
613
614 gfs2_alloc_get(dip);
615
616 dip->i_alloc.al_requested = RES_DINODE;
617 error = gfs2_inplace_reserve(dip);
618 if (error)
619 goto out;
620
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400621 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 if (error)
623 goto out_ipreserv;
624
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400625 inum->no_addr = gfs2_alloc_di(dip, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626
627 gfs2_trans_end(sdp);
628
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400629out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000630 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400631out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000633 return error;
634}
635
636/**
637 * init_dinode - Fill in a new dinode structure
638 * @dip: the directory this inode is being created in
639 * @gl: The glock covering the new inode
640 * @inum: the inode number
641 * @mode: the file permissions
642 * @uid:
643 * @gid:
644 *
645 */
646
647static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400648 const struct gfs2_inum *inum, unsigned int mode,
649 unsigned int uid, unsigned int gid,
650 const u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000651{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400652 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000653 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000654 struct buffer_head *dibh;
655
656 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000657 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000658 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
659 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000660 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000661
Steven Whitehouse2442a092006-01-30 11:49:32 +0000662 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
663 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000664 di->di_mode = cpu_to_be32(mode);
665 di->di_uid = cpu_to_be32(uid);
666 di->di_gid = cpu_to_be32(gid);
667 di->di_nlink = cpu_to_be32(0);
668 di->di_size = cpu_to_be64(0);
669 di->di_blocks = cpu_to_be64(1);
670 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
671 di->di_major = di->di_minor = cpu_to_be32(0);
672 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400673 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000674 di->di_flags = cpu_to_be32(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675
676 if (S_ISREG(mode)) {
677 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
678 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000679 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000680 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
681 gfs2_tune_get(sdp, gt_new_files_directio))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000682 di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683 } else if (S_ISDIR(mode)) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500684 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
685 GFS2_DIF_INHERIT_DIRECTIO);
686 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
687 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000688 }
689
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000690 di->__pad1 = 0;
Abhijith Dasb2a580d2006-07-10 12:36:12 -0500691 di->di_payload_format = cpu_to_be32(0);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000692 di->di_height = cpu_to_be32(0);
693 di->__pad2 = 0;
694 di->__pad3 = 0;
695 di->di_depth = cpu_to_be16(0);
696 di->di_entries = cpu_to_be32(0);
697 memset(&di->__pad4, 0, sizeof(di->__pad4));
698 di->di_eattr = cpu_to_be64(0);
699 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
700
David Teiglandb3b94fa2006-01-16 16:50:04 +0000701 brelse(dibh);
702}
703
704static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400705 unsigned int mode, const struct gfs2_inum *inum,
706 const u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000707{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400708 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000709 unsigned int uid, gid;
710 int error;
711
712 munge_mode_uid_gid(dip, &mode, &uid, &gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000713 gfs2_alloc_get(dip);
714
715 error = gfs2_quota_lock(dip, uid, gid);
716 if (error)
717 goto out;
718
719 error = gfs2_quota_check(dip, uid, gid);
720 if (error)
721 goto out_quota;
722
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400723 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724 if (error)
725 goto out_quota;
726
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400727 init_dinode(dip, gl, inum, mode, uid, gid, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000729 gfs2_trans_end(sdp);
730
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400731out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000732 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400733out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000735 return error;
736}
737
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400738static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
739 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000740{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400741 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 struct gfs2_alloc *al;
743 int alloc_required;
744 struct buffer_head *dibh;
745 int error;
746
747 al = gfs2_alloc_get(dip);
748
749 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
750 if (error)
751 goto fail;
752
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400753 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500754 if (alloc_required < 0)
755 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 if (alloc_required) {
757 error = gfs2_quota_check(dip, dip->i_di.di_uid,
758 dip->i_di.di_gid);
759 if (error)
760 goto fail_quota_locks;
761
762 al->al_requested = sdp->sd_max_dirres;
763
764 error = gfs2_inplace_reserve(dip);
765 if (error)
766 goto fail_quota_locks;
767
Steven Whitehouse320dd102006-05-18 16:25:27 -0400768 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769 al->al_rgd->rd_ri.ri_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400770 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000771 RES_STATFS + RES_QUOTA, 0);
772 if (error)
773 goto fail_ipreserv;
774 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400775 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000776 if (error)
777 goto fail_quota_locks;
778 }
779
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400780 error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_di.di_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000781 if (error)
782 goto fail_end_trans;
783
784 error = gfs2_meta_inode_buffer(ip, &dibh);
785 if (error)
786 goto fail_end_trans;
787 ip->i_di.di_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000788 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000789 gfs2_dinode_out(&ip->i_di, dibh->b_data);
790 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000791 return 0;
792
Steven Whitehouse320dd102006-05-18 16:25:27 -0400793fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000794 gfs2_trans_end(sdp);
795
Steven Whitehouse320dd102006-05-18 16:25:27 -0400796fail_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797 if (dip->i_alloc.al_rgd)
798 gfs2_inplace_release(dip);
799
Steven Whitehouse320dd102006-05-18 16:25:27 -0400800fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801 gfs2_quota_unlock(dip);
802
Steven Whitehouse320dd102006-05-18 16:25:27 -0400803fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000804 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805 return error;
806}
807
808/**
809 * gfs2_createi - Create a new inode
810 * @ghs: An array of two holders
811 * @name: The name of the new file
812 * @mode: the permissions on the new inode
813 *
814 * @ghs[0] is an initialized holder for the directory
815 * @ghs[1] is the holder for the inode lock
816 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000817 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 * file are held. A transaction has been started and an inplace reservation
819 * is held, as well.
820 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000821 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822 */
823
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400824struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500825 unsigned int mode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826{
Steven Whitehouse7359a192006-02-13 12:27:43 +0000827 struct inode *inode;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500828 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400829 struct inode *dir = &dip->i_inode;
830 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
831 struct gfs2_inum inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000832 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400833 u64 generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834
835 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000836 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000837
David Teiglandb3b94fa2006-01-16 16:50:04 +0000838 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
839 error = gfs2_glock_nq(ghs);
840 if (error)
841 goto fail;
842
843 error = create_ok(dip, name, mode);
844 if (error)
845 goto fail_gunlock;
846
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400847 error = pick_formal_ino(sdp, &inum.no_formal_ino);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000848 if (error)
849 goto fail_gunlock;
850
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400851 error = alloc_dinode(dip, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000852 if (error)
853 goto fail_gunlock;
854
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400855 if (inum.no_addr < dip->i_num.no_addr) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000856 gfs2_glock_dq(ghs);
857
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400858 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400859 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
860 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 if (error) {
Steven Whitehouse7359a192006-02-13 12:27:43 +0000862 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000863 }
864
865 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
866 error = gfs2_glock_nq(ghs);
867 if (error) {
868 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000869 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000870 }
871
872 error = create_ok(dip, name, mode);
873 if (error)
874 goto fail_gunlock2;
875 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400876 error = gfs2_glock_nq_num(sdp, inum.no_addr,
Steven Whitehouse320dd102006-05-18 16:25:27 -0400877 &gfs2_inode_glops, LM_ST_EXCLUSIVE,
878 GL_SKIP, ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 if (error)
880 goto fail_gunlock;
881 }
882
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400883 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884 if (error)
885 goto fail_gunlock2;
886
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400887 inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
888 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000889 goto fail_gunlock2;
890
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400891 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892 if (error)
893 goto fail_iput;
894
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400895 error = gfs2_acl_create(dip, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896 if (error)
897 goto fail_iput;
898
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400899 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900 if (error)
901 goto fail_iput;
902
Steven Whitehouse7359a192006-02-13 12:27:43 +0000903 if (!inode)
904 return ERR_PTR(-ENOMEM);
905 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906
Steven Whitehouse320dd102006-05-18 16:25:27 -0400907fail_iput:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400908 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400909fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400911fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400913fail:
Steven Whitehouse7359a192006-02-13 12:27:43 +0000914 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915}
916
917/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918 * gfs2_rmdiri - Remove a directory
919 * @dip: The parent directory of the directory to be removed
920 * @name: The name of the directory to be removed
921 * @ip: The GFS2 inode of the directory to be removed
922 *
923 * Assumes Glocks on dip and ip are held
924 *
925 * Returns: errno
926 */
927
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400928int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
929 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000930{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931 struct qstr dotname;
932 int error;
933
934 if (ip->i_di.di_entries != 2) {
935 if (gfs2_consist_inode(ip))
936 gfs2_dinode_print(&ip->i_di);
937 return -EIO;
938 }
939
940 error = gfs2_dir_del(dip, name);
941 if (error)
942 return error;
943
944 error = gfs2_change_nlink(dip, -1);
945 if (error)
946 return error;
947
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500948 gfs2_str2qstr(&dotname, ".");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949 error = gfs2_dir_del(ip, &dotname);
950 if (error)
951 return error;
952
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400953 gfs2_str2qstr(&dotname, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000954 error = gfs2_dir_del(ip, &dotname);
955 if (error)
956 return error;
957
958 error = gfs2_change_nlink(ip, -2);
959 if (error)
960 return error;
961
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 return error;
963}
964
965/*
966 * gfs2_unlink_ok - check to see that a inode is still in a directory
967 * @dip: the directory
968 * @name: the name of the file
969 * @ip: the inode
970 *
971 * Assumes that the lock on (at least) @dip is held.
972 *
973 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
974 */
975
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400976int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977 struct gfs2_inode *ip)
978{
979 struct gfs2_inum inum;
980 unsigned int type;
981 int error;
982
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400983 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984 return -EPERM;
985
986 if ((dip->i_di.di_mode & S_ISVTX) &&
987 dip->i_di.di_uid != current->fsuid &&
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400988 ip->i_di.di_uid != current->fsuid && !capable(CAP_FOWNER))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989 return -EPERM;
990
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400991 if (IS_APPEND(&dip->i_inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992 return -EPERM;
993
Steven Whitehousefaf450e2006-06-22 10:59:10 -0400994 error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000995 if (error)
996 return error;
997
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400998 error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000999 if (error)
1000 return error;
1001
1002 if (!gfs2_inum_equal(&inum, &ip->i_num))
1003 return -ENOENT;
1004
1005 if (IF2DT(ip->i_di.di_mode) != type) {
1006 gfs2_consist_inode(dip);
1007 return -EIO;
1008 }
1009
1010 return 0;
1011}
1012
1013/*
1014 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1015 * @this: move this
1016 * @to: to here
1017 *
1018 * Follow @to back to the root and make sure we don't encounter @this
1019 * Assumes we already hold the rename lock.
1020 *
1021 * Returns: errno
1022 */
1023
1024int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1025{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001026 struct inode *dir = &to->i_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001027 struct super_block *sb = dir->i_sb;
Steven Whitehouse7359a192006-02-13 12:27:43 +00001028 struct inode *tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001029 struct qstr dotdot;
1030 int error = 0;
1031
Steven Whitehouse71b86f52006-03-28 14:14:04 -05001032 gfs2_str2qstr(&dotdot, "..");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001033
Steven Whitehouse7359a192006-02-13 12:27:43 +00001034 igrab(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035
1036 for (;;) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001037 if (dir == &this->i_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001038 error = -EINVAL;
1039 break;
1040 }
Steven Whitehousec9fd4302006-03-01 15:31:02 -05001041 if (dir == sb->s_root->d_inode) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042 error = 0;
1043 break;
1044 }
1045
Steven Whitehousec7526662006-03-20 12:30:04 -05001046 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1047 if (IS_ERR(tmp)) {
1048 error = PTR_ERR(tmp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001049 break;
Steven Whitehousec7526662006-03-20 12:30:04 -05001050 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001051
Steven Whitehouse7359a192006-02-13 12:27:43 +00001052 iput(dir);
1053 dir = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054 }
1055
Steven Whitehouse7359a192006-02-13 12:27:43 +00001056 iput(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001057
1058 return error;
1059}
1060
1061/**
1062 * gfs2_readlinki - return the contents of a symlink
1063 * @ip: the symlink's inode
1064 * @buf: a pointer to the buffer to be filled
1065 * @len: a pointer to the length of @buf
1066 *
1067 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1068 * to be freed by the caller.
1069 *
1070 * Returns: errno
1071 */
1072
1073int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1074{
1075 struct gfs2_holder i_gh;
1076 struct buffer_head *dibh;
1077 unsigned int x;
1078 int error;
1079
1080 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1081 error = gfs2_glock_nq_atime(&i_gh);
1082 if (error) {
1083 gfs2_holder_uninit(&i_gh);
1084 return error;
1085 }
1086
1087 if (!ip->i_di.di_size) {
1088 gfs2_consist_inode(ip);
1089 error = -EIO;
1090 goto out;
1091 }
1092
1093 error = gfs2_meta_inode_buffer(ip, &dibh);
1094 if (error)
1095 goto out;
1096
1097 x = ip->i_di.di_size + 1;
1098 if (x > *len) {
1099 *buf = kmalloc(x, GFP_KERNEL);
1100 if (!*buf) {
1101 error = -ENOMEM;
1102 goto out_brelse;
1103 }
1104 }
1105
1106 memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1107 *len = x;
1108
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001109out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001110 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001111out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113 return error;
1114}
1115
1116/**
1117 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1118 * conditionally update the inode's atime
1119 * @gh: the holder to acquire
1120 *
1121 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1122 * Update if the difference between the current time and the inode's current
1123 * atime is greater than an interval specified at mount.
1124 *
1125 * Returns: errno
1126 */
1127
1128int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1129{
1130 struct gfs2_glock *gl = gh->gh_gl;
1131 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001132 struct gfs2_inode *ip = gl->gl_object;
Steven Whitehousecd915492006-09-04 12:49:07 -04001133 s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001134 unsigned int state;
1135 int flags;
1136 int error;
1137
1138 if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1139 gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1140 gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1141 return -EINVAL;
1142
1143 state = gh->gh_state;
1144 flags = gh->gh_flags;
1145
1146 error = gfs2_glock_nq(gh);
1147 if (error)
1148 return error;
1149
1150 if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1151 (sdp->sd_vfs->s_flags & MS_RDONLY))
1152 return 0;
1153
1154 curtime = get_seconds();
1155 if (curtime - ip->i_di.di_atime >= quantum) {
1156 gfs2_glock_dq(gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001157 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1158 gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001159 error = gfs2_glock_nq(gh);
1160 if (error)
1161 return error;
1162
1163 /* Verify that atime hasn't been updated while we were
1164 trying to get exclusive lock. */
1165
1166 curtime = get_seconds();
1167 if (curtime - ip->i_di.di_atime >= quantum) {
1168 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001169 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170
1171 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1172 if (error == -EROFS)
1173 return 0;
1174 if (error)
1175 goto fail;
1176
1177 error = gfs2_meta_inode_buffer(ip, &dibh);
1178 if (error)
1179 goto fail_end_trans;
1180
1181 ip->i_di.di_atime = curtime;
1182
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001183 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -04001184 di = (struct gfs2_dinode *)dibh->b_data;
1185 di->di_atime = cpu_to_be64(ip->i_di.di_atime);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001186 brelse(dibh);
1187
1188 gfs2_trans_end(sdp);
1189 }
1190
1191 /* If someone else has asked for the glock,
1192 unlock and let them have it. Then reacquire
1193 in the original state. */
1194 if (gfs2_glock_is_blocking(gl)) {
1195 gfs2_glock_dq(gh);
1196 gfs2_holder_reinit(state, flags, gh);
1197 return gfs2_glock_nq(gh);
1198 }
1199 }
1200
1201 return 0;
1202
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001203fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001204 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001205fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 gfs2_glock_dq(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001207 return error;
1208}
1209
1210/**
1211 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1212 * @arg_a: the first structure
1213 * @arg_b: the second structure
1214 *
1215 * Returns: 1 if A > B
1216 * -1 if A < B
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001217 * 0 if A == B
David Teiglandb3b94fa2006-01-16 16:50:04 +00001218 */
1219
1220static int glock_compare_atime(const void *arg_a, const void *arg_b)
1221{
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001222 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1223 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1224 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1225 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001226
1227 if (a->ln_number > b->ln_number)
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001228 return 1;
1229 if (a->ln_number < b->ln_number)
1230 return -1;
1231 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1232 return 1;
1233 if (gh_a->gh_state == LM_ST_SHARED && (gh_b->gh_flags & GL_ATIME))
1234 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001235
Steven Whitehouse75d3b812006-09-04 11:41:31 -04001236 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001237}
1238
1239/**
1240 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1241 * atime update
1242 * @num_gh: the number of structures
1243 * @ghs: an array of struct gfs2_holder structures
1244 *
1245 * Returns: 0 on success (all glocks acquired),
1246 * errno on failure (no glocks acquired)
1247 */
1248
1249int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs)
1250{
1251 struct gfs2_holder **p;
1252 unsigned int x;
1253 int error = 0;
1254
1255 if (!num_gh)
1256 return 0;
1257
1258 if (num_gh == 1) {
1259 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1260 if (ghs->gh_flags & GL_ATIME)
1261 error = gfs2_glock_nq_atime(ghs);
1262 else
1263 error = gfs2_glock_nq(ghs);
1264 return error;
1265 }
1266
1267 p = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1268 if (!p)
1269 return -ENOMEM;
1270
1271 for (x = 0; x < num_gh; x++)
1272 p[x] = &ghs[x];
1273
1274 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare_atime,NULL);
1275
1276 for (x = 0; x < num_gh; x++) {
1277 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1278
1279 if (p[x]->gh_flags & GL_ATIME)
1280 error = gfs2_glock_nq_atime(p[x]);
1281 else
1282 error = gfs2_glock_nq(p[x]);
1283
1284 if (error) {
1285 while (x--)
1286 gfs2_glock_dq(p[x]);
1287 break;
1288 }
1289 }
1290
1291 kfree(p);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001292 return error;
1293}
1294
David Teiglandb3b94fa2006-01-16 16:50:04 +00001295
1296static int
1297__gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1298{
1299 struct buffer_head *dibh;
1300 int error;
1301
1302 error = gfs2_meta_inode_buffer(ip, &dibh);
1303 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001304 error = inode_setattr(&ip->i_inode, attr);
1305 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001306 gfs2_inode_attr_out(ip);
1307
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001308 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001309 gfs2_dinode_out(&ip->i_di, dibh->b_data);
1310 brelse(dibh);
1311 }
1312 return error;
1313}
1314
1315/**
1316 * gfs2_setattr_simple -
1317 * @ip:
1318 * @attr:
1319 *
1320 * Called with a reference on the vnode.
1321 *
1322 * Returns: errno
1323 */
1324
1325int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1326{
1327 int error;
1328
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001329 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001330 return __gfs2_setattr_simple(ip, attr);
1331
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001332 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001333 if (error)
1334 return error;
1335
1336 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001337 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001338 return error;
1339}
1340