blob: 56825cc8ab87e159dd8c54947264224071188966 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehousef2741d92011-05-13 12:11:17 +01003 * Copyright (C) 2004-2011 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
Andreas Gruenbachercda9dd42016-06-14 12:24:50 -050040static int iget_test(struct inode *inode, void *opaque)
Steven Whitehouse194c0112011-05-09 14:06:38 +010041{
Andreas Gruenbachercda9dd42016-06-14 12:24:50 -050042 u64 no_addr = *(u64 *)opaque;
43
44 return GFS2_I(inode)->i_no_addr == no_addr;
45}
46
47static int iget_set(struct inode *inode, void *opaque)
48{
49 u64 no_addr = *(u64 *)opaque;
50
51 GFS2_I(inode)->i_no_addr = no_addr;
52 inode->i_ino = no_addr;
53 return 0;
54}
55
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -050056static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
57{
58 struct inode *inode;
59
60repeat:
Andreas Gruenbachercda9dd42016-06-14 12:24:50 -050061 inode = iget5_locked(sb, no_addr, iget_test, iget_set, &no_addr);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -050062 if (!inode)
63 return inode;
64 if (is_bad_inode(inode)) {
65 iput(inode);
66 goto repeat;
67 }
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -050068 return inode;
Steven Whitehouse194c0112011-05-09 14:06:38 +010069}
70
71/**
72 * gfs2_set_iop - Sets inode operations
73 * @inode: The inode with correct i_mode filled in
74 *
75 * GFS2 lookup code fills in vfs inode contents based on info obtained
76 * from directory entry inside gfs2_inode_lookup().
77 */
78
79static void gfs2_set_iop(struct inode *inode)
80{
81 struct gfs2_sbd *sdp = GFS2_SB(inode);
82 umode_t mode = inode->i_mode;
83
84 if (S_ISREG(mode)) {
85 inode->i_op = &gfs2_file_iops;
86 if (gfs2_localflocks(sdp))
87 inode->i_fop = &gfs2_file_fops_nolock;
88 else
89 inode->i_fop = &gfs2_file_fops;
90 } else if (S_ISDIR(mode)) {
91 inode->i_op = &gfs2_dir_iops;
92 if (gfs2_localflocks(sdp))
93 inode->i_fop = &gfs2_dir_fops_nolock;
94 else
95 inode->i_fop = &gfs2_dir_fops;
96 } else if (S_ISLNK(mode)) {
97 inode->i_op = &gfs2_symlink_iops;
98 } else {
99 inode->i_op = &gfs2_file_iops;
100 init_special_inode(inode, inode->i_mode, inode->i_rdev);
101 }
102}
103
104/**
105 * gfs2_inode_lookup - Lookup an inode
106 * @sb: The super block
Steven Whitehouse194c0112011-05-09 14:06:38 +0100107 * @type: The type of the inode
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500108 * @no_addr: The inode number
109 * @no_formal_ino: The inode generation number
110 * @blktype: Requested block type (GFS2_BLKST_DINODE or GFS2_BLKST_UNLINKED;
111 * GFS2_BLKST_FREE do indicate not to verify)
112 *
113 * If @type is DT_UNKNOWN, the inode type is fetched from disk.
114 *
115 * If @blktype is anything other than GFS2_BLKST_FREE (which is used as a
116 * placeholder because it doesn't otherwise make sense), the on-disk block type
117 * is verified to be @blktype.
Steven Whitehouse194c0112011-05-09 14:06:38 +0100118 *
119 * Returns: A VFS inode, or an error
120 */
121
122struct inode *gfs2_inode_lookup(struct super_block *sb, unsigned int type,
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500123 u64 no_addr, u64 no_formal_ino,
124 unsigned int blktype)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100125{
126 struct inode *inode;
127 struct gfs2_inode *ip;
128 struct gfs2_glock *io_gl = NULL;
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500129 struct gfs2_holder i_gh;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100130 int error;
131
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500132 gfs2_holder_mark_uninitialized(&i_gh);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500133 inode = gfs2_iget(sb, no_addr);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100134 if (!inode)
Steven Whitehouseac3beb62014-01-16 10:31:13 +0000135 return ERR_PTR(-ENOMEM);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100136
Bob Petersone97321f2016-04-12 16:14:26 -0400137 ip = GFS2_I(inode);
Bob Petersone97321f2016-04-12 16:14:26 -0400138
Steven Whitehouse194c0112011-05-09 14:06:38 +0100139 if (inode->i_state & I_NEW) {
140 struct gfs2_sbd *sdp = GFS2_SB(inode);
141 ip->i_no_formal_ino = no_formal_ino;
142
143 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
144 if (unlikely(error))
145 goto fail;
146 ip->i_gl->gl_object = ip;
147
148 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
149 if (unlikely(error))
150 goto fail_put;
151
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500152 if (type == DT_UNKNOWN || blktype != GFS2_BLKST_FREE) {
153 /*
154 * The GL_SKIP flag indicates to skip reading the inode
155 * block. We read the inode with gfs2_inode_refresh
156 * after possibly checking the block type.
157 */
158 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE,
159 GL_SKIP, &i_gh);
160 if (error)
161 goto fail_put;
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500162
163 if (blktype != GFS2_BLKST_FREE) {
164 error = gfs2_check_blk_type(sdp, no_addr,
165 blktype);
166 if (error)
167 goto fail_put;
168 }
169 }
170
Steven Whitehouse194c0112011-05-09 14:06:38 +0100171 set_bit(GIF_INVALID, &ip->i_flags);
172 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
173 if (unlikely(error))
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500174 goto fail_put;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100175
176 ip->i_iopen_gh.gh_gl->gl_object = ip;
177 gfs2_glock_put(io_gl);
178 io_gl = NULL;
179
180 if (type == DT_UNKNOWN) {
181 /* Inode glock must be locked already */
182 error = gfs2_inode_refresh(GFS2_I(inode));
183 if (error)
184 goto fail_refresh;
185 } else {
186 inode->i_mode = DT2IF(type);
187 }
188
189 gfs2_set_iop(inode);
190 unlock_new_inode(inode);
191 }
192
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500193 if (gfs2_holder_initialized(&i_gh))
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500194 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100195 return inode;
196
197fail_refresh:
Bob Petersona6a4d982013-05-29 11:51:52 -0400198 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100199 ip->i_iopen_gh.gh_gl->gl_object = NULL;
Bob Peterson86d067a2015-12-07 15:10:42 -0600200 gfs2_glock_dq_wait(&ip->i_iopen_gh);
201 gfs2_holder_uninit(&ip->i_iopen_gh);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500202fail_put:
Steven Whitehouse194c0112011-05-09 14:06:38 +0100203 if (io_gl)
204 gfs2_glock_put(io_gl);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500205 if (gfs2_holder_initialized(&i_gh))
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500206 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100207 ip->i_gl->gl_object = NULL;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100208fail:
209 iget_failed(inode);
210 return ERR_PTR(error);
211}
212
213struct inode *gfs2_lookup_by_inum(struct gfs2_sbd *sdp, u64 no_addr,
214 u64 *no_formal_ino, unsigned int blktype)
215{
216 struct super_block *sb = sdp->sd_vfs;
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500217 struct inode *inode;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100218 int error;
219
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500220 inode = gfs2_inode_lookup(sb, DT_UNKNOWN, no_addr, 0, blktype);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100221 if (IS_ERR(inode))
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500222 return inode;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100223
224 /* Two extra checks for NFS only */
225 if (no_formal_ino) {
226 error = -ESTALE;
227 if (GFS2_I(inode)->i_no_formal_ino != *no_formal_ino)
228 goto fail_iput;
229
230 error = -EIO;
231 if (GFS2_I(inode)->i_diskflags & GFS2_DIF_SYSTEM)
232 goto fail_iput;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100233 }
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500234 return inode;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100235
Steven Whitehouse194c0112011-05-09 14:06:38 +0100236fail_iput:
237 iput(inode);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500238 return ERR_PTR(error);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100239}
240
241
242struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
243{
244 struct qstr qstr;
245 struct inode *inode;
246 gfs2_str2qstr(&qstr, name);
247 inode = gfs2_lookupi(dip, &qstr, 1);
248 /* gfs2_lookupi has inconsistent callers: vfs
249 * related routines expect NULL for no entry found,
250 * gfs2_lookup_simple callers expect ENOENT
251 * and do not check for NULL.
252 */
253 if (inode == NULL)
254 return ERR_PTR(-ENOENT);
255 else
256 return inode;
257}
258
259
260/**
261 * gfs2_lookupi - Look up a filename in a directory and return its inode
262 * @d_gh: An initialized holder for the directory glock
263 * @name: The name of the inode to look for
264 * @is_root: If 1, ignore the caller's permissions
265 * @i_gh: An uninitialized holder for the new inode glock
266 *
267 * This can be called via the VFS filldir function when NFS is doing
268 * a readdirplus and the inode which its intending to stat isn't
269 * already in cache. In this case we must not take the directory glock
270 * again, since the readdir call will have already taken that lock.
271 *
272 * Returns: errno
273 */
274
275struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
276 int is_root)
277{
278 struct super_block *sb = dir->i_sb;
279 struct gfs2_inode *dip = GFS2_I(dir);
280 struct gfs2_holder d_gh;
281 int error = 0;
282 struct inode *inode = NULL;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100283
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500284 gfs2_holder_mark_uninitialized(&d_gh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100285 if (!name->len || name->len > GFS2_FNAMESIZE)
286 return ERR_PTR(-ENAMETOOLONG);
287
288 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
289 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
David Howells2b0143b2015-03-17 22:25:59 +0000290 dir == d_inode(sb->s_root))) {
Steven Whitehouse194c0112011-05-09 14:06:38 +0100291 igrab(dir);
292 return dir;
293 }
294
295 if (gfs2_glock_is_locked_by_me(dip->i_gl) == NULL) {
296 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
297 if (error)
298 return ERR_PTR(error);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100299 }
300
301 if (!is_root) {
Al Viro10556cb2011-06-20 19:28:19 -0400302 error = gfs2_permission(dir, MAY_EXEC);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100303 if (error)
304 goto out;
305 }
306
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +0100307 inode = gfs2_dir_search(dir, name, false);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100308 if (IS_ERR(inode))
309 error = PTR_ERR(inode);
310out:
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500311 if (gfs2_holder_initialized(&d_gh))
Steven Whitehouse194c0112011-05-09 14:06:38 +0100312 gfs2_glock_dq_uninit(&d_gh);
313 if (error == -ENOENT)
314 return NULL;
315 return inode ? inode : ERR_PTR(error);
316}
317
318/**
319 * create_ok - OK to create a new on-disk inode here?
320 * @dip: Directory in which dinode is to be created
321 * @name: Name of new dinode
322 * @mode:
323 *
324 * Returns: errno
325 */
326
327static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
Al Viro175a4eb2011-07-26 03:30:54 -0400328 umode_t mode)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100329{
330 int error;
331
Al Viro10556cb2011-06-20 19:28:19 -0400332 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100333 if (error)
334 return error;
335
336 /* Don't create entries in an unlinked directory */
337 if (!dip->i_inode.i_nlink)
338 return -ENOENT;
339
Steven Whitehouse194c0112011-05-09 14:06:38 +0100340 if (dip->i_entries == (u32)-1)
341 return -EFBIG;
342 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
343 return -EMLINK;
344
345 return 0;
346}
347
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000348static void munge_mode_uid_gid(const struct gfs2_inode *dip,
349 struct inode *inode)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100350{
351 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800352 (dip->i_inode.i_mode & S_ISUID) &&
353 !uid_eq(dip->i_inode.i_uid, GLOBAL_ROOT_UID)) {
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000354 if (S_ISDIR(inode->i_mode))
355 inode->i_mode |= S_ISUID;
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800356 else if (!uid_eq(dip->i_inode.i_uid, current_fsuid()))
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000357 inode->i_mode &= ~07111;
358 inode->i_uid = dip->i_inode.i_uid;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100359 } else
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000360 inode->i_uid = current_fsuid();
Steven Whitehouse194c0112011-05-09 14:06:38 +0100361
362 if (dip->i_inode.i_mode & S_ISGID) {
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000363 if (S_ISDIR(inode->i_mode))
364 inode->i_mode |= S_ISGID;
365 inode->i_gid = dip->i_inode.i_gid;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100366 } else
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000367 inode->i_gid = current_fsgid();
Steven Whitehouse194c0112011-05-09 14:06:38 +0100368}
369
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000370static int alloc_dinode(struct gfs2_inode *ip, u32 flags, unsigned *dblocks)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100371{
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000372 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000373 struct gfs2_alloc_parms ap = { .target = *dblocks, .aflags = flags, };
Steven Whitehouse194c0112011-05-09 14:06:38 +0100374 int error;
375
Abhi Dasb8fbf472015-03-18 12:03:41 -0500376 error = gfs2_quota_lock_check(ip, &ap);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100377 if (error)
378 goto out;
379
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100380 error = gfs2_inplace_reserve(ip, &ap);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000381 if (error)
382 goto out_quota;
383
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000384 error = gfs2_trans_begin(sdp, (*dblocks * RES_RG_BIT) + RES_STATFS + RES_QUOTA, 0);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100385 if (error)
386 goto out_ipreserv;
387
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000388 error = gfs2_alloc_blocks(ip, &ip->i_no_addr, dblocks, 1, &ip->i_generation);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000389 ip->i_no_formal_ino = ip->i_generation;
390 ip->i_inode.i_ino = ip->i_no_addr;
391 ip->i_goal = ip->i_no_addr;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100392
393 gfs2_trans_end(sdp);
394
395out_ipreserv:
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000396 gfs2_inplace_release(ip);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000397out_quota:
398 gfs2_quota_unlock(ip);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100399out:
Steven Whitehouse194c0112011-05-09 14:06:38 +0100400 return error;
401}
402
Steven Whitehousef2741d92011-05-13 12:11:17 +0100403static void gfs2_init_dir(struct buffer_head *dibh,
404 const struct gfs2_inode *parent)
Steven Whitehousee2d0a132011-05-13 09:55:55 +0100405{
406 struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
407 struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
408
409 gfs2_qstr2dirent(&gfs2_qdot, GFS2_DIRENT_SIZE(gfs2_qdot.len), dent);
410 dent->de_inum = di->di_num; /* already GFS2 endian */
411 dent->de_type = cpu_to_be16(DT_DIR);
412
413 dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
414 gfs2_qstr2dirent(&gfs2_qdotdot, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
415 gfs2_inum_out(parent, dent);
416 dent->de_type = cpu_to_be16(DT_DIR);
417
418}
419
Steven Whitehouse194c0112011-05-09 14:06:38 +0100420/**
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000421 * gfs2_init_xattr - Initialise an xattr block for a new inode
422 * @ip: The inode in question
423 *
424 * This sets up an empty xattr block for a new inode, ready to
425 * take any ACLs, LSM xattrs, etc.
426 */
427
428static void gfs2_init_xattr(struct gfs2_inode *ip)
429{
430 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
431 struct buffer_head *bh;
432 struct gfs2_ea_header *ea;
433
434 bh = gfs2_meta_new(ip->i_gl, ip->i_eattr);
435 gfs2_trans_add_meta(ip->i_gl, bh);
436 gfs2_metatype_set(bh, GFS2_METATYPE_EA, GFS2_FORMAT_EA);
437 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
438
439 ea = GFS2_EA_BH2FIRST(bh);
440 ea->ea_rec_len = cpu_to_be32(sdp->sd_jbsize);
441 ea->ea_type = GFS2_EATYPE_UNUSED;
442 ea->ea_flags = GFS2_EAFLAG_LAST;
443
444 brelse(bh);
445}
446
447/**
Steven Whitehouse194c0112011-05-09 14:06:38 +0100448 * init_dinode - Fill in a new dinode structure
Steven Whitehousef2741d92011-05-13 12:11:17 +0100449 * @dip: The directory this inode is being created in
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000450 * @ip: The inode
Steven Whitehousef2741d92011-05-13 12:11:17 +0100451 * @symname: The symlink destination (if a symlink)
Steven Whitehousef2741d92011-05-13 12:11:17 +0100452 * @bhp: The buffer head (returned to caller)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100453 *
454 */
455
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000456static void init_dinode(struct gfs2_inode *dip, struct gfs2_inode *ip,
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000457 const char *symname)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100458{
Steven Whitehouse194c0112011-05-09 14:06:38 +0100459 struct gfs2_dinode *di;
460 struct buffer_head *dibh;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100461
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000462 dibh = gfs2_meta_new(ip->i_gl, ip->i_no_addr);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000463 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100464 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000465 gfs2_dinode_out(ip, di);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100466
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000467 di->di_major = cpu_to_be32(MAJOR(ip->i_inode.i_rdev));
468 di->di_minor = cpu_to_be32(MINOR(ip->i_inode.i_rdev));
Steven Whitehouse194c0112011-05-09 14:06:38 +0100469 di->__pad1 = 0;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100470 di->__pad2 = 0;
471 di->__pad3 = 0;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100472 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse194c0112011-05-09 14:06:38 +0100473 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000474 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouse160b4022011-05-13 10:34:59 +0100475
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000476 switch(ip->i_inode.i_mode & S_IFMT) {
Steven Whitehouse160b4022011-05-13 10:34:59 +0100477 case S_IFDIR:
Steven Whitehousee2d0a132011-05-13 09:55:55 +0100478 gfs2_init_dir(dibh, dip);
Steven Whitehouse160b4022011-05-13 10:34:59 +0100479 break;
480 case S_IFLNK:
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000481 memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname, ip->i_inode.i_size);
Steven Whitehouse160b4022011-05-13 10:34:59 +0100482 break;
Steven Whitehousee2d0a132011-05-13 09:55:55 +0100483 }
484
Steven Whitehouse194c0112011-05-09 14:06:38 +0100485 set_buffer_uptodate(dibh);
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000486 brelse(dibh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100487}
488
Steven Whitehouse534cf9c2014-01-06 12:03:05 +0000489/**
490 * gfs2_trans_da_blocks - Calculate number of blocks to link inode
491 * @dip: The directory we are linking into
492 * @da: The dir add information
493 * @nr_inodes: The number of inodes involved
494 *
495 * This calculate the number of blocks we need to reserve in a
496 * transaction to link @nr_inodes into a directory. In most cases
497 * @nr_inodes will be 2 (the directory plus the inode being linked in)
498 * but in case of rename, 4 may be required.
499 *
500 * Returns: Number of blocks
501 */
502
503static unsigned gfs2_trans_da_blks(const struct gfs2_inode *dip,
504 const struct gfs2_diradd *da,
505 unsigned nr_inodes)
506{
507 return da->nr_blocks + gfs2_rg_blocks(dip, da->nr_blocks) +
508 (nr_inodes * RES_DINODE) + RES_QUOTA + RES_STATFS;
509}
510
Steven Whitehouse194c0112011-05-09 14:06:38 +0100511static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000512 struct gfs2_inode *ip, struct gfs2_diradd *da)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100513{
514 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000515 struct gfs2_alloc_parms ap = { .target = da->nr_blocks, };
Steven Whitehouse194c0112011-05-09 14:06:38 +0100516 int error;
517
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000518 if (da->nr_blocks) {
Abhi Dasb8fbf472015-03-18 12:03:41 -0500519 error = gfs2_quota_lock_check(dip, &ap);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100520 if (error)
521 goto fail_quota_locks;
522
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100523 error = gfs2_inplace_reserve(dip, &ap);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100524 if (error)
525 goto fail_quota_locks;
526
Steven Whitehouse534cf9c2014-01-06 12:03:05 +0000527 error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(dip, da, 2), 0);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100528 if (error)
529 goto fail_ipreserv;
530 } else {
531 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
532 if (error)
533 goto fail_quota_locks;
534 }
535
Steven Whitehouse2b47dad2014-01-06 12:49:43 +0000536 error = gfs2_dir_add(&dip->i_inode, name, ip, da);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100537
Steven Whitehouse194c0112011-05-09 14:06:38 +0100538 gfs2_trans_end(sdp);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100539fail_ipreserv:
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000540 gfs2_inplace_release(dip);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100541fail_quota_locks:
542 gfs2_quota_unlock(dip);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100543 return error;
544}
545
H Hartley Sweeten46cc1e52011-09-23 15:51:32 -0700546static int gfs2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -0400547 void *fs_info)
548{
549 const struct xattr *xattr;
550 int err = 0;
551
552 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
553 err = __gfs2_xattr_set(inode, xattr->name, xattr->value,
554 xattr->value_len, 0,
555 GFS2_EATYPE_SECURITY);
556 if (err < 0)
557 break;
558 }
559 return err;
560}
561
Steven Whitehouse194c0112011-05-09 14:06:38 +0100562/**
Steven Whitehousef2741d92011-05-13 12:11:17 +0100563 * gfs2_create_inode - Create a new inode
564 * @dir: The parent directory
565 * @dentry: The new dentry
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100566 * @file: If non-NULL, the file which is being opened
Steven Whitehousef2741d92011-05-13 12:11:17 +0100567 * @mode: The permissions on the new inode
568 * @dev: For device nodes, this is the device number
569 * @symname: For symlinks, this is the link destination
570 * @size: The initial size of the inode (ignored for directories)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100571 *
Steven Whitehousef2741d92011-05-13 12:11:17 +0100572 * Returns: 0 on success, or error code
Steven Whitehouse194c0112011-05-09 14:06:38 +0100573 */
574
Steven Whitehousef2741d92011-05-13 12:11:17 +0100575static int gfs2_create_inode(struct inode *dir, struct dentry *dentry,
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100576 struct file *file,
Al Viro175a4eb2011-07-26 03:30:54 -0400577 umode_t mode, dev_t dev, const char *symname,
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100578 unsigned int size, int excl, int *opened)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100579{
Steven Whitehousef2741d92011-05-13 12:11:17 +0100580 const struct qstr *name = &dentry->d_name;
Christoph Hellwige01580b2013-12-20 05:16:52 -0800581 struct posix_acl *default_acl, *acl;
Steven Whitehousef2741d92011-05-13 12:11:17 +0100582 struct gfs2_holder ghs[2];
Steven Whitehouse194c0112011-05-09 14:06:38 +0100583 struct inode *inode = NULL;
Bob Peterson8e2e0042012-07-19 08:12:40 -0400584 struct gfs2_inode *dip = GFS2_I(dir), *ip;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100585 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Bob Petersona4923862015-12-07 16:24:27 -0600586 struct gfs2_glock *io_gl = NULL;
Bob Peterson783013c2015-12-04 10:19:14 -0600587 int error, free_vfs_inode = 1;
Steven Whitehouse9dbe9612012-10-31 10:37:10 +0000588 u32 aflags = 0;
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000589 unsigned blocks = 1;
Bob Peterson19aeb5a2014-09-29 08:52:04 -0400590 struct gfs2_diradd da = { .bh = NULL, .save_loc = 1, };
Steven Whitehouse194c0112011-05-09 14:06:38 +0100591
592 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousef2741d92011-05-13 12:11:17 +0100593 return -ENAMETOOLONG;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100594
Bob Petersonb54e9a02015-10-26 10:40:28 -0500595 error = gfs2_rsqa_alloc(dip);
Bob Peterson0a305e42012-06-06 11:17:59 +0100596 if (error)
597 return error;
598
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000599 error = gfs2_rindex_update(sdp);
600 if (error)
601 return error;
602
Steven Whitehousef2741d92011-05-13 12:11:17 +0100603 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100604 if (error)
605 goto fail;
606
607 error = create_ok(dip, name, mode);
608 if (error)
609 goto fail_gunlock;
610
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +0100611 inode = gfs2_dir_search(dir, &dentry->d_name, !S_ISREG(mode) || excl);
612 error = PTR_ERR(inode);
613 if (!IS_ERR(inode)) {
Al Viro571a4b52014-11-19 19:34:49 +0000614 if (S_ISDIR(inode->i_mode)) {
615 iput(inode);
616 inode = ERR_PTR(-EISDIR);
617 goto fail_gunlock;
618 }
Al Viro44bb31b2014-11-19 19:35:24 +0000619 d_instantiate(dentry, inode);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100620 error = 0;
Miklos Szeredi0d0d1102013-09-16 14:52:00 +0200621 if (file) {
Al Viro44bb31b2014-11-19 19:35:24 +0000622 if (S_ISREG(inode->i_mode))
Miklos Szeredi5ca1db42013-09-23 13:21:04 +0100623 error = finish_open(file, dentry, gfs2_open_common, opened);
Al Viro44bb31b2014-11-19 19:35:24 +0000624 else
625 error = finish_no_open(file, NULL);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100626 }
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +0100627 gfs2_glock_dq_uninit(ghs);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100628 return error;
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +0100629 } else if (error != -ENOENT) {
630 goto fail_gunlock;
631 }
632
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000633 error = gfs2_diradd_alloc_required(dir, name, &da);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000634 if (error < 0)
635 goto fail_gunlock;
636
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000637 inode = new_inode(sdp->sd_vfs);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000638 error = -ENOMEM;
639 if (!inode)
640 goto fail_gunlock;
641
Christoph Hellwige01580b2013-12-20 05:16:52 -0800642 error = posix_acl_create(dir, &mode, &default_acl, &acl);
643 if (error)
Bob Peterson783013c2015-12-04 10:19:14 -0600644 goto fail_gunlock;
Christoph Hellwige01580b2013-12-20 05:16:52 -0800645
Bob Peterson8e2e0042012-07-19 08:12:40 -0400646 ip = GFS2_I(inode);
Bob Petersonb54e9a02015-10-26 10:40:28 -0500647 error = gfs2_rsqa_alloc(ip);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100648 if (error)
Christoph Hellwige01580b2013-12-20 05:16:52 -0800649 goto fail_free_acls;
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000650
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000651 inode->i_mode = mode;
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000652 set_nlink(inode, S_ISDIR(mode) ? 2 : 1);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000653 inode->i_rdev = dev;
654 inode->i_size = size;
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000655 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000656 gfs2_set_inode_blocks(inode, 1);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000657 munge_mode_uid_gid(dip, inode);
Abhi Das00a158b2014-09-18 21:40:28 -0500658 check_and_update_goal(dip);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000659 ip->i_goal = dip->i_goal;
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000660 ip->i_diskflags = 0;
661 ip->i_eattr = 0;
662 ip->i_height = 0;
663 ip->i_depth = 0;
664 ip->i_entries = 0;
665
666 switch(mode & S_IFMT) {
667 case S_IFREG:
668 if ((dip->i_diskflags & GFS2_DIF_INHERIT_JDATA) ||
669 gfs2_tune_get(sdp, gt_new_files_jdata))
670 ip->i_diskflags |= GFS2_DIF_JDATA;
671 gfs2_set_aops(inode);
672 break;
673 case S_IFDIR:
674 ip->i_diskflags |= (dip->i_diskflags & GFS2_DIF_INHERIT_JDATA);
675 ip->i_diskflags |= GFS2_DIF_JDATA;
676 ip->i_entries = 2;
677 break;
678 }
Abhi Dasacc546f2015-11-10 15:07:26 -0600679
680 /* Force SYSTEM flag on all files and subdirs of a SYSTEM directory */
681 if (dip->i_diskflags & GFS2_DIF_SYSTEM)
682 ip->i_diskflags |= GFS2_DIF_SYSTEM;
683
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000684 gfs2_set_inode_flags(inode);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000685
David Howells2b0143b2015-03-17 22:25:59 +0000686 if ((GFS2_I(d_inode(sdp->sd_root_dir)) == dip) ||
Steven Whitehouse9dbe9612012-10-31 10:37:10 +0000687 (dip->i_diskflags & GFS2_DIF_TOPDIR))
688 aflags |= GFS2_AF_ORLOV;
689
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000690 if (default_acl || acl)
691 blocks++;
692
693 error = alloc_dinode(ip, aflags, &blocks);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000694 if (error)
695 goto fail_free_inode;
696
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000697 gfs2_set_inode_blocks(inode, blocks);
698
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000699 error = gfs2_glock_get(sdp, ip->i_no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
700 if (error)
701 goto fail_free_inode;
702
Bob Peterson1e2d9d42012-11-21 09:56:00 -0500703 ip->i_gl->gl_object = ip;
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000704 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
705 if (error)
706 goto fail_free_inode;
707
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000708 error = gfs2_trans_begin(sdp, blocks, 0);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000709 if (error)
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100710 goto fail_gunlock2;
Bob Peterson0a305e42012-06-06 11:17:59 +0100711
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000712 if (blocks > 1) {
713 ip->i_eattr = ip->i_no_addr + 1;
714 gfs2_init_xattr(ip);
715 }
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000716 init_dinode(dip, ip, symname);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000717 gfs2_trans_end(sdp);
718
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000719 error = gfs2_glock_get(sdp, ip->i_no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
720 if (error)
721 goto fail_gunlock2;
722
Bob Petersona4923862015-12-07 16:24:27 -0600723 BUG_ON(test_and_set_bit(GLF_INODE_CREATING, &io_gl->gl_flags));
724
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000725 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
726 if (error)
727 goto fail_gunlock2;
728
729 ip->i_iopen_gh.gh_gl->gl_object = ip;
730 gfs2_glock_put(io_gl);
731 gfs2_set_iop(inode);
732 insert_inode_hash(inode);
733
Bob Peterson783013c2015-12-04 10:19:14 -0600734 free_vfs_inode = 0; /* After this point, the inode is no longer
735 considered free. Any failures need to undo
736 the gfs2 structures. */
Christoph Hellwige01580b2013-12-20 05:16:52 -0800737 if (default_acl) {
Al Viro1a39ba92016-05-13 03:59:17 +0200738 error = __gfs2_set_acl(inode, default_acl, ACL_TYPE_DEFAULT);
Christoph Hellwige01580b2013-12-20 05:16:52 -0800739 posix_acl_release(default_acl);
740 }
741 if (acl) {
742 if (!error)
Al Viro1a39ba92016-05-13 03:59:17 +0200743 error = __gfs2_set_acl(inode, acl, ACL_TYPE_ACCESS);
Christoph Hellwige01580b2013-12-20 05:16:52 -0800744 posix_acl_release(acl);
745 }
746
Steven Whitehouse194c0112011-05-09 14:06:38 +0100747 if (error)
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000748 goto fail_gunlock3;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100749
Bob Petersonf45dc262014-03-19 09:37:00 -0400750 error = security_inode_init_security(&ip->i_inode, &dip->i_inode, name,
751 &gfs2_initxattrs, NULL);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100752 if (error)
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000753 goto fail_gunlock3;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100754
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000755 error = link_dinode(dip, name, ip, &da);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100756 if (error)
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000757 goto fail_gunlock3;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100758
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000759 mark_inode_dirty(inode);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100760 d_instantiate(dentry, inode);
Miklos Szeredic5bf8fe2013-09-16 14:52:03 +0200761 if (file) {
762 *opened |= FILE_CREATED;
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100763 error = finish_open(file, dentry, gfs2_open_common, opened);
Miklos Szeredic5bf8fe2013-09-16 14:52:03 +0200764 }
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000765 gfs2_glock_dq_uninit(ghs);
766 gfs2_glock_dq_uninit(ghs + 1);
Bob Petersona4923862015-12-07 16:24:27 -0600767 clear_bit(GLF_INODE_CREATING, &io_gl->gl_flags);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100768 return error;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100769
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000770fail_gunlock3:
Bob Peterson783013c2015-12-04 10:19:14 -0600771 gfs2_glock_dq_uninit(&ip->i_iopen_gh);
772 gfs2_glock_put(io_gl);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100773fail_gunlock2:
Bob Petersona4923862015-12-07 16:24:27 -0600774 if (io_gl)
775 clear_bit(GLF_INODE_CREATING, &io_gl->gl_flags);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100776 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000777fail_free_inode:
778 if (ip->i_gl)
779 gfs2_glock_put(ip->i_gl);
Bob Petersonb54e9a02015-10-26 10:40:28 -0500780 gfs2_rsqa_delete(ip, NULL);
Christoph Hellwige01580b2013-12-20 05:16:52 -0800781fail_free_acls:
782 if (default_acl)
783 posix_acl_release(default_acl);
784 if (acl)
785 posix_acl_release(acl);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100786fail_gunlock:
Steven Whitehouse2b47dad2014-01-06 12:49:43 +0000787 gfs2_dir_no_add(&da);
Steven Whitehousef2741d92011-05-13 12:11:17 +0100788 gfs2_glock_dq_uninit(ghs);
Steven Whitehouse40ac2182011-08-02 13:17:27 +0100789 if (inode && !IS_ERR(inode)) {
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000790 clear_nlink(inode);
Abhi Das05978802014-03-31 10:33:17 -0500791 if (!free_vfs_inode)
792 mark_inode_dirty(inode);
793 set_bit(free_vfs_inode ? GIF_FREE_VFS_INODE : GIF_ALLOC_FAILED,
794 &GFS2_I(inode)->i_flags);
Steven Whitehouse40ac2182011-08-02 13:17:27 +0100795 iput(inode);
796 }
Steven Whitehouse194c0112011-05-09 14:06:38 +0100797fail:
Steven Whitehousef2741d92011-05-13 12:11:17 +0100798 return error;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100799}
Steven Whitehousef2741d92011-05-13 12:11:17 +0100800
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801/**
802 * gfs2_create - Create a file
803 * @dir: The directory in which to create the file
804 * @dentry: The dentry of the new file
805 * @mode: The mode of the new file
806 *
807 * Returns: errno
808 */
809
810static int gfs2_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -0400811 umode_t mode, bool excl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812{
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100813 return gfs2_create_inode(dir, dentry, NULL, S_IFREG | mode, 0, NULL, 0, excl, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814}
815
816/**
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100817 * __gfs2_lookup - Look up a filename in a directory and return its inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 * @dir: The directory inode
819 * @dentry: The dentry of the new inode
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100820 * @file: File to be opened
821 * @opened: atomic_open flags
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000823 *
824 * Returns: errno
825 */
826
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100827static struct dentry *__gfs2_lookup(struct inode *dir, struct dentry *dentry,
828 struct file *file, int *opened)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000829{
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100830 struct inode *inode;
831 struct dentry *d;
832 struct gfs2_holder gh;
833 struct gfs2_glock *gl;
834 int error;
835
836 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
Benjamin Coddington7b7a9112014-09-10 14:09:20 -0400837 if (inode == NULL) {
838 d_add(dentry, NULL);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100839 return NULL;
Benjamin Coddington7b7a9112014-09-10 14:09:20 -0400840 }
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100841 if (IS_ERR(inode))
842 return ERR_CAST(inode);
843
844 gl = GFS2_I(inode)->i_gl;
845 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
846 if (error) {
847 iput(inode);
848 return ERR_PTR(error);
Steven Whitehouse9656b2c2008-01-08 08:14:30 +0000849 }
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100850
851 d = d_splice_alias(inode, dentry);
J. Bruce Fieldsd57b9c92014-01-16 13:51:07 -0500852 if (IS_ERR(d)) {
J. Bruce Fieldsd57b9c92014-01-16 13:51:07 -0500853 gfs2_glock_dq_uninit(&gh);
854 return d;
855 }
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100856 if (file && S_ISREG(inode->i_mode))
857 error = finish_open(file, dentry, gfs2_open_common, opened);
858
859 gfs2_glock_dq_uninit(&gh);
Miklos Szeredi5ca1db42013-09-23 13:21:04 +0100860 if (error) {
861 dput(d);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100862 return ERR_PTR(error);
Miklos Szeredi5ca1db42013-09-23 13:21:04 +0100863 }
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100864 return d;
865}
866
867static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
868 unsigned flags)
869{
870 return __gfs2_lookup(dir, dentry, NULL, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000871}
872
873/**
874 * gfs2_link - Link to a file
875 * @old_dentry: The inode to link
876 * @dir: Add link to this directory
877 * @dentry: The name of the link
878 *
879 * Link the inode in "old_dentry" into the directory "dir" with the
880 * name in "dentry".
881 *
882 * Returns: errno
883 */
884
885static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
886 struct dentry *dentry)
887{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400888 struct gfs2_inode *dip = GFS2_I(dir);
889 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Howells2b0143b2015-03-17 22:25:59 +0000890 struct inode *inode = d_inode(old_dentry);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400891 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892 struct gfs2_holder ghs[2];
Steven Whitehouse2baee032011-05-09 12:08:36 +0100893 struct buffer_head *dibh;
Bob Peterson19aeb5a2014-09-29 08:52:04 -0400894 struct gfs2_diradd da = { .bh = NULL, .save_loc = 1, };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895 int error;
896
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500897 if (S_ISDIR(inode->i_mode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000898 return -EPERM;
899
Bob Petersonb54e9a02015-10-26 10:40:28 -0500900 error = gfs2_rsqa_alloc(dip);
Bob Peterson0a305e42012-06-06 11:17:59 +0100901 if (error)
902 return error;
903
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
905 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
906
Bob Peterson72dbf472008-08-12 13:39:29 -0500907 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000908 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500909 goto out_parent;
910
911 error = gfs2_glock_nq(ghs + 1); /* child */
912 if (error)
913 goto out_child;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000914
Steven Whitehoused192a8e2011-05-05 12:35:40 +0100915 error = -ENOENT;
916 if (inode->i_nlink == 0)
917 goto out_gunlock;
918
Al Viro10556cb2011-06-20 19:28:19 -0400919 error = gfs2_permission(dir, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000920 if (error)
921 goto out_gunlock;
922
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100923 error = gfs2_dir_check(dir, &dentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924 switch (error) {
925 case -ENOENT:
926 break;
927 case 0:
928 error = -EEXIST;
929 default:
930 goto out_gunlock;
931 }
932
933 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500934 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935 goto out_gunlock;
936 error = -EFBIG;
Steven Whitehousead6203f2008-11-03 13:59:19 +0000937 if (dip->i_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000938 goto out_gunlock;
939 error = -EPERM;
940 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
941 goto out_gunlock;
942 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500943 if (!ip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000944 goto out_gunlock;
945 error = -EMLINK;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500946 if (ip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000947 goto out_gunlock;
948
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000949 error = gfs2_diradd_alloc_required(dir, &dentry->d_name, &da);
Steven Whitehousec7526662006-03-20 12:30:04 -0500950 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951 goto out_gunlock;
952
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000953 if (da.nr_blocks) {
954 struct gfs2_alloc_parms ap = { .target = da.nr_blocks, };
Abhi Dasb8fbf472015-03-18 12:03:41 -0500955 error = gfs2_quota_lock_check(dip, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000956 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -0400957 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100959 error = gfs2_inplace_reserve(dip, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960 if (error)
961 goto out_gunlock_q;
962
Steven Whitehouse534cf9c2014-01-06 12:03:05 +0000963 error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(dip, &da, 2), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000964 if (error)
965 goto out_ipres;
966 } else {
967 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
968 if (error)
969 goto out_ipres;
970 }
971
Steven Whitehouse2baee032011-05-09 12:08:36 +0100972 error = gfs2_meta_inode_buffer(ip, &dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000973 if (error)
974 goto out_end_trans;
975
Steven Whitehouse2b47dad2014-01-06 12:49:43 +0000976 error = gfs2_dir_add(dir, &dentry->d_name, ip, &da);
Steven Whitehouse2baee032011-05-09 12:08:36 +0100977 if (error)
978 goto out_brelse;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000979
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000980 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehouse2baee032011-05-09 12:08:36 +0100981 inc_nlink(&ip->i_inode);
982 ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100983 ihold(inode);
984 d_instantiate(dentry, inode);
985 mark_inode_dirty(inode);
Steven Whitehouse2baee032011-05-09 12:08:36 +0100986
987out_brelse:
988 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400989out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000990 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400991out_ipres:
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000992 if (da.nr_blocks)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000993 gfs2_inplace_release(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400994out_gunlock_q:
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000995 if (da.nr_blocks)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000996 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400997out_gunlock:
Steven Whitehouse2b47dad2014-01-06 12:49:43 +0000998 gfs2_dir_no_add(&da);
Bob Peterson72dbf472008-08-12 13:39:29 -0500999 gfs2_glock_dq(ghs + 1);
1000out_child:
1001 gfs2_glock_dq(ghs);
1002out_parent:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001003 gfs2_holder_uninit(ghs);
1004 gfs2_holder_uninit(ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 return error;
1006}
1007
Steven Whitehouse87ec2172009-05-22 10:54:50 +01001008/*
1009 * gfs2_unlink_ok - check to see that a inode is still in a directory
1010 * @dip: the directory
1011 * @name: the name of the file
1012 * @ip: the inode
1013 *
1014 * Assumes that the lock on (at least) @dip is held.
1015 *
1016 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1017 */
1018
1019static int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
1020 const struct gfs2_inode *ip)
1021{
1022 int error;
1023
1024 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
1025 return -EPERM;
1026
1027 if ((dip->i_inode.i_mode & S_ISVTX) &&
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001028 !uid_eq(dip->i_inode.i_uid, current_fsuid()) &&
1029 !uid_eq(ip->i_inode.i_uid, current_fsuid()) && !capable(CAP_FOWNER))
Steven Whitehouse87ec2172009-05-22 10:54:50 +01001030 return -EPERM;
1031
1032 if (IS_APPEND(&dip->i_inode))
1033 return -EPERM;
1034
Al Viro10556cb2011-06-20 19:28:19 -04001035 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
Steven Whitehouse87ec2172009-05-22 10:54:50 +01001036 if (error)
1037 return error;
1038
Fabian Frederick37975f12014-10-09 22:49:21 +02001039 return gfs2_dir_check(&dip->i_inode, name, ip);
Steven Whitehouse87ec2172009-05-22 10:54:50 +01001040}
1041
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042/**
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001043 * gfs2_unlink_inode - Removes an inode from its parent dir and unlinks it
1044 * @dip: The parent directory
1045 * @name: The name of the entry in the parent directory
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001046 * @inode: The inode to be removed
1047 *
1048 * Called with all the locks and in a transaction. This will only be
1049 * called for a directory after it has been checked to ensure it is empty.
1050 *
1051 * Returns: 0 on success, or an error
1052 */
1053
1054static int gfs2_unlink_inode(struct gfs2_inode *dip,
Bob Peterson4327a9b2012-11-12 13:03:29 -05001055 const struct dentry *dentry)
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001056{
David Howells2b0143b2015-03-17 22:25:59 +00001057 struct inode *inode = d_inode(dentry);
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001058 struct gfs2_inode *ip = GFS2_I(inode);
1059 int error;
1060
1061 error = gfs2_dir_del(dip, dentry);
1062 if (error)
1063 return error;
1064
1065 ip->i_entries = 0;
1066 inode->i_ctime = CURRENT_TIME;
1067 if (S_ISDIR(inode->i_mode))
1068 clear_nlink(inode);
1069 else
1070 drop_nlink(inode);
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001071 mark_inode_dirty(inode);
1072 if (inode->i_nlink == 0)
1073 gfs2_unlink_di(inode);
1074 return 0;
1075}
1076
1077
1078/**
1079 * gfs2_unlink - Unlink an inode (this does rmdir as well)
1080 * @dir: The inode of the directory containing the inode to unlink
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 * @dentry: The file itself
1082 *
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001083 * This routine uses the type of the inode as a flag to figure out
1084 * whether this is an unlink or an rmdir.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085 *
1086 * Returns: errno
1087 */
1088
1089static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
1090{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001091 struct gfs2_inode *dip = GFS2_I(dir);
1092 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Howells2b0143b2015-03-17 22:25:59 +00001093 struct inode *inode = d_inode(dentry);
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001094 struct gfs2_inode *ip = GFS2_I(inode);
Russell Cattelanddee7602007-01-29 17:13:44 -06001095 struct gfs2_holder ghs[3];
1096 struct gfs2_rgrpd *rgd;
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001097 int error;
1098
1099 error = gfs2_rindex_update(sdp);
1100 if (error)
1101 return error;
1102
1103 error = -EROFS;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001104
Russell Cattelanddee7602007-01-29 17:13:44 -06001105 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
1106 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
1107
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001108 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
Steven Whitehousea365fbf2012-02-24 15:09:14 +00001109 if (!rgd)
Steven Whitehouse87654892011-11-08 14:04:20 +00001110 goto out_inodes;
Steven Whitehousea365fbf2012-02-24 15:09:14 +00001111
Russell Cattelanddee7602007-01-29 17:13:44 -06001112 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
1113
1114
Steven Whitehouse8497a462007-08-26 14:23:56 +01001115 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116 if (error)
Steven Whitehouse8497a462007-08-26 14:23:56 +01001117 goto out_parent;
1118
1119 error = gfs2_glock_nq(ghs + 1); /* child */
1120 if (error)
1121 goto out_child;
1122
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001123 error = -ENOENT;
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001124 if (inode->i_nlink == 0)
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001125 goto out_rgrp;
1126
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001127 if (S_ISDIR(inode->i_mode)) {
1128 error = -ENOTEMPTY;
1129 if (ip->i_entries > 2 || inode->i_nlink > 2)
1130 goto out_rgrp;
1131 }
1132
Steven Whitehouse8497a462007-08-26 14:23:56 +01001133 error = gfs2_glock_nq(ghs + 2); /* rgrp */
1134 if (error)
1135 goto out_rgrp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001136
1137 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
1138 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -05001139 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001140
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001141 error = gfs2_trans_begin(sdp, 2*RES_DINODE + 3*RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001142 if (error)
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001143 goto out_end_trans;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001144
Bob Peterson4327a9b2012-11-12 13:03:29 -05001145 error = gfs2_unlink_inode(dip, dentry);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001146
1147out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001148 gfs2_trans_end(sdp);
Bob Peterson72dbf472008-08-12 13:39:29 -05001149out_gunlock:
Steven Whitehouse8497a462007-08-26 14:23:56 +01001150 gfs2_glock_dq(ghs + 2);
1151out_rgrp:
Steven Whitehouse8497a462007-08-26 14:23:56 +01001152 gfs2_glock_dq(ghs + 1);
1153out_child:
Steven Whitehouse8497a462007-08-26 14:23:56 +01001154 gfs2_glock_dq(ghs);
1155out_parent:
Steven Whitehouse87654892011-11-08 14:04:20 +00001156 gfs2_holder_uninit(ghs + 2);
1157out_inodes:
1158 gfs2_holder_uninit(ghs + 1);
Steven Whitehouse8497a462007-08-26 14:23:56 +01001159 gfs2_holder_uninit(ghs);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001160 return error;
1161}
1162
1163/**
1164 * gfs2_symlink - Create a symlink
1165 * @dir: The directory to create the symlink in
1166 * @dentry: The dentry to put the symlink in
1167 * @symname: The thing which the link points to
1168 *
1169 * Returns: errno
1170 */
1171
1172static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
1173 const char *symname)
1174{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001175 struct gfs2_sbd *sdp = GFS2_SB(dir);
Steven Whitehouse160b4022011-05-13 10:34:59 +01001176 unsigned int size;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001177
David Teiglandb3b94fa2006-01-16 16:50:04 +00001178 size = strlen(symname);
1179 if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode) - 1)
1180 return -ENAMETOOLONG;
1181
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001182 return gfs2_create_inode(dir, dentry, NULL, S_IFLNK | S_IRWXUGO, 0, symname, size, 0, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001183}
1184
1185/**
1186 * gfs2_mkdir - Make a directory
1187 * @dir: The parent directory of the new one
1188 * @dentry: The dentry of the new directory
1189 * @mode: The mode of the new directory
1190 *
1191 * Returns: errno
1192 */
1193
Al Viro18bb1db2011-07-26 01:41:39 -04001194static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001195{
Steven Whitehouse28fb3022013-02-26 19:09:35 +00001196 struct gfs2_sbd *sdp = GFS2_SB(dir);
1197 unsigned dsize = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001198 return gfs2_create_inode(dir, dentry, NULL, S_IFDIR | mode, 0, NULL, dsize, 0, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001199}
1200
1201/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202 * gfs2_mknod - Make a special file
1203 * @dir: The directory in which the special file will reside
1204 * @dentry: The dentry of the special file
1205 * @mode: The mode of the special file
Steven Whitehousef2741d92011-05-13 12:11:17 +01001206 * @dev: The device specification of the special file
David Teiglandb3b94fa2006-01-16 16:50:04 +00001207 *
1208 */
1209
Al Viro1a67aaf2011-07-26 01:52:52 -04001210static int gfs2_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 dev_t dev)
1212{
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001213 return gfs2_create_inode(dir, dentry, NULL, mode, dev, NULL, 0, 0, NULL);
1214}
1215
1216/**
1217 * gfs2_atomic_open - Atomically open a file
1218 * @dir: The directory
1219 * @dentry: The proposed new entry
1220 * @file: The proposed new struct file
1221 * @flags: open flags
1222 * @mode: File mode
1223 * @opened: Flag to say whether the file has been opened or not
1224 *
1225 * Returns: error code or 0 for success
1226 */
1227
1228static int gfs2_atomic_open(struct inode *dir, struct dentry *dentry,
Antonio Ospite86fbca42015-05-01 12:54:38 -05001229 struct file *file, unsigned flags,
1230 umode_t mode, int *opened)
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001231{
1232 struct dentry *d;
1233 bool excl = !!(flags & O_EXCL);
1234
Al Viro00699ad2016-07-05 09:44:53 -04001235 if (!d_in_lookup(dentry))
Al Viro4d93bc32014-09-12 18:21:05 -04001236 goto skip_lookup;
1237
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001238 d = __gfs2_lookup(dir, dentry, file, opened);
1239 if (IS_ERR(d))
1240 return PTR_ERR(d);
Miklos Szeredi5ca1db42013-09-23 13:21:04 +01001241 if (d != NULL)
1242 dentry = d;
David Howells2b0143b2015-03-17 22:25:59 +00001243 if (d_really_is_positive(dentry)) {
Al Viroec7d8792014-11-19 19:35:58 +00001244 if (!(*opened & FILE_OPENED))
1245 return finish_no_open(file, d);
Miklos Szeredi5ca1db42013-09-23 13:21:04 +01001246 dput(d);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001247 return 0;
1248 }
1249
Miklos Szeredi5ca1db42013-09-23 13:21:04 +01001250 BUG_ON(d != NULL);
Al Viro4d93bc32014-09-12 18:21:05 -04001251
1252skip_lookup:
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001253 if (!(flags & O_CREAT))
1254 return -ENOENT;
1255
1256 return gfs2_create_inode(dir, dentry, file, S_IFREG | mode, 0, NULL, 0, excl, opened);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001257}
1258
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001259/*
1260 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1261 * @this: move this
1262 * @to: to here
1263 *
1264 * Follow @to back to the root and make sure we don't encounter @this
1265 * Assumes we already hold the rename lock.
1266 *
1267 * Returns: errno
1268 */
1269
1270static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1271{
1272 struct inode *dir = &to->i_inode;
1273 struct super_block *sb = dir->i_sb;
1274 struct inode *tmp;
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001275 int error = 0;
1276
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001277 igrab(dir);
1278
1279 for (;;) {
1280 if (dir == &this->i_inode) {
1281 error = -EINVAL;
1282 break;
1283 }
David Howells2b0143b2015-03-17 22:25:59 +00001284 if (dir == d_inode(sb->s_root)) {
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001285 error = 0;
1286 break;
1287 }
1288
Steven Whitehouse8d123582010-09-17 12:30:23 +01001289 tmp = gfs2_lookupi(dir, &gfs2_qdotdot, 1);
Abhi Das48f8f712014-03-12 03:41:44 -05001290 if (!tmp) {
1291 error = -ENOENT;
1292 break;
1293 }
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001294 if (IS_ERR(tmp)) {
1295 error = PTR_ERR(tmp);
1296 break;
1297 }
1298
1299 iput(dir);
1300 dir = tmp;
1301 }
1302
1303 iput(dir);
1304
1305 return error;
1306}
1307
David Teiglandb3b94fa2006-01-16 16:50:04 +00001308/**
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001309 * update_moved_ino - Update an inode that's being moved
1310 * @ip: The inode being moved
1311 * @ndip: The parent directory of the new filename
1312 * @dir_rename: True of ip is a directory
1313 *
1314 * Returns: errno
1315 */
1316
1317static int update_moved_ino(struct gfs2_inode *ip, struct gfs2_inode *ndip,
1318 int dir_rename)
1319{
1320 int error;
1321 struct buffer_head *dibh;
1322
1323 if (dir_rename)
1324 return gfs2_dir_mvino(ip, &gfs2_qdotdot, ndip, DT_DIR);
1325
1326 error = gfs2_meta_inode_buffer(ip, &dibh);
1327 if (error)
1328 return error;
1329 ip->i_inode.i_ctime = CURRENT_TIME;
1330 gfs2_trans_add_meta(ip->i_gl, dibh);
1331 gfs2_dinode_out(ip, dibh->b_data);
1332 brelse(dibh);
1333 return 0;
1334}
1335
1336
1337/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001338 * gfs2_rename - Rename a file
1339 * @odir: Parent directory of old file name
1340 * @odentry: The old dentry of the file
1341 * @ndir: Parent directory of new file name
1342 * @ndentry: The new dentry of the file
1343 *
1344 * Returns: errno
1345 */
1346
1347static int gfs2_rename(struct inode *odir, struct dentry *odentry,
1348 struct inode *ndir, struct dentry *ndentry)
1349{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001350 struct gfs2_inode *odip = GFS2_I(odir);
1351 struct gfs2_inode *ndip = GFS2_I(ndir);
David Howells2b0143b2015-03-17 22:25:59 +00001352 struct gfs2_inode *ip = GFS2_I(d_inode(odentry));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001353 struct gfs2_inode *nip = NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001354 struct gfs2_sbd *sdp = GFS2_SB(odir);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001355 struct gfs2_holder ghs[5], r_gh;
Russell Cattelanddee7602007-01-29 17:13:44 -06001356 struct gfs2_rgrpd *nrgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001357 unsigned int num_gh;
1358 int dir_rename = 0;
Bob Peterson19aeb5a2014-09-29 08:52:04 -04001359 struct gfs2_diradd da = { .nr_blocks = 0, .save_loc = 0, };
David Teiglandb3b94fa2006-01-16 16:50:04 +00001360 unsigned int x;
1361 int error;
1362
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001363 gfs2_holder_mark_uninitialized(&r_gh);
David Howells2b0143b2015-03-17 22:25:59 +00001364 if (d_really_is_positive(ndentry)) {
1365 nip = GFS2_I(d_inode(ndentry));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001366 if (ip == nip)
1367 return 0;
1368 }
1369
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001370 error = gfs2_rindex_update(sdp);
1371 if (error)
1372 return error;
1373
Bob Petersonb54e9a02015-10-26 10:40:28 -05001374 error = gfs2_rsqa_alloc(ndip);
Bob Peterson0a305e42012-06-06 11:17:59 +01001375 if (error)
1376 return error;
1377
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001378 if (odip != ndip) {
1379 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
1380 0, &r_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001381 if (error)
1382 goto out;
1383
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001384 if (S_ISDIR(ip->i_inode.i_mode)) {
1385 dir_rename = 1;
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001386 /* don't move a directory into its subdir */
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001387 error = gfs2_ok_to_move(ip, ndip);
1388 if (error)
1389 goto out_gunlock_r;
1390 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001391 }
1392
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001393 num_gh = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001394 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001395 if (odip != ndip) {
1396 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1397 num_gh++;
1398 }
1399 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1400 num_gh++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001401
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001402 if (nip) {
1403 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1404 num_gh++;
Russell Cattelanddee7602007-01-29 17:13:44 -06001405 /* grab the resource lock for unlink flag twiddling
1406 * this is the case of the target file already existing
1407 * so we unlink before doing the rename
1408 */
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001409 nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr, 1);
Russell Cattelanddee7602007-01-29 17:13:44 -06001410 if (nrgd)
1411 gfs2_holder_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh++);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001412 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001413
Bob Peterson72dbf472008-08-12 13:39:29 -05001414 for (x = 0; x < num_gh; x++) {
1415 error = gfs2_glock_nq(ghs + x);
1416 if (error)
1417 goto out_gunlock;
1418 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001419
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001420 error = -ENOENT;
1421 if (ip->i_inode.i_nlink == 0)
1422 goto out_gunlock;
1423
David Teiglandb3b94fa2006-01-16 16:50:04 +00001424 /* Check out the old directory */
1425
1426 error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
1427 if (error)
1428 goto out_gunlock;
1429
1430 /* Check out the new directory */
1431
1432 if (nip) {
1433 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
1434 if (error)
1435 goto out_gunlock;
1436
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001437 if (nip->i_inode.i_nlink == 0) {
1438 error = -EAGAIN;
1439 goto out_gunlock;
1440 }
1441
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001442 if (S_ISDIR(nip->i_inode.i_mode)) {
Steven Whitehousead6203f2008-11-03 13:59:19 +00001443 if (nip->i_entries < 2) {
Steven Whitehouse94fb7632011-05-09 13:36:10 +01001444 gfs2_consist_inode(nip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001445 error = -EIO;
1446 goto out_gunlock;
1447 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001448 if (nip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001449 error = -ENOTEMPTY;
1450 goto out_gunlock;
1451 }
1452 }
1453 } else {
Al Viro10556cb2011-06-20 19:28:19 -04001454 error = gfs2_permission(ndir, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001455 if (error)
1456 goto out_gunlock;
1457
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001458 error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001459 switch (error) {
1460 case -ENOENT:
1461 error = 0;
1462 break;
1463 case 0:
1464 error = -EEXIST;
1465 default:
1466 goto out_gunlock;
1467 };
1468
1469 if (odip != ndip) {
Steven Whitehouse4f561102006-11-01 14:04:17 -05001470 if (!ndip->i_inode.i_nlink) {
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001471 error = -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001472 goto out_gunlock;
1473 }
Steven Whitehousead6203f2008-11-03 13:59:19 +00001474 if (ndip->i_entries == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001475 error = -EFBIG;
1476 goto out_gunlock;
1477 }
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001478 if (S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse4f561102006-11-01 14:04:17 -05001479 ndip->i_inode.i_nlink == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001480 error = -EMLINK;
1481 goto out_gunlock;
1482 }
1483 }
1484 }
1485
1486 /* Check out the dir to be renamed */
1487
1488 if (dir_rename) {
David Howells2b0143b2015-03-17 22:25:59 +00001489 error = gfs2_permission(d_inode(odentry), MAY_WRITE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001490 if (error)
1491 goto out_gunlock;
1492 }
1493
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001494 if (nip == NULL) {
1495 error = gfs2_diradd_alloc_required(ndir, &ndentry->d_name, &da);
1496 if (error)
1497 goto out_gunlock;
1498 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001499
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001500 if (da.nr_blocks) {
1501 struct gfs2_alloc_parms ap = { .target = da.nr_blocks, };
Abhi Dasb8fbf472015-03-18 12:03:41 -05001502 error = gfs2_quota_lock_check(ndip, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001503 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04001504 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001505
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001506 error = gfs2_inplace_reserve(ndip, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001507 if (error)
1508 goto out_gunlock_q;
1509
Steven Whitehouse534cf9c2014-01-06 12:03:05 +00001510 error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(ndip, &da, 4) +
1511 4 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001512 if (error)
1513 goto out_ipreserv;
1514 } else {
1515 error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -05001516 5 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001517 if (error)
1518 goto out_gunlock;
1519 }
1520
1521 /* Remove the target file, if it exists */
1522
Bob Peterson4327a9b2012-11-12 13:03:29 -05001523 if (nip)
1524 error = gfs2_unlink_inode(ndip, ndentry);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001525
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001526 error = update_moved_ino(ip, ndip, dir_rename);
1527 if (error)
1528 goto out_end_trans;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001529
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001530 error = gfs2_dir_del(odip, odentry);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001531 if (error)
1532 goto out_end_trans;
1533
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001534 error = gfs2_dir_add(ndir, &ndentry->d_name, ip, &da);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001535 if (error)
1536 goto out_end_trans;
1537
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001538out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001539 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001540out_ipreserv:
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001541 if (da.nr_blocks)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001542 gfs2_inplace_release(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001543out_gunlock_q:
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001544 if (da.nr_blocks)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001545 gfs2_quota_unlock(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001546out_gunlock:
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001547 gfs2_dir_no_add(&da);
Bob Peterson72dbf472008-08-12 13:39:29 -05001548 while (x--) {
1549 gfs2_glock_dq(ghs + x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001550 gfs2_holder_uninit(ghs + x);
Bob Peterson72dbf472008-08-12 13:39:29 -05001551 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001552out_gunlock_r:
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001553 if (gfs2_holder_initialized(&r_gh))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001554 gfs2_glock_dq_uninit(&r_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001555out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001556 return error;
1557}
1558
1559/**
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001560 * gfs2_exchange - exchange two files
1561 * @odir: Parent directory of old file name
1562 * @odentry: The old dentry of the file
1563 * @ndir: Parent directory of new file name
1564 * @ndentry: The new dentry of the file
1565 * @flags: The rename flags
1566 *
1567 * Returns: errno
1568 */
1569
1570static int gfs2_exchange(struct inode *odir, struct dentry *odentry,
1571 struct inode *ndir, struct dentry *ndentry,
1572 unsigned int flags)
1573{
1574 struct gfs2_inode *odip = GFS2_I(odir);
1575 struct gfs2_inode *ndip = GFS2_I(ndir);
1576 struct gfs2_inode *oip = GFS2_I(odentry->d_inode);
1577 struct gfs2_inode *nip = GFS2_I(ndentry->d_inode);
1578 struct gfs2_sbd *sdp = GFS2_SB(odir);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001579 struct gfs2_holder ghs[5], r_gh;
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001580 unsigned int num_gh;
1581 unsigned int x;
1582 umode_t old_mode = oip->i_inode.i_mode;
1583 umode_t new_mode = nip->i_inode.i_mode;
1584 int error;
1585
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001586 gfs2_holder_mark_uninitialized(&r_gh);
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001587 error = gfs2_rindex_update(sdp);
1588 if (error)
1589 return error;
1590
1591 if (odip != ndip) {
1592 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
1593 0, &r_gh);
1594 if (error)
1595 goto out;
1596
1597 if (S_ISDIR(old_mode)) {
1598 /* don't move a directory into its subdir */
1599 error = gfs2_ok_to_move(oip, ndip);
1600 if (error)
1601 goto out_gunlock_r;
1602 }
1603
1604 if (S_ISDIR(new_mode)) {
1605 /* don't move a directory into its subdir */
1606 error = gfs2_ok_to_move(nip, odip);
1607 if (error)
1608 goto out_gunlock_r;
1609 }
1610 }
1611
1612 num_gh = 1;
1613 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
1614 if (odip != ndip) {
1615 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1616 num_gh++;
1617 }
1618 gfs2_holder_init(oip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1619 num_gh++;
1620
1621 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
1622 num_gh++;
1623
1624 for (x = 0; x < num_gh; x++) {
1625 error = gfs2_glock_nq(ghs + x);
1626 if (error)
1627 goto out_gunlock;
1628 }
1629
1630 error = -ENOENT;
1631 if (oip->i_inode.i_nlink == 0 || nip->i_inode.i_nlink == 0)
1632 goto out_gunlock;
1633
1634 error = gfs2_unlink_ok(odip, &odentry->d_name, oip);
1635 if (error)
1636 goto out_gunlock;
1637 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
1638 if (error)
1639 goto out_gunlock;
1640
1641 if (S_ISDIR(old_mode)) {
1642 error = gfs2_permission(odentry->d_inode, MAY_WRITE);
1643 if (error)
1644 goto out_gunlock;
1645 }
1646 if (S_ISDIR(new_mode)) {
1647 error = gfs2_permission(ndentry->d_inode, MAY_WRITE);
1648 if (error)
1649 goto out_gunlock;
1650 }
1651 error = gfs2_trans_begin(sdp, 4 * RES_DINODE + 4 * RES_LEAF, 0);
1652 if (error)
1653 goto out_gunlock;
1654
1655 error = update_moved_ino(oip, ndip, S_ISDIR(old_mode));
1656 if (error)
1657 goto out_end_trans;
1658
1659 error = update_moved_ino(nip, odip, S_ISDIR(new_mode));
1660 if (error)
1661 goto out_end_trans;
1662
1663 error = gfs2_dir_mvino(ndip, &ndentry->d_name, oip,
1664 IF2DT(old_mode));
1665 if (error)
1666 goto out_end_trans;
1667
1668 error = gfs2_dir_mvino(odip, &odentry->d_name, nip,
1669 IF2DT(new_mode));
1670 if (error)
1671 goto out_end_trans;
1672
1673 if (odip != ndip) {
1674 if (S_ISDIR(new_mode) && !S_ISDIR(old_mode)) {
1675 inc_nlink(&odip->i_inode);
1676 drop_nlink(&ndip->i_inode);
1677 } else if (S_ISDIR(old_mode) && !S_ISDIR(new_mode)) {
1678 inc_nlink(&ndip->i_inode);
1679 drop_nlink(&odip->i_inode);
1680 }
1681 }
1682 mark_inode_dirty(&ndip->i_inode);
1683 if (odip != ndip)
1684 mark_inode_dirty(&odip->i_inode);
1685
1686out_end_trans:
1687 gfs2_trans_end(sdp);
1688out_gunlock:
1689 while (x--) {
1690 gfs2_glock_dq(ghs + x);
1691 gfs2_holder_uninit(ghs + x);
1692 }
1693out_gunlock_r:
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001694 if (gfs2_holder_initialized(&r_gh))
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001695 gfs2_glock_dq_uninit(&r_gh);
1696out:
1697 return error;
1698}
1699
1700static int gfs2_rename2(struct inode *odir, struct dentry *odentry,
1701 struct inode *ndir, struct dentry *ndentry,
1702 unsigned int flags)
1703{
1704 flags &= ~RENAME_NOREPLACE;
1705
1706 if (flags & ~RENAME_EXCHANGE)
1707 return -EINVAL;
1708
1709 if (flags & RENAME_EXCHANGE)
1710 return gfs2_exchange(odir, odentry, ndir, ndentry, flags);
1711
1712 return gfs2_rename(odir, odentry, ndir, ndentry);
1713}
1714
1715/**
Al Viro6b255392015-11-17 10:20:54 -05001716 * gfs2_get_link - Follow a symbolic link
David Teiglandb3b94fa2006-01-16 16:50:04 +00001717 * @dentry: The dentry of the link
Al Viro6b255392015-11-17 10:20:54 -05001718 * @inode: The inode of the link
Al Virofceef392015-12-29 15:58:39 -05001719 * @done: destructor for return value
David Teiglandb3b94fa2006-01-16 16:50:04 +00001720 *
Al Viroc177c2a2010-01-14 00:59:16 -05001721 * This can handle symlinks of any size.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001722 *
1723 * Returns: 0 on success or error code
1724 */
1725
Al Viro6b255392015-11-17 10:20:54 -05001726static const char *gfs2_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05001727 struct inode *inode,
1728 struct delayed_call *done)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001729{
Al Viro6b255392015-11-17 10:20:54 -05001730 struct gfs2_inode *ip = GFS2_I(inode);
Al Viroc177c2a2010-01-14 00:59:16 -05001731 struct gfs2_holder i_gh;
1732 struct buffer_head *dibh;
Steven Whitehouse160b4022011-05-13 10:34:59 +01001733 unsigned int size;
Al Viroc177c2a2010-01-14 00:59:16 -05001734 char *buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001735 int error;
1736
Al Viro6b255392015-11-17 10:20:54 -05001737 if (!dentry)
1738 return ERR_PTR(-ECHILD);
1739
Al Viroc177c2a2010-01-14 00:59:16 -05001740 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
1741 error = gfs2_glock_nq(&i_gh);
1742 if (error) {
1743 gfs2_holder_uninit(&i_gh);
Al Viro680baac2015-05-02 13:32:22 -04001744 return ERR_PTR(error);
Al Viroc177c2a2010-01-14 00:59:16 -05001745 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001746
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001747 size = (unsigned int)i_size_read(&ip->i_inode);
1748 if (size == 0) {
Al Viroc177c2a2010-01-14 00:59:16 -05001749 gfs2_consist_inode(ip);
1750 buf = ERR_PTR(-EIO);
1751 goto out;
1752 }
1753
1754 error = gfs2_meta_inode_buffer(ip, &dibh);
1755 if (error) {
1756 buf = ERR_PTR(error);
1757 goto out;
1758 }
1759
Steven Whitehouse160b4022011-05-13 10:34:59 +01001760 buf = kzalloc(size + 1, GFP_NOFS);
Al Viroc177c2a2010-01-14 00:59:16 -05001761 if (!buf)
1762 buf = ERR_PTR(-ENOMEM);
1763 else
Steven Whitehouse160b4022011-05-13 10:34:59 +01001764 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
Al Viroc177c2a2010-01-14 00:59:16 -05001765 brelse(dibh);
1766out:
1767 gfs2_glock_dq_uninit(&i_gh);
Al Viro680baac2015-05-02 13:32:22 -04001768 if (!IS_ERR(buf))
Al Virofceef392015-12-29 15:58:39 -05001769 set_delayed_call(done, kfree_link, buf);
Al Viro680baac2015-05-02 13:32:22 -04001770 return buf;
Al Viroc177c2a2010-01-14 00:59:16 -05001771}
1772
David Teiglandb3b94fa2006-01-16 16:50:04 +00001773/**
1774 * gfs2_permission -
Steven Whitehouse75d5cfb2011-01-19 09:42:40 +00001775 * @inode: The inode
1776 * @mask: The mask to be tested
1777 * @flags: Indicates whether this is an RCU path walk or not
David Teiglandb3b94fa2006-01-16 16:50:04 +00001778 *
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001779 * This may be called from the VFS directly, or from within GFS2 with the
1780 * inode locked, so we look to see if the glock is already locked and only
1781 * lock the glock if its not already been done.
1782 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001783 * Returns: errno
1784 */
1785
Al Viro10556cb2011-06-20 19:28:19 -04001786int gfs2_permission(struct inode *inode, int mask)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001787{
Nick Pigginb74c79e2011-01-07 17:49:58 +11001788 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001789 struct gfs2_holder i_gh;
1790 int error;
1791
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001792 gfs2_holder_mark_uninitialized(&i_gh);
Nick Pigginb74c79e2011-01-07 17:49:58 +11001793 ip = GFS2_I(inode);
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001794 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001795 if (mask & MAY_NOT_BLOCK)
1796 return -ECHILD;
1797 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
1798 if (error)
1799 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001800 }
1801
Miklos Szeredif58ba882008-07-02 21:12:01 +02001802 if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
Eryu Guan337684a2016-08-02 19:58:28 +08001803 error = -EPERM;
Miklos Szeredif58ba882008-07-02 21:12:01 +02001804 else
Al Viro2830ba72011-06-20 19:16:29 -04001805 error = generic_permission(inode, mask);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001806 if (gfs2_holder_initialized(&i_gh))
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001807 gfs2_glock_dq_uninit(&i_gh);
1808
David Teiglandb3b94fa2006-01-16 16:50:04 +00001809 return error;
1810}
1811
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001812static int __gfs2_setattr_simple(struct inode *inode, struct iattr *attr)
Steven Whitehouse194c0112011-05-09 14:06:38 +01001813{
Steven Whitehouse194c0112011-05-09 14:06:38 +01001814 setattr_copy(inode, attr);
1815 mark_inode_dirty(inode);
Steven Whitehouse194c0112011-05-09 14:06:38 +01001816 return 0;
1817}
1818
1819/**
1820 * gfs2_setattr_simple -
1821 * @ip:
1822 * @attr:
1823 *
1824 * Returns: errno
1825 */
1826
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001827int gfs2_setattr_simple(struct inode *inode, struct iattr *attr)
Steven Whitehouse194c0112011-05-09 14:06:38 +01001828{
1829 int error;
1830
1831 if (current->journal_info)
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001832 return __gfs2_setattr_simple(inode, attr);
Steven Whitehouse194c0112011-05-09 14:06:38 +01001833
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001834 error = gfs2_trans_begin(GFS2_SB(inode), RES_DINODE, 0);
Steven Whitehouse194c0112011-05-09 14:06:38 +01001835 if (error)
1836 return error;
1837
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001838 error = __gfs2_setattr_simple(inode, attr);
1839 gfs2_trans_end(GFS2_SB(inode));
Steven Whitehouse194c0112011-05-09 14:06:38 +01001840 return error;
1841}
1842
David Teiglandb3b94fa2006-01-16 16:50:04 +00001843static int setattr_chown(struct inode *inode, struct iattr *attr)
1844{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001845 struct gfs2_inode *ip = GFS2_I(inode);
1846 struct gfs2_sbd *sdp = GFS2_SB(inode);
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -08001847 kuid_t ouid, nuid;
1848 kgid_t ogid, ngid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001849 int error;
Abhi Dasb8fbf472015-03-18 12:03:41 -05001850 struct gfs2_alloc_parms ap;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001851
Steven Whitehouse2933f922006-11-01 13:23:29 -05001852 ouid = inode->i_uid;
1853 ogid = inode->i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001854 nuid = attr->ia_uid;
1855 ngid = attr->ia_gid;
1856
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001857 if (!(attr->ia_valid & ATTR_UID) || uid_eq(ouid, nuid))
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001858 ouid = nuid = NO_UID_QUOTA_CHANGE;
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001859 if (!(attr->ia_valid & ATTR_GID) || gid_eq(ogid, ngid))
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001860 ogid = ngid = NO_GID_QUOTA_CHANGE;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001861
Bob Petersonb54e9a02015-10-26 10:40:28 -05001862 error = gfs2_rsqa_alloc(ip);
Bob Peterson62e96cf2014-01-06 17:16:01 -05001863 if (error)
1864 goto out;
1865
1866 error = gfs2_rindex_update(sdp);
1867 if (error)
1868 goto out;
1869
1870 error = gfs2_quota_lock(ip, nuid, ngid);
1871 if (error)
1872 goto out;
1873
Abhi Dasb8fbf472015-03-18 12:03:41 -05001874 ap.target = gfs2_get_inode_blocks(&ip->i_inode);
1875
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001876 if (!uid_eq(ouid, NO_UID_QUOTA_CHANGE) ||
1877 !gid_eq(ogid, NO_GID_QUOTA_CHANGE)) {
Abhi Dasb8fbf472015-03-18 12:03:41 -05001878 error = gfs2_quota_check(ip, nuid, ngid, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001879 if (error)
1880 goto out_gunlock_q;
1881 }
1882
1883 error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
1884 if (error)
1885 goto out_gunlock_q;
1886
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001887 error = gfs2_setattr_simple(inode, attr);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001888 if (error)
1889 goto out_end_trans;
1890
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001891 if (!uid_eq(ouid, NO_UID_QUOTA_CHANGE) ||
1892 !gid_eq(ogid, NO_GID_QUOTA_CHANGE)) {
Abhi Das39a72582015-06-02 11:02:24 -05001893 gfs2_quota_change(ip, -(s64)ap.target, ouid, ogid);
Abhi Dasb8fbf472015-03-18 12:03:41 -05001894 gfs2_quota_change(ip, ap.target, nuid, ngid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001895 }
1896
Steven Whitehousea91ea692006-09-04 12:04:26 -04001897out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001898 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001899out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001900 gfs2_quota_unlock(ip);
Bob Peterson62e96cf2014-01-06 17:16:01 -05001901out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001902 return error;
1903}
1904
1905/**
1906 * gfs2_setattr - Change attributes on an inode
1907 * @dentry: The dentry which is changing
1908 * @attr: The structure describing the change
1909 *
1910 * The VFS layer wants to change one or more of an inodes attributes. Write
1911 * that change out to disk.
1912 *
1913 * Returns: errno
1914 */
1915
1916static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
1917{
David Howells2b0143b2015-03-17 22:25:59 +00001918 struct inode *inode = d_inode(dentry);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001919 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001920 struct gfs2_holder i_gh;
1921 int error;
1922
Bob Petersonb54e9a02015-10-26 10:40:28 -05001923 error = gfs2_rsqa_alloc(ip);
Bob Peterson0a305e42012-06-06 11:17:59 +01001924 if (error)
1925 return error;
1926
David Teiglandb3b94fa2006-01-16 16:50:04 +00001927 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1928 if (error)
1929 return error;
1930
1931 error = -EPERM;
1932 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1933 goto out;
1934
1935 error = inode_change_ok(inode, attr);
1936 if (error)
1937 goto out;
1938
1939 if (attr->ia_valid & ATTR_SIZE)
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001940 error = gfs2_setattr_size(inode, attr->ia_size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001941 else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
1942 error = setattr_chown(inode, attr);
Christoph Hellwige01580b2013-12-20 05:16:52 -08001943 else {
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001944 error = gfs2_setattr_simple(inode, attr);
Christoph Hellwige01580b2013-12-20 05:16:52 -08001945 if (!error && attr->ia_valid & ATTR_MODE)
1946 error = posix_acl_chmod(inode, inode->i_mode);
1947 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001948
Steven Whitehousea91ea692006-09-04 12:04:26 -04001949out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001950 if (!error)
1951 mark_inode_dirty(inode);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001952 gfs2_glock_dq_uninit(&i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001953 return error;
1954}
1955
1956/**
1957 * gfs2_getattr - Read out an inode's attributes
Steven Whitehouse26c1a572006-09-04 15:32:10 -04001958 * @mnt: The vfsmount the inode is being accessed from
David Teiglandb3b94fa2006-01-16 16:50:04 +00001959 * @dentry: The dentry to stat
1960 * @stat: The inode's stats
1961 *
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001962 * This may be called from the VFS directly, or from within GFS2 with the
1963 * inode locked, so we look to see if the glock is already locked and only
1964 * lock the glock if its not already been done. Note that its the NFS
1965 * readdirplus operation which causes this to be called (from filldir)
1966 * with the glock already held.
1967 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001968 * Returns: errno
1969 */
1970
1971static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry,
1972 struct kstat *stat)
1973{
David Howells2b0143b2015-03-17 22:25:59 +00001974 struct inode *inode = d_inode(dentry);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001975 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001976 struct gfs2_holder gh;
1977 int error;
1978
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001979 gfs2_holder_mark_uninitialized(&gh);
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001980 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001981 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
1982 if (error)
1983 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001984 }
1985
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001986 generic_fillattr(inode, stat);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001987 if (gfs2_holder_initialized(&gh))
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05001988 gfs2_glock_dq_uninit(&gh);
1989
1990 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001991}
1992
Steven Whitehousee9079cc2008-10-14 14:43:29 +01001993static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1994 u64 start, u64 len)
1995{
1996 struct gfs2_inode *ip = GFS2_I(inode);
1997 struct gfs2_holder gh;
1998 int ret;
1999
2000 ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
2001 if (ret)
2002 return ret;
2003
Al Viro59551022016-01-22 15:40:57 -05002004 inode_lock(inode);
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002005
2006 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
2007 if (ret)
2008 goto out;
2009
2010 if (gfs2_is_stuffed(ip)) {
2011 u64 phys = ip->i_no_addr << inode->i_blkbits;
2012 u64 size = i_size_read(inode);
2013 u32 flags = FIEMAP_EXTENT_LAST|FIEMAP_EXTENT_NOT_ALIGNED|
2014 FIEMAP_EXTENT_DATA_INLINE;
2015 phys += sizeof(struct gfs2_dinode);
2016 phys += start;
2017 if (start + len > size)
2018 len = size - start;
2019 if (start < size)
2020 ret = fiemap_fill_next_extent(fieinfo, start, phys,
2021 len, flags);
2022 if (ret == 1)
2023 ret = 0;
2024 } else {
2025 ret = __generic_block_fiemap(inode, fieinfo, start, len,
2026 gfs2_block_map);
2027 }
2028
2029 gfs2_glock_dq_uninit(&gh);
2030out:
Al Viro59551022016-01-22 15:40:57 -05002031 inode_unlock(inode);
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002032 return ret;
2033}
2034
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002035const struct inode_operations gfs2_file_iops = {
Al Viroe6305c42008-07-15 21:03:57 -04002036 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002037 .setattr = gfs2_setattr,
2038 .getattr = gfs2_getattr,
Al Viro1a39ba92016-05-13 03:59:17 +02002039 .setxattr = generic_setxattr,
2040 .getxattr = generic_getxattr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002041 .listxattr = gfs2_listxattr,
Al Viro1a39ba92016-05-13 03:59:17 +02002042 .removexattr = generic_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002043 .fiemap = gfs2_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02002044 .get_acl = gfs2_get_acl,
Christoph Hellwige01580b2013-12-20 05:16:52 -08002045 .set_acl = gfs2_set_acl,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002046};
2047
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002048const struct inode_operations gfs2_dir_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00002049 .create = gfs2_create,
2050 .lookup = gfs2_lookup,
2051 .link = gfs2_link,
2052 .unlink = gfs2_unlink,
2053 .symlink = gfs2_symlink,
2054 .mkdir = gfs2_mkdir,
Steven Whitehouse855d23c2011-05-09 16:42:37 +01002055 .rmdir = gfs2_unlink,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002056 .mknod = gfs2_mknod,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02002057 .rename = gfs2_rename2,
Al Viroe6305c42008-07-15 21:03:57 -04002058 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002059 .setattr = gfs2_setattr,
2060 .getattr = gfs2_getattr,
Al Viro1a39ba92016-05-13 03:59:17 +02002061 .setxattr = generic_setxattr,
2062 .getxattr = generic_getxattr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002063 .listxattr = gfs2_listxattr,
Al Viro1a39ba92016-05-13 03:59:17 +02002064 .removexattr = generic_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002065 .fiemap = gfs2_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02002066 .get_acl = gfs2_get_acl,
Christoph Hellwige01580b2013-12-20 05:16:52 -08002067 .set_acl = gfs2_set_acl,
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01002068 .atomic_open = gfs2_atomic_open,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002069};
2070
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002071const struct inode_operations gfs2_symlink_iops = {
Al Viroc177c2a2010-01-14 00:59:16 -05002072 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05002073 .get_link = gfs2_get_link,
Al Viroe6305c42008-07-15 21:03:57 -04002074 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002075 .setattr = gfs2_setattr,
2076 .getattr = gfs2_getattr,
Al Viro1a39ba92016-05-13 03:59:17 +02002077 .setxattr = generic_setxattr,
2078 .getxattr = generic_getxattr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002079 .listxattr = gfs2_listxattr,
Al Viro1a39ba92016-05-13 03:59:17 +02002080 .removexattr = generic_removexattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002081 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002082};
2083