GFS2: Make . and .. qstrs constant
[deliverable/linux.git] / fs / gfs2 / ops_inode.c
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3a8a9a10 3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
b3b94faa
DT
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa0 7 * of the GNU General Public License version 2.
b3b94faa
DT
8 */
9
b3b94faa
DT
10#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
14#include <linux/namei.h>
b3b94faa
DT
15#include <linux/mm.h>
16#include <linux/xattr.h>
17#include <linux/posix_acl.h>
5c676f6d 18#include <linux/gfs2_ondisk.h>
71b86f56 19#include <linux/crc32.h>
e9079cce 20#include <linux/fiemap.h>
3921120e
BM
21#include <linux/swap.h>
22#include <linux/falloc.h>
b3b94faa
DT
23#include <asm/uaccess.h>
24
25#include "gfs2.h"
5c676f6d 26#include "incore.h"
b3b94faa
DT
27#include "acl.h"
28#include "bmap.h"
29#include "dir.h"
307cf6e6 30#include "xattr.h"
b3b94faa
DT
31#include "glock.h"
32#include "inode.h"
33#include "meta_io.h"
b3b94faa
DT
34#include "quota.h"
35#include "rgrp.h"
36#include "trans.h"
5c676f6d 37#include "util.h"
b2760583 38#include "super.h"
b3b94faa
DT
39
40/**
41 * gfs2_create - Create a file
42 * @dir: The directory in which to create the file
43 * @dentry: The dentry of the new file
44 * @mode: The mode of the new file
45 *
46 * Returns: errno
47 */
48
49static int gfs2_create(struct inode *dir, struct dentry *dentry,
50 int mode, struct nameidata *nd)
51{
feaa7bba
SW
52 struct gfs2_inode *dip = GFS2_I(dir);
53 struct gfs2_sbd *sdp = GFS2_SB(dir);
b3b94faa
DT
54 struct gfs2_holder ghs[2];
55 struct inode *inode;
b3b94faa 56
b3b94faa
DT
57 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
58
59 for (;;) {
e7f14f4d 60 inode = gfs2_createi(ghs, &dentry->d_name, S_IFREG | mode, 0);
7359a19c 61 if (!IS_ERR(inode)) {
b3b94faa 62 gfs2_trans_end(sdp);
6dbd8224 63 if (dip->i_alloc->al_rgd)
b3b94faa
DT
64 gfs2_inplace_release(dip);
65 gfs2_quota_unlock(dip);
66 gfs2_alloc_put(dip);
67 gfs2_glock_dq_uninit_m(2, ghs);
3a8476dd 68 mark_inode_dirty(inode);
b3b94faa 69 break;
7359a19c 70 } else if (PTR_ERR(inode) != -EEXIST ||
3516586a 71 (nd && nd->flags & LOOKUP_EXCL)) {
b3b94faa 72 gfs2_holder_uninit(ghs);
7359a19c 73 return PTR_ERR(inode);
b3b94faa
DT
74 }
75
a569c711 76 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
c752666c
SW
77 if (inode) {
78 if (!IS_ERR(inode)) {
c752666c
SW
79 gfs2_holder_uninit(ghs);
80 break;
81 } else {
82 gfs2_holder_uninit(ghs);
83 return PTR_ERR(inode);
84 }
b3b94faa
DT
85 }
86 }
87
b3b94faa 88 d_instantiate(dentry, inode);
b3b94faa
DT
89
90 return 0;
91}
92
93/**
94 * gfs2_lookup - Look up a filename in a directory and return its inode
95 * @dir: The directory inode
96 * @dentry: The dentry of the new inode
97 * @nd: passed from Linux VFS, ignored by us
98 *
99 * Called by the VFS layer. Lock dir and call gfs2_lookupi()
100 *
101 * Returns: errno
102 */
103
104static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
105 struct nameidata *nd)
106{
b3b94faa 107 struct inode *inode = NULL;
b3b94faa 108
c752666c 109 dentry->d_op = &gfs2_dops;
b3b94faa 110
a569c711 111 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
c752666c 112 if (inode && IS_ERR(inode))
e231c2ee 113 return ERR_CAST(inode);
b3b94faa 114
9656b2c1
SW
115 if (inode) {
116 struct gfs2_glock *gl = GFS2_I(inode)->i_gl;
117 struct gfs2_holder gh;
118 int error;
119 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
120 if (error) {
121 iput(inode);
122 return ERR_PTR(error);
123 }
124 gfs2_glock_dq_uninit(&gh);
b3b94faa 125 return d_splice_alias(inode, dentry);
9656b2c1 126 }
b3b94faa
DT
127 d_add(dentry, inode);
128
129 return NULL;
130}
131
132/**
133 * gfs2_link - Link to a file
134 * @old_dentry: The inode to link
135 * @dir: Add link to this directory
136 * @dentry: The name of the link
137 *
138 * Link the inode in "old_dentry" into the directory "dir" with the
139 * name in "dentry".
140 *
141 * Returns: errno
142 */
143
144static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
145 struct dentry *dentry)
146{
feaa7bba
SW
147 struct gfs2_inode *dip = GFS2_I(dir);
148 struct gfs2_sbd *sdp = GFS2_SB(dir);
b3b94faa 149 struct inode *inode = old_dentry->d_inode;
feaa7bba 150 struct gfs2_inode *ip = GFS2_I(inode);
b3b94faa
DT
151 struct gfs2_holder ghs[2];
152 int alloc_required;
153 int error;
154
b60623c2 155 if (S_ISDIR(inode->i_mode))
b3b94faa
DT
156 return -EPERM;
157
158 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
159 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
160
72dbf479
BP
161 error = gfs2_glock_nq(ghs); /* parent */
162 if (error)
163 goto out_parent;
164
165 error = gfs2_glock_nq(ghs + 1); /* child */
b3b94faa 166 if (error)
72dbf479 167 goto out_child;
b3b94faa 168
f58ba889 169 error = gfs2_permission(dir, MAY_WRITE | MAY_EXEC);
b3b94faa
DT
170 if (error)
171 goto out_gunlock;
172
dbb7cae2 173 error = gfs2_dir_check(dir, &dentry->d_name, NULL);
b3b94faa
DT
174 switch (error) {
175 case -ENOENT:
176 break;
177 case 0:
178 error = -EEXIST;
179 default:
180 goto out_gunlock;
181 }
182
183 error = -EINVAL;
4f56110a 184 if (!dip->i_inode.i_nlink)
b3b94faa
DT
185 goto out_gunlock;
186 error = -EFBIG;
ad6203f2 187 if (dip->i_entries == (u32)-1)
b3b94faa
DT
188 goto out_gunlock;
189 error = -EPERM;
190 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
191 goto out_gunlock;
192 error = -EINVAL;
4f56110a 193 if (!ip->i_inode.i_nlink)
b3b94faa
DT
194 goto out_gunlock;
195 error = -EMLINK;
4f56110a 196 if (ip->i_inode.i_nlink == (u32)-1)
b3b94faa
DT
197 goto out_gunlock;
198
c752666c
SW
199 alloc_required = error = gfs2_diradd_alloc_required(dir, &dentry->d_name);
200 if (error < 0)
b3b94faa 201 goto out_gunlock;
c752666c 202 error = 0;
b3b94faa
DT
203
204 if (alloc_required) {
205 struct gfs2_alloc *al = gfs2_alloc_get(dip);
182fe5ab
CG
206 if (!al) {
207 error = -ENOMEM;
208 goto out_gunlock;
209 }
b3b94faa 210
d82661d9 211 error = gfs2_quota_lock_check(dip);
b3b94faa
DT
212 if (error)
213 goto out_alloc;
214
b3b94faa
DT
215 al->al_requested = sdp->sd_max_dirres;
216
217 error = gfs2_inplace_reserve(dip);
218 if (error)
219 goto out_gunlock_q;
220
1b50259b 221 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
bb8d8a6f 222 al->al_rgd->rd_length +
b3b94faa
DT
223 2 * RES_DINODE + RES_STATFS +
224 RES_QUOTA, 0);
225 if (error)
226 goto out_ipres;
227 } else {
228 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
229 if (error)
230 goto out_ipres;
231 }
232
dbb7cae2 233 error = gfs2_dir_add(dir, &dentry->d_name, ip, IF2DT(inode->i_mode));
b3b94faa
DT
234 if (error)
235 goto out_end_trans;
236
237 error = gfs2_change_nlink(ip, +1);
238
feaa7bba 239out_end_trans:
b3b94faa 240 gfs2_trans_end(sdp);
feaa7bba 241out_ipres:
b3b94faa
DT
242 if (alloc_required)
243 gfs2_inplace_release(dip);
feaa7bba 244out_gunlock_q:
b3b94faa
DT
245 if (alloc_required)
246 gfs2_quota_unlock(dip);
feaa7bba 247out_alloc:
b3b94faa
DT
248 if (alloc_required)
249 gfs2_alloc_put(dip);
feaa7bba 250out_gunlock:
72dbf479
BP
251 gfs2_glock_dq(ghs + 1);
252out_child:
253 gfs2_glock_dq(ghs);
254out_parent:
b3b94faa
DT
255 gfs2_holder_uninit(ghs);
256 gfs2_holder_uninit(ghs + 1);
b3b94faa 257 if (!error) {
29937ac6 258 atomic_inc(&inode->i_count);
b3b94faa
DT
259 d_instantiate(dentry, inode);
260 mark_inode_dirty(inode);
261 }
b3b94faa
DT
262 return error;
263}
264
87ec2174
SW
265/*
266 * gfs2_unlink_ok - check to see that a inode is still in a directory
267 * @dip: the directory
268 * @name: the name of the file
269 * @ip: the inode
270 *
271 * Assumes that the lock on (at least) @dip is held.
272 *
273 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
274 */
275
276static int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
277 const struct gfs2_inode *ip)
278{
279 int error;
280
281 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
282 return -EPERM;
283
284 if ((dip->i_inode.i_mode & S_ISVTX) &&
285 dip->i_inode.i_uid != current_fsuid() &&
286 ip->i_inode.i_uid != current_fsuid() && !capable(CAP_FOWNER))
287 return -EPERM;
288
289 if (IS_APPEND(&dip->i_inode))
290 return -EPERM;
291
292 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
293 if (error)
294 return error;
295
296 error = gfs2_dir_check(&dip->i_inode, name, ip);
297 if (error)
298 return error;
299
300 return 0;
301}
302
b3b94faa
DT
303/**
304 * gfs2_unlink - Unlink a file
305 * @dir: The inode of the directory containing the file to unlink
306 * @dentry: The file itself
307 *
308 * Unlink a file. Call gfs2_unlinki()
309 *
310 * Returns: errno
311 */
312
313static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
314{
feaa7bba
SW
315 struct gfs2_inode *dip = GFS2_I(dir);
316 struct gfs2_sbd *sdp = GFS2_SB(dir);
317 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
ddee7608
RC
318 struct gfs2_holder ghs[3];
319 struct gfs2_rgrpd *rgd;
320 struct gfs2_holder ri_gh;
b3b94faa
DT
321 int error;
322
ddee7608
RC
323 error = gfs2_rindex_hold(sdp, &ri_gh);
324 if (error)
325 return error;
326
b3b94faa 327 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
ddee7608 328 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
b3b94faa 329
dbb7cae2 330 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
ddee7608
RC
331 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
332
333
8497a46e 334 error = gfs2_glock_nq(ghs); /* parent */
b3b94faa 335 if (error)
8497a46e
SW
336 goto out_parent;
337
338 error = gfs2_glock_nq(ghs + 1); /* child */
339 if (error)
340 goto out_child;
341
342 error = gfs2_glock_nq(ghs + 2); /* rgrp */
343 if (error)
344 goto out_rgrp;
b3b94faa
DT
345
346 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
347 if (error)
72dbf479 348 goto out_gunlock;
b3b94faa 349
feaa7bba 350 error = gfs2_trans_begin(sdp, 2*RES_DINODE + RES_LEAF + RES_RG_BIT, 0);
b3b94faa 351 if (error)
cd012075 352 goto out_gunlock;
b3b94faa 353
feaa7bba
SW
354 error = gfs2_dir_del(dip, &dentry->d_name);
355 if (error)
356 goto out_end_trans;
b3b94faa 357
feaa7bba 358 error = gfs2_change_nlink(ip, -1);
b3b94faa 359
feaa7bba
SW
360out_end_trans:
361 gfs2_trans_end(sdp);
72dbf479 362out_gunlock:
8497a46e
SW
363 gfs2_glock_dq(ghs + 2);
364out_rgrp:
ddee7608 365 gfs2_holder_uninit(ghs + 2);
8497a46e
SW
366 gfs2_glock_dq(ghs + 1);
367out_child:
368 gfs2_holder_uninit(ghs + 1);
369 gfs2_glock_dq(ghs);
370out_parent:
371 gfs2_holder_uninit(ghs);
ddee7608 372 gfs2_glock_dq_uninit(&ri_gh);
b3b94faa
DT
373 return error;
374}
375
376/**
377 * gfs2_symlink - Create a symlink
378 * @dir: The directory to create the symlink in
379 * @dentry: The dentry to put the symlink in
380 * @symname: The thing which the link points to
381 *
382 * Returns: errno
383 */
384
385static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
386 const char *symname)
387{
feaa7bba
SW
388 struct gfs2_inode *dip = GFS2_I(dir), *ip;
389 struct gfs2_sbd *sdp = GFS2_SB(dir);
b3b94faa
DT
390 struct gfs2_holder ghs[2];
391 struct inode *inode;
392 struct buffer_head *dibh;
393 int size;
394 int error;
395
b3b94faa
DT
396 /* Must be stuffed with a null terminator for gfs2_follow_link() */
397 size = strlen(symname);
398 if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode) - 1)
399 return -ENAMETOOLONG;
400
401 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
402
e7f14f4d 403 inode = gfs2_createi(ghs, &dentry->d_name, S_IFLNK | S_IRWXUGO, 0);
7359a19c 404 if (IS_ERR(inode)) {
b3b94faa 405 gfs2_holder_uninit(ghs);
7359a19c 406 return PTR_ERR(inode);
b3b94faa
DT
407 }
408
5c676f6d 409 ip = ghs[1].gh_gl->gl_object;
b3b94faa 410
5cf32524 411 i_size_write(inode, size);
b3b94faa
DT
412
413 error = gfs2_meta_inode_buffer(ip, &dibh);
414
415 if (!gfs2_assert_withdraw(sdp, !error)) {
539e5d6b 416 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
417 memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname,
418 size);
419 brelse(dibh);
420 }
421
422 gfs2_trans_end(sdp);
6dbd8224 423 if (dip->i_alloc->al_rgd)
b3b94faa
DT
424 gfs2_inplace_release(dip);
425 gfs2_quota_unlock(dip);
426 gfs2_alloc_put(dip);
427
428 gfs2_glock_dq_uninit_m(2, ghs);
429
b3b94faa
DT
430 d_instantiate(dentry, inode);
431 mark_inode_dirty(inode);
432
433 return 0;
434}
435
436/**
437 * gfs2_mkdir - Make a directory
438 * @dir: The parent directory of the new one
439 * @dentry: The dentry of the new directory
440 * @mode: The mode of the new directory
441 *
442 * Returns: errno
443 */
444
445static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode)
446{
feaa7bba
SW
447 struct gfs2_inode *dip = GFS2_I(dir), *ip;
448 struct gfs2_sbd *sdp = GFS2_SB(dir);
b3b94faa
DT
449 struct gfs2_holder ghs[2];
450 struct inode *inode;
451 struct buffer_head *dibh;
452 int error;
453
b3b94faa
DT
454 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
455
e7f14f4d 456 inode = gfs2_createi(ghs, &dentry->d_name, S_IFDIR | mode, 0);
7359a19c 457 if (IS_ERR(inode)) {
b3b94faa 458 gfs2_holder_uninit(ghs);
7359a19c 459 return PTR_ERR(inode);
b3b94faa
DT
460 }
461
5c676f6d 462 ip = ghs[1].gh_gl->gl_object;
b3b94faa 463
4f56110a 464 ip->i_inode.i_nlink = 2;
a2e0f799 465 i_size_write(inode, sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode));
383f01fb 466 ip->i_diskflags |= GFS2_DIF_JDATA;
ad6203f2 467 ip->i_entries = 2;
b3b94faa
DT
468
469 error = gfs2_meta_inode_buffer(ip, &dibh);
470
471 if (!gfs2_assert_withdraw(sdp, !error)) {
472 struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
c752666c 473 struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
b3b94faa 474
c752666c 475 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
8d123585 476 gfs2_qstr2dirent(&gfs2_qdot, GFS2_DIRENT_SIZE(gfs2_qdot.len), dent);
b3b94faa 477 dent->de_inum = di->di_num; /* already GFS2 endian */
7ecdb70a 478 dent->de_type = cpu_to_be16(DT_DIR);
b3b94faa
DT
479 di->di_entries = cpu_to_be32(1);
480
c752666c 481 dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
8d123585 482 gfs2_qstr2dirent(&gfs2_qdotdot, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
b3b94faa 483
dbb7cae2 484 gfs2_inum_out(dip, dent);
7ecdb70a 485 dent->de_type = cpu_to_be16(DT_DIR);
b3b94faa 486
539e5d6b 487 gfs2_dinode_out(ip, di);
b3b94faa
DT
488
489 brelse(dibh);
490 }
491
492 error = gfs2_change_nlink(dip, +1);
493 gfs2_assert_withdraw(sdp, !error); /* dip already pinned */
494
495 gfs2_trans_end(sdp);
6dbd8224 496 if (dip->i_alloc->al_rgd)
b3b94faa
DT
497 gfs2_inplace_release(dip);
498 gfs2_quota_unlock(dip);
499 gfs2_alloc_put(dip);
500
501 gfs2_glock_dq_uninit_m(2, ghs);
502
b3b94faa
DT
503 d_instantiate(dentry, inode);
504 mark_inode_dirty(inode);
505
506 return 0;
507}
508
2286dbfa
SW
509/**
510 * gfs2_rmdiri - Remove a directory
511 * @dip: The parent directory of the directory to be removed
512 * @name: The name of the directory to be removed
513 * @ip: The GFS2 inode of the directory to be removed
514 *
515 * Assumes Glocks on dip and ip are held
516 *
517 * Returns: errno
518 */
519
520static int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
521 struct gfs2_inode *ip)
522{
2286dbfa
SW
523 int error;
524
525 if (ip->i_entries != 2) {
526 if (gfs2_consist_inode(ip))
527 gfs2_dinode_print(ip);
528 return -EIO;
529 }
530
531 error = gfs2_dir_del(dip, name);
532 if (error)
533 return error;
534
535 error = gfs2_change_nlink(dip, -1);
536 if (error)
537 return error;
538
8d123585 539 error = gfs2_dir_del(ip, &gfs2_qdot);
2286dbfa
SW
540 if (error)
541 return error;
542
8d123585 543 error = gfs2_dir_del(ip, &gfs2_qdotdot);
2286dbfa
SW
544 if (error)
545 return error;
546
547 /* It looks odd, but it really should be done twice */
548 error = gfs2_change_nlink(ip, -1);
549 if (error)
550 return error;
551
552 error = gfs2_change_nlink(ip, -1);
553 if (error)
554 return error;
555
556 return error;
557}
558
b3b94faa
DT
559/**
560 * gfs2_rmdir - Remove a directory
561 * @dir: The parent directory of the directory to be removed
562 * @dentry: The dentry of the directory to remove
563 *
564 * Remove a directory. Call gfs2_rmdiri()
565 *
566 * Returns: errno
567 */
568
569static int gfs2_rmdir(struct inode *dir, struct dentry *dentry)
570{
feaa7bba
SW
571 struct gfs2_inode *dip = GFS2_I(dir);
572 struct gfs2_sbd *sdp = GFS2_SB(dir);
573 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
ddee7608
RC
574 struct gfs2_holder ghs[3];
575 struct gfs2_rgrpd *rgd;
576 struct gfs2_holder ri_gh;
b3b94faa
DT
577 int error;
578
ddee7608
RC
579 error = gfs2_rindex_hold(sdp, &ri_gh);
580 if (error)
581 return error;
b3b94faa
DT
582 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
583 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
584
dbb7cae2 585 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
ddee7608
RC
586 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
587
72dbf479
BP
588 error = gfs2_glock_nq(ghs); /* parent */
589 if (error)
590 goto out_parent;
591
592 error = gfs2_glock_nq(ghs + 1); /* child */
b3b94faa 593 if (error)
72dbf479
BP
594 goto out_child;
595
596 error = gfs2_glock_nq(ghs + 2); /* rgrp */
597 if (error)
598 goto out_rgrp;
b3b94faa
DT
599
600 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
601 if (error)
602 goto out_gunlock;
603
ad6203f2 604 if (ip->i_entries < 2) {
b3b94faa 605 if (gfs2_consist_inode(ip))
4cc14f0b 606 gfs2_dinode_print(ip);
b3b94faa
DT
607 error = -EIO;
608 goto out_gunlock;
609 }
ad6203f2 610 if (ip->i_entries > 2) {
b3b94faa
DT
611 error = -ENOTEMPTY;
612 goto out_gunlock;
613 }
614
feaa7bba 615 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + 3 * RES_LEAF + RES_RG_BIT, 0);
b3b94faa
DT
616 if (error)
617 goto out_gunlock;
618
feaa7bba 619 error = gfs2_rmdiri(dip, &dentry->d_name, ip);
b3b94faa
DT
620
621 gfs2_trans_end(sdp);
622
a91ea69f 623out_gunlock:
72dbf479
BP
624 gfs2_glock_dq(ghs + 2);
625out_rgrp:
ddee7608 626 gfs2_holder_uninit(ghs + 2);
72dbf479
BP
627 gfs2_glock_dq(ghs + 1);
628out_child:
629 gfs2_holder_uninit(ghs + 1);
630 gfs2_glock_dq(ghs);
631out_parent:
632 gfs2_holder_uninit(ghs);
ddee7608 633 gfs2_glock_dq_uninit(&ri_gh);
b3b94faa
DT
634 return error;
635}
636
637/**
638 * gfs2_mknod - Make a special file
639 * @dir: The directory in which the special file will reside
640 * @dentry: The dentry of the special file
641 * @mode: The mode of the special file
642 * @rdev: The device specification of the special file
643 *
644 */
645
646static int gfs2_mknod(struct inode *dir, struct dentry *dentry, int mode,
647 dev_t dev)
648{
e7f14f4d 649 struct gfs2_inode *dip = GFS2_I(dir);
feaa7bba 650 struct gfs2_sbd *sdp = GFS2_SB(dir);
b3b94faa
DT
651 struct gfs2_holder ghs[2];
652 struct inode *inode;
b3b94faa
DT
653
654 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
655
e7f14f4d 656 inode = gfs2_createi(ghs, &dentry->d_name, mode, dev);
7359a19c 657 if (IS_ERR(inode)) {
b3b94faa 658 gfs2_holder_uninit(ghs);
7359a19c 659 return PTR_ERR(inode);
b3b94faa
DT
660 }
661
b3b94faa 662 gfs2_trans_end(sdp);
6dbd8224 663 if (dip->i_alloc->al_rgd)
b3b94faa
DT
664 gfs2_inplace_release(dip);
665 gfs2_quota_unlock(dip);
666 gfs2_alloc_put(dip);
667
668 gfs2_glock_dq_uninit_m(2, ghs);
669
b3b94faa
DT
670 d_instantiate(dentry, inode);
671 mark_inode_dirty(inode);
672
673 return 0;
674}
675
0188d6c5
SW
676/*
677 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
678 * @this: move this
679 * @to: to here
680 *
681 * Follow @to back to the root and make sure we don't encounter @this
682 * Assumes we already hold the rename lock.
683 *
684 * Returns: errno
685 */
686
687static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
688{
689 struct inode *dir = &to->i_inode;
690 struct super_block *sb = dir->i_sb;
691 struct inode *tmp;
0188d6c5
SW
692 int error = 0;
693
0188d6c5
SW
694 igrab(dir);
695
696 for (;;) {
697 if (dir == &this->i_inode) {
698 error = -EINVAL;
699 break;
700 }
701 if (dir == sb->s_root->d_inode) {
702 error = 0;
703 break;
704 }
705
8d123585 706 tmp = gfs2_lookupi(dir, &gfs2_qdotdot, 1);
0188d6c5
SW
707 if (IS_ERR(tmp)) {
708 error = PTR_ERR(tmp);
709 break;
710 }
711
712 iput(dir);
713 dir = tmp;
714 }
715
716 iput(dir);
717
718 return error;
719}
720
b3b94faa
DT
721/**
722 * gfs2_rename - Rename a file
723 * @odir: Parent directory of old file name
724 * @odentry: The old dentry of the file
725 * @ndir: Parent directory of new file name
726 * @ndentry: The new dentry of the file
727 *
728 * Returns: errno
729 */
730
731static int gfs2_rename(struct inode *odir, struct dentry *odentry,
732 struct inode *ndir, struct dentry *ndentry)
733{
feaa7bba
SW
734 struct gfs2_inode *odip = GFS2_I(odir);
735 struct gfs2_inode *ndip = GFS2_I(ndir);
736 struct gfs2_inode *ip = GFS2_I(odentry->d_inode);
b3b94faa 737 struct gfs2_inode *nip = NULL;
feaa7bba 738 struct gfs2_sbd *sdp = GFS2_SB(odir);
0188d6c5 739 struct gfs2_holder ghs[5], r_gh = { .gh_gl = NULL, };
ddee7608 740 struct gfs2_rgrpd *nrgd;
b3b94faa
DT
741 unsigned int num_gh;
742 int dir_rename = 0;
24b977b5 743 int alloc_required = 0;
b3b94faa
DT
744 unsigned int x;
745 int error;
746
b3b94faa 747 if (ndentry->d_inode) {
feaa7bba 748 nip = GFS2_I(ndentry->d_inode);
b3b94faa
DT
749 if (ip == nip)
750 return 0;
751 }
752
b3b94faa 753
0188d6c5
SW
754 if (odip != ndip) {
755 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
756 0, &r_gh);
b3b94faa
DT
757 if (error)
758 goto out;
759
0188d6c5
SW
760 if (S_ISDIR(ip->i_inode.i_mode)) {
761 dir_rename = 1;
762 /* don't move a dirctory into it's subdir */
763 error = gfs2_ok_to_move(ip, ndip);
764 if (error)
765 goto out_gunlock_r;
766 }
b3b94faa
DT
767 }
768
d9d1ca30 769 num_gh = 1;
b3b94faa 770 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
d9d1ca30
SW
771 if (odip != ndip) {
772 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
773 num_gh++;
774 }
775 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
776 num_gh++;
b3b94faa 777
d9d1ca30
SW
778 if (nip) {
779 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
780 num_gh++;
ddee7608
RC
781 /* grab the resource lock for unlink flag twiddling
782 * this is the case of the target file already existing
783 * so we unlink before doing the rename
784 */
dbb7cae2 785 nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr);
ddee7608
RC
786 if (nrgd)
787 gfs2_holder_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh++);
d9d1ca30 788 }
b3b94faa 789
72dbf479
BP
790 for (x = 0; x < num_gh; x++) {
791 error = gfs2_glock_nq(ghs + x);
792 if (error)
793 goto out_gunlock;
794 }
b3b94faa
DT
795
796 /* Check out the old directory */
797
798 error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
799 if (error)
800 goto out_gunlock;
801
802 /* Check out the new directory */
803
804 if (nip) {
805 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
806 if (error)
807 goto out_gunlock;
808
b60623c2 809 if (S_ISDIR(nip->i_inode.i_mode)) {
ad6203f2 810 if (nip->i_entries < 2) {
b3b94faa 811 if (gfs2_consist_inode(nip))
4cc14f0b 812 gfs2_dinode_print(nip);
b3b94faa
DT
813 error = -EIO;
814 goto out_gunlock;
815 }
ad6203f2 816 if (nip->i_entries > 2) {
b3b94faa
DT
817 error = -ENOTEMPTY;
818 goto out_gunlock;
819 }
820 }
821 } else {
f58ba889 822 error = gfs2_permission(ndir, MAY_WRITE | MAY_EXEC);
b3b94faa
DT
823 if (error)
824 goto out_gunlock;
825
dbb7cae2 826 error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
b3b94faa
DT
827 switch (error) {
828 case -ENOENT:
829 error = 0;
830 break;
831 case 0:
832 error = -EEXIST;
833 default:
834 goto out_gunlock;
835 };
836
837 if (odip != ndip) {
4f56110a 838 if (!ndip->i_inode.i_nlink) {
b3b94faa
DT
839 error = -EINVAL;
840 goto out_gunlock;
841 }
ad6203f2 842 if (ndip->i_entries == (u32)-1) {
b3b94faa
DT
843 error = -EFBIG;
844 goto out_gunlock;
845 }
b60623c2 846 if (S_ISDIR(ip->i_inode.i_mode) &&
4f56110a 847 ndip->i_inode.i_nlink == (u32)-1) {
b3b94faa
DT
848 error = -EMLINK;
849 goto out_gunlock;
850 }
851 }
852 }
853
854 /* Check out the dir to be renamed */
855
856 if (dir_rename) {
f58ba889 857 error = gfs2_permission(odentry->d_inode, MAY_WRITE);
b3b94faa
DT
858 if (error)
859 goto out_gunlock;
860 }
861
24b977b5
SW
862 if (nip == NULL)
863 alloc_required = gfs2_diradd_alloc_required(ndir, &ndentry->d_name);
864 error = alloc_required;
c752666c 865 if (error < 0)
b3b94faa 866 goto out_gunlock;
c752666c 867 error = 0;
b3b94faa
DT
868
869 if (alloc_required) {
870 struct gfs2_alloc *al = gfs2_alloc_get(ndip);
182fe5ab
CG
871 if (!al) {
872 error = -ENOMEM;
873 goto out_gunlock;
874 }
b3b94faa 875
d82661d9 876 error = gfs2_quota_lock_check(ndip);
b3b94faa
DT
877 if (error)
878 goto out_alloc;
879
b3b94faa
DT
880 al->al_requested = sdp->sd_max_dirres;
881
882 error = gfs2_inplace_reserve(ndip);
883 if (error)
884 goto out_gunlock_q;
885
fe1bdedc 886 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
bb8d8a6f 887 al->al_rgd->rd_length +
b3b94faa 888 4 * RES_DINODE + 4 * RES_LEAF +
87d21e07 889 RES_STATFS + RES_QUOTA + 4, 0);
b3b94faa
DT
890 if (error)
891 goto out_ipreserv;
892 } else {
893 error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
87d21e07 894 5 * RES_LEAF + 4, 0);
b3b94faa
DT
895 if (error)
896 goto out_gunlock;
897 }
898
899 /* Remove the target file, if it exists */
900
901 if (nip) {
b60623c2 902 if (S_ISDIR(nip->i_inode.i_mode))
feaa7bba
SW
903 error = gfs2_rmdiri(ndip, &ndentry->d_name, nip);
904 else {
905 error = gfs2_dir_del(ndip, &ndentry->d_name);
906 if (error)
907 goto out_end_trans;
87d21e07 908 error = gfs2_change_nlink(nip, -1);
feaa7bba 909 }
b3b94faa
DT
910 if (error)
911 goto out_end_trans;
912 }
913
914 if (dir_rename) {
b3b94faa
DT
915 error = gfs2_change_nlink(ndip, +1);
916 if (error)
917 goto out_end_trans;
918 error = gfs2_change_nlink(odip, -1);
919 if (error)
920 goto out_end_trans;
921
8d123585 922 error = gfs2_dir_mvino(ip, &gfs2_qdotdot, ndip, DT_DIR);
b3b94faa
DT
923 if (error)
924 goto out_end_trans;
925 } else {
926 struct buffer_head *dibh;
927 error = gfs2_meta_inode_buffer(ip, &dibh);
928 if (error)
929 goto out_end_trans;
4bd91ba1 930 ip->i_inode.i_ctime = CURRENT_TIME;
d4e9c4c3 931 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
539e5d6b 932 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
933 brelse(dibh);
934 }
935
936 error = gfs2_dir_del(odip, &odentry->d_name);
937 if (error)
938 goto out_end_trans;
939
dbb7cae2 940 error = gfs2_dir_add(ndir, &ndentry->d_name, ip, IF2DT(ip->i_inode.i_mode));
b3b94faa
DT
941 if (error)
942 goto out_end_trans;
943
feaa7bba 944out_end_trans:
b3b94faa 945 gfs2_trans_end(sdp);
feaa7bba 946out_ipreserv:
b3b94faa
DT
947 if (alloc_required)
948 gfs2_inplace_release(ndip);
feaa7bba 949out_gunlock_q:
b3b94faa
DT
950 if (alloc_required)
951 gfs2_quota_unlock(ndip);
feaa7bba 952out_alloc:
b3b94faa
DT
953 if (alloc_required)
954 gfs2_alloc_put(ndip);
feaa7bba 955out_gunlock:
72dbf479
BP
956 while (x--) {
957 gfs2_glock_dq(ghs + x);
b3b94faa 958 gfs2_holder_uninit(ghs + x);
72dbf479 959 }
feaa7bba 960out_gunlock_r:
0188d6c5 961 if (r_gh.gh_gl)
b3b94faa 962 gfs2_glock_dq_uninit(&r_gh);
feaa7bba 963out:
b3b94faa
DT
964 return error;
965}
966
536baf02 967/**
c177c2ac
AV
968 * gfs2_follow_link - Follow a symbolic link
969 * @dentry: The dentry of the link
970 * @nd: Data that we pass to vfs_follow_link()
536baf02 971 *
c177c2ac 972 * This can handle symlinks of any size.
536baf02 973 *
c177c2ac 974 * Returns: 0 on success or error code
536baf02
SW
975 */
976
c177c2ac 977static void *gfs2_follow_link(struct dentry *dentry, struct nameidata *nd)
536baf02 978{
c177c2ac 979 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
536baf02
SW
980 struct gfs2_holder i_gh;
981 struct buffer_head *dibh;
a2e0f799 982 unsigned int x, size;
c177c2ac 983 char *buf;
536baf02
SW
984 int error;
985
986 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
987 error = gfs2_glock_nq(&i_gh);
988 if (error) {
989 gfs2_holder_uninit(&i_gh);
c177c2ac
AV
990 nd_set_link(nd, ERR_PTR(error));
991 return NULL;
536baf02
SW
992 }
993
a2e0f799
SW
994 size = (unsigned int)i_size_read(&ip->i_inode);
995 if (size == 0) {
536baf02 996 gfs2_consist_inode(ip);
c177c2ac 997 buf = ERR_PTR(-EIO);
536baf02
SW
998 goto out;
999 }
1000
1001 error = gfs2_meta_inode_buffer(ip, &dibh);
c177c2ac
AV
1002 if (error) {
1003 buf = ERR_PTR(error);
536baf02 1004 goto out;
536baf02
SW
1005 }
1006
a2e0f799 1007 x = size + 1;
c177c2ac
AV
1008 buf = kmalloc(x, GFP_NOFS);
1009 if (!buf)
1010 buf = ERR_PTR(-ENOMEM);
1011 else
1012 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
536baf02
SW
1013 brelse(dibh);
1014out:
1015 gfs2_glock_dq_uninit(&i_gh);
c177c2ac
AV
1016 nd_set_link(nd, buf);
1017 return NULL;
b3b94faa
DT
1018}
1019
c177c2ac 1020static void gfs2_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
b3b94faa 1021{
c177c2ac
AV
1022 char *s = nd_get_link(nd);
1023 if (!IS_ERR(s))
1024 kfree(s);
b3b94faa
DT
1025}
1026
1027/**
1028 * gfs2_permission -
1029 * @inode:
1030 * @mask:
1031 * @nd: passed from Linux VFS, ignored by us
1032 *
300c7d75
SW
1033 * This may be called from the VFS directly, or from within GFS2 with the
1034 * inode locked, so we look to see if the glock is already locked and only
1035 * lock the glock if its not already been done.
1036 *
b3b94faa
DT
1037 * Returns: errno
1038 */
1039
f58ba889 1040int gfs2_permission(struct inode *inode, int mask)
b3b94faa 1041{
feaa7bba 1042 struct gfs2_inode *ip = GFS2_I(inode);
b3b94faa
DT
1043 struct gfs2_holder i_gh;
1044 int error;
300c7d75 1045 int unlock = 0;
b3b94faa 1046
7afd88d9 1047 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
300c7d75
SW
1048 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
1049 if (error)
1050 return error;
1051 unlock = 1;
1052 }
b3b94faa 1053
f58ba889
MS
1054 if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
1055 error = -EACCES;
1056 else
1057 error = generic_permission(inode, mask, gfs2_check_acl);
300c7d75 1058 if (unlock)
b3b94faa 1059 gfs2_glock_dq_uninit(&i_gh);
b3b94faa
DT
1060
1061 return error;
1062}
1063
b3b94faa
DT
1064static int setattr_chown(struct inode *inode, struct iattr *attr)
1065{
feaa7bba
SW
1066 struct gfs2_inode *ip = GFS2_I(inode);
1067 struct gfs2_sbd *sdp = GFS2_SB(inode);
b3b94faa 1068 struct buffer_head *dibh;
cd915493 1069 u32 ouid, ogid, nuid, ngid;
b3b94faa
DT
1070 int error;
1071
2933f925
SW
1072 ouid = inode->i_uid;
1073 ogid = inode->i_gid;
b3b94faa
DT
1074 nuid = attr->ia_uid;
1075 ngid = attr->ia_gid;
1076
1077 if (!(attr->ia_valid & ATTR_UID) || ouid == nuid)
1078 ouid = nuid = NO_QUOTA_CHANGE;
1079 if (!(attr->ia_valid & ATTR_GID) || ogid == ngid)
1080 ogid = ngid = NO_QUOTA_CHANGE;
1081
182fe5ab
CG
1082 if (!gfs2_alloc_get(ip))
1083 return -ENOMEM;
b3b94faa
DT
1084
1085 error = gfs2_quota_lock(ip, nuid, ngid);
1086 if (error)
1087 goto out_alloc;
1088
1089 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
1090 error = gfs2_quota_check(ip, nuid, ngid);
1091 if (error)
1092 goto out_gunlock_q;
1093 }
1094
1095 error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
1096 if (error)
1097 goto out_gunlock_q;
1098
1099 error = gfs2_meta_inode_buffer(ip, &dibh);
1100 if (error)
1101 goto out_end_trans;
1102
1025774c
CH
1103 if ((attr->ia_valid & ATTR_SIZE) &&
1104 attr->ia_size != i_size_read(inode)) {
1105 int error;
1106
1107 error = vmtruncate(inode, attr->ia_size);
1108 gfs2_assert_warn(sdp, !error);
1109 }
1110
1111 setattr_copy(inode, attr);
1112 mark_inode_dirty(inode);
b3b94faa 1113
d4e9c4c3 1114 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
539e5d6b 1115 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
1116 brelse(dibh);
1117
1118 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
77658aad
SW
1119 u64 blocks = gfs2_get_inode_blocks(&ip->i_inode);
1120 gfs2_quota_change(ip, -blocks, ouid, ogid);
1121 gfs2_quota_change(ip, blocks, nuid, ngid);
b3b94faa
DT
1122 }
1123
a91ea69f 1124out_end_trans:
b3b94faa 1125 gfs2_trans_end(sdp);
a91ea69f 1126out_gunlock_q:
b3b94faa 1127 gfs2_quota_unlock(ip);
a91ea69f 1128out_alloc:
b3b94faa 1129 gfs2_alloc_put(ip);
b3b94faa
DT
1130 return error;
1131}
1132
1133/**
1134 * gfs2_setattr - Change attributes on an inode
1135 * @dentry: The dentry which is changing
1136 * @attr: The structure describing the change
1137 *
1138 * The VFS layer wants to change one or more of an inodes attributes. Write
1139 * that change out to disk.
1140 *
1141 * Returns: errno
1142 */
1143
1144static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
1145{
1146 struct inode *inode = dentry->d_inode;
feaa7bba 1147 struct gfs2_inode *ip = GFS2_I(inode);
b3b94faa
DT
1148 struct gfs2_holder i_gh;
1149 int error;
1150
b3b94faa
DT
1151 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1152 if (error)
1153 return error;
1154
1155 error = -EPERM;
1156 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1157 goto out;
1158
1159 error = inode_change_ok(inode, attr);
1160 if (error)
1161 goto out;
1162
1163 if (attr->ia_valid & ATTR_SIZE)
ff8f33c8 1164 error = gfs2_setattr_size(inode, attr->ia_size);
b3b94faa
DT
1165 else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
1166 error = setattr_chown(inode, attr);
1167 else if ((attr->ia_valid & ATTR_MODE) && IS_POSIXACL(inode))
1168 error = gfs2_acl_chmod(ip, attr);
1169 else
1170 error = gfs2_setattr_simple(ip, attr);
1171
a91ea69f 1172out:
b3b94faa 1173 gfs2_glock_dq_uninit(&i_gh);
b3b94faa
DT
1174 if (!error)
1175 mark_inode_dirty(inode);
b3b94faa
DT
1176 return error;
1177}
1178
1179/**
1180 * gfs2_getattr - Read out an inode's attributes
26c1a574 1181 * @mnt: The vfsmount the inode is being accessed from
b3b94faa
DT
1182 * @dentry: The dentry to stat
1183 * @stat: The inode's stats
1184 *
dcf3dd85
SW
1185 * This may be called from the VFS directly, or from within GFS2 with the
1186 * inode locked, so we look to see if the glock is already locked and only
1187 * lock the glock if its not already been done. Note that its the NFS
1188 * readdirplus operation which causes this to be called (from filldir)
1189 * with the glock already held.
1190 *
b3b94faa
DT
1191 * Returns: errno
1192 */
1193
1194static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry,
1195 struct kstat *stat)
1196{
1197 struct inode *inode = dentry->d_inode;
feaa7bba 1198 struct gfs2_inode *ip = GFS2_I(inode);
b3b94faa
DT
1199 struct gfs2_holder gh;
1200 int error;
dcf3dd85 1201 int unlock = 0;
b3b94faa 1202
7afd88d9 1203 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
dcf3dd85
SW
1204 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1205 if (error)
1206 return error;
1207 unlock = 1;
b3b94faa
DT
1208 }
1209
dcf3dd85 1210 generic_fillattr(inode, stat);
d7c103d0 1211 if (unlock)
dcf3dd85
SW
1212 gfs2_glock_dq_uninit(&gh);
1213
1214 return 0;
b3b94faa
DT
1215}
1216
1217static int gfs2_setxattr(struct dentry *dentry, const char *name,
1218 const void *data, size_t size, int flags)
1219{
feaa7bba 1220 struct inode *inode = dentry->d_inode;
40b78a32
SW
1221 struct gfs2_inode *ip = GFS2_I(inode);
1222 struct gfs2_holder gh;
1223 int ret;
b3b94faa 1224
40b78a32
SW
1225 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1226 ret = gfs2_glock_nq(&gh);
1227 if (ret == 0) {
1228 ret = generic_setxattr(dentry, name, data, size, flags);
1229 gfs2_glock_dq(&gh);
1230 }
1231 gfs2_holder_uninit(&gh);
1232 return ret;
b3b94faa
DT
1233}
1234
1235static ssize_t gfs2_getxattr(struct dentry *dentry, const char *name,
1236 void *data, size_t size)
1237{
40b78a32
SW
1238 struct inode *inode = dentry->d_inode;
1239 struct gfs2_inode *ip = GFS2_I(inode);
1240 struct gfs2_holder gh;
1241 int ret;
b3b94faa 1242
40b78a32
SW
1243 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1244 ret = gfs2_glock_nq(&gh);
1245 if (ret == 0) {
1246 ret = generic_getxattr(dentry, name, data, size);
1247 gfs2_glock_dq(&gh);
1248 }
1249 gfs2_holder_uninit(&gh);
1250 return ret;
b3b94faa
DT
1251}
1252
1253static int gfs2_removexattr(struct dentry *dentry, const char *name)
1254{
40b78a32
SW
1255 struct inode *inode = dentry->d_inode;
1256 struct gfs2_inode *ip = GFS2_I(inode);
1257 struct gfs2_holder gh;
1258 int ret;
b3b94faa 1259
40b78a32
SW
1260 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1261 ret = gfs2_glock_nq(&gh);
1262 if (ret == 0) {
1263 ret = generic_removexattr(dentry, name);
1264 gfs2_glock_dq(&gh);
1265 }
1266 gfs2_holder_uninit(&gh);
1267 return ret;
b3b94faa
DT
1268}
1269
3921120e
BM
1270static void empty_write_end(struct page *page, unsigned from,
1271 unsigned to)
1272{
1273 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
1274
1275 page_zero_new_buffers(page, from, to);
1276 flush_dcache_page(page);
1277 mark_page_accessed(page);
1278
1279 if (!gfs2_is_writeback(ip))
1280 gfs2_page_add_databufs(ip, page, from, to);
1281
1282 block_commit_write(page, from, to);
1283}
1284
1285
1286static int write_empty_blocks(struct page *page, unsigned from, unsigned to)
1287{
1288 unsigned start, end, next;
1289 struct buffer_head *bh, *head;
1290 int error;
1291
1292 if (!page_has_buffers(page)) {
1293 error = block_prepare_write(page, from, to, gfs2_block_map);
1294 if (unlikely(error))
1295 return error;
1296
1297 empty_write_end(page, from, to);
1298 return 0;
1299 }
1300
1301 bh = head = page_buffers(page);
1302 next = end = 0;
1303 while (next < from) {
1304 next += bh->b_size;
1305 bh = bh->b_this_page;
1306 }
1307 start = next;
1308 do {
1309 next += bh->b_size;
1310 if (buffer_mapped(bh)) {
1311 if (end) {
1312 error = block_prepare_write(page, start, end,
1313 gfs2_block_map);
1314 if (unlikely(error))
1315 return error;
1316 empty_write_end(page, start, end);
1317 end = 0;
1318 }
1319 start = next;
1320 }
1321 else
1322 end = next;
1323 bh = bh->b_this_page;
1324 } while (next < to);
1325
1326 if (end) {
1327 error = block_prepare_write(page, start, end, gfs2_block_map);
1328 if (unlikely(error))
1329 return error;
1330 empty_write_end(page, start, end);
1331 }
1332
1333 return 0;
1334}
1335
1336static int fallocate_chunk(struct inode *inode, loff_t offset, loff_t len,
1337 int mode)
1338{
1339 struct gfs2_inode *ip = GFS2_I(inode);
1340 struct buffer_head *dibh;
1341 int error;
1342 u64 start = offset >> PAGE_CACHE_SHIFT;
1343 unsigned int start_offset = offset & ~PAGE_CACHE_MASK;
1344 u64 end = (offset + len - 1) >> PAGE_CACHE_SHIFT;
1345 pgoff_t curr;
1346 struct page *page;
1347 unsigned int end_offset = (offset + len) & ~PAGE_CACHE_MASK;
1348 unsigned int from, to;
1349
1350 if (!end_offset)
1351 end_offset = PAGE_CACHE_SIZE;
1352
1353 error = gfs2_meta_inode_buffer(ip, &dibh);
1354 if (unlikely(error))
1355 goto out;
1356
1357 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
1358
1359 if (gfs2_is_stuffed(ip)) {
1360 error = gfs2_unstuff_dinode(ip, NULL);
1361 if (unlikely(error))
1362 goto out;
1363 }
1364
1365 curr = start;
1366 offset = start << PAGE_CACHE_SHIFT;
1367 from = start_offset;
1368 to = PAGE_CACHE_SIZE;
1369 while (curr <= end) {
1370 page = grab_cache_page_write_begin(inode->i_mapping, curr,
1371 AOP_FLAG_NOFS);
1372 if (unlikely(!page)) {
1373 error = -ENOMEM;
1374 goto out;
1375 }
1376
1377 if (curr == end)
1378 to = end_offset;
1379 error = write_empty_blocks(page, from, to);
1380 if (!error && offset + to > inode->i_size &&
1381 !(mode & FALLOC_FL_KEEP_SIZE)) {
1382 i_size_write(inode, offset + to);
1383 }
1384 unlock_page(page);
1385 page_cache_release(page);
1386 if (error)
1387 goto out;
1388 curr++;
1389 offset += PAGE_CACHE_SIZE;
1390 from = 0;
1391 }
1392
1393 gfs2_dinode_out(ip, dibh->b_data);
1394 mark_inode_dirty(inode);
1395
1396 brelse(dibh);
1397
1398out:
1399 return error;
1400}
1401
1402static void calc_max_reserv(struct gfs2_inode *ip, loff_t max, loff_t *len,
1403 unsigned int *data_blocks, unsigned int *ind_blocks)
1404{
1405 const struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
1406 unsigned int max_blocks = ip->i_alloc->al_rgd->rd_free_clone;
1407 unsigned int tmp, max_data = max_blocks - 3 * (sdp->sd_max_height - 1);
1408
1409 for (tmp = max_data; tmp > sdp->sd_diptrs;) {
1410 tmp = DIV_ROUND_UP(tmp, sdp->sd_inptrs);
1411 max_data -= tmp;
1412 }
1413 /* This calculation isn't the exact reverse of gfs2_write_calc_reserve,
fe08d5a8 1414 so it might end up with fewer data blocks */
3921120e
BM
1415 if (max_data <= *data_blocks)
1416 return;
1417 *data_blocks = max_data;
1418 *ind_blocks = max_blocks - max_data;
1419 *len = ((loff_t)max_data - 3) << sdp->sd_sb.sb_bsize_shift;
1420 if (*len > max) {
1421 *len = max;
1422 gfs2_write_calc_reserv(ip, max, data_blocks, ind_blocks);
1423 }
1424}
1425
1426static long gfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1427 loff_t len)
1428{
1429 struct gfs2_sbd *sdp = GFS2_SB(inode);
1430 struct gfs2_inode *ip = GFS2_I(inode);
1431 unsigned int data_blocks = 0, ind_blocks = 0, rblocks;
1432 loff_t bytes, max_bytes;
1433 struct gfs2_alloc *al;
1434 int error;
1435 loff_t next = (offset + len - 1) >> sdp->sd_sb.sb_bsize_shift;
1436 next = (next + 1) << sdp->sd_sb.sb_bsize_shift;
1437
1438 offset = (offset >> sdp->sd_sb.sb_bsize_shift) <<
1439 sdp->sd_sb.sb_bsize_shift;
1440
1441 len = next - offset;
1442 bytes = sdp->sd_max_rg_data * sdp->sd_sb.sb_bsize / 2;
1443 if (!bytes)
1444 bytes = UINT_MAX;
1445
1446 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &ip->i_gh);
1447 error = gfs2_glock_nq(&ip->i_gh);
1448 if (unlikely(error))
1449 goto out_uninit;
1450
1451 if (!gfs2_write_alloc_required(ip, offset, len))
1452 goto out_unlock;
1453
1454 while (len > 0) {
1455 if (len < bytes)
1456 bytes = len;
1457 al = gfs2_alloc_get(ip);
1458 if (!al) {
1459 error = -ENOMEM;
1460 goto out_unlock;
1461 }
1462
1463 error = gfs2_quota_lock_check(ip);
1464 if (error)
1465 goto out_alloc_put;
1466
1467retry:
1468 gfs2_write_calc_reserv(ip, bytes, &data_blocks, &ind_blocks);
1469
1470 al->al_requested = data_blocks + ind_blocks;
1471 error = gfs2_inplace_reserve(ip);
1472 if (error) {
1473 if (error == -ENOSPC && bytes > sdp->sd_sb.sb_bsize) {
1474 bytes >>= 1;
1475 goto retry;
1476 }
1477 goto out_qunlock;
1478 }
1479 max_bytes = bytes;
1480 calc_max_reserv(ip, len, &max_bytes, &data_blocks, &ind_blocks);
1481 al->al_requested = data_blocks + ind_blocks;
1482
1483 rblocks = RES_DINODE + ind_blocks + RES_STATFS + RES_QUOTA +
1484 RES_RG_HDR + ip->i_alloc->al_rgd->rd_length;
1485 if (gfs2_is_jdata(ip))
1486 rblocks += data_blocks ? data_blocks : 1;
1487
1488 error = gfs2_trans_begin(sdp, rblocks,
1489 PAGE_CACHE_SIZE/sdp->sd_sb.sb_bsize);
1490 if (error)
1491 goto out_trans_fail;
1492
1493 error = fallocate_chunk(inode, offset, max_bytes, mode);
1494 gfs2_trans_end(sdp);
1495
1496 if (error)
1497 goto out_trans_fail;
1498
1499 len -= max_bytes;
1500 offset += max_bytes;
1501 gfs2_inplace_release(ip);
1502 gfs2_quota_unlock(ip);
1503 gfs2_alloc_put(ip);
1504 }
1505 goto out_unlock;
1506
1507out_trans_fail:
1508 gfs2_inplace_release(ip);
1509out_qunlock:
1510 gfs2_quota_unlock(ip);
1511out_alloc_put:
1512 gfs2_alloc_put(ip);
1513out_unlock:
1514 gfs2_glock_dq(&ip->i_gh);
1515out_uninit:
1516 gfs2_holder_uninit(&ip->i_gh);
1517 return error;
1518}
1519
1520
e9079cce
SW
1521static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1522 u64 start, u64 len)
1523{
1524 struct gfs2_inode *ip = GFS2_I(inode);
1525 struct gfs2_holder gh;
1526 int ret;
1527
1528 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
1529 if (ret)
1530 return ret;
1531
1532 mutex_lock(&inode->i_mutex);
1533
1534 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
1535 if (ret)
1536 goto out;
1537
1538 if (gfs2_is_stuffed(ip)) {
1539 u64 phys = ip->i_no_addr << inode->i_blkbits;
1540 u64 size = i_size_read(inode);
1541 u32 flags = FIEMAP_EXTENT_LAST|FIEMAP_EXTENT_NOT_ALIGNED|
1542 FIEMAP_EXTENT_DATA_INLINE;
1543 phys += sizeof(struct gfs2_dinode);
1544 phys += start;
1545 if (start + len > size)
1546 len = size - start;
1547 if (start < size)
1548 ret = fiemap_fill_next_extent(fieinfo, start, phys,
1549 len, flags);
1550 if (ret == 1)
1551 ret = 0;
1552 } else {
1553 ret = __generic_block_fiemap(inode, fieinfo, start, len,
1554 gfs2_block_map);
1555 }
1556
1557 gfs2_glock_dq_uninit(&gh);
1558out:
1559 mutex_unlock(&inode->i_mutex);
1560 return ret;
1561}
1562
92e1d5be 1563const struct inode_operations gfs2_file_iops = {
e6305c43 1564 .permission = gfs2_permission,
b3b94faa
DT
1565 .setattr = gfs2_setattr,
1566 .getattr = gfs2_getattr,
1567 .setxattr = gfs2_setxattr,
1568 .getxattr = gfs2_getxattr,
1569 .listxattr = gfs2_listxattr,
1570 .removexattr = gfs2_removexattr,
3921120e 1571 .fallocate = gfs2_fallocate,
e9079cce 1572 .fiemap = gfs2_fiemap,
b3b94faa
DT
1573};
1574
92e1d5be 1575const struct inode_operations gfs2_dir_iops = {
b3b94faa
DT
1576 .create = gfs2_create,
1577 .lookup = gfs2_lookup,
1578 .link = gfs2_link,
1579 .unlink = gfs2_unlink,
1580 .symlink = gfs2_symlink,
1581 .mkdir = gfs2_mkdir,
1582 .rmdir = gfs2_rmdir,
1583 .mknod = gfs2_mknod,
1584 .rename = gfs2_rename,
e6305c43 1585 .permission = gfs2_permission,
b3b94faa
DT
1586 .setattr = gfs2_setattr,
1587 .getattr = gfs2_getattr,
1588 .setxattr = gfs2_setxattr,
1589 .getxattr = gfs2_getxattr,
1590 .listxattr = gfs2_listxattr,
1591 .removexattr = gfs2_removexattr,
e9079cce 1592 .fiemap = gfs2_fiemap,
b3b94faa
DT
1593};
1594
92e1d5be 1595const struct inode_operations gfs2_symlink_iops = {
c177c2ac 1596 .readlink = generic_readlink,
b3b94faa 1597 .follow_link = gfs2_follow_link,
c177c2ac 1598 .put_link = gfs2_put_link,
e6305c43 1599 .permission = gfs2_permission,
b3b94faa
DT
1600 .setattr = gfs2_setattr,
1601 .getattr = gfs2_getattr,
1602 .setxattr = gfs2_setxattr,
1603 .getxattr = gfs2_getxattr,
1604 .listxattr = gfs2_listxattr,
1605 .removexattr = gfs2_removexattr,
e9079cce 1606 .fiemap = gfs2_fiemap,
b3b94faa
DT
1607};
1608
This page took 0.441858 seconds and 5 git commands to generate.