blob: a783a7a8c0cad9cfee231733a7fc192083331e03 [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
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000015#include <linux/mm.h>
16#include <linux/xattr.h>
17#include <linux/posix_acl.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050019#include <linux/crc32.h>
Steven Whitehousee9079cc2008-10-14 14:43:29 +010020#include <linux/fiemap.h>
Steven Whitehouse194c0112011-05-09 14:06:38 +010021#include <linux/security.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include <asm/uaccess.h>
23
24#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050025#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000026#include "acl.h"
27#include "bmap.h"
28#include "dir.h"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010029#include "xattr.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000030#include "glock.h"
31#include "inode.h"
32#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033#include "quota.h"
34#include "rgrp.h"
35#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050036#include "util.h"
Steven Whitehouseb2760582008-10-14 16:05:55 +010037#include "super.h"
Steven Whitehouse194c0112011-05-09 14:06:38 +010038#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000039
Steven Whitehouse194c0112011-05-09 14:06:38 +010040struct gfs2_skip_data {
41 u64 no_addr;
42 int skipped;
43 int non_block;
44};
45
46static int iget_test(struct inode *inode, void *opaque)
47{
48 struct gfs2_inode *ip = GFS2_I(inode);
49 struct gfs2_skip_data *data = opaque;
50
51 if (ip->i_no_addr == data->no_addr) {
52 if (data->non_block &&
53 inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)) {
54 data->skipped = 1;
55 return 0;
56 }
57 return 1;
58 }
59 return 0;
60}
61
62static int iget_set(struct inode *inode, void *opaque)
63{
64 struct gfs2_inode *ip = GFS2_I(inode);
65 struct gfs2_skip_data *data = opaque;
66
67 if (data->skipped)
68 return -ENOENT;
69 inode->i_ino = (unsigned long)(data->no_addr);
70 ip->i_no_addr = data->no_addr;
71 return 0;
72}
73
74struct inode *gfs2_ilookup(struct super_block *sb, u64 no_addr, int non_block)
75{
76 unsigned long hash = (unsigned long)no_addr;
77 struct gfs2_skip_data data;
78
79 data.no_addr = no_addr;
80 data.skipped = 0;
81 data.non_block = non_block;
82 return ilookup5(sb, hash, iget_test, &data);
83}
84
85static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr,
86 int non_block)
87{
88 struct gfs2_skip_data data;
89 unsigned long hash = (unsigned long)no_addr;
90
91 data.no_addr = no_addr;
92 data.skipped = 0;
93 data.non_block = non_block;
94 return iget5_locked(sb, hash, iget_test, iget_set, &data);
95}
96
97/**
98 * gfs2_set_iop - Sets inode operations
99 * @inode: The inode with correct i_mode filled in
100 *
101 * GFS2 lookup code fills in vfs inode contents based on info obtained
102 * from directory entry inside gfs2_inode_lookup().
103 */
104
105static void gfs2_set_iop(struct inode *inode)
106{
107 struct gfs2_sbd *sdp = GFS2_SB(inode);
108 umode_t mode = inode->i_mode;
109
110 if (S_ISREG(mode)) {
111 inode->i_op = &gfs2_file_iops;
112 if (gfs2_localflocks(sdp))
113 inode->i_fop = &gfs2_file_fops_nolock;
114 else
115 inode->i_fop = &gfs2_file_fops;
116 } else if (S_ISDIR(mode)) {
117 inode->i_op = &gfs2_dir_iops;
118 if (gfs2_localflocks(sdp))
119 inode->i_fop = &gfs2_dir_fops_nolock;
120 else
121 inode->i_fop = &gfs2_dir_fops;
122 } else if (S_ISLNK(mode)) {
123 inode->i_op = &gfs2_symlink_iops;
124 } else {
125 inode->i_op = &gfs2_file_iops;
126 init_special_inode(inode, inode->i_mode, inode->i_rdev);
127 }
128}
129
130/**
131 * gfs2_inode_lookup - Lookup an inode
132 * @sb: The super block
133 * @no_addr: The inode number
134 * @type: The type of the inode
135 * non_block: Can we block on inodes that are being freed?
136 *
137 * Returns: A VFS inode, or an error
138 */
139
140struct inode *gfs2_inode_lookup(struct super_block *sb, unsigned int type,
141 u64 no_addr, u64 no_formal_ino, int non_block)
142{
143 struct inode *inode;
144 struct gfs2_inode *ip;
145 struct gfs2_glock *io_gl = NULL;
146 int error;
147
148 inode = gfs2_iget(sb, no_addr, non_block);
149 ip = GFS2_I(inode);
150
151 if (!inode)
152 return ERR_PTR(-ENOBUFS);
153
154 if (inode->i_state & I_NEW) {
155 struct gfs2_sbd *sdp = GFS2_SB(inode);
156 ip->i_no_formal_ino = no_formal_ino;
157
158 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
159 if (unlikely(error))
160 goto fail;
161 ip->i_gl->gl_object = ip;
162
163 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
164 if (unlikely(error))
165 goto fail_put;
166
167 set_bit(GIF_INVALID, &ip->i_flags);
168 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
169 if (unlikely(error))
170 goto fail_iopen;
171
172 ip->i_iopen_gh.gh_gl->gl_object = ip;
173 gfs2_glock_put(io_gl);
174 io_gl = NULL;
175
176 if (type == DT_UNKNOWN) {
177 /* Inode glock must be locked already */
178 error = gfs2_inode_refresh(GFS2_I(inode));
179 if (error)
180 goto fail_refresh;
181 } else {
182 inode->i_mode = DT2IF(type);
183 }
184
185 gfs2_set_iop(inode);
186 unlock_new_inode(inode);
187 }
188
189 return inode;
190
191fail_refresh:
192 ip->i_iopen_gh.gh_gl->gl_object = NULL;
193 gfs2_glock_dq_uninit(&ip->i_iopen_gh);
194fail_iopen:
195 if (io_gl)
196 gfs2_glock_put(io_gl);
197fail_put:
198 ip->i_gl->gl_object = NULL;
199 gfs2_glock_put(ip->i_gl);
200fail:
201 iget_failed(inode);
202 return ERR_PTR(error);
203}
204
205struct inode *gfs2_lookup_by_inum(struct gfs2_sbd *sdp, u64 no_addr,
206 u64 *no_formal_ino, unsigned int blktype)
207{
208 struct super_block *sb = sdp->sd_vfs;
209 struct gfs2_holder i_gh;
210 struct inode *inode = NULL;
211 int error;
212
213 /* Must not read in block until block type is verified */
214 error = gfs2_glock_nq_num(sdp, no_addr, &gfs2_inode_glops,
215 LM_ST_EXCLUSIVE, GL_SKIP, &i_gh);
216 if (error)
217 return ERR_PTR(error);
218
219 error = gfs2_check_blk_type(sdp, no_addr, blktype);
220 if (error)
221 goto fail;
222
223 inode = gfs2_inode_lookup(sb, DT_UNKNOWN, no_addr, 0, 1);
224 if (IS_ERR(inode))
225 goto fail;
226
227 /* Two extra checks for NFS only */
228 if (no_formal_ino) {
229 error = -ESTALE;
230 if (GFS2_I(inode)->i_no_formal_ino != *no_formal_ino)
231 goto fail_iput;
232
233 error = -EIO;
234 if (GFS2_I(inode)->i_diskflags & GFS2_DIF_SYSTEM)
235 goto fail_iput;
236
237 error = 0;
238 }
239
240fail:
241 gfs2_glock_dq_uninit(&i_gh);
242 return error ? ERR_PTR(error) : inode;
243fail_iput:
244 iput(inode);
245 goto fail;
246}
247
248
249struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
250{
251 struct qstr qstr;
252 struct inode *inode;
253 gfs2_str2qstr(&qstr, name);
254 inode = gfs2_lookupi(dip, &qstr, 1);
255 /* gfs2_lookupi has inconsistent callers: vfs
256 * related routines expect NULL for no entry found,
257 * gfs2_lookup_simple callers expect ENOENT
258 * and do not check for NULL.
259 */
260 if (inode == NULL)
261 return ERR_PTR(-ENOENT);
262 else
263 return inode;
264}
265
266
267/**
268 * gfs2_lookupi - Look up a filename in a directory and return its inode
269 * @d_gh: An initialized holder for the directory glock
270 * @name: The name of the inode to look for
271 * @is_root: If 1, ignore the caller's permissions
272 * @i_gh: An uninitialized holder for the new inode glock
273 *
274 * This can be called via the VFS filldir function when NFS is doing
275 * a readdirplus and the inode which its intending to stat isn't
276 * already in cache. In this case we must not take the directory glock
277 * again, since the readdir call will have already taken that lock.
278 *
279 * Returns: errno
280 */
281
282struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
283 int is_root)
284{
285 struct super_block *sb = dir->i_sb;
286 struct gfs2_inode *dip = GFS2_I(dir);
287 struct gfs2_holder d_gh;
288 int error = 0;
289 struct inode *inode = NULL;
290 int unlock = 0;
291
292 if (!name->len || name->len > GFS2_FNAMESIZE)
293 return ERR_PTR(-ENAMETOOLONG);
294
295 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
296 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
297 dir == sb->s_root->d_inode)) {
298 igrab(dir);
299 return dir;
300 }
301
302 if (gfs2_glock_is_locked_by_me(dip->i_gl) == NULL) {
303 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
304 if (error)
305 return ERR_PTR(error);
306 unlock = 1;
307 }
308
309 if (!is_root) {
310 error = gfs2_permission(dir, MAY_EXEC, 0);
311 if (error)
312 goto out;
313 }
314
315 inode = gfs2_dir_search(dir, name);
316 if (IS_ERR(inode))
317 error = PTR_ERR(inode);
318out:
319 if (unlock)
320 gfs2_glock_dq_uninit(&d_gh);
321 if (error == -ENOENT)
322 return NULL;
323 return inode ? inode : ERR_PTR(error);
324}
325
326/**
327 * create_ok - OK to create a new on-disk inode here?
328 * @dip: Directory in which dinode is to be created
329 * @name: Name of new dinode
330 * @mode:
331 *
332 * Returns: errno
333 */
334
335static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
336 unsigned int mode)
337{
338 int error;
339
340 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, 0);
341 if (error)
342 return error;
343
344 /* Don't create entries in an unlinked directory */
345 if (!dip->i_inode.i_nlink)
346 return -ENOENT;
347
348 error = gfs2_dir_check(&dip->i_inode, name, NULL);
349 switch (error) {
350 case -ENOENT:
351 error = 0;
352 break;
353 case 0:
354 return -EEXIST;
355 default:
356 return error;
357 }
358
359 if (dip->i_entries == (u32)-1)
360 return -EFBIG;
361 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
362 return -EMLINK;
363
364 return 0;
365}
366
367static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
368 unsigned int *uid, unsigned int *gid)
369{
370 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
371 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
372 if (S_ISDIR(*mode))
373 *mode |= S_ISUID;
374 else if (dip->i_inode.i_uid != current_fsuid())
375 *mode &= ~07111;
376 *uid = dip->i_inode.i_uid;
377 } else
378 *uid = current_fsuid();
379
380 if (dip->i_inode.i_mode & S_ISGID) {
381 if (S_ISDIR(*mode))
382 *mode |= S_ISGID;
383 *gid = dip->i_inode.i_gid;
384 } else
385 *gid = current_fsgid();
386}
387
388static int alloc_dinode(struct gfs2_inode *dip, u64 *no_addr, u64 *generation)
389{
390 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
391 int error;
392
393 if (gfs2_alloc_get(dip) == NULL)
394 return -ENOMEM;
395
396 dip->i_alloc->al_requested = RES_DINODE;
397 error = gfs2_inplace_reserve(dip);
398 if (error)
399 goto out;
400
401 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
402 if (error)
403 goto out_ipreserv;
404
405 error = gfs2_alloc_di(dip, no_addr, generation);
406
407 gfs2_trans_end(sdp);
408
409out_ipreserv:
410 gfs2_inplace_release(dip);
411out:
412 gfs2_alloc_put(dip);
413 return error;
414}
415
416/**
417 * init_dinode - Fill in a new dinode structure
418 * @dip: the directory this inode is being created in
419 * @gl: The glock covering the new inode
420 * @inum: the inode number
421 * @mode: the file permissions
422 * @uid:
423 * @gid:
424 *
425 */
426
427static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
428 const struct gfs2_inum_host *inum, unsigned int mode,
429 unsigned int uid, unsigned int gid,
430 const u64 *generation, dev_t dev, struct buffer_head **bhp)
431{
432 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
433 struct gfs2_dinode *di;
434 struct buffer_head *dibh;
435 struct timespec tv = CURRENT_TIME;
436
437 dibh = gfs2_meta_new(gl, inum->no_addr);
438 gfs2_trans_add_bh(gl, dibh, 1);
439 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
440 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
441 di = (struct gfs2_dinode *)dibh->b_data;
442
443 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
444 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
445 di->di_mode = cpu_to_be32(mode);
446 di->di_uid = cpu_to_be32(uid);
447 di->di_gid = cpu_to_be32(gid);
448 di->di_nlink = 0;
449 di->di_size = 0;
450 di->di_blocks = cpu_to_be64(1);
451 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(tv.tv_sec);
452 di->di_major = cpu_to_be32(MAJOR(dev));
453 di->di_minor = cpu_to_be32(MINOR(dev));
454 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
455 di->di_generation = cpu_to_be64(*generation);
456 di->di_flags = 0;
457
458 if (S_ISREG(mode)) {
459 if ((dip->i_diskflags & GFS2_DIF_INHERIT_JDATA) ||
460 gfs2_tune_get(sdp, gt_new_files_jdata))
461 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
462 } else if (S_ISDIR(mode)) {
463 di->di_flags |= cpu_to_be32(dip->i_diskflags &
464 GFS2_DIF_INHERIT_JDATA);
465 }
466
467 di->__pad1 = 0;
468 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
469 di->di_height = 0;
470 di->__pad2 = 0;
471 di->__pad3 = 0;
472 di->di_depth = 0;
473 di->di_entries = 0;
474 memset(&di->__pad4, 0, sizeof(di->__pad4));
475 di->di_eattr = 0;
476 di->di_atime_nsec = cpu_to_be32(tv.tv_nsec);
477 di->di_mtime_nsec = cpu_to_be32(tv.tv_nsec);
478 di->di_ctime_nsec = cpu_to_be32(tv.tv_nsec);
479 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
480
481 set_buffer_uptodate(dibh);
482
483 *bhp = dibh;
484}
485
486static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
487 unsigned int mode, const struct gfs2_inum_host *inum,
488 const u64 *generation, dev_t dev, struct buffer_head **bhp)
489{
490 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
491 unsigned int uid, gid;
492 int error;
493
494 munge_mode_uid_gid(dip, &mode, &uid, &gid);
495 if (!gfs2_alloc_get(dip))
496 return -ENOMEM;
497
498 error = gfs2_quota_lock(dip, uid, gid);
499 if (error)
500 goto out;
501
502 error = gfs2_quota_check(dip, uid, gid);
503 if (error)
504 goto out_quota;
505
506 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
507 if (error)
508 goto out_quota;
509
510 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev, bhp);
511 gfs2_quota_change(dip, +1, uid, gid);
512 gfs2_trans_end(sdp);
513
514out_quota:
515 gfs2_quota_unlock(dip);
516out:
517 gfs2_alloc_put(dip);
518 return error;
519}
520
521static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
522 struct gfs2_inode *ip)
523{
524 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
525 struct gfs2_alloc *al;
526 int alloc_required;
527 struct buffer_head *dibh;
528 int error;
529
530 al = gfs2_alloc_get(dip);
531 if (!al)
532 return -ENOMEM;
533
534 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
535 if (error)
536 goto fail;
537
538 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
539 if (alloc_required < 0)
540 goto fail_quota_locks;
541 if (alloc_required) {
542 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
543 if (error)
544 goto fail_quota_locks;
545
546 al->al_requested = sdp->sd_max_dirres;
547
548 error = gfs2_inplace_reserve(dip);
549 if (error)
550 goto fail_quota_locks;
551
552 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
553 al->al_rgd->rd_length +
554 2 * RES_DINODE +
555 RES_STATFS + RES_QUOTA, 0);
556 if (error)
557 goto fail_ipreserv;
558 } else {
559 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
560 if (error)
561 goto fail_quota_locks;
562 }
563
564 error = gfs2_dir_add(&dip->i_inode, name, ip);
565 if (error)
566 goto fail_end_trans;
567
568 error = gfs2_meta_inode_buffer(ip, &dibh);
569 if (error)
570 goto fail_end_trans;
571 ip->i_inode.i_nlink = 1;
572 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
573 gfs2_dinode_out(ip, dibh->b_data);
574 brelse(dibh);
575 return 0;
576
577fail_end_trans:
578 gfs2_trans_end(sdp);
579
580fail_ipreserv:
581 if (dip->i_alloc->al_rgd)
582 gfs2_inplace_release(dip);
583
584fail_quota_locks:
585 gfs2_quota_unlock(dip);
586
587fail:
588 gfs2_alloc_put(dip);
589 return error;
590}
591
592static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip,
593 const struct qstr *qstr)
594{
595 int err;
596 size_t len;
597 void *value;
598 char *name;
599
600 err = security_inode_init_security(&ip->i_inode, &dip->i_inode, qstr,
601 &name, &value, &len);
602
603 if (err) {
604 if (err == -EOPNOTSUPP)
605 return 0;
606 return err;
607 }
608
609 err = __gfs2_xattr_set(&ip->i_inode, name, value, len, 0,
610 GFS2_EATYPE_SECURITY);
611 kfree(value);
612 kfree(name);
613
614 return err;
615}
616
617/**
618 * gfs2_createi - Create a new inode
619 * @ghs: An array of two holders
620 * @name: The name of the new file
621 * @mode: the permissions on the new inode
622 *
623 * @ghs[0] is an initialized holder for the directory
624 * @ghs[1] is the holder for the inode lock
625 *
626 * If the return value is not NULL, the glocks on both the directory and the new
627 * file are held. A transaction has been started and an inplace reservation
628 * is held, as well.
629 *
630 * Returns: An inode
631 */
632
633struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
634 unsigned int mode, dev_t dev)
635{
636 struct inode *inode = NULL;
637 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
638 struct inode *dir = &dip->i_inode;
639 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
640 struct gfs2_inum_host inum = { .no_addr = 0, .no_formal_ino = 0 };
641 int error;
642 u64 generation;
643 struct buffer_head *bh = NULL;
644
645 if (!name->len || name->len > GFS2_FNAMESIZE)
646 return ERR_PTR(-ENAMETOOLONG);
647
648 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
649 error = gfs2_glock_nq(ghs);
650 if (error)
651 goto fail;
652
653 error = create_ok(dip, name, mode);
654 if (error)
655 goto fail_gunlock;
656
657 error = alloc_dinode(dip, &inum.no_addr, &generation);
658 if (error)
659 goto fail_gunlock;
660 inum.no_formal_ino = generation;
661
662 error = gfs2_glock_nq_num(sdp, inum.no_addr, &gfs2_inode_glops,
663 LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
664 if (error)
665 goto fail_gunlock;
666
667 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev, &bh);
668 if (error)
669 goto fail_gunlock2;
670
671 inode = gfs2_inode_lookup(dir->i_sb, IF2DT(mode), inum.no_addr,
672 inum.no_formal_ino, 0);
673 if (IS_ERR(inode))
674 goto fail_gunlock2;
675
676 error = gfs2_inode_refresh(GFS2_I(inode));
677 if (error)
678 goto fail_gunlock2;
679
680 error = gfs2_acl_create(dip, inode);
681 if (error)
682 goto fail_gunlock2;
683
684 error = gfs2_security_init(dip, GFS2_I(inode), name);
685 if (error)
686 goto fail_gunlock2;
687
688 error = link_dinode(dip, name, GFS2_I(inode));
689 if (error)
690 goto fail_gunlock2;
691
692 if (bh)
693 brelse(bh);
694 return inode;
695
696fail_gunlock2:
697 gfs2_glock_dq_uninit(ghs + 1);
698 if (inode && !IS_ERR(inode))
699 iput(inode);
700fail_gunlock:
701 gfs2_glock_dq(ghs);
702fail:
703 if (bh)
704 brelse(bh);
705 return ERR_PTR(error);
706}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000707/**
708 * gfs2_create - Create a file
709 * @dir: The directory in which to create the file
710 * @dentry: The dentry of the new file
711 * @mode: The mode of the new file
712 *
713 * Returns: errno
714 */
715
716static int gfs2_create(struct inode *dir, struct dentry *dentry,
717 int mode, struct nameidata *nd)
718{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400719 struct gfs2_inode *dip = GFS2_I(dir);
720 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000721 struct gfs2_holder ghs[2];
722 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000723
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
725
726 for (;;) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500727 inode = gfs2_createi(ghs, &dentry->d_name, S_IFREG | mode, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000728 if (!IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000729 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000730 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000731 gfs2_inplace_release(dip);
732 gfs2_quota_unlock(dip);
733 gfs2_alloc_put(dip);
734 gfs2_glock_dq_uninit_m(2, ghs);
Steven Whitehouse3a8476d2006-06-19 09:10:39 -0400735 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000736 break;
Steven Whitehouse7359a192006-02-13 12:27:43 +0000737 } else if (PTR_ERR(inode) != -EEXIST ||
Al Viro35165862008-08-05 03:00:49 -0400738 (nd && nd->flags & LOOKUP_EXCL)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000740 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000741 }
742
Al Viroa569c712008-07-23 14:42:05 -0400743 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
Steven Whitehousec7526662006-03-20 12:30:04 -0500744 if (inode) {
745 if (!IS_ERR(inode)) {
Steven Whitehousec7526662006-03-20 12:30:04 -0500746 gfs2_holder_uninit(ghs);
747 break;
748 } else {
749 gfs2_holder_uninit(ghs);
750 return PTR_ERR(inode);
751 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000752 }
753 }
754
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 d_instantiate(dentry, inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756
757 return 0;
758}
759
760/**
761 * gfs2_lookup - Look up a filename in a directory and return its inode
762 * @dir: The directory inode
763 * @dentry: The dentry of the new inode
764 * @nd: passed from Linux VFS, ignored by us
765 *
766 * Called by the VFS layer. Lock dir and call gfs2_lookupi()
767 *
768 * Returns: errno
769 */
770
771static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
772 struct nameidata *nd)
773{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774 struct inode *inode = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775
Al Viroa569c712008-07-23 14:42:05 -0400776 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
Steven Whitehousec7526662006-03-20 12:30:04 -0500777 if (inode && IS_ERR(inode))
David Howellse231c2e2008-02-07 00:15:26 -0800778 return ERR_CAST(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779
Steven Whitehouse9656b2c2008-01-08 08:14:30 +0000780 if (inode) {
781 struct gfs2_glock *gl = GFS2_I(inode)->i_gl;
782 struct gfs2_holder gh;
783 int error;
784 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
785 if (error) {
786 iput(inode);
787 return ERR_PTR(error);
788 }
789 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790 return d_splice_alias(inode, dentry);
Steven Whitehouse9656b2c2008-01-08 08:14:30 +0000791 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792 d_add(dentry, inode);
793
794 return NULL;
795}
796
797/**
798 * gfs2_link - Link to a file
799 * @old_dentry: The inode to link
800 * @dir: Add link to this directory
801 * @dentry: The name of the link
802 *
803 * Link the inode in "old_dentry" into the directory "dir" with the
804 * name in "dentry".
805 *
806 * Returns: errno
807 */
808
809static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
810 struct dentry *dentry)
811{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400812 struct gfs2_inode *dip = GFS2_I(dir);
813 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814 struct inode *inode = old_dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400815 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000816 struct gfs2_holder ghs[2];
Steven Whitehouse2baee032011-05-09 12:08:36 +0100817 struct buffer_head *dibh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 int alloc_required;
819 int error;
820
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500821 if (S_ISDIR(inode->i_mode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822 return -EPERM;
823
824 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
825 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
826
Bob Peterson72dbf472008-08-12 13:39:29 -0500827 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000828 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500829 goto out_parent;
830
831 error = gfs2_glock_nq(ghs + 1); /* child */
832 if (error)
833 goto out_child;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834
Steven Whitehoused192a8e2011-05-05 12:35:40 +0100835 error = -ENOENT;
836 if (inode->i_nlink == 0)
837 goto out_gunlock;
838
Nick Pigginb74c79e2011-01-07 17:49:58 +1100839 error = gfs2_permission(dir, MAY_WRITE | MAY_EXEC, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840 if (error)
841 goto out_gunlock;
842
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100843 error = gfs2_dir_check(dir, &dentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000844 switch (error) {
845 case -ENOENT:
846 break;
847 case 0:
848 error = -EEXIST;
849 default:
850 goto out_gunlock;
851 }
852
853 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500854 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000855 goto out_gunlock;
856 error = -EFBIG;
Steven Whitehousead6203f2008-11-03 13:59:19 +0000857 if (dip->i_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000858 goto out_gunlock;
859 error = -EPERM;
860 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
861 goto out_gunlock;
862 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500863 if (!ip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000864 goto out_gunlock;
865 error = -EMLINK;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500866 if (ip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867 goto out_gunlock;
868
Steven Whitehousec7526662006-03-20 12:30:04 -0500869 alloc_required = error = gfs2_diradd_alloc_required(dir, &dentry->d_name);
870 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000871 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -0500872 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873
874 if (alloc_required) {
875 struct gfs2_alloc *al = gfs2_alloc_get(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300876 if (!al) {
877 error = -ENOMEM;
878 goto out_gunlock;
879 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000880
Steven Whitehoused82661d2008-03-10 15:34:50 +0000881 error = gfs2_quota_lock_check(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000882 if (error)
883 goto out_alloc;
884
David Teiglandb3b94fa2006-01-16 16:50:04 +0000885 al->al_requested = sdp->sd_max_dirres;
886
887 error = gfs2_inplace_reserve(dip);
888 if (error)
889 goto out_gunlock_q;
890
Steven Whitehouse1b502592006-05-18 14:10:52 -0400891 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Benjamin Marzinskibf97b672010-09-27 16:00:04 -0500892 gfs2_rg_blocks(al) +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000893 2 * RES_DINODE + RES_STATFS +
894 RES_QUOTA, 0);
895 if (error)
896 goto out_ipres;
897 } else {
898 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
899 if (error)
900 goto out_ipres;
901 }
902
Steven Whitehouse2baee032011-05-09 12:08:36 +0100903 error = gfs2_meta_inode_buffer(ip, &dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904 if (error)
905 goto out_end_trans;
906
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +0100907 error = gfs2_dir_add(dir, &dentry->d_name, ip);
Steven Whitehouse2baee032011-05-09 12:08:36 +0100908 if (error)
909 goto out_brelse;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910
Steven Whitehouse2baee032011-05-09 12:08:36 +0100911 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
912 inc_nlink(&ip->i_inode);
913 ip->i_inode.i_ctime = CURRENT_TIME;
914 gfs2_dinode_out(ip, dibh->b_data);
915 mark_inode_dirty(&ip->i_inode);
916
917out_brelse:
918 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400919out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000920 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400921out_ipres:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 if (alloc_required)
923 gfs2_inplace_release(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400924out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000925 if (alloc_required)
926 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400927out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 if (alloc_required)
929 gfs2_alloc_put(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400930out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -0500931 gfs2_glock_dq(ghs + 1);
932out_child:
933 gfs2_glock_dq(ghs);
934out_parent:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935 gfs2_holder_uninit(ghs);
936 gfs2_holder_uninit(ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937 if (!error) {
Al Viro7de9c6ee2010-10-23 11:11:40 -0400938 ihold(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000939 d_instantiate(dentry, inode);
940 mark_inode_dirty(inode);
941 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 return error;
943}
944
Steven Whitehouse87ec2172009-05-22 10:54:50 +0100945/*
946 * gfs2_unlink_ok - check to see that a inode is still in a directory
947 * @dip: the directory
948 * @name: the name of the file
949 * @ip: the inode
950 *
951 * Assumes that the lock on (at least) @dip is held.
952 *
953 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
954 */
955
956static int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
957 const struct gfs2_inode *ip)
958{
959 int error;
960
961 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
962 return -EPERM;
963
964 if ((dip->i_inode.i_mode & S_ISVTX) &&
965 dip->i_inode.i_uid != current_fsuid() &&
966 ip->i_inode.i_uid != current_fsuid() && !capable(CAP_FOWNER))
967 return -EPERM;
968
969 if (IS_APPEND(&dip->i_inode))
970 return -EPERM;
971
Nick Pigginb74c79e2011-01-07 17:49:58 +1100972 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, 0);
Steven Whitehouse87ec2172009-05-22 10:54:50 +0100973 if (error)
974 return error;
975
976 error = gfs2_dir_check(&dip->i_inode, name, ip);
977 if (error)
978 return error;
979
980 return 0;
981}
982
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983/**
Steven Whitehouse855d23c2011-05-09 16:42:37 +0100984 * gfs2_unlink_inode - Removes an inode from its parent dir and unlinks it
985 * @dip: The parent directory
986 * @name: The name of the entry in the parent directory
987 * @bh: The inode buffer for the inode to be removed
988 * @inode: The inode to be removed
989 *
990 * Called with all the locks and in a transaction. This will only be
991 * called for a directory after it has been checked to ensure it is empty.
992 *
993 * Returns: 0 on success, or an error
994 */
995
996static int gfs2_unlink_inode(struct gfs2_inode *dip,
997 const struct dentry *dentry,
998 struct buffer_head *bh)
999{
1000 struct inode *inode = dentry->d_inode;
1001 struct gfs2_inode *ip = GFS2_I(inode);
1002 int error;
1003
1004 error = gfs2_dir_del(dip, dentry);
1005 if (error)
1006 return error;
1007
1008 ip->i_entries = 0;
1009 inode->i_ctime = CURRENT_TIME;
1010 if (S_ISDIR(inode->i_mode))
1011 clear_nlink(inode);
1012 else
1013 drop_nlink(inode);
1014 gfs2_trans_add_bh(ip->i_gl, bh, 1);
1015 gfs2_dinode_out(ip, bh->b_data);
1016 mark_inode_dirty(inode);
1017 if (inode->i_nlink == 0)
1018 gfs2_unlink_di(inode);
1019 return 0;
1020}
1021
1022
1023/**
1024 * gfs2_unlink - Unlink an inode (this does rmdir as well)
1025 * @dir: The inode of the directory containing the inode to unlink
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026 * @dentry: The file itself
1027 *
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001028 * This routine uses the type of the inode as a flag to figure out
1029 * whether this is an unlink or an rmdir.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001030 *
1031 * Returns: errno
1032 */
1033
1034static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
1035{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001036 struct gfs2_inode *dip = GFS2_I(dir);
1037 struct gfs2_sbd *sdp = GFS2_SB(dir);
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001038 struct inode *inode = dentry->d_inode;
1039 struct gfs2_inode *ip = GFS2_I(inode);
1040 struct buffer_head *bh;
Russell Cattelanddee7602007-01-29 17:13:44 -06001041 struct gfs2_holder ghs[3];
1042 struct gfs2_rgrpd *rgd;
1043 struct gfs2_holder ri_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044 int error;
1045
Russell Cattelanddee7602007-01-29 17:13:44 -06001046 error = gfs2_rindex_hold(sdp, &ri_gh);
1047 if (error)
1048 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001049
Russell Cattelanddee7602007-01-29 17:13:44 -06001050 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
1051 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
1052
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001053 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -06001054 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
1055
1056
Steven Whitehouse8497a462007-08-26 14:23:56 +01001057 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 if (error)
Steven Whitehouse8497a462007-08-26 14:23:56 +01001059 goto out_parent;
1060
1061 error = gfs2_glock_nq(ghs + 1); /* child */
1062 if (error)
1063 goto out_child;
1064
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001065 error = -ENOENT;
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001066 if (inode->i_nlink == 0)
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001067 goto out_rgrp;
1068
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001069 if (S_ISDIR(inode->i_mode)) {
1070 error = -ENOTEMPTY;
1071 if (ip->i_entries > 2 || inode->i_nlink > 2)
1072 goto out_rgrp;
1073 }
1074
Steven Whitehouse8497a462007-08-26 14:23:56 +01001075 error = gfs2_glock_nq(ghs + 2); /* rgrp */
1076 if (error)
1077 goto out_rgrp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078
1079 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
1080 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -05001081 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001083 error = gfs2_trans_begin(sdp, 2*RES_DINODE + 3*RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084 if (error)
Roel Kluincd012072009-08-22 19:26:42 +02001085 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001086
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001087 error = gfs2_meta_inode_buffer(ip, &bh);
1088 if (error)
1089 goto out_end_trans;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001090
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001091 error = gfs2_unlink_inode(dip, dentry, bh);
1092 brelse(bh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001093
1094out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001095 gfs2_trans_end(sdp);
Bob Peterson72dbf472008-08-12 13:39:29 -05001096out_gunlock:
Steven Whitehouse8497a462007-08-26 14:23:56 +01001097 gfs2_glock_dq(ghs + 2);
1098out_rgrp:
Russell Cattelanddee7602007-01-29 17:13:44 -06001099 gfs2_holder_uninit(ghs + 2);
Steven Whitehouse8497a462007-08-26 14:23:56 +01001100 gfs2_glock_dq(ghs + 1);
1101out_child:
1102 gfs2_holder_uninit(ghs + 1);
1103 gfs2_glock_dq(ghs);
1104out_parent:
1105 gfs2_holder_uninit(ghs);
Russell Cattelanddee7602007-01-29 17:13:44 -06001106 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107 return error;
1108}
1109
1110/**
1111 * gfs2_symlink - Create a symlink
1112 * @dir: The directory to create the symlink in
1113 * @dentry: The dentry to put the symlink in
1114 * @symname: The thing which the link points to
1115 *
1116 * Returns: errno
1117 */
1118
1119static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
1120 const char *symname)
1121{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001122 struct gfs2_inode *dip = GFS2_I(dir), *ip;
1123 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001124 struct gfs2_holder ghs[2];
1125 struct inode *inode;
1126 struct buffer_head *dibh;
1127 int size;
1128 int error;
1129
David Teiglandb3b94fa2006-01-16 16:50:04 +00001130 /* Must be stuffed with a null terminator for gfs2_follow_link() */
1131 size = strlen(symname);
1132 if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode) - 1)
1133 return -ENAMETOOLONG;
1134
1135 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
1136
Steven Whitehousee7f14f42006-10-31 21:45:08 -05001137 inode = gfs2_createi(ghs, &dentry->d_name, S_IFLNK | S_IRWXUGO, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +00001138 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +00001140 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 }
1142
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001143 ip = ghs[1].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001144
Steven Whitehouse5cf32522009-03-31 16:06:27 +01001145 i_size_write(inode, size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001146
1147 error = gfs2_meta_inode_buffer(ip, &dibh);
1148
1149 if (!gfs2_assert_withdraw(sdp, !error)) {
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001150 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001151 memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname,
1152 size);
1153 brelse(dibh);
1154 }
1155
1156 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001157 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001158 gfs2_inplace_release(dip);
1159 gfs2_quota_unlock(dip);
1160 gfs2_alloc_put(dip);
1161
1162 gfs2_glock_dq_uninit_m(2, ghs);
1163
David Teiglandb3b94fa2006-01-16 16:50:04 +00001164 d_instantiate(dentry, inode);
1165 mark_inode_dirty(inode);
1166
1167 return 0;
1168}
1169
1170/**
1171 * gfs2_mkdir - Make a directory
1172 * @dir: The parent directory of the new one
1173 * @dentry: The dentry of the new directory
1174 * @mode: The mode of the new directory
1175 *
1176 * Returns: errno
1177 */
1178
1179static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1180{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001181 struct gfs2_inode *dip = GFS2_I(dir), *ip;
1182 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001183 struct gfs2_holder ghs[2];
1184 struct inode *inode;
1185 struct buffer_head *dibh;
1186 int error;
1187
David Teiglandb3b94fa2006-01-16 16:50:04 +00001188 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
1189
Steven Whitehousee7f14f42006-10-31 21:45:08 -05001190 inode = gfs2_createi(ghs, &dentry->d_name, S_IFDIR | mode, 0);
Steven Whitehouse7359a192006-02-13 12:27:43 +00001191 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001192 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +00001193 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001194 }
1195
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001196 ip = ghs[1].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001197
Steven Whitehouse4f561102006-11-01 14:04:17 -05001198 ip->i_inode.i_nlink = 2;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001199 i_size_write(inode, sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode));
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001200 ip->i_diskflags |= GFS2_DIF_JDATA;
Steven Whitehousead6203f2008-11-03 13:59:19 +00001201 ip->i_entries = 2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202
1203 error = gfs2_meta_inode_buffer(ip, &dibh);
1204
1205 if (!gfs2_assert_withdraw(sdp, !error)) {
1206 struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehousec7526662006-03-20 12:30:04 -05001207 struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001208
Steven Whitehousec7526662006-03-20 12:30:04 -05001209 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse8d123582010-09-17 12:30:23 +01001210 gfs2_qstr2dirent(&gfs2_qdot, GFS2_DIRENT_SIZE(gfs2_qdot.len), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 dent->de_inum = di->di_num; /* already GFS2 endian */
Steven Whitehouse7ecdb702006-10-03 21:03:35 -04001212 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001213 di->di_entries = cpu_to_be32(1);
1214
Steven Whitehousec7526662006-03-20 12:30:04 -05001215 dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
Steven Whitehouse8d123582010-09-17 12:30:23 +01001216 gfs2_qstr2dirent(&gfs2_qdotdot, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001217
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001218 gfs2_inum_out(dip, dent);
Steven Whitehouse7ecdb702006-10-03 21:03:35 -04001219 dent->de_type = cpu_to_be16(DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001220
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001221 gfs2_dinode_out(ip, di);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001222
1223 brelse(dibh);
1224 }
1225
David Teiglandb3b94fa2006-01-16 16:50:04 +00001226 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001227 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001228 gfs2_inplace_release(dip);
1229 gfs2_quota_unlock(dip);
1230 gfs2_alloc_put(dip);
1231
1232 gfs2_glock_dq_uninit_m(2, ghs);
1233
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234 d_instantiate(dentry, inode);
1235 mark_inode_dirty(inode);
1236
1237 return 0;
1238}
1239
1240/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001241 * gfs2_mknod - Make a special file
1242 * @dir: The directory in which the special file will reside
1243 * @dentry: The dentry of the special file
1244 * @mode: The mode of the special file
1245 * @rdev: The device specification of the special file
1246 *
1247 */
1248
1249static int gfs2_mknod(struct inode *dir, struct dentry *dentry, int mode,
1250 dev_t dev)
1251{
Steven Whitehousee7f14f42006-10-31 21:45:08 -05001252 struct gfs2_inode *dip = GFS2_I(dir);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001253 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001254 struct gfs2_holder ghs[2];
1255 struct inode *inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001256
1257 gfs2_holder_init(dip->i_gl, 0, 0, ghs);
1258
Steven Whitehousee7f14f42006-10-31 21:45:08 -05001259 inode = gfs2_createi(ghs, &dentry->d_name, mode, dev);
Steven Whitehouse7359a192006-02-13 12:27:43 +00001260 if (IS_ERR(inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001261 gfs2_holder_uninit(ghs);
Steven Whitehouse7359a192006-02-13 12:27:43 +00001262 return PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001263 }
1264
David Teiglandb3b94fa2006-01-16 16:50:04 +00001265 gfs2_trans_end(sdp);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001266 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001267 gfs2_inplace_release(dip);
1268 gfs2_quota_unlock(dip);
1269 gfs2_alloc_put(dip);
1270
1271 gfs2_glock_dq_uninit_m(2, ghs);
1272
David Teiglandb3b94fa2006-01-16 16:50:04 +00001273 d_instantiate(dentry, inode);
1274 mark_inode_dirty(inode);
1275
1276 return 0;
1277}
1278
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001279/*
1280 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1281 * @this: move this
1282 * @to: to here
1283 *
1284 * Follow @to back to the root and make sure we don't encounter @this
1285 * Assumes we already hold the rename lock.
1286 *
1287 * Returns: errno
1288 */
1289
1290static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1291{
1292 struct inode *dir = &to->i_inode;
1293 struct super_block *sb = dir->i_sb;
1294 struct inode *tmp;
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001295 int error = 0;
1296
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001297 igrab(dir);
1298
1299 for (;;) {
1300 if (dir == &this->i_inode) {
1301 error = -EINVAL;
1302 break;
1303 }
1304 if (dir == sb->s_root->d_inode) {
1305 error = 0;
1306 break;
1307 }
1308
Steven Whitehouse8d123582010-09-17 12:30:23 +01001309 tmp = gfs2_lookupi(dir, &gfs2_qdotdot, 1);
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001310 if (IS_ERR(tmp)) {
1311 error = PTR_ERR(tmp);
1312 break;
1313 }
1314
1315 iput(dir);
1316 dir = tmp;
1317 }
1318
1319 iput(dir);
1320
1321 return error;
1322}
1323
David Teiglandb3b94fa2006-01-16 16:50:04 +00001324/**
1325 * gfs2_rename - Rename a file
1326 * @odir: Parent directory of old file name
1327 * @odentry: The old dentry of the file
1328 * @ndir: Parent directory of new file name
1329 * @ndentry: The new dentry of the file
1330 *
1331 * Returns: errno
1332 */
1333
1334static int gfs2_rename(struct inode *odir, struct dentry *odentry,
1335 struct inode *ndir, struct dentry *ndentry)
1336{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001337 struct gfs2_inode *odip = GFS2_I(odir);
1338 struct gfs2_inode *ndip = GFS2_I(ndir);
1339 struct gfs2_inode *ip = GFS2_I(odentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001340 struct gfs2_inode *nip = NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001341 struct gfs2_sbd *sdp = GFS2_SB(odir);
Bob Peterson462903412010-09-30 10:34:00 -04001342 struct gfs2_holder ghs[5], r_gh = { .gh_gl = NULL, }, ri_gh;
Russell Cattelanddee7602007-01-29 17:13:44 -06001343 struct gfs2_rgrpd *nrgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001344 unsigned int num_gh;
1345 int dir_rename = 0;
Steven Whitehouse24b977b2009-12-09 13:55:12 +00001346 int alloc_required = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001347 unsigned int x;
1348 int error;
1349
David Teiglandb3b94fa2006-01-16 16:50:04 +00001350 if (ndentry->d_inode) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001351 nip = GFS2_I(ndentry->d_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001352 if (ip == nip)
1353 return 0;
1354 }
1355
Bob Peterson462903412010-09-30 10:34:00 -04001356 error = gfs2_rindex_hold(sdp, &ri_gh);
1357 if (error)
1358 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001359
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001360 if (odip != ndip) {
1361 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
1362 0, &r_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001363 if (error)
1364 goto out;
1365
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001366 if (S_ISDIR(ip->i_inode.i_mode)) {
1367 dir_rename = 1;
1368 /* don't move a dirctory into it's subdir */
1369 error = gfs2_ok_to_move(ip, ndip);
1370 if (error)
1371 goto out_gunlock_r;
1372 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001373 }
1374
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001375 num_gh = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001376 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001377 if (odip != ndip) {
1378 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1379 num_gh++;
1380 }
1381 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1382 num_gh++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001383
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001384 if (nip) {
1385 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1386 num_gh++;
Russell Cattelanddee7602007-01-29 17:13:44 -06001387 /* grab the resource lock for unlink flag twiddling
1388 * this is the case of the target file already existing
1389 * so we unlink before doing the rename
1390 */
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001391 nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr);
Russell Cattelanddee7602007-01-29 17:13:44 -06001392 if (nrgd)
1393 gfs2_holder_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh++);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001394 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001395
Bob Peterson72dbf472008-08-12 13:39:29 -05001396 for (x = 0; x < num_gh; x++) {
1397 error = gfs2_glock_nq(ghs + x);
1398 if (error)
1399 goto out_gunlock;
1400 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001401
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001402 error = -ENOENT;
1403 if (ip->i_inode.i_nlink == 0)
1404 goto out_gunlock;
1405
David Teiglandb3b94fa2006-01-16 16:50:04 +00001406 /* Check out the old directory */
1407
1408 error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
1409 if (error)
1410 goto out_gunlock;
1411
1412 /* Check out the new directory */
1413
1414 if (nip) {
1415 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
1416 if (error)
1417 goto out_gunlock;
1418
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001419 if (nip->i_inode.i_nlink == 0) {
1420 error = -EAGAIN;
1421 goto out_gunlock;
1422 }
1423
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001424 if (S_ISDIR(nip->i_inode.i_mode)) {
Steven Whitehousead6203f2008-11-03 13:59:19 +00001425 if (nip->i_entries < 2) {
Steven Whitehouse94fb7632011-05-09 13:36:10 +01001426 gfs2_consist_inode(nip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001427 error = -EIO;
1428 goto out_gunlock;
1429 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001430 if (nip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001431 error = -ENOTEMPTY;
1432 goto out_gunlock;
1433 }
1434 }
1435 } else {
Nick Pigginb74c79e2011-01-07 17:49:58 +11001436 error = gfs2_permission(ndir, MAY_WRITE | MAY_EXEC, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001437 if (error)
1438 goto out_gunlock;
1439
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001440 error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001441 switch (error) {
1442 case -ENOENT:
1443 error = 0;
1444 break;
1445 case 0:
1446 error = -EEXIST;
1447 default:
1448 goto out_gunlock;
1449 };
1450
1451 if (odip != ndip) {
Steven Whitehouse4f561102006-11-01 14:04:17 -05001452 if (!ndip->i_inode.i_nlink) {
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001453 error = -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001454 goto out_gunlock;
1455 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001456 if (ndip->i_entries == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001457 error = -EFBIG;
1458 goto out_gunlock;
1459 }
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001460 if (S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse4f561102006-11-01 14:04:17 -05001461 ndip->i_inode.i_nlink == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001462 error = -EMLINK;
1463 goto out_gunlock;
1464 }
1465 }
1466 }
1467
1468 /* Check out the dir to be renamed */
1469
1470 if (dir_rename) {
Nick Pigginb74c79e2011-01-07 17:49:58 +11001471 error = gfs2_permission(odentry->d_inode, MAY_WRITE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001472 if (error)
1473 goto out_gunlock;
1474 }
1475
Steven Whitehouse24b977b2009-12-09 13:55:12 +00001476 if (nip == NULL)
1477 alloc_required = gfs2_diradd_alloc_required(ndir, &ndentry->d_name);
1478 error = alloc_required;
Steven Whitehousec7526662006-03-20 12:30:04 -05001479 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001480 goto out_gunlock;
Steven Whitehousec7526662006-03-20 12:30:04 -05001481 error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001482
1483 if (alloc_required) {
1484 struct gfs2_alloc *al = gfs2_alloc_get(ndip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001485 if (!al) {
1486 error = -ENOMEM;
1487 goto out_gunlock;
1488 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001489
Steven Whitehoused82661d2008-03-10 15:34:50 +00001490 error = gfs2_quota_lock_check(ndip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001491 if (error)
1492 goto out_alloc;
1493
David Teiglandb3b94fa2006-01-16 16:50:04 +00001494 al->al_requested = sdp->sd_max_dirres;
1495
Bob Peterson462903412010-09-30 10:34:00 -04001496 error = gfs2_inplace_reserve_ri(ndip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001497 if (error)
1498 goto out_gunlock_q;
1499
Steven Whitehousefe1bded2006-04-18 10:09:15 -04001500 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Benjamin Marzinskibf97b672010-09-27 16:00:04 -05001501 gfs2_rg_blocks(al) +
David Teiglandb3b94fa2006-01-16 16:50:04 +00001502 4 * RES_DINODE + 4 * RES_LEAF +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -05001503 RES_STATFS + RES_QUOTA + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001504 if (error)
1505 goto out_ipreserv;
1506 } else {
1507 error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -05001508 5 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001509 if (error)
1510 goto out_gunlock;
1511 }
1512
1513 /* Remove the target file, if it exists */
1514
1515 if (nip) {
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001516 struct buffer_head *bh;
1517 error = gfs2_meta_inode_buffer(nip, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001518 if (error)
1519 goto out_end_trans;
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001520 error = gfs2_unlink_inode(ndip, ndentry, bh);
1521 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001522 }
1523
1524 if (dir_rename) {
Steven Whitehouse8d123582010-09-17 12:30:23 +01001525 error = gfs2_dir_mvino(ip, &gfs2_qdotdot, ndip, DT_DIR);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001526 if (error)
1527 goto out_end_trans;
1528 } else {
1529 struct buffer_head *dibh;
1530 error = gfs2_meta_inode_buffer(ip, &dibh);
1531 if (error)
1532 goto out_end_trans;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001533 ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001534 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001535 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001536 brelse(dibh);
1537 }
1538
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001539 error = gfs2_dir_del(odip, odentry);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001540 if (error)
1541 goto out_end_trans;
1542
Steven Whitehouse3d6ecb72011-05-09 13:30:08 +01001543 error = gfs2_dir_add(ndir, &ndentry->d_name, ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001544 if (error)
1545 goto out_end_trans;
1546
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001547out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001548 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001549out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001550 if (alloc_required)
1551 gfs2_inplace_release(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001552out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001553 if (alloc_required)
1554 gfs2_quota_unlock(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001555out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001556 if (alloc_required)
1557 gfs2_alloc_put(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001558out_gunlock:
Bob Peterson72dbf472008-08-12 13:39:29 -05001559 while (x--) {
1560 gfs2_glock_dq(ghs + x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001561 gfs2_holder_uninit(ghs + x);
Bob Peterson72dbf472008-08-12 13:39:29 -05001562 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001563out_gunlock_r:
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001564 if (r_gh.gh_gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001565 gfs2_glock_dq_uninit(&r_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001566out:
Bob Peterson462903412010-09-30 10:34:00 -04001567 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001568 return error;
1569}
1570
1571/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001572 * gfs2_follow_link - Follow a symbolic link
1573 * @dentry: The dentry of the link
1574 * @nd: Data that we pass to vfs_follow_link()
1575 *
Al Viroc177c2a2010-01-14 00:59:16 -05001576 * This can handle symlinks of any size.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001577 *
1578 * Returns: 0 on success or error code
1579 */
1580
1581static void *gfs2_follow_link(struct dentry *dentry, struct nameidata *nd)
1582{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001583 struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
Al Viroc177c2a2010-01-14 00:59:16 -05001584 struct gfs2_holder i_gh;
1585 struct buffer_head *dibh;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001586 unsigned int x, size;
Al Viroc177c2a2010-01-14 00:59:16 -05001587 char *buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001588 int error;
1589
Al Viroc177c2a2010-01-14 00:59:16 -05001590 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
1591 error = gfs2_glock_nq(&i_gh);
1592 if (error) {
1593 gfs2_holder_uninit(&i_gh);
1594 nd_set_link(nd, ERR_PTR(error));
1595 return NULL;
1596 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001597
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001598 size = (unsigned int)i_size_read(&ip->i_inode);
1599 if (size == 0) {
Al Viroc177c2a2010-01-14 00:59:16 -05001600 gfs2_consist_inode(ip);
1601 buf = ERR_PTR(-EIO);
1602 goto out;
1603 }
1604
1605 error = gfs2_meta_inode_buffer(ip, &dibh);
1606 if (error) {
1607 buf = ERR_PTR(error);
1608 goto out;
1609 }
1610
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001611 x = size + 1;
Al Viroc177c2a2010-01-14 00:59:16 -05001612 buf = kmalloc(x, GFP_NOFS);
1613 if (!buf)
1614 buf = ERR_PTR(-ENOMEM);
1615 else
1616 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1617 brelse(dibh);
1618out:
1619 gfs2_glock_dq_uninit(&i_gh);
1620 nd_set_link(nd, buf);
1621 return NULL;
1622}
1623
1624static void gfs2_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
1625{
1626 char *s = nd_get_link(nd);
1627 if (!IS_ERR(s))
1628 kfree(s);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001629}
1630
1631/**
1632 * gfs2_permission -
Steven Whitehouse75d5cfb2011-01-19 09:42:40 +00001633 * @inode: The inode
1634 * @mask: The mask to be tested
1635 * @flags: Indicates whether this is an RCU path walk or not
David Teiglandb3b94fa2006-01-16 16:50:04 +00001636 *
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001637 * This may be called from the VFS directly, or from within GFS2 with the
1638 * inode locked, so we look to see if the glock is already locked and only
1639 * lock the glock if its not already been done.
1640 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001641 * Returns: errno
1642 */
1643
Nick Pigginb74c79e2011-01-07 17:49:58 +11001644int gfs2_permission(struct inode *inode, int mask, unsigned int flags)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001645{
Nick Pigginb74c79e2011-01-07 17:49:58 +11001646 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001647 struct gfs2_holder i_gh;
1648 int error;
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001649 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001650
Nick Pigginb74c79e2011-01-07 17:49:58 +11001651
1652 ip = GFS2_I(inode);
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001653 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Steven Whitehouse75d5cfb2011-01-19 09:42:40 +00001654 if (flags & IPERM_FLAG_RCU)
1655 return -ECHILD;
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001656 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
1657 if (error)
1658 return error;
1659 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001660 }
1661
Miklos Szeredif58ba882008-07-02 21:12:01 +02001662 if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
1663 error = -EACCES;
1664 else
Nick Pigginb74c79e2011-01-07 17:49:58 +11001665 error = generic_permission(inode, mask, flags, gfs2_check_acl);
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001666 if (unlock)
1667 gfs2_glock_dq_uninit(&i_gh);
1668
David Teiglandb3b94fa2006-01-16 16:50:04 +00001669 return error;
1670}
1671
Steven Whitehouse194c0112011-05-09 14:06:38 +01001672static int __gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1673{
1674 struct inode *inode = &ip->i_inode;
1675 struct buffer_head *dibh;
1676 int error;
1677
1678 error = gfs2_meta_inode_buffer(ip, &dibh);
1679 if (error)
1680 return error;
1681
1682 setattr_copy(inode, attr);
1683 mark_inode_dirty(inode);
1684 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
1685 gfs2_dinode_out(ip, dibh->b_data);
1686 brelse(dibh);
1687 return 0;
1688}
1689
1690/**
1691 * gfs2_setattr_simple -
1692 * @ip:
1693 * @attr:
1694 *
1695 * Returns: errno
1696 */
1697
1698int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1699{
1700 int error;
1701
1702 if (current->journal_info)
1703 return __gfs2_setattr_simple(ip, attr);
1704
1705 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
1706 if (error)
1707 return error;
1708
1709 error = __gfs2_setattr_simple(ip, attr);
1710 gfs2_trans_end(GFS2_SB(&ip->i_inode));
1711 return error;
1712}
1713
David Teiglandb3b94fa2006-01-16 16:50:04 +00001714static int setattr_chown(struct inode *inode, struct iattr *attr)
1715{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001716 struct gfs2_inode *ip = GFS2_I(inode);
1717 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001718 u32 ouid, ogid, nuid, ngid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001719 int error;
1720
Steven Whitehouse2933f922006-11-01 13:23:29 -05001721 ouid = inode->i_uid;
1722 ogid = inode->i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001723 nuid = attr->ia_uid;
1724 ngid = attr->ia_gid;
1725
1726 if (!(attr->ia_valid & ATTR_UID) || ouid == nuid)
1727 ouid = nuid = NO_QUOTA_CHANGE;
1728 if (!(attr->ia_valid & ATTR_GID) || ogid == ngid)
1729 ogid = ngid = NO_QUOTA_CHANGE;
1730
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001731 if (!gfs2_alloc_get(ip))
1732 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001733
1734 error = gfs2_quota_lock(ip, nuid, ngid);
1735 if (error)
1736 goto out_alloc;
1737
1738 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
1739 error = gfs2_quota_check(ip, nuid, ngid);
1740 if (error)
1741 goto out_gunlock_q;
1742 }
1743
1744 error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
1745 if (error)
1746 goto out_gunlock_q;
1747
Steven Whitehouse2ae51ed2010-11-10 15:14:57 +00001748 error = gfs2_setattr_simple(ip, attr);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001749 if (error)
1750 goto out_end_trans;
1751
David Teiglandb3b94fa2006-01-16 16:50:04 +00001752 if (ouid != NO_QUOTA_CHANGE || ogid != NO_QUOTA_CHANGE) {
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001753 u64 blocks = gfs2_get_inode_blocks(&ip->i_inode);
1754 gfs2_quota_change(ip, -blocks, ouid, ogid);
1755 gfs2_quota_change(ip, blocks, nuid, ngid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001756 }
1757
Steven Whitehousea91ea692006-09-04 12:04:26 -04001758out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001759 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001760out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001761 gfs2_quota_unlock(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001762out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001763 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001764 return error;
1765}
1766
1767/**
1768 * gfs2_setattr - Change attributes on an inode
1769 * @dentry: The dentry which is changing
1770 * @attr: The structure describing the change
1771 *
1772 * The VFS layer wants to change one or more of an inodes attributes. Write
1773 * that change out to disk.
1774 *
1775 * Returns: errno
1776 */
1777
1778static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
1779{
1780 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001781 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001782 struct gfs2_holder i_gh;
1783 int error;
1784
David Teiglandb3b94fa2006-01-16 16:50:04 +00001785 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1786 if (error)
1787 return error;
1788
1789 error = -EPERM;
1790 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1791 goto out;
1792
1793 error = inode_change_ok(inode, attr);
1794 if (error)
1795 goto out;
1796
1797 if (attr->ia_valid & ATTR_SIZE)
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001798 error = gfs2_setattr_size(inode, attr->ia_size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001799 else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
1800 error = setattr_chown(inode, attr);
1801 else if ((attr->ia_valid & ATTR_MODE) && IS_POSIXACL(inode))
1802 error = gfs2_acl_chmod(ip, attr);
1803 else
1804 error = gfs2_setattr_simple(ip, attr);
1805
Steven Whitehousea91ea692006-09-04 12:04:26 -04001806out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001807 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001808 if (!error)
1809 mark_inode_dirty(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001810 return error;
1811}
1812
1813/**
1814 * gfs2_getattr - Read out an inode's attributes
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001815 * @mnt: The vfsmount the inode is being accessed from
David Teiglandb3b94fa2006-01-16 16:50:04 +00001816 * @dentry: The dentry to stat
1817 * @stat: The inode's stats
1818 *
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001819 * This may be called from the VFS directly, or from within GFS2 with the
1820 * inode locked, so we look to see if the glock is already locked and only
1821 * lock the glock if its not already been done. Note that its the NFS
1822 * readdirplus operation which causes this to be called (from filldir)
1823 * with the glock already held.
1824 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001825 * Returns: errno
1826 */
1827
1828static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry,
1829 struct kstat *stat)
1830{
1831 struct inode *inode = dentry->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001832 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001833 struct gfs2_holder gh;
1834 int error;
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001835 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001836
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001837 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001838 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1839 if (error)
1840 return error;
1841 unlock = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001842 }
1843
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001844 generic_fillattr(inode, stat);
Steven Whitehoused7c103d2007-01-25 17:14:59 +00001845 if (unlock)
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001846 gfs2_glock_dq_uninit(&gh);
1847
1848 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001849}
1850
1851static int gfs2_setxattr(struct dentry *dentry, const char *name,
1852 const void *data, size_t size, int flags)
1853{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001854 struct inode *inode = dentry->d_inode;
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001855 struct gfs2_inode *ip = GFS2_I(inode);
1856 struct gfs2_holder gh;
1857 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001858
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001859 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1860 ret = gfs2_glock_nq(&gh);
1861 if (ret == 0) {
1862 ret = generic_setxattr(dentry, name, data, size, flags);
1863 gfs2_glock_dq(&gh);
1864 }
1865 gfs2_holder_uninit(&gh);
1866 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001867}
1868
1869static ssize_t gfs2_getxattr(struct dentry *dentry, const char *name,
1870 void *data, size_t size)
1871{
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001872 struct inode *inode = dentry->d_inode;
1873 struct gfs2_inode *ip = GFS2_I(inode);
1874 struct gfs2_holder gh;
1875 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001876
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001877 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1878 ret = gfs2_glock_nq(&gh);
1879 if (ret == 0) {
1880 ret = generic_getxattr(dentry, name, data, size);
1881 gfs2_glock_dq(&gh);
1882 }
1883 gfs2_holder_uninit(&gh);
1884 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001885}
1886
1887static int gfs2_removexattr(struct dentry *dentry, const char *name)
1888{
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001889 struct inode *inode = dentry->d_inode;
1890 struct gfs2_inode *ip = GFS2_I(inode);
1891 struct gfs2_holder gh;
1892 int ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001893
Steven Whitehouse40b78a32009-08-26 18:41:32 +01001894 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1895 ret = gfs2_glock_nq(&gh);
1896 if (ret == 0) {
1897 ret = generic_removexattr(dentry, name);
1898 gfs2_glock_dq(&gh);
1899 }
1900 gfs2_holder_uninit(&gh);
1901 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001902}
1903
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001904static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1905 u64 start, u64 len)
1906{
1907 struct gfs2_inode *ip = GFS2_I(inode);
1908 struct gfs2_holder gh;
1909 int ret;
1910
1911 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
1912 if (ret)
1913 return ret;
1914
1915 mutex_lock(&inode->i_mutex);
1916
1917 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
1918 if (ret)
1919 goto out;
1920
1921 if (gfs2_is_stuffed(ip)) {
1922 u64 phys = ip->i_no_addr << inode->i_blkbits;
1923 u64 size = i_size_read(inode);
1924 u32 flags = FIEMAP_EXTENT_LAST|FIEMAP_EXTENT_NOT_ALIGNED|
1925 FIEMAP_EXTENT_DATA_INLINE;
1926 phys += sizeof(struct gfs2_dinode);
1927 phys += start;
1928 if (start + len > size)
1929 len = size - start;
1930 if (start < size)
1931 ret = fiemap_fill_next_extent(fieinfo, start, phys,
1932 len, flags);
1933 if (ret == 1)
1934 ret = 0;
1935 } else {
1936 ret = __generic_block_fiemap(inode, fieinfo, start, len,
1937 gfs2_block_map);
1938 }
1939
1940 gfs2_glock_dq_uninit(&gh);
1941out:
1942 mutex_unlock(&inode->i_mutex);
1943 return ret;
1944}
1945
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001946const struct inode_operations gfs2_file_iops = {
Al Viroe6305c42008-07-15 21:03:57 -04001947 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001948 .setattr = gfs2_setattr,
1949 .getattr = gfs2_getattr,
1950 .setxattr = gfs2_setxattr,
1951 .getxattr = gfs2_getxattr,
1952 .listxattr = gfs2_listxattr,
1953 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001954 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001955};
1956
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001957const struct inode_operations gfs2_dir_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001958 .create = gfs2_create,
1959 .lookup = gfs2_lookup,
1960 .link = gfs2_link,
1961 .unlink = gfs2_unlink,
1962 .symlink = gfs2_symlink,
1963 .mkdir = gfs2_mkdir,
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001964 .rmdir = gfs2_unlink,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001965 .mknod = gfs2_mknod,
1966 .rename = gfs2_rename,
Al Viroe6305c42008-07-15 21:03:57 -04001967 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001968 .setattr = gfs2_setattr,
1969 .getattr = gfs2_getattr,
1970 .setxattr = gfs2_setxattr,
1971 .getxattr = gfs2_getxattr,
1972 .listxattr = gfs2_listxattr,
1973 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001974 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001975};
1976
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001977const struct inode_operations gfs2_symlink_iops = {
Al Viroc177c2a2010-01-14 00:59:16 -05001978 .readlink = generic_readlink,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001979 .follow_link = gfs2_follow_link,
Al Viroc177c2a2010-01-14 00:59:16 -05001980 .put_link = gfs2_put_link,
Al Viroe6305c42008-07-15 21:03:57 -04001981 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001982 .setattr = gfs2_setattr,
1983 .getattr = gfs2_getattr,
1984 .setxattr = gfs2_setxattr,
1985 .getxattr = gfs2_getxattr,
1986 .listxattr = gfs2_listxattr,
1987 .removexattr = gfs2_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001988 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001989};
1990