blob: eed1a1bac6f6de901b329fb0af5d4f3747f99b0b [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehousef2741d92011-05-13 12:11:17 +01004 * Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
David Teiglandb3b94fa2006-01-16 16:50:04 +00007#include <linux/slab.h>
8#include <linux/spinlock.h>
9#include <linux/completion.h>
10#include <linux/buffer_head.h>
11#include <linux/namei.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000012#include <linux/mm.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010013#include <linux/cred.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000014#include <linux/xattr.h>
15#include <linux/posix_acl.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050016#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050017#include <linux/crc32.h>
Bob Petersonaac1a552017-02-16 21:13:54 +010018#include <linux/iomap.h>
Steven Whitehouse194c0112011-05-09 14:06:38 +010019#include <linux/security.h>
Christoph Hellwig10c5db22020-05-23 09:30:11 +020020#include <linux/fiemap.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080021#include <linux/uaccess.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000022
23#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050024#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "acl.h"
26#include "bmap.h"
27#include "dir.h"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010028#include "xattr.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029#include "glock.h"
30#include "inode.h"
31#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000032#include "quota.h"
33#include "rgrp.h"
34#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050035#include "util.h"
Steven Whitehouseb2760582008-10-14 16:05:55 +010036#include "super.h"
Steven Whitehouse194c0112011-05-09 14:06:38 +010037#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000038
Andreas Gruenbachercda9dd42016-06-14 12:24:50 -050039static int iget_test(struct inode *inode, void *opaque)
Steven Whitehouse194c0112011-05-09 14:06:38 +010040{
Andreas Gruenbachercda9dd42016-06-14 12:24:50 -050041 u64 no_addr = *(u64 *)opaque;
42
43 return GFS2_I(inode)->i_no_addr == no_addr;
44}
45
46static int iget_set(struct inode *inode, void *opaque)
47{
48 u64 no_addr = *(u64 *)opaque;
49
50 GFS2_I(inode)->i_no_addr = no_addr;
51 inode->i_ino = no_addr;
52 return 0;
53}
54
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -050055static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
56{
57 struct inode *inode;
58
59repeat:
Andreas Gruenbachercda9dd42016-06-14 12:24:50 -050060 inode = iget5_locked(sb, no_addr, iget_test, iget_set, &no_addr);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -050061 if (!inode)
62 return inode;
63 if (is_bad_inode(inode)) {
64 iput(inode);
65 goto repeat;
66 }
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -050067 return inode;
Steven Whitehouse194c0112011-05-09 14:06:38 +010068}
69
70/**
71 * gfs2_set_iop - Sets inode operations
72 * @inode: The inode with correct i_mode filled in
73 *
74 * GFS2 lookup code fills in vfs inode contents based on info obtained
75 * from directory entry inside gfs2_inode_lookup().
76 */
77
78static void gfs2_set_iop(struct inode *inode)
79{
80 struct gfs2_sbd *sdp = GFS2_SB(inode);
81 umode_t mode = inode->i_mode;
82
83 if (S_ISREG(mode)) {
84 inode->i_op = &gfs2_file_iops;
85 if (gfs2_localflocks(sdp))
86 inode->i_fop = &gfs2_file_fops_nolock;
87 else
88 inode->i_fop = &gfs2_file_fops;
89 } else if (S_ISDIR(mode)) {
90 inode->i_op = &gfs2_dir_iops;
91 if (gfs2_localflocks(sdp))
92 inode->i_fop = &gfs2_dir_fops_nolock;
93 else
94 inode->i_fop = &gfs2_dir_fops;
95 } else if (S_ISLNK(mode)) {
96 inode->i_op = &gfs2_symlink_iops;
97 } else {
98 inode->i_op = &gfs2_file_iops;
99 init_special_inode(inode, inode->i_mode, inode->i_rdev);
100 }
101}
102
103/**
104 * gfs2_inode_lookup - Lookup an inode
105 * @sb: The super block
Steven Whitehouse194c0112011-05-09 14:06:38 +0100106 * @type: The type of the inode
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500107 * @no_addr: The inode number
108 * @no_formal_ino: The inode generation number
109 * @blktype: Requested block type (GFS2_BLKST_DINODE or GFS2_BLKST_UNLINKED;
Andreas Gruenbacher61b91cf2017-08-01 09:54:33 -0500110 * GFS2_BLKST_FREE to indicate not to verify)
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500111 *
112 * If @type is DT_UNKNOWN, the inode type is fetched from disk.
113 *
114 * If @blktype is anything other than GFS2_BLKST_FREE (which is used as a
115 * placeholder because it doesn't otherwise make sense), the on-disk block type
116 * is verified to be @blktype.
Steven Whitehouse194c0112011-05-09 14:06:38 +0100117 *
Andreas Gruenbacherb66648a2020-01-15 06:21:42 +0100118 * When @no_formal_ino is non-zero, this function will return ERR_PTR(-ESTALE)
119 * if it detects that @no_formal_ino doesn't match the actual inode generation
120 * number. However, it doesn't always know unless @type is DT_UNKNOWN.
121 *
Steven Whitehouse194c0112011-05-09 14:06:38 +0100122 * Returns: A VFS inode, or an error
123 */
124
125struct inode *gfs2_inode_lookup(struct super_block *sb, unsigned int type,
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500126 u64 no_addr, u64 no_formal_ino,
127 unsigned int blktype)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100128{
129 struct inode *inode;
130 struct gfs2_inode *ip;
131 struct gfs2_glock *io_gl = NULL;
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500132 struct gfs2_holder i_gh;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100133 int error;
134
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500135 gfs2_holder_mark_uninitialized(&i_gh);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500136 inode = gfs2_iget(sb, no_addr);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100137 if (!inode)
Steven Whitehouseac3beb62014-01-16 10:31:13 +0000138 return ERR_PTR(-ENOMEM);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100139
Bob Petersone97321f2016-04-12 16:14:26 -0400140 ip = GFS2_I(inode);
Bob Petersone97321f2016-04-12 16:14:26 -0400141
Steven Whitehouse194c0112011-05-09 14:06:38 +0100142 if (inode->i_state & I_NEW) {
143 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100144
145 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
146 if (unlikely(error))
147 goto fail;
Andreas Gruenbacher4fd1a572017-06-30 07:47:15 -0500148 flush_delayed_work(&ip->i_gl->gl_work);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100149
150 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
151 if (unlikely(error))
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +0100152 goto fail;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100153
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500154 if (type == DT_UNKNOWN || blktype != GFS2_BLKST_FREE) {
155 /*
156 * The GL_SKIP flag indicates to skip reading the inode
157 * block. We read the inode with gfs2_inode_refresh
158 * after possibly checking the block type.
159 */
160 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE,
161 GL_SKIP, &i_gh);
162 if (error)
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +0100163 goto fail;
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500164
Andreas Gruenbacherb66648a2020-01-15 06:21:42 +0100165 error = -ESTALE;
166 if (no_formal_ino &&
167 gfs2_inode_already_deleted(ip->i_gl, no_formal_ino))
168 goto fail;
169
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500170 if (blktype != GFS2_BLKST_FREE) {
171 error = gfs2_check_blk_type(sdp, no_addr,
172 blktype);
173 if (error)
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +0100174 goto fail;
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500175 }
176 }
177
Bob Peterson4d7c18c2017-07-18 12:15:01 -0500178 glock_set_object(ip->i_gl, ip);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100179 set_bit(GIF_INVALID, &ip->i_flags);
180 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
181 if (unlikely(error))
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +0100182 goto fail;
Andreas Gruenbacher6bd1c7b2020-11-02 21:11:30 +0100183 if (blktype != GFS2_BLKST_UNLINKED)
184 gfs2_cancel_delete_work(ip->i_iopen_gh.gh_gl);
Andreas Gruenbacher4fd1a572017-06-30 07:47:15 -0500185 glock_set_object(ip->i_iopen_gh.gh_gl, ip);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100186 gfs2_glock_put(io_gl);
187 io_gl = NULL;
188
Andreas Gruenbacher2b0fb352020-01-15 06:26:00 +0100189 /* Lowest possible timestamp; will be overwritten in gfs2_dinode_in. */
190 inode->i_atime.tv_sec = 1LL << (8 * sizeof(inode->i_atime.tv_sec) - 1);
191 inode->i_atime.tv_nsec = 0;
192
Steven Whitehouse194c0112011-05-09 14:06:38 +0100193 if (type == DT_UNKNOWN) {
194 /* Inode glock must be locked already */
195 error = gfs2_inode_refresh(GFS2_I(inode));
196 if (error)
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +0100197 goto fail;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100198 } else {
Andreas Gruenbacher2b0fb352020-01-15 06:26:00 +0100199 ip->i_no_formal_ino = no_formal_ino;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100200 inode->i_mode = DT2IF(type);
201 }
202
Andreas Gruenbacherb66648a2020-01-15 06:21:42 +0100203 if (gfs2_holder_initialized(&i_gh))
204 gfs2_glock_dq_uninit(&i_gh);
Andreas Gruenbacher332f51d2016-09-26 13:24:34 -0500205
Andreas Gruenbacherb66648a2020-01-15 06:21:42 +0100206 gfs2_set_iop(inode);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100207 }
208
Andreas Gruenbacherb66648a2020-01-15 06:21:42 +0100209 if (no_formal_ino && ip->i_no_formal_ino &&
210 no_formal_ino != ip->i_no_formal_ino) {
Andreas Gruenbacher5902f4d2020-06-09 14:33:11 +0200211 error = -ESTALE;
Andreas Gruenbacherb66648a2020-01-15 06:21:42 +0100212 if (inode->i_state & I_NEW)
213 goto fail;
214 iput(inode);
Andreas Gruenbacher5902f4d2020-06-09 14:33:11 +0200215 return ERR_PTR(error);
Andreas Gruenbacherb66648a2020-01-15 06:21:42 +0100216 }
217
218 if (inode->i_state & I_NEW)
219 unlock_new_inode(inode);
220
Steven Whitehouse194c0112011-05-09 14:06:38 +0100221 return inode;
222
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +0100223fail:
Steven Whitehouse194c0112011-05-09 14:06:38 +0100224 if (io_gl)
225 gfs2_glock_put(io_gl);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500226 if (gfs2_holder_initialized(&i_gh))
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500227 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100228 iget_failed(inode);
229 return ERR_PTR(error);
230}
231
Andreas Gruenbacher6bdcade2020-01-15 05:31:38 +0100232/**
233 * gfs2_lookup_by_inum - look up an inode by inode number
234 * @sdp: The super block
235 * @no_addr: The inode number
236 * @no_formal_ino: The inode generation number (0 for any)
237 * @blktype: Requested block type (see gfs2_inode_lookup)
238 */
Steven Whitehouse194c0112011-05-09 14:06:38 +0100239struct inode *gfs2_lookup_by_inum(struct gfs2_sbd *sdp, u64 no_addr,
Andreas Gruenbacher6bdcade2020-01-15 05:31:38 +0100240 u64 no_formal_ino, unsigned int blktype)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100241{
242 struct super_block *sb = sdp->sd_vfs;
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500243 struct inode *inode;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100244 int error;
245
Andreas Gruenbacherb66648a2020-01-15 06:21:42 +0100246 inode = gfs2_inode_lookup(sb, DT_UNKNOWN, no_addr, no_formal_ino,
247 blktype);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100248 if (IS_ERR(inode))
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500249 return inode;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100250
Steven Whitehouse194c0112011-05-09 14:06:38 +0100251 if (no_formal_ino) {
Steven Whitehouse194c0112011-05-09 14:06:38 +0100252 error = -EIO;
253 if (GFS2_I(inode)->i_diskflags & GFS2_DIF_SYSTEM)
254 goto fail_iput;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100255 }
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500256 return inode;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100257
Steven Whitehouse194c0112011-05-09 14:06:38 +0100258fail_iput:
259 iput(inode);
Andreas Gruenbacher3ce37b22016-06-14 12:22:27 -0500260 return ERR_PTR(error);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100261}
262
263
264struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
265{
266 struct qstr qstr;
267 struct inode *inode;
268 gfs2_str2qstr(&qstr, name);
269 inode = gfs2_lookupi(dip, &qstr, 1);
270 /* gfs2_lookupi has inconsistent callers: vfs
271 * related routines expect NULL for no entry found,
272 * gfs2_lookup_simple callers expect ENOENT
273 * and do not check for NULL.
274 */
275 if (inode == NULL)
276 return ERR_PTR(-ENOENT);
277 else
278 return inode;
279}
280
281
282/**
283 * gfs2_lookupi - Look up a filename in a directory and return its inode
284 * @d_gh: An initialized holder for the directory glock
285 * @name: The name of the inode to look for
286 * @is_root: If 1, ignore the caller's permissions
287 * @i_gh: An uninitialized holder for the new inode glock
288 *
289 * This can be called via the VFS filldir function when NFS is doing
290 * a readdirplus and the inode which its intending to stat isn't
291 * already in cache. In this case we must not take the directory glock
292 * again, since the readdir call will have already taken that lock.
293 *
294 * Returns: errno
295 */
296
297struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
298 int is_root)
299{
300 struct super_block *sb = dir->i_sb;
301 struct gfs2_inode *dip = GFS2_I(dir);
302 struct gfs2_holder d_gh;
303 int error = 0;
304 struct inode *inode = NULL;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100305
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500306 gfs2_holder_mark_uninitialized(&d_gh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100307 if (!name->len || name->len > GFS2_FNAMESIZE)
308 return ERR_PTR(-ENAMETOOLONG);
309
310 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
311 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
David Howells2b0143b2015-03-17 22:25:59 +0000312 dir == d_inode(sb->s_root))) {
Steven Whitehouse194c0112011-05-09 14:06:38 +0100313 igrab(dir);
314 return dir;
315 }
316
317 if (gfs2_glock_is_locked_by_me(dip->i_gl) == NULL) {
318 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
319 if (error)
320 return ERR_PTR(error);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100321 }
322
323 if (!is_root) {
Al Viro10556cb22011-06-20 19:28:19 -0400324 error = gfs2_permission(dir, MAY_EXEC);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100325 if (error)
326 goto out;
327 }
328
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +0100329 inode = gfs2_dir_search(dir, name, false);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100330 if (IS_ERR(inode))
331 error = PTR_ERR(inode);
332out:
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500333 if (gfs2_holder_initialized(&d_gh))
Steven Whitehouse194c0112011-05-09 14:06:38 +0100334 gfs2_glock_dq_uninit(&d_gh);
335 if (error == -ENOENT)
336 return NULL;
337 return inode ? inode : ERR_PTR(error);
338}
339
340/**
341 * create_ok - OK to create a new on-disk inode here?
342 * @dip: Directory in which dinode is to be created
343 * @name: Name of new dinode
344 * @mode:
345 *
346 * Returns: errno
347 */
348
349static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
Al Viro175a4eb2011-07-26 03:30:54 -0400350 umode_t mode)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100351{
352 int error;
353
Al Viro10556cb22011-06-20 19:28:19 -0400354 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100355 if (error)
356 return error;
357
358 /* Don't create entries in an unlinked directory */
359 if (!dip->i_inode.i_nlink)
360 return -ENOENT;
361
Steven Whitehouse194c0112011-05-09 14:06:38 +0100362 if (dip->i_entries == (u32)-1)
363 return -EFBIG;
364 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
365 return -EMLINK;
366
367 return 0;
368}
369
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000370static void munge_mode_uid_gid(const struct gfs2_inode *dip,
371 struct inode *inode)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100372{
373 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800374 (dip->i_inode.i_mode & S_ISUID) &&
375 !uid_eq(dip->i_inode.i_uid, GLOBAL_ROOT_UID)) {
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000376 if (S_ISDIR(inode->i_mode))
377 inode->i_mode |= S_ISUID;
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800378 else if (!uid_eq(dip->i_inode.i_uid, current_fsuid()))
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000379 inode->i_mode &= ~07111;
380 inode->i_uid = dip->i_inode.i_uid;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100381 } else
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000382 inode->i_uid = current_fsuid();
Steven Whitehouse194c0112011-05-09 14:06:38 +0100383
384 if (dip->i_inode.i_mode & S_ISGID) {
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000385 if (S_ISDIR(inode->i_mode))
386 inode->i_mode |= S_ISGID;
387 inode->i_gid = dip->i_inode.i_gid;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100388 } else
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000389 inode->i_gid = current_fsgid();
Steven Whitehouse194c0112011-05-09 14:06:38 +0100390}
391
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000392static int alloc_dinode(struct gfs2_inode *ip, u32 flags, unsigned *dblocks)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100393{
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000394 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000395 struct gfs2_alloc_parms ap = { .target = *dblocks, .aflags = flags, };
Steven Whitehouse194c0112011-05-09 14:06:38 +0100396 int error;
397
Abhi Dasb8fbf472015-03-18 12:03:41 -0500398 error = gfs2_quota_lock_check(ip, &ap);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100399 if (error)
400 goto out;
401
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100402 error = gfs2_inplace_reserve(ip, &ap);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000403 if (error)
404 goto out_quota;
405
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000406 error = gfs2_trans_begin(sdp, (*dblocks * RES_RG_BIT) + RES_STATFS + RES_QUOTA, 0);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100407 if (error)
408 goto out_ipreserv;
409
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000410 error = gfs2_alloc_blocks(ip, &ip->i_no_addr, dblocks, 1, &ip->i_generation);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000411 ip->i_no_formal_ino = ip->i_generation;
412 ip->i_inode.i_ino = ip->i_no_addr;
413 ip->i_goal = ip->i_no_addr;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100414
415 gfs2_trans_end(sdp);
416
417out_ipreserv:
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000418 gfs2_inplace_release(ip);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000419out_quota:
420 gfs2_quota_unlock(ip);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100421out:
Steven Whitehouse194c0112011-05-09 14:06:38 +0100422 return error;
423}
424
Steven Whitehousef2741d92011-05-13 12:11:17 +0100425static void gfs2_init_dir(struct buffer_head *dibh,
426 const struct gfs2_inode *parent)
Steven Whitehousee2d0a132011-05-13 09:55:55 +0100427{
428 struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
429 struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
430
431 gfs2_qstr2dirent(&gfs2_qdot, GFS2_DIRENT_SIZE(gfs2_qdot.len), dent);
432 dent->de_inum = di->di_num; /* already GFS2 endian */
433 dent->de_type = cpu_to_be16(DT_DIR);
434
435 dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
436 gfs2_qstr2dirent(&gfs2_qdotdot, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
437 gfs2_inum_out(parent, dent);
438 dent->de_type = cpu_to_be16(DT_DIR);
439
440}
441
Steven Whitehouse194c0112011-05-09 14:06:38 +0100442/**
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000443 * gfs2_init_xattr - Initialise an xattr block for a new inode
444 * @ip: The inode in question
445 *
446 * This sets up an empty xattr block for a new inode, ready to
447 * take any ACLs, LSM xattrs, etc.
448 */
449
450static void gfs2_init_xattr(struct gfs2_inode *ip)
451{
452 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
453 struct buffer_head *bh;
454 struct gfs2_ea_header *ea;
455
456 bh = gfs2_meta_new(ip->i_gl, ip->i_eattr);
457 gfs2_trans_add_meta(ip->i_gl, bh);
458 gfs2_metatype_set(bh, GFS2_METATYPE_EA, GFS2_FORMAT_EA);
459 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
460
461 ea = GFS2_EA_BH2FIRST(bh);
462 ea->ea_rec_len = cpu_to_be32(sdp->sd_jbsize);
463 ea->ea_type = GFS2_EATYPE_UNUSED;
464 ea->ea_flags = GFS2_EAFLAG_LAST;
465
466 brelse(bh);
467}
468
469/**
Steven Whitehouse194c0112011-05-09 14:06:38 +0100470 * init_dinode - Fill in a new dinode structure
Steven Whitehousef2741d92011-05-13 12:11:17 +0100471 * @dip: The directory this inode is being created in
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000472 * @ip: The inode
Steven Whitehousef2741d92011-05-13 12:11:17 +0100473 * @symname: The symlink destination (if a symlink)
Steven Whitehousef2741d92011-05-13 12:11:17 +0100474 * @bhp: The buffer head (returned to caller)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100475 *
476 */
477
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000478static void init_dinode(struct gfs2_inode *dip, struct gfs2_inode *ip,
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000479 const char *symname)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100480{
Steven Whitehouse194c0112011-05-09 14:06:38 +0100481 struct gfs2_dinode *di;
482 struct buffer_head *dibh;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100483
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000484 dibh = gfs2_meta_new(ip->i_gl, ip->i_no_addr);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000485 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100486 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000487 gfs2_dinode_out(ip, di);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100488
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000489 di->di_major = cpu_to_be32(MAJOR(ip->i_inode.i_rdev));
490 di->di_minor = cpu_to_be32(MINOR(ip->i_inode.i_rdev));
Steven Whitehouse194c0112011-05-09 14:06:38 +0100491 di->__pad1 = 0;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100492 di->__pad2 = 0;
493 di->__pad3 = 0;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100494 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse194c0112011-05-09 14:06:38 +0100495 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000496 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouse160b4022011-05-13 10:34:59 +0100497
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000498 switch(ip->i_inode.i_mode & S_IFMT) {
Steven Whitehouse160b4022011-05-13 10:34:59 +0100499 case S_IFDIR:
Steven Whitehousee2d0a132011-05-13 09:55:55 +0100500 gfs2_init_dir(dibh, dip);
Steven Whitehouse160b4022011-05-13 10:34:59 +0100501 break;
502 case S_IFLNK:
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000503 memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname, ip->i_inode.i_size);
Steven Whitehouse160b4022011-05-13 10:34:59 +0100504 break;
Steven Whitehousee2d0a132011-05-13 09:55:55 +0100505 }
506
Steven Whitehouse194c0112011-05-09 14:06:38 +0100507 set_buffer_uptodate(dibh);
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000508 brelse(dibh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100509}
510
Steven Whitehouse534cf9c2014-01-06 12:03:05 +0000511/**
512 * gfs2_trans_da_blocks - Calculate number of blocks to link inode
513 * @dip: The directory we are linking into
514 * @da: The dir add information
515 * @nr_inodes: The number of inodes involved
516 *
517 * This calculate the number of blocks we need to reserve in a
518 * transaction to link @nr_inodes into a directory. In most cases
519 * @nr_inodes will be 2 (the directory plus the inode being linked in)
520 * but in case of rename, 4 may be required.
521 *
522 * Returns: Number of blocks
523 */
524
525static unsigned gfs2_trans_da_blks(const struct gfs2_inode *dip,
526 const struct gfs2_diradd *da,
527 unsigned nr_inodes)
528{
529 return da->nr_blocks + gfs2_rg_blocks(dip, da->nr_blocks) +
530 (nr_inodes * RES_DINODE) + RES_QUOTA + RES_STATFS;
531}
532
Steven Whitehouse194c0112011-05-09 14:06:38 +0100533static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000534 struct gfs2_inode *ip, struct gfs2_diradd *da)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100535{
536 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000537 struct gfs2_alloc_parms ap = { .target = da->nr_blocks, };
Steven Whitehouse194c0112011-05-09 14:06:38 +0100538 int error;
539
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000540 if (da->nr_blocks) {
Abhi Dasb8fbf472015-03-18 12:03:41 -0500541 error = gfs2_quota_lock_check(dip, &ap);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100542 if (error)
543 goto fail_quota_locks;
544
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100545 error = gfs2_inplace_reserve(dip, &ap);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100546 if (error)
547 goto fail_quota_locks;
548
Steven Whitehouse534cf9c2014-01-06 12:03:05 +0000549 error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(dip, da, 2), 0);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100550 if (error)
551 goto fail_ipreserv;
552 } else {
553 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
554 if (error)
555 goto fail_quota_locks;
556 }
557
Steven Whitehouse2b47dad2014-01-06 12:49:43 +0000558 error = gfs2_dir_add(&dip->i_inode, name, ip, da);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100559
Steven Whitehouse194c0112011-05-09 14:06:38 +0100560 gfs2_trans_end(sdp);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100561fail_ipreserv:
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000562 gfs2_inplace_release(dip);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100563fail_quota_locks:
564 gfs2_quota_unlock(dip);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100565 return error;
566}
567
H Hartley Sweeten46cc1e52011-09-23 15:51:32 -0700568static int gfs2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -0400569 void *fs_info)
570{
571 const struct xattr *xattr;
572 int err = 0;
573
574 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
575 err = __gfs2_xattr_set(inode, xattr->name, xattr->value,
576 xattr->value_len, 0,
577 GFS2_EATYPE_SECURITY);
578 if (err < 0)
579 break;
580 }
581 return err;
582}
583
Steven Whitehouse194c0112011-05-09 14:06:38 +0100584/**
Steven Whitehousef2741d92011-05-13 12:11:17 +0100585 * gfs2_create_inode - Create a new inode
586 * @dir: The parent directory
587 * @dentry: The new dentry
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100588 * @file: If non-NULL, the file which is being opened
Steven Whitehousef2741d92011-05-13 12:11:17 +0100589 * @mode: The permissions on the new inode
590 * @dev: For device nodes, this is the device number
591 * @symname: For symlinks, this is the link destination
592 * @size: The initial size of the inode (ignored for directories)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100593 *
Steven Whitehousef2741d92011-05-13 12:11:17 +0100594 * Returns: 0 on success, or error code
Steven Whitehouse194c0112011-05-09 14:06:38 +0100595 */
596
Steven Whitehousef2741d92011-05-13 12:11:17 +0100597static int gfs2_create_inode(struct inode *dir, struct dentry *dentry,
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100598 struct file *file,
Al Viro175a4eb2011-07-26 03:30:54 -0400599 umode_t mode, dev_t dev, const char *symname,
Al Virob452a452018-06-08 13:06:28 -0400600 unsigned int size, int excl)
Steven Whitehouse194c0112011-05-09 14:06:38 +0100601{
Steven Whitehousef2741d92011-05-13 12:11:17 +0100602 const struct qstr *name = &dentry->d_name;
Christoph Hellwige01580b2013-12-20 05:16:52 -0800603 struct posix_acl *default_acl, *acl;
Steven Whitehousef2741d92011-05-13 12:11:17 +0100604 struct gfs2_holder ghs[2];
Steven Whitehouse194c0112011-05-09 14:06:38 +0100605 struct inode *inode = NULL;
Bob Peterson8e2e0042012-07-19 08:12:40 -0400606 struct gfs2_inode *dip = GFS2_I(dir), *ip;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100607 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Bob Petersona4923862015-12-07 16:24:27 -0600608 struct gfs2_glock *io_gl = NULL;
Bob Peterson783013c2015-12-04 10:19:14 -0600609 int error, free_vfs_inode = 1;
Steven Whitehouse9dbe9612012-10-31 10:37:10 +0000610 u32 aflags = 0;
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000611 unsigned blocks = 1;
Bob Peterson19aeb5a62014-09-29 08:52:04 -0400612 struct gfs2_diradd da = { .bh = NULL, .save_loc = 1, };
Steven Whitehouse194c0112011-05-09 14:06:38 +0100613
614 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousef2741d92011-05-13 12:11:17 +0100615 return -ENAMETOOLONG;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100616
Bob Peterson2fba46a2020-02-27 12:47:53 -0600617 error = gfs2_qa_get(dip);
Bob Peterson0a305e42012-06-06 11:17:59 +0100618 if (error)
619 return error;
620
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000621 error = gfs2_rindex_update(sdp);
622 if (error)
Bob Peterson2fba46a2020-02-27 12:47:53 -0600623 goto fail;
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000624
Steven Whitehousef2741d92011-05-13 12:11:17 +0100625 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100626 if (error)
627 goto fail;
Andreas Gruenbachere0b62e22017-06-30 08:16:46 -0500628 gfs2_holder_mark_uninitialized(ghs + 1);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100629
630 error = create_ok(dip, name, mode);
631 if (error)
632 goto fail_gunlock;
633
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +0100634 inode = gfs2_dir_search(dir, &dentry->d_name, !S_ISREG(mode) || excl);
635 error = PTR_ERR(inode);
636 if (!IS_ERR(inode)) {
Al Viro571a4b52014-11-19 19:34:49 +0000637 if (S_ISDIR(inode->i_mode)) {
638 iput(inode);
639 inode = ERR_PTR(-EISDIR);
640 goto fail_gunlock;
641 }
Al Viro44bb31b2014-11-19 19:35:24 +0000642 d_instantiate(dentry, inode);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100643 error = 0;
Miklos Szeredi0d0d1102013-09-16 14:52:00 +0200644 if (file) {
Al Viro44bb31b2014-11-19 19:35:24 +0000645 if (S_ISREG(inode->i_mode))
Al Virobe12af32018-06-08 11:44:56 -0400646 error = finish_open(file, dentry, gfs2_open_common);
Al Viro44bb31b2014-11-19 19:35:24 +0000647 else
648 error = finish_no_open(file, NULL);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100649 }
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +0100650 gfs2_glock_dq_uninit(ghs);
Bob Peterson2297ab62020-05-04 10:18:43 -0500651 goto fail;
Steven Whitehouse5a00f3c2013-06-11 13:45:29 +0100652 } else if (error != -ENOENT) {
653 goto fail_gunlock;
654 }
655
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000656 error = gfs2_diradd_alloc_required(dir, name, &da);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000657 if (error < 0)
658 goto fail_gunlock;
659
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000660 inode = new_inode(sdp->sd_vfs);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000661 error = -ENOMEM;
662 if (!inode)
663 goto fail_gunlock;
664
Christoph Hellwige01580b2013-12-20 05:16:52 -0800665 error = posix_acl_create(dir, &mode, &default_acl, &acl);
666 if (error)
Bob Peterson783013c2015-12-04 10:19:14 -0600667 goto fail_gunlock;
Christoph Hellwige01580b2013-12-20 05:16:52 -0800668
Bob Peterson8e2e0042012-07-19 08:12:40 -0400669 ip = GFS2_I(inode);
Bob Peterson2fba46a2020-02-27 12:47:53 -0600670 error = gfs2_qa_get(ip);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100671 if (error)
Christoph Hellwige01580b2013-12-20 05:16:52 -0800672 goto fail_free_acls;
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000673
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000674 inode->i_mode = mode;
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000675 set_nlink(inode, S_ISDIR(mode) ? 2 : 1);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000676 inode->i_rdev = dev;
677 inode->i_size = size;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700678 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000679 munge_mode_uid_gid(dip, inode);
Abhi Das00a158b2014-09-18 21:40:28 -0500680 check_and_update_goal(dip);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000681 ip->i_goal = dip->i_goal;
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000682 ip->i_diskflags = 0;
683 ip->i_eattr = 0;
684 ip->i_height = 0;
685 ip->i_depth = 0;
686 ip->i_entries = 0;
Bob Petersoncc963a12017-03-16 15:29:13 -0400687 ip->i_no_addr = 0; /* Temporarily zero until real addr is assigned */
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000688
689 switch(mode & S_IFMT) {
690 case S_IFREG:
691 if ((dip->i_diskflags & GFS2_DIF_INHERIT_JDATA) ||
692 gfs2_tune_get(sdp, gt_new_files_jdata))
693 ip->i_diskflags |= GFS2_DIF_JDATA;
694 gfs2_set_aops(inode);
695 break;
696 case S_IFDIR:
697 ip->i_diskflags |= (dip->i_diskflags & GFS2_DIF_INHERIT_JDATA);
698 ip->i_diskflags |= GFS2_DIF_JDATA;
699 ip->i_entries = 2;
700 break;
701 }
Abhi Dasacc546f2015-11-10 15:07:26 -0600702
703 /* Force SYSTEM flag on all files and subdirs of a SYSTEM directory */
704 if (dip->i_diskflags & GFS2_DIF_SYSTEM)
705 ip->i_diskflags |= GFS2_DIF_SYSTEM;
706
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000707 gfs2_set_inode_flags(inode);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000708
David Howells2b0143b2015-03-17 22:25:59 +0000709 if ((GFS2_I(d_inode(sdp->sd_root_dir)) == dip) ||
Steven Whitehouse9dbe9612012-10-31 10:37:10 +0000710 (dip->i_diskflags & GFS2_DIF_TOPDIR))
711 aflags |= GFS2_AF_ORLOV;
712
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000713 if (default_acl || acl)
714 blocks++;
715
716 error = alloc_dinode(ip, aflags, &blocks);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000717 if (error)
718 goto fail_free_inode;
719
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000720 gfs2_set_inode_blocks(inode, blocks);
721
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000722 error = gfs2_glock_get(sdp, ip->i_no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
723 if (error)
724 goto fail_free_inode;
Andreas Gruenbacher98e5a912017-07-19 11:10:19 -0500725 flush_delayed_work(&ip->i_gl->gl_work);
Andreas Gruenbacher6f6597ba2017-06-30 07:55:08 -0500726 glock_set_object(ip->i_gl, ip);
Andreas Gruenbacher98e5a912017-07-19 11:10:19 -0500727
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000728 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
729 if (error)
730 goto fail_free_inode;
731
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000732 error = gfs2_trans_begin(sdp, blocks, 0);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000733 if (error)
Bob Peterson2c47c1b2019-11-19 11:40:46 -0500734 goto fail_free_inode;
Bob Peterson0a305e42012-06-06 11:17:59 +0100735
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +0000736 if (blocks > 1) {
737 ip->i_eattr = ip->i_no_addr + 1;
738 gfs2_init_xattr(ip);
739 }
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000740 init_dinode(dip, ip, symname);
Steven Whitehousefd4b4e02013-02-26 16:15:20 +0000741 gfs2_trans_end(sdp);
742
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000743 error = gfs2_glock_get(sdp, ip->i_no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
744 if (error)
Bob Peterson2c47c1b2019-11-19 11:40:46 -0500745 goto fail_free_inode;
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000746
Bob Petersona4923862015-12-07 16:24:27 -0600747 BUG_ON(test_and_set_bit(GLF_INODE_CREATING, &io_gl->gl_flags));
748
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000749 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
750 if (error)
751 goto fail_gunlock2;
752
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +0100753 gfs2_cancel_delete_work(ip->i_iopen_gh.gh_gl);
Andreas Gruenbacher6f6597ba2017-06-30 07:55:08 -0500754 glock_set_object(ip->i_iopen_gh.gh_gl, ip);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000755 gfs2_set_iop(inode);
756 insert_inode_hash(inode);
757
Bob Peterson783013c2015-12-04 10:19:14 -0600758 free_vfs_inode = 0; /* After this point, the inode is no longer
759 considered free. Any failures need to undo
760 the gfs2 structures. */
Christoph Hellwige01580b2013-12-20 05:16:52 -0800761 if (default_acl) {
Al Viro1a39ba92016-05-13 03:59:17 +0200762 error = __gfs2_set_acl(inode, default_acl, ACL_TYPE_DEFAULT);
Andreas Gruenbacher6ff9b092018-11-26 18:45:35 +0100763 if (error)
764 goto fail_gunlock3;
Christoph Hellwige01580b2013-12-20 05:16:52 -0800765 posix_acl_release(default_acl);
Andreas Gruenbacher6ff9b092018-11-26 18:45:35 +0100766 default_acl = NULL;
Christoph Hellwige01580b2013-12-20 05:16:52 -0800767 }
768 if (acl) {
Andreas Gruenbacher6ff9b092018-11-26 18:45:35 +0100769 error = __gfs2_set_acl(inode, acl, ACL_TYPE_ACCESS);
770 if (error)
771 goto fail_gunlock3;
Christoph Hellwige01580b2013-12-20 05:16:52 -0800772 posix_acl_release(acl);
Andreas Gruenbacher6ff9b092018-11-26 18:45:35 +0100773 acl = NULL;
Christoph Hellwige01580b2013-12-20 05:16:52 -0800774 }
775
Bob Petersonf45dc262014-03-19 09:37:00 -0400776 error = security_inode_init_security(&ip->i_inode, &dip->i_inode, name,
777 &gfs2_initxattrs, NULL);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100778 if (error)
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000779 goto fail_gunlock3;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100780
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000781 error = link_dinode(dip, name, ip, &da);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100782 if (error)
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000783 goto fail_gunlock3;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100784
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000785 mark_inode_dirty(inode);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100786 d_instantiate(dentry, inode);
Bob Peterson2c47c1b2019-11-19 11:40:46 -0500787 /* After instantiate, errors should result in evict which will destroy
788 * both inode and iopen glocks properly. */
Miklos Szeredic5bf8fe2013-09-16 14:52:03 +0200789 if (file) {
Al Viro73a09dd2018-06-08 13:22:02 -0400790 file->f_mode |= FMODE_CREATED;
Al Virobe12af32018-06-08 11:44:56 -0400791 error = finish_open(file, dentry, gfs2_open_common);
Miklos Szeredic5bf8fe2013-09-16 14:52:03 +0200792 }
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000793 gfs2_glock_dq_uninit(ghs);
Bob Peterson2297ab62020-05-04 10:18:43 -0500794 gfs2_qa_put(ip);
Steven Whitehouse28fb3022013-02-26 19:09:35 +0000795 gfs2_glock_dq_uninit(ghs + 1);
Bob Petersona4923862015-12-07 16:24:27 -0600796 clear_bit(GLF_INODE_CREATING, &io_gl->gl_flags);
Bob Peterson2c47c1b2019-11-19 11:40:46 -0500797 gfs2_glock_put(io_gl);
Bob Peterson2297ab62020-05-04 10:18:43 -0500798 gfs2_qa_put(dip);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100799 return error;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100800
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000801fail_gunlock3:
Bob Peterson9c1b2802017-07-18 12:26:07 -0500802 glock_clear_object(io_gl, ip);
Bob Peterson783013c2015-12-04 10:19:14 -0600803 gfs2_glock_dq_uninit(&ip->i_iopen_gh);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100804fail_gunlock2:
Bob Peterson2c47c1b2019-11-19 11:40:46 -0500805 clear_bit(GLF_INODE_CREATING, &io_gl->gl_flags);
806 gfs2_glock_put(io_gl);
Steven Whitehousec9aecf72012-10-31 10:30:22 +0000807fail_free_inode:
Bob Peterson9c1b2802017-07-18 12:26:07 -0500808 if (ip->i_gl) {
809 glock_clear_object(ip->i_gl, ip);
Bob Peterson1a0b00d2020-06-01 11:37:09 -0400810 if (free_vfs_inode) /* else evict will do the put for us */
811 gfs2_glock_put(ip->i_gl);
Bob Peterson9c1b2802017-07-18 12:26:07 -0500812 }
Andreas Gruenbacher15955482020-03-06 10:32:35 -0600813 gfs2_rs_delete(ip, NULL);
814 gfs2_qa_put(ip);
Christoph Hellwige01580b2013-12-20 05:16:52 -0800815fail_free_acls:
Andreas Gruenbacher6ff9b092018-11-26 18:45:35 +0100816 posix_acl_release(default_acl);
817 posix_acl_release(acl);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100818fail_gunlock:
Steven Whitehouse2b47dad2014-01-06 12:49:43 +0000819 gfs2_dir_no_add(&da);
Steven Whitehousef2741d92011-05-13 12:11:17 +0100820 gfs2_glock_dq_uninit(ghs);
Kefeng Wang15a798f2019-06-05 22:24:24 +0800821 if (!IS_ERR_OR_NULL(inode)) {
Steven Whitehouse79ba7482013-03-01 09:29:12 +0000822 clear_nlink(inode);
Abhi Das05978802014-03-31 10:33:17 -0500823 if (!free_vfs_inode)
824 mark_inode_dirty(inode);
825 set_bit(free_vfs_inode ? GIF_FREE_VFS_INODE : GIF_ALLOC_FAILED,
826 &GFS2_I(inode)->i_flags);
Steven Whitehouse40ac2182011-08-02 13:17:27 +0100827 iput(inode);
828 }
Andreas Gruenbachere0b62e22017-06-30 08:16:46 -0500829 if (gfs2_holder_initialized(ghs + 1))
830 gfs2_glock_dq_uninit(ghs + 1);
Steven Whitehouse194c0112011-05-09 14:06:38 +0100831fail:
Bob Peterson2fba46a2020-02-27 12:47:53 -0600832 gfs2_qa_put(dip);
Steven Whitehousef2741d92011-05-13 12:11:17 +0100833 return error;
Steven Whitehouse194c0112011-05-09 14:06:38 +0100834}
Steven Whitehousef2741d92011-05-13 12:11:17 +0100835
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836/**
837 * gfs2_create - Create a file
838 * @dir: The directory in which to create the file
839 * @dentry: The dentry of the new file
840 * @mode: The mode of the new file
841 *
842 * Returns: errno
843 */
844
845static int gfs2_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -0400846 umode_t mode, bool excl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000847{
Al Virob452a452018-06-08 13:06:28 -0400848 return gfs2_create_inode(dir, dentry, NULL, S_IFREG | mode, 0, NULL, 0, excl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000849}
850
851/**
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100852 * __gfs2_lookup - Look up a filename in a directory and return its inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000853 * @dir: The directory inode
854 * @dentry: The dentry of the new inode
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100855 * @file: File to be opened
David Teiglandb3b94fa2006-01-16 16:50:04 +0000856 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000857 *
858 * Returns: errno
859 */
860
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100861static struct dentry *__gfs2_lookup(struct inode *dir, struct dentry *dentry,
Al Virob452a452018-06-08 13:06:28 -0400862 struct file *file)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000863{
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100864 struct inode *inode;
865 struct dentry *d;
866 struct gfs2_holder gh;
867 struct gfs2_glock *gl;
868 int error;
869
870 inode = gfs2_lookupi(dir, &dentry->d_name, 0);
Benjamin Coddington7b7a9112014-09-10 14:09:20 -0400871 if (inode == NULL) {
872 d_add(dentry, NULL);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100873 return NULL;
Benjamin Coddington7b7a9112014-09-10 14:09:20 -0400874 }
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100875 if (IS_ERR(inode))
876 return ERR_CAST(inode);
877
878 gl = GFS2_I(inode)->i_gl;
879 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
880 if (error) {
881 iput(inode);
882 return ERR_PTR(error);
Steven Whitehouse9656b2c2008-01-08 08:14:30 +0000883 }
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100884
885 d = d_splice_alias(inode, dentry);
J. Bruce Fieldsd57b9c92014-01-16 13:51:07 -0500886 if (IS_ERR(d)) {
J. Bruce Fieldsd57b9c92014-01-16 13:51:07 -0500887 gfs2_glock_dq_uninit(&gh);
888 return d;
889 }
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100890 if (file && S_ISREG(inode->i_mode))
Al Virobe12af32018-06-08 11:44:56 -0400891 error = finish_open(file, dentry, gfs2_open_common);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100892
893 gfs2_glock_dq_uninit(&gh);
Miklos Szeredi5ca1db42013-09-23 13:21:04 +0100894 if (error) {
895 dput(d);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100896 return ERR_PTR(error);
Miklos Szeredi5ca1db42013-09-23 13:21:04 +0100897 }
Steven Whitehouse6d4ade92013-06-14 11:17:15 +0100898 return d;
899}
900
901static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
902 unsigned flags)
903{
Al Virob452a452018-06-08 13:06:28 -0400904 return __gfs2_lookup(dir, dentry, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000905}
906
907/**
908 * gfs2_link - Link to a file
909 * @old_dentry: The inode to link
910 * @dir: Add link to this directory
911 * @dentry: The name of the link
912 *
913 * Link the inode in "old_dentry" into the directory "dir" with the
914 * name in "dentry".
915 *
916 * Returns: errno
917 */
918
919static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
920 struct dentry *dentry)
921{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400922 struct gfs2_inode *dip = GFS2_I(dir);
923 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Howells2b0143b2015-03-17 22:25:59 +0000924 struct inode *inode = d_inode(old_dentry);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400925 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 struct gfs2_holder ghs[2];
Steven Whitehouse2baee032011-05-09 12:08:36 +0100927 struct buffer_head *dibh;
Bob Peterson19aeb5a62014-09-29 08:52:04 -0400928 struct gfs2_diradd da = { .bh = NULL, .save_loc = 1, };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929 int error;
930
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500931 if (S_ISDIR(inode->i_mode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000932 return -EPERM;
933
Bob Peterson2fba46a2020-02-27 12:47:53 -0600934 error = gfs2_qa_get(dip);
Bob Peterson0a305e42012-06-06 11:17:59 +0100935 if (error)
936 return error;
937
David Teiglandb3b94fa2006-01-16 16:50:04 +0000938 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
939 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
940
Bob Peterson72dbf472008-08-12 13:39:29 -0500941 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -0500943 goto out_parent;
944
945 error = gfs2_glock_nq(ghs + 1); /* child */
946 if (error)
947 goto out_child;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000948
Steven Whitehoused192a8e2011-05-05 12:35:40 +0100949 error = -ENOENT;
950 if (inode->i_nlink == 0)
951 goto out_gunlock;
952
Al Viro10556cb22011-06-20 19:28:19 -0400953 error = gfs2_permission(dir, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000954 if (error)
955 goto out_gunlock;
956
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100957 error = gfs2_dir_check(dir, &dentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958 switch (error) {
959 case -ENOENT:
960 break;
961 case 0:
962 error = -EEXIST;
963 default:
964 goto out_gunlock;
965 }
966
967 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500968 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 goto out_gunlock;
970 error = -EFBIG;
Steven Whitehousead6203f22008-11-03 13:59:19 +0000971 if (dip->i_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000972 goto out_gunlock;
973 error = -EPERM;
974 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
975 goto out_gunlock;
976 error = -EINVAL;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500977 if (!ip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000978 goto out_gunlock;
979 error = -EMLINK;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500980 if (ip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000981 goto out_gunlock;
982
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000983 error = gfs2_diradd_alloc_required(dir, &dentry->d_name, &da);
Steven Whitehousec7526662006-03-20 12:30:04 -0500984 if (error < 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000985 goto out_gunlock;
986
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +0000987 if (da.nr_blocks) {
988 struct gfs2_alloc_parms ap = { .target = da.nr_blocks, };
Abhi Dasb8fbf472015-03-18 12:03:41 -0500989 error = gfs2_quota_lock_check(dip, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000990 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -0400991 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100993 error = gfs2_inplace_reserve(dip, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000994 if (error)
995 goto out_gunlock_q;
996
Steven Whitehouse534cf9c2014-01-06 12:03:05 +0000997 error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(dip, &da, 2), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998 if (error)
999 goto out_ipres;
1000 } else {
1001 error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
1002 if (error)
1003 goto out_ipres;
1004 }
1005
Steven Whitehouse2baee032011-05-09 12:08:36 +01001006 error = gfs2_meta_inode_buffer(ip, &dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 if (error)
1008 goto out_end_trans;
1009
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001010 error = gfs2_dir_add(dir, &dentry->d_name, ip, &da);
Steven Whitehouse2baee032011-05-09 12:08:36 +01001011 if (error)
1012 goto out_brelse;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001013
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001014 gfs2_trans_add_meta(ip->i_gl, dibh);
Steven Whitehouse2baee032011-05-09 12:08:36 +01001015 inc_nlink(&ip->i_inode);
Deepa Dinamani078cd822016-09-14 07:48:04 -07001016 ip->i_inode.i_ctime = current_time(&ip->i_inode);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001017 ihold(inode);
1018 d_instantiate(dentry, inode);
1019 mark_inode_dirty(inode);
Steven Whitehouse2baee032011-05-09 12:08:36 +01001020
1021out_brelse:
1022 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001023out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001024 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001025out_ipres:
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001026 if (da.nr_blocks)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027 gfs2_inplace_release(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001028out_gunlock_q:
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001029 if (da.nr_blocks)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001030 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001031out_gunlock:
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001032 gfs2_dir_no_add(&da);
Bob Peterson72dbf472008-08-12 13:39:29 -05001033 gfs2_glock_dq(ghs + 1);
1034out_child:
1035 gfs2_glock_dq(ghs);
1036out_parent:
Bob Peterson2297ab62020-05-04 10:18:43 -05001037 gfs2_qa_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001038 gfs2_holder_uninit(ghs);
1039 gfs2_holder_uninit(ghs + 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001040 return error;
1041}
1042
Steven Whitehouse87ec2172009-05-22 10:54:50 +01001043/*
1044 * gfs2_unlink_ok - check to see that a inode is still in a directory
1045 * @dip: the directory
1046 * @name: the name of the file
1047 * @ip: the inode
1048 *
1049 * Assumes that the lock on (at least) @dip is held.
1050 *
1051 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1052 */
1053
1054static int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
1055 const struct gfs2_inode *ip)
1056{
1057 int error;
1058
1059 if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
1060 return -EPERM;
1061
1062 if ((dip->i_inode.i_mode & S_ISVTX) &&
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001063 !uid_eq(dip->i_inode.i_uid, current_fsuid()) &&
1064 !uid_eq(ip->i_inode.i_uid, current_fsuid()) && !capable(CAP_FOWNER))
Steven Whitehouse87ec2172009-05-22 10:54:50 +01001065 return -EPERM;
1066
1067 if (IS_APPEND(&dip->i_inode))
1068 return -EPERM;
1069
Al Viro10556cb22011-06-20 19:28:19 -04001070 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
Steven Whitehouse87ec2172009-05-22 10:54:50 +01001071 if (error)
1072 return error;
1073
Fabian Frederick37975f12014-10-09 22:49:21 +02001074 return gfs2_dir_check(&dip->i_inode, name, ip);
Steven Whitehouse87ec2172009-05-22 10:54:50 +01001075}
1076
David Teiglandb3b94fa2006-01-16 16:50:04 +00001077/**
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001078 * gfs2_unlink_inode - Removes an inode from its parent dir and unlinks it
1079 * @dip: The parent directory
1080 * @name: The name of the entry in the parent directory
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001081 * @inode: The inode to be removed
1082 *
1083 * Called with all the locks and in a transaction. This will only be
1084 * called for a directory after it has been checked to ensure it is empty.
1085 *
1086 * Returns: 0 on success, or an error
1087 */
1088
1089static int gfs2_unlink_inode(struct gfs2_inode *dip,
Bob Peterson4327a9b2012-11-12 13:03:29 -05001090 const struct dentry *dentry)
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001091{
David Howells2b0143b2015-03-17 22:25:59 +00001092 struct inode *inode = d_inode(dentry);
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001093 struct gfs2_inode *ip = GFS2_I(inode);
1094 int error;
1095
1096 error = gfs2_dir_del(dip, dentry);
1097 if (error)
1098 return error;
1099
1100 ip->i_entries = 0;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001101 inode->i_ctime = current_time(inode);
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001102 if (S_ISDIR(inode->i_mode))
1103 clear_nlink(inode);
1104 else
1105 drop_nlink(inode);
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001106 mark_inode_dirty(inode);
1107 if (inode->i_nlink == 0)
1108 gfs2_unlink_di(inode);
1109 return 0;
1110}
1111
1112
1113/**
1114 * gfs2_unlink - Unlink an inode (this does rmdir as well)
1115 * @dir: The inode of the directory containing the inode to unlink
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116 * @dentry: The file itself
1117 *
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001118 * This routine uses the type of the inode as a flag to figure out
1119 * whether this is an unlink or an rmdir.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001120 *
1121 * Returns: errno
1122 */
1123
1124static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
1125{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001126 struct gfs2_inode *dip = GFS2_I(dir);
1127 struct gfs2_sbd *sdp = GFS2_SB(dir);
David Howells2b0143b2015-03-17 22:25:59 +00001128 struct inode *inode = d_inode(dentry);
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001129 struct gfs2_inode *ip = GFS2_I(inode);
Russell Cattelanddee7602007-01-29 17:13:44 -06001130 struct gfs2_holder ghs[3];
1131 struct gfs2_rgrpd *rgd;
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001132 int error;
1133
1134 error = gfs2_rindex_update(sdp);
1135 if (error)
1136 return error;
1137
1138 error = -EROFS;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139
Russell Cattelanddee7602007-01-29 17:13:44 -06001140 gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
1141 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
1142
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001143 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
Steven Whitehousea365fbf2012-02-24 15:09:14 +00001144 if (!rgd)
Steven Whitehouse87654892011-11-08 14:04:20 +00001145 goto out_inodes;
Steven Whitehousea365fbf2012-02-24 15:09:14 +00001146
Russell Cattelanddee7602007-01-29 17:13:44 -06001147 gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
1148
1149
Steven Whitehouse8497a462007-08-26 14:23:56 +01001150 error = gfs2_glock_nq(ghs); /* parent */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001151 if (error)
Steven Whitehouse8497a462007-08-26 14:23:56 +01001152 goto out_parent;
1153
1154 error = gfs2_glock_nq(ghs + 1); /* child */
1155 if (error)
1156 goto out_child;
1157
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001158 error = -ENOENT;
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001159 if (inode->i_nlink == 0)
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001160 goto out_rgrp;
1161
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001162 if (S_ISDIR(inode->i_mode)) {
1163 error = -ENOTEMPTY;
1164 if (ip->i_entries > 2 || inode->i_nlink > 2)
1165 goto out_rgrp;
1166 }
1167
Steven Whitehouse8497a462007-08-26 14:23:56 +01001168 error = gfs2_glock_nq(ghs + 2); /* rgrp */
1169 if (error)
1170 goto out_rgrp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001171
1172 error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
1173 if (error)
Bob Peterson72dbf472008-08-12 13:39:29 -05001174 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001175
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001176 error = gfs2_trans_begin(sdp, 2*RES_DINODE + 3*RES_LEAF + RES_RG_BIT, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001177 if (error)
Bob Peterson2eb59092018-01-29 10:00:23 -07001178 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001179
Bob Peterson4327a9b2012-11-12 13:03:29 -05001180 error = gfs2_unlink_inode(dip, dentry);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001181 gfs2_trans_end(sdp);
Bob Peterson2eb59092018-01-29 10:00:23 -07001182
Bob Peterson72dbf472008-08-12 13:39:29 -05001183out_gunlock:
Steven Whitehouse8497a462007-08-26 14:23:56 +01001184 gfs2_glock_dq(ghs + 2);
1185out_rgrp:
Steven Whitehouse8497a462007-08-26 14:23:56 +01001186 gfs2_glock_dq(ghs + 1);
1187out_child:
Steven Whitehouse8497a462007-08-26 14:23:56 +01001188 gfs2_glock_dq(ghs);
1189out_parent:
Steven Whitehouse87654892011-11-08 14:04:20 +00001190 gfs2_holder_uninit(ghs + 2);
1191out_inodes:
1192 gfs2_holder_uninit(ghs + 1);
Steven Whitehouse8497a462007-08-26 14:23:56 +01001193 gfs2_holder_uninit(ghs);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001194 return error;
1195}
1196
1197/**
1198 * gfs2_symlink - Create a symlink
1199 * @dir: The directory to create the symlink in
1200 * @dentry: The dentry to put the symlink in
1201 * @symname: The thing which the link points to
1202 *
1203 * Returns: errno
1204 */
1205
1206static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
1207 const char *symname)
1208{
Steven Whitehouse160b4022011-05-13 10:34:59 +01001209 unsigned int size;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001210
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 size = strlen(symname);
Andreas Gruenbacher235628c2017-11-14 16:53:12 +01001212 if (size >= gfs2_max_stuffed_size(GFS2_I(dir)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001213 return -ENAMETOOLONG;
1214
Al Virob452a452018-06-08 13:06:28 -04001215 return gfs2_create_inode(dir, dentry, NULL, S_IFLNK | S_IRWXUGO, 0, symname, size, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001216}
1217
1218/**
1219 * gfs2_mkdir - Make a directory
1220 * @dir: The parent directory of the new one
1221 * @dentry: The dentry of the new directory
1222 * @mode: The mode of the new directory
1223 *
1224 * Returns: errno
1225 */
1226
Al Viro18bb1db2011-07-26 01:41:39 -04001227static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001228{
Andreas Gruenbacher235628c2017-11-14 16:53:12 +01001229 unsigned dsize = gfs2_max_stuffed_size(GFS2_I(dir));
Al Virob452a452018-06-08 13:06:28 -04001230 return gfs2_create_inode(dir, dentry, NULL, S_IFDIR | mode, 0, NULL, dsize, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001231}
1232
1233/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234 * gfs2_mknod - Make a special file
1235 * @dir: The directory in which the special file will reside
1236 * @dentry: The dentry of the special file
1237 * @mode: The mode of the special file
Steven Whitehousef2741d92011-05-13 12:11:17 +01001238 * @dev: The device specification of the special file
David Teiglandb3b94fa2006-01-16 16:50:04 +00001239 *
1240 */
1241
Al Viro1a67aaf2011-07-26 01:52:52 -04001242static int gfs2_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001243 dev_t dev)
1244{
Al Virob452a452018-06-08 13:06:28 -04001245 return gfs2_create_inode(dir, dentry, NULL, mode, dev, NULL, 0, 0);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001246}
1247
1248/**
1249 * gfs2_atomic_open - Atomically open a file
1250 * @dir: The directory
1251 * @dentry: The proposed new entry
1252 * @file: The proposed new struct file
1253 * @flags: open flags
1254 * @mode: File mode
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001255 *
1256 * Returns: error code or 0 for success
1257 */
1258
1259static int gfs2_atomic_open(struct inode *dir, struct dentry *dentry,
Antonio Ospite86fbca42015-05-01 12:54:38 -05001260 struct file *file, unsigned flags,
Al Viro44907d72018-06-08 13:32:02 -04001261 umode_t mode)
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001262{
1263 struct dentry *d;
1264 bool excl = !!(flags & O_EXCL);
1265
Al Viro00699ad2016-07-05 09:44:53 -04001266 if (!d_in_lookup(dentry))
Al Viro4d93bc32014-09-12 18:21:05 -04001267 goto skip_lookup;
1268
Al Virob452a452018-06-08 13:06:28 -04001269 d = __gfs2_lookup(dir, dentry, file);
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001270 if (IS_ERR(d))
1271 return PTR_ERR(d);
Miklos Szeredi5ca1db42013-09-23 13:21:04 +01001272 if (d != NULL)
1273 dentry = d;
David Howells2b0143b2015-03-17 22:25:59 +00001274 if (d_really_is_positive(dentry)) {
Al Viroaad888f2018-06-08 12:58:04 -04001275 if (!(file->f_mode & FMODE_OPENED))
Al Viroec7d8792014-11-19 19:35:58 +00001276 return finish_no_open(file, d);
Miklos Szeredi5ca1db42013-09-23 13:21:04 +01001277 dput(d);
Al Viro21039132020-03-10 09:31:41 -04001278 return excl && (flags & O_CREAT) ? -EEXIST : 0;
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001279 }
1280
Miklos Szeredi5ca1db42013-09-23 13:21:04 +01001281 BUG_ON(d != NULL);
Al Viro4d93bc32014-09-12 18:21:05 -04001282
1283skip_lookup:
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01001284 if (!(flags & O_CREAT))
1285 return -ENOENT;
1286
Al Virob452a452018-06-08 13:06:28 -04001287 return gfs2_create_inode(dir, dentry, file, S_IFREG | mode, 0, NULL, 0, excl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288}
1289
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001290/*
1291 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1292 * @this: move this
1293 * @to: to here
1294 *
1295 * Follow @to back to the root and make sure we don't encounter @this
1296 * Assumes we already hold the rename lock.
1297 *
1298 * Returns: errno
1299 */
1300
1301static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1302{
1303 struct inode *dir = &to->i_inode;
1304 struct super_block *sb = dir->i_sb;
1305 struct inode *tmp;
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001306 int error = 0;
1307
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001308 igrab(dir);
1309
1310 for (;;) {
1311 if (dir == &this->i_inode) {
1312 error = -EINVAL;
1313 break;
1314 }
David Howells2b0143b2015-03-17 22:25:59 +00001315 if (dir == d_inode(sb->s_root)) {
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001316 error = 0;
1317 break;
1318 }
1319
Steven Whitehouse8d123582010-09-17 12:30:23 +01001320 tmp = gfs2_lookupi(dir, &gfs2_qdotdot, 1);
Abhi Das48f8f712014-03-12 03:41:44 -05001321 if (!tmp) {
1322 error = -ENOENT;
1323 break;
1324 }
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001325 if (IS_ERR(tmp)) {
1326 error = PTR_ERR(tmp);
1327 break;
1328 }
1329
1330 iput(dir);
1331 dir = tmp;
1332 }
1333
1334 iput(dir);
1335
1336 return error;
1337}
1338
David Teiglandb3b94fa2006-01-16 16:50:04 +00001339/**
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001340 * update_moved_ino - Update an inode that's being moved
1341 * @ip: The inode being moved
1342 * @ndip: The parent directory of the new filename
1343 * @dir_rename: True of ip is a directory
1344 *
1345 * Returns: errno
1346 */
1347
1348static int update_moved_ino(struct gfs2_inode *ip, struct gfs2_inode *ndip,
1349 int dir_rename)
1350{
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001351 if (dir_rename)
1352 return gfs2_dir_mvino(ip, &gfs2_qdotdot, ndip, DT_DIR);
1353
Deepa Dinamani078cd822016-09-14 07:48:04 -07001354 ip->i_inode.i_ctime = current_time(&ip->i_inode);
Andreas Gruenbacher83998cc2018-02-28 12:48:53 -07001355 mark_inode_dirty_sync(&ip->i_inode);
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001356 return 0;
1357}
1358
1359
1360/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001361 * gfs2_rename - Rename a file
1362 * @odir: Parent directory of old file name
1363 * @odentry: The old dentry of the file
1364 * @ndir: Parent directory of new file name
1365 * @ndentry: The new dentry of the file
1366 *
1367 * Returns: errno
1368 */
1369
1370static int gfs2_rename(struct inode *odir, struct dentry *odentry,
1371 struct inode *ndir, struct dentry *ndentry)
1372{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001373 struct gfs2_inode *odip = GFS2_I(odir);
1374 struct gfs2_inode *ndip = GFS2_I(ndir);
David Howells2b0143b2015-03-17 22:25:59 +00001375 struct gfs2_inode *ip = GFS2_I(d_inode(odentry));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001376 struct gfs2_inode *nip = NULL;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001377 struct gfs2_sbd *sdp = GFS2_SB(odir);
Bob Petersonbc74aae2019-08-30 12:31:00 -05001378 struct gfs2_holder ghs[4], r_gh, rd_gh;
Russell Cattelanddee7602007-01-29 17:13:44 -06001379 struct gfs2_rgrpd *nrgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001380 unsigned int num_gh;
1381 int dir_rename = 0;
Bob Peterson19aeb5a62014-09-29 08:52:04 -04001382 struct gfs2_diradd da = { .nr_blocks = 0, .save_loc = 0, };
David Teiglandb3b94fa2006-01-16 16:50:04 +00001383 unsigned int x;
1384 int error;
1385
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001386 gfs2_holder_mark_uninitialized(&r_gh);
Bob Petersonbc74aae2019-08-30 12:31:00 -05001387 gfs2_holder_mark_uninitialized(&rd_gh);
David Howells2b0143b2015-03-17 22:25:59 +00001388 if (d_really_is_positive(ndentry)) {
1389 nip = GFS2_I(d_inode(ndentry));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001390 if (ip == nip)
1391 return 0;
1392 }
1393
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001394 error = gfs2_rindex_update(sdp);
1395 if (error)
1396 return error;
1397
Bob Peterson2fba46a2020-02-27 12:47:53 -06001398 error = gfs2_qa_get(ndip);
Bob Peterson0a305e42012-06-06 11:17:59 +01001399 if (error)
1400 return error;
1401
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001402 if (odip != ndip) {
1403 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
1404 0, &r_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001405 if (error)
1406 goto out;
1407
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001408 if (S_ISDIR(ip->i_inode.i_mode)) {
1409 dir_rename = 1;
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001410 /* don't move a directory into its subdir */
Steven Whitehouse0188d6c2008-08-26 09:38:26 +01001411 error = gfs2_ok_to_move(ip, ndip);
1412 if (error)
1413 goto out_gunlock_r;
1414 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001415 }
1416
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001417 num_gh = 1;
Bob Petersonad269672019-08-30 12:31:02 -05001418 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001419 if (odip != ndip) {
Bob Petersonad269672019-08-30 12:31:02 -05001420 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE,GL_ASYNC,
1421 ghs + num_gh);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001422 num_gh++;
1423 }
Bob Petersonad269672019-08-30 12:31:02 -05001424 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs + num_gh);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001425 num_gh++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001426
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001427 if (nip) {
Bob Petersonad269672019-08-30 12:31:02 -05001428 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC,
1429 ghs + num_gh);
Steven Whitehoused9d1ca32006-06-21 15:38:17 -04001430 num_gh++;
1431 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001432
Bob Peterson72dbf472008-08-12 13:39:29 -05001433 for (x = 0; x < num_gh; x++) {
1434 error = gfs2_glock_nq(ghs + x);
1435 if (error)
1436 goto out_gunlock;
1437 }
Bob Petersonad269672019-08-30 12:31:02 -05001438 error = gfs2_glock_async_wait(num_gh, ghs);
1439 if (error)
1440 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001441
Bob Petersonbc74aae2019-08-30 12:31:00 -05001442 if (nip) {
1443 /* Grab the resource group glock for unlink flag twiddling.
1444 * This is the case where the target dinode already exists
1445 * so we unlink before doing the rename.
1446 */
1447 nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr, 1);
1448 if (!nrgd) {
1449 error = -ENOENT;
1450 goto out_gunlock;
1451 }
1452 error = gfs2_glock_nq_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0,
1453 &rd_gh);
1454 if (error)
1455 goto out_gunlock;
1456 }
1457
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001458 error = -ENOENT;
1459 if (ip->i_inode.i_nlink == 0)
1460 goto out_gunlock;
1461
David Teiglandb3b94fa2006-01-16 16:50:04 +00001462 /* Check out the old directory */
1463
1464 error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
1465 if (error)
1466 goto out_gunlock;
1467
1468 /* Check out the new directory */
1469
1470 if (nip) {
1471 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
1472 if (error)
1473 goto out_gunlock;
1474
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001475 if (nip->i_inode.i_nlink == 0) {
1476 error = -EAGAIN;
1477 goto out_gunlock;
1478 }
1479
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001480 if (S_ISDIR(nip->i_inode.i_mode)) {
Steven Whitehousead6203f22008-11-03 13:59:19 +00001481 if (nip->i_entries < 2) {
Steven Whitehouse94fb7632011-05-09 13:36:10 +01001482 gfs2_consist_inode(nip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001483 error = -EIO;
1484 goto out_gunlock;
1485 }
Steven Whitehousead6203f22008-11-03 13:59:19 +00001486 if (nip->i_entries > 2) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001487 error = -ENOTEMPTY;
1488 goto out_gunlock;
1489 }
1490 }
1491 } else {
Al Viro10556cb22011-06-20 19:28:19 -04001492 error = gfs2_permission(ndir, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001493 if (error)
1494 goto out_gunlock;
1495
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001496 error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001497 switch (error) {
1498 case -ENOENT:
1499 error = 0;
1500 break;
1501 case 0:
1502 error = -EEXIST;
1503 default:
1504 goto out_gunlock;
Aliasgar Surti098b9c12019-10-04 10:55:29 -05001505 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001506
1507 if (odip != ndip) {
Steven Whitehouse4f561102006-11-01 14:04:17 -05001508 if (!ndip->i_inode.i_nlink) {
Steven Whitehoused192a8e2011-05-05 12:35:40 +01001509 error = -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001510 goto out_gunlock;
1511 }
Steven Whitehousead6203f22008-11-03 13:59:19 +00001512 if (ndip->i_entries == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001513 error = -EFBIG;
1514 goto out_gunlock;
1515 }
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001516 if (S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse4f561102006-11-01 14:04:17 -05001517 ndip->i_inode.i_nlink == (u32)-1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001518 error = -EMLINK;
1519 goto out_gunlock;
1520 }
1521 }
1522 }
1523
1524 /* Check out the dir to be renamed */
1525
1526 if (dir_rename) {
David Howells2b0143b2015-03-17 22:25:59 +00001527 error = gfs2_permission(d_inode(odentry), MAY_WRITE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001528 if (error)
1529 goto out_gunlock;
1530 }
1531
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001532 if (nip == NULL) {
1533 error = gfs2_diradd_alloc_required(ndir, &ndentry->d_name, &da);
1534 if (error)
1535 goto out_gunlock;
1536 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001537
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001538 if (da.nr_blocks) {
1539 struct gfs2_alloc_parms ap = { .target = da.nr_blocks, };
Abhi Dasb8fbf472015-03-18 12:03:41 -05001540 error = gfs2_quota_lock_check(ndip, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001541 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04001542 goto out_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001543
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001544 error = gfs2_inplace_reserve(ndip, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001545 if (error)
1546 goto out_gunlock_q;
1547
Steven Whitehouse534cf9c2014-01-06 12:03:05 +00001548 error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(ndip, &da, 4) +
1549 4 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001550 if (error)
1551 goto out_ipreserv;
1552 } else {
1553 error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
S. Wendy Cheng87d21e02007-01-18 16:07:03 -05001554 5 * RES_LEAF + 4, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001555 if (error)
1556 goto out_gunlock;
1557 }
1558
1559 /* Remove the target file, if it exists */
1560
Bob Peterson4327a9b2012-11-12 13:03:29 -05001561 if (nip)
1562 error = gfs2_unlink_inode(ndip, ndentry);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001563
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001564 error = update_moved_ino(ip, ndip, dir_rename);
1565 if (error)
1566 goto out_end_trans;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001567
Steven Whitehouse855d23c2011-05-09 16:42:37 +01001568 error = gfs2_dir_del(odip, odentry);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001569 if (error)
1570 goto out_end_trans;
1571
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001572 error = gfs2_dir_add(ndir, &ndentry->d_name, ip, &da);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001573 if (error)
1574 goto out_end_trans;
1575
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001576out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001577 gfs2_trans_end(sdp);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001578out_ipreserv:
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001579 if (da.nr_blocks)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001580 gfs2_inplace_release(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001581out_gunlock_q:
Steven Whitehouse3c1c0ae2014-01-06 11:28:41 +00001582 if (da.nr_blocks)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001583 gfs2_quota_unlock(ndip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001584out_gunlock:
Steven Whitehouse2b47dad2014-01-06 12:49:43 +00001585 gfs2_dir_no_add(&da);
Bob Petersonbc74aae2019-08-30 12:31:00 -05001586 if (gfs2_holder_initialized(&rd_gh))
1587 gfs2_glock_dq_uninit(&rd_gh);
1588
Bob Peterson72dbf472008-08-12 13:39:29 -05001589 while (x--) {
Bob Petersonad269672019-08-30 12:31:02 -05001590 if (gfs2_holder_queued(ghs + x))
1591 gfs2_glock_dq(ghs + x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001592 gfs2_holder_uninit(ghs + x);
Bob Peterson72dbf472008-08-12 13:39:29 -05001593 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001594out_gunlock_r:
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001595 if (gfs2_holder_initialized(&r_gh))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001596 gfs2_glock_dq_uninit(&r_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001597out:
Bob Peterson2fba46a2020-02-27 12:47:53 -06001598 gfs2_qa_put(ndip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001599 return error;
1600}
1601
1602/**
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001603 * gfs2_exchange - exchange two files
1604 * @odir: Parent directory of old file name
1605 * @odentry: The old dentry of the file
1606 * @ndir: Parent directory of new file name
1607 * @ndentry: The new dentry of the file
1608 * @flags: The rename flags
1609 *
1610 * Returns: errno
1611 */
1612
1613static int gfs2_exchange(struct inode *odir, struct dentry *odentry,
1614 struct inode *ndir, struct dentry *ndentry,
1615 unsigned int flags)
1616{
1617 struct gfs2_inode *odip = GFS2_I(odir);
1618 struct gfs2_inode *ndip = GFS2_I(ndir);
1619 struct gfs2_inode *oip = GFS2_I(odentry->d_inode);
1620 struct gfs2_inode *nip = GFS2_I(ndentry->d_inode);
1621 struct gfs2_sbd *sdp = GFS2_SB(odir);
Bob Petersonad269672019-08-30 12:31:02 -05001622 struct gfs2_holder ghs[4], r_gh;
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001623 unsigned int num_gh;
1624 unsigned int x;
1625 umode_t old_mode = oip->i_inode.i_mode;
1626 umode_t new_mode = nip->i_inode.i_mode;
1627 int error;
1628
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001629 gfs2_holder_mark_uninitialized(&r_gh);
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001630 error = gfs2_rindex_update(sdp);
1631 if (error)
1632 return error;
1633
1634 if (odip != ndip) {
1635 error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
1636 0, &r_gh);
1637 if (error)
1638 goto out;
1639
1640 if (S_ISDIR(old_mode)) {
1641 /* don't move a directory into its subdir */
1642 error = gfs2_ok_to_move(oip, ndip);
1643 if (error)
1644 goto out_gunlock_r;
1645 }
1646
1647 if (S_ISDIR(new_mode)) {
1648 /* don't move a directory into its subdir */
1649 error = gfs2_ok_to_move(nip, odip);
1650 if (error)
1651 goto out_gunlock_r;
1652 }
1653 }
1654
1655 num_gh = 1;
Bob Petersonad269672019-08-30 12:31:02 -05001656 gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs);
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001657 if (odip != ndip) {
Bob Petersonad269672019-08-30 12:31:02 -05001658 gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC,
1659 ghs + num_gh);
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001660 num_gh++;
1661 }
Bob Petersonad269672019-08-30 12:31:02 -05001662 gfs2_holder_init(oip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs + num_gh);
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001663 num_gh++;
1664
Bob Petersonad269672019-08-30 12:31:02 -05001665 gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs + num_gh);
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001666 num_gh++;
1667
1668 for (x = 0; x < num_gh; x++) {
1669 error = gfs2_glock_nq(ghs + x);
1670 if (error)
1671 goto out_gunlock;
1672 }
1673
Bob Petersonad269672019-08-30 12:31:02 -05001674 error = gfs2_glock_async_wait(num_gh, ghs);
1675 if (error)
1676 goto out_gunlock;
1677
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001678 error = -ENOENT;
1679 if (oip->i_inode.i_nlink == 0 || nip->i_inode.i_nlink == 0)
1680 goto out_gunlock;
1681
1682 error = gfs2_unlink_ok(odip, &odentry->d_name, oip);
1683 if (error)
1684 goto out_gunlock;
1685 error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
1686 if (error)
1687 goto out_gunlock;
1688
1689 if (S_ISDIR(old_mode)) {
1690 error = gfs2_permission(odentry->d_inode, MAY_WRITE);
1691 if (error)
1692 goto out_gunlock;
1693 }
1694 if (S_ISDIR(new_mode)) {
1695 error = gfs2_permission(ndentry->d_inode, MAY_WRITE);
1696 if (error)
1697 goto out_gunlock;
1698 }
1699 error = gfs2_trans_begin(sdp, 4 * RES_DINODE + 4 * RES_LEAF, 0);
1700 if (error)
1701 goto out_gunlock;
1702
1703 error = update_moved_ino(oip, ndip, S_ISDIR(old_mode));
1704 if (error)
1705 goto out_end_trans;
1706
1707 error = update_moved_ino(nip, odip, S_ISDIR(new_mode));
1708 if (error)
1709 goto out_end_trans;
1710
1711 error = gfs2_dir_mvino(ndip, &ndentry->d_name, oip,
1712 IF2DT(old_mode));
1713 if (error)
1714 goto out_end_trans;
1715
1716 error = gfs2_dir_mvino(odip, &odentry->d_name, nip,
1717 IF2DT(new_mode));
1718 if (error)
1719 goto out_end_trans;
1720
1721 if (odip != ndip) {
1722 if (S_ISDIR(new_mode) && !S_ISDIR(old_mode)) {
1723 inc_nlink(&odip->i_inode);
1724 drop_nlink(&ndip->i_inode);
1725 } else if (S_ISDIR(old_mode) && !S_ISDIR(new_mode)) {
1726 inc_nlink(&ndip->i_inode);
1727 drop_nlink(&odip->i_inode);
1728 }
1729 }
1730 mark_inode_dirty(&ndip->i_inode);
1731 if (odip != ndip)
1732 mark_inode_dirty(&odip->i_inode);
1733
1734out_end_trans:
1735 gfs2_trans_end(sdp);
1736out_gunlock:
1737 while (x--) {
Bob Petersonad269672019-08-30 12:31:02 -05001738 if (gfs2_holder_queued(ghs + x))
1739 gfs2_glock_dq(ghs + x);
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001740 gfs2_holder_uninit(ghs + x);
1741 }
1742out_gunlock_r:
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001743 if (gfs2_holder_initialized(&r_gh))
Benjamin Marzinskia63b7bb2015-05-05 12:12:19 -05001744 gfs2_glock_dq_uninit(&r_gh);
1745out:
1746 return error;
1747}
1748
1749static int gfs2_rename2(struct inode *odir, struct dentry *odentry,
1750 struct inode *ndir, struct dentry *ndentry,
1751 unsigned int flags)
1752{
1753 flags &= ~RENAME_NOREPLACE;
1754
1755 if (flags & ~RENAME_EXCHANGE)
1756 return -EINVAL;
1757
1758 if (flags & RENAME_EXCHANGE)
1759 return gfs2_exchange(odir, odentry, ndir, ndentry, flags);
1760
1761 return gfs2_rename(odir, odentry, ndir, ndentry);
1762}
1763
1764/**
Al Viro6b255392015-11-17 10:20:54 -05001765 * gfs2_get_link - Follow a symbolic link
David Teiglandb3b94fa2006-01-16 16:50:04 +00001766 * @dentry: The dentry of the link
Al Viro6b255392015-11-17 10:20:54 -05001767 * @inode: The inode of the link
Al Virofceef392015-12-29 15:58:39 -05001768 * @done: destructor for return value
David Teiglandb3b94fa2006-01-16 16:50:04 +00001769 *
Al Viroc177c2a2010-01-14 00:59:16 -05001770 * This can handle symlinks of any size.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001771 *
1772 * Returns: 0 on success or error code
1773 */
1774
Al Viro6b255392015-11-17 10:20:54 -05001775static const char *gfs2_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05001776 struct inode *inode,
1777 struct delayed_call *done)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001778{
Al Viro6b255392015-11-17 10:20:54 -05001779 struct gfs2_inode *ip = GFS2_I(inode);
Al Viroc177c2a2010-01-14 00:59:16 -05001780 struct gfs2_holder i_gh;
1781 struct buffer_head *dibh;
Steven Whitehouse160b4022011-05-13 10:34:59 +01001782 unsigned int size;
Al Viroc177c2a2010-01-14 00:59:16 -05001783 char *buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001784 int error;
1785
Al Viro6b255392015-11-17 10:20:54 -05001786 if (!dentry)
1787 return ERR_PTR(-ECHILD);
1788
Al Viroc177c2a2010-01-14 00:59:16 -05001789 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
1790 error = gfs2_glock_nq(&i_gh);
1791 if (error) {
1792 gfs2_holder_uninit(&i_gh);
Al Viro680baac2015-05-02 13:32:22 -04001793 return ERR_PTR(error);
Al Viroc177c2a2010-01-14 00:59:16 -05001794 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001795
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001796 size = (unsigned int)i_size_read(&ip->i_inode);
1797 if (size == 0) {
Al Viroc177c2a2010-01-14 00:59:16 -05001798 gfs2_consist_inode(ip);
1799 buf = ERR_PTR(-EIO);
1800 goto out;
1801 }
1802
1803 error = gfs2_meta_inode_buffer(ip, &dibh);
1804 if (error) {
1805 buf = ERR_PTR(error);
1806 goto out;
1807 }
1808
Steven Whitehouse160b4022011-05-13 10:34:59 +01001809 buf = kzalloc(size + 1, GFP_NOFS);
Al Viroc177c2a2010-01-14 00:59:16 -05001810 if (!buf)
1811 buf = ERR_PTR(-ENOMEM);
1812 else
Steven Whitehouse160b4022011-05-13 10:34:59 +01001813 memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
Al Viroc177c2a2010-01-14 00:59:16 -05001814 brelse(dibh);
1815out:
1816 gfs2_glock_dq_uninit(&i_gh);
Al Viro680baac2015-05-02 13:32:22 -04001817 if (!IS_ERR(buf))
Al Virofceef392015-12-29 15:58:39 -05001818 set_delayed_call(done, kfree_link, buf);
Al Viro680baac2015-05-02 13:32:22 -04001819 return buf;
Al Viroc177c2a2010-01-14 00:59:16 -05001820}
1821
David Teiglandb3b94fa2006-01-16 16:50:04 +00001822/**
1823 * gfs2_permission -
Steven Whitehouse75d5cfb2011-01-19 09:42:40 +00001824 * @inode: The inode
1825 * @mask: The mask to be tested
1826 * @flags: Indicates whether this is an RCU path walk or not
David Teiglandb3b94fa2006-01-16 16:50:04 +00001827 *
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001828 * This may be called from the VFS directly, or from within GFS2 with the
1829 * inode locked, so we look to see if the glock is already locked and only
1830 * lock the glock if its not already been done.
1831 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001832 * Returns: errno
1833 */
1834
Al Viro10556cb22011-06-20 19:28:19 -04001835int gfs2_permission(struct inode *inode, int mask)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001836{
Nick Pigginb74c79e2011-01-07 17:49:58 +11001837 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001838 struct gfs2_holder i_gh;
1839 int error;
1840
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001841 gfs2_holder_mark_uninitialized(&i_gh);
Nick Pigginb74c79e2011-01-07 17:49:58 +11001842 ip = GFS2_I(inode);
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00001843 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001844 if (mask & MAY_NOT_BLOCK)
1845 return -ECHILD;
1846 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
1847 if (error)
1848 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001849 }
1850
Miklos Szeredif58ba882008-07-02 21:12:01 +02001851 if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
Eryu Guan337684a2016-08-02 19:58:28 +08001852 error = -EPERM;
Miklos Szeredif58ba882008-07-02 21:12:01 +02001853 else
Al Viro2830ba72011-06-20 19:16:29 -04001854 error = generic_permission(inode, mask);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001855 if (gfs2_holder_initialized(&i_gh))
Steven Whitehouse300c7d72006-11-27 09:55:28 -05001856 gfs2_glock_dq_uninit(&i_gh);
1857
David Teiglandb3b94fa2006-01-16 16:50:04 +00001858 return error;
1859}
1860
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001861static int __gfs2_setattr_simple(struct inode *inode, struct iattr *attr)
Steven Whitehouse194c0112011-05-09 14:06:38 +01001862{
Steven Whitehouse194c0112011-05-09 14:06:38 +01001863 setattr_copy(inode, attr);
1864 mark_inode_dirty(inode);
Steven Whitehouse194c0112011-05-09 14:06:38 +01001865 return 0;
1866}
1867
1868/**
1869 * gfs2_setattr_simple -
1870 * @ip:
1871 * @attr:
1872 *
1873 * Returns: errno
1874 */
1875
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001876int gfs2_setattr_simple(struct inode *inode, struct iattr *attr)
Steven Whitehouse194c0112011-05-09 14:06:38 +01001877{
1878 int error;
1879
1880 if (current->journal_info)
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001881 return __gfs2_setattr_simple(inode, attr);
Steven Whitehouse194c0112011-05-09 14:06:38 +01001882
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001883 error = gfs2_trans_begin(GFS2_SB(inode), RES_DINODE, 0);
Steven Whitehouse194c0112011-05-09 14:06:38 +01001884 if (error)
1885 return error;
1886
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001887 error = __gfs2_setattr_simple(inode, attr);
1888 gfs2_trans_end(GFS2_SB(inode));
Steven Whitehouse194c0112011-05-09 14:06:38 +01001889 return error;
1890}
1891
David Teiglandb3b94fa2006-01-16 16:50:04 +00001892static int setattr_chown(struct inode *inode, struct iattr *attr)
1893{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001894 struct gfs2_inode *ip = GFS2_I(inode);
1895 struct gfs2_sbd *sdp = GFS2_SB(inode);
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -08001896 kuid_t ouid, nuid;
1897 kgid_t ogid, ngid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001898 int error;
Abhi Dasb8fbf472015-03-18 12:03:41 -05001899 struct gfs2_alloc_parms ap;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001900
Steven Whitehouse2933f922006-11-01 13:23:29 -05001901 ouid = inode->i_uid;
1902 ogid = inode->i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001903 nuid = attr->ia_uid;
1904 ngid = attr->ia_gid;
1905
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001906 if (!(attr->ia_valid & ATTR_UID) || uid_eq(ouid, nuid))
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001907 ouid = nuid = NO_UID_QUOTA_CHANGE;
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001908 if (!(attr->ia_valid & ATTR_GID) || gid_eq(ogid, ngid))
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001909 ogid = ngid = NO_GID_QUOTA_CHANGE;
Bob Peterson2fba46a2020-02-27 12:47:53 -06001910 error = gfs2_qa_get(ip);
Bob Peterson62e96cf2014-01-06 17:16:01 -05001911 if (error)
Bob Peterson2fba46a2020-02-27 12:47:53 -06001912 return error;
Bob Peterson62e96cf2014-01-06 17:16:01 -05001913
1914 error = gfs2_rindex_update(sdp);
1915 if (error)
1916 goto out;
1917
1918 error = gfs2_quota_lock(ip, nuid, ngid);
1919 if (error)
1920 goto out;
1921
Abhi Dasb8fbf472015-03-18 12:03:41 -05001922 ap.target = gfs2_get_inode_blocks(&ip->i_inode);
1923
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001924 if (!uid_eq(ouid, NO_UID_QUOTA_CHANGE) ||
1925 !gid_eq(ogid, NO_GID_QUOTA_CHANGE)) {
Abhi Dasb8fbf472015-03-18 12:03:41 -05001926 error = gfs2_quota_check(ip, nuid, ngid, &ap);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001927 if (error)
1928 goto out_gunlock_q;
1929 }
1930
1931 error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
1932 if (error)
1933 goto out_gunlock_q;
1934
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001935 error = gfs2_setattr_simple(inode, attr);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001936 if (error)
1937 goto out_end_trans;
1938
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -08001939 if (!uid_eq(ouid, NO_UID_QUOTA_CHANGE) ||
1940 !gid_eq(ogid, NO_GID_QUOTA_CHANGE)) {
Abhi Das39a72582015-06-02 11:02:24 -05001941 gfs2_quota_change(ip, -(s64)ap.target, ouid, ogid);
Abhi Dasb8fbf472015-03-18 12:03:41 -05001942 gfs2_quota_change(ip, ap.target, nuid, ngid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001943 }
1944
Steven Whitehousea91ea692006-09-04 12:04:26 -04001945out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001946 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001947out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001948 gfs2_quota_unlock(ip);
Bob Peterson62e96cf2014-01-06 17:16:01 -05001949out:
Bob Peterson2fba46a2020-02-27 12:47:53 -06001950 gfs2_qa_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001951 return error;
1952}
1953
1954/**
1955 * gfs2_setattr - Change attributes on an inode
1956 * @dentry: The dentry which is changing
1957 * @attr: The structure describing the change
1958 *
1959 * The VFS layer wants to change one or more of an inodes attributes. Write
1960 * that change out to disk.
1961 *
1962 * Returns: errno
1963 */
1964
1965static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
1966{
David Howells2b0143b2015-03-17 22:25:59 +00001967 struct inode *inode = d_inode(dentry);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001968 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001969 struct gfs2_holder i_gh;
1970 int error;
1971
Bob Peterson2fba46a2020-02-27 12:47:53 -06001972 error = gfs2_qa_get(ip);
Bob Peterson0a305e42012-06-06 11:17:59 +01001973 if (error)
1974 return error;
1975
David Teiglandb3b94fa2006-01-16 16:50:04 +00001976 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1977 if (error)
Bob Peterson2fba46a2020-02-27 12:47:53 -06001978 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001979
1980 error = -EPERM;
1981 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Bob Peterson2fba46a2020-02-27 12:47:53 -06001982 goto error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001983
Jan Kara31051c82016-05-26 16:55:18 +02001984 error = setattr_prepare(dentry, attr);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001985 if (error)
Bob Peterson2fba46a2020-02-27 12:47:53 -06001986 goto error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001987
1988 if (attr->ia_valid & ATTR_SIZE)
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001989 error = gfs2_setattr_size(inode, attr->ia_size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001990 else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
1991 error = setattr_chown(inode, attr);
Christoph Hellwige01580b2013-12-20 05:16:52 -08001992 else {
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001993 error = gfs2_setattr_simple(inode, attr);
Christoph Hellwige01580b2013-12-20 05:16:52 -08001994 if (!error && attr->ia_valid & ATTR_MODE)
1995 error = posix_acl_chmod(inode, inode->i_mode);
1996 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001997
Bob Peterson2fba46a2020-02-27 12:47:53 -06001998error:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001999 if (!error)
2000 mark_inode_dirty(inode);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01002001 gfs2_glock_dq_uninit(&i_gh);
Bob Peterson2fba46a2020-02-27 12:47:53 -06002002out:
2003 gfs2_qa_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002004 return error;
2005}
2006
2007/**
2008 * gfs2_getattr - Read out an inode's attributes
David Howellsa528d352017-01-31 16:46:22 +00002009 * @path: Object to query
David Teiglandb3b94fa2006-01-16 16:50:04 +00002010 * @stat: The inode's stats
David Howellsa528d352017-01-31 16:46:22 +00002011 * @request_mask: Mask of STATX_xxx flags indicating the caller's interests
2012 * @flags: AT_STATX_xxx setting
David Teiglandb3b94fa2006-01-16 16:50:04 +00002013 *
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05002014 * This may be called from the VFS directly, or from within GFS2 with the
2015 * inode locked, so we look to see if the glock is already locked and only
2016 * lock the glock if its not already been done. Note that its the NFS
2017 * readdirplus operation which causes this to be called (from filldir)
2018 * with the glock already held.
2019 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00002020 * Returns: errno
2021 */
2022
David Howellsa528d352017-01-31 16:46:22 +00002023static int gfs2_getattr(const struct path *path, struct kstat *stat,
2024 u32 request_mask, unsigned int flags)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002025{
David Howellsa528d352017-01-31 16:46:22 +00002026 struct inode *inode = d_inode(path->dentry);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002027 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002028 struct gfs2_holder gh;
Andreas Gruenbacherb2623c22017-10-09 17:55:58 +02002029 u32 gfsflags;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002030 int error;
2031
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05002032 gfs2_holder_mark_uninitialized(&gh);
Steven Whitehouse7afd88d2008-02-22 16:07:18 +00002033 if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06002034 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
2035 if (error)
2036 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002037 }
2038
Andreas Gruenbacherb2623c22017-10-09 17:55:58 +02002039 gfsflags = ip->i_diskflags;
2040 if (gfsflags & GFS2_DIF_APPENDONLY)
2041 stat->attributes |= STATX_ATTR_APPEND;
2042 if (gfsflags & GFS2_DIF_IMMUTABLE)
2043 stat->attributes |= STATX_ATTR_IMMUTABLE;
2044
2045 stat->attributes_mask |= (STATX_ATTR_APPEND |
2046 STATX_ATTR_COMPRESSED |
2047 STATX_ATTR_ENCRYPTED |
2048 STATX_ATTR_IMMUTABLE |
2049 STATX_ATTR_NODUMP);
2050
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05002051 generic_fillattr(inode, stat);
Andreas Gruenbacherb2623c22017-10-09 17:55:58 +02002052
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05002053 if (gfs2_holder_initialized(&gh))
Steven Whitehousedcf3dd82006-11-27 10:12:05 -05002054 gfs2_glock_dq_uninit(&gh);
2055
2056 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002057}
2058
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002059static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
2060 u64 start, u64 len)
2061{
2062 struct gfs2_inode *ip = GFS2_I(inode);
2063 struct gfs2_holder gh;
2064 int ret;
2065
Bob Petersonaac1a552017-02-16 21:13:54 +01002066 inode_lock_shared(inode);
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002067
2068 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
2069 if (ret)
2070 goto out;
2071
Bob Petersonaac1a552017-02-16 21:13:54 +01002072 ret = iomap_fiemap(inode, fieinfo, start, len, &gfs2_iomap_ops);
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002073
2074 gfs2_glock_dq_uninit(&gh);
Bob Petersonaac1a552017-02-16 21:13:54 +01002075
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002076out:
Bob Petersonaac1a552017-02-16 21:13:54 +01002077 inode_unlock_shared(inode);
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002078 return ret;
2079}
2080
Andreas Gruenbacher3a274112017-03-15 19:12:59 +01002081loff_t gfs2_seek_data(struct file *file, loff_t offset)
2082{
2083 struct inode *inode = file->f_mapping->host;
2084 struct gfs2_inode *ip = GFS2_I(inode);
2085 struct gfs2_holder gh;
2086 loff_t ret;
2087
2088 inode_lock_shared(inode);
2089 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
2090 if (!ret)
2091 ret = iomap_seek_data(inode, offset, &gfs2_iomap_ops);
2092 gfs2_glock_dq_uninit(&gh);
2093 inode_unlock_shared(inode);
2094
2095 if (ret < 0)
2096 return ret;
2097 return vfs_setpos(file, ret, inode->i_sb->s_maxbytes);
2098}
2099
2100loff_t gfs2_seek_hole(struct file *file, loff_t offset)
2101{
2102 struct inode *inode = file->f_mapping->host;
2103 struct gfs2_inode *ip = GFS2_I(inode);
2104 struct gfs2_holder gh;
2105 loff_t ret;
2106
2107 inode_lock_shared(inode);
2108 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
2109 if (!ret)
2110 ret = iomap_seek_hole(inode, offset, &gfs2_iomap_ops);
2111 gfs2_glock_dq_uninit(&gh);
2112 inode_unlock_shared(inode);
2113
2114 if (ret < 0)
2115 return ret;
2116 return vfs_setpos(file, ret, inode->i_sb->s_maxbytes);
2117}
2118
Andreas Gruenbacher82e938b2020-11-25 23:37:18 +01002119static int gfs2_update_time(struct inode *inode, struct timespec64 *time,
2120 int flags)
2121{
2122 struct gfs2_inode *ip = GFS2_I(inode);
2123 struct gfs2_glock *gl = ip->i_gl;
2124 struct gfs2_holder *gh;
2125 int error;
2126
2127 gh = gfs2_glock_is_locked_by_me(gl);
2128 if (gh && !gfs2_glock_is_held_excl(gl)) {
2129 gfs2_glock_dq(gh);
2130 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, gh);
2131 error = gfs2_glock_nq(gh);
2132 if (error)
2133 return error;
2134 }
2135 return generic_update_time(inode, time, flags);
2136}
2137
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002138const struct inode_operations gfs2_file_iops = {
Al Viroe6305c42008-07-15 21:03:57 -04002139 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002140 .setattr = gfs2_setattr,
2141 .getattr = gfs2_getattr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002142 .listxattr = gfs2_listxattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002143 .fiemap = gfs2_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02002144 .get_acl = gfs2_get_acl,
Christoph Hellwige01580b2013-12-20 05:16:52 -08002145 .set_acl = gfs2_set_acl,
Andreas Gruenbacher82e938b2020-11-25 23:37:18 +01002146 .update_time = gfs2_update_time,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002147};
2148
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002149const struct inode_operations gfs2_dir_iops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +00002150 .create = gfs2_create,
2151 .lookup = gfs2_lookup,
2152 .link = gfs2_link,
2153 .unlink = gfs2_unlink,
2154 .symlink = gfs2_symlink,
2155 .mkdir = gfs2_mkdir,
Steven Whitehouse855d23c2011-05-09 16:42:37 +01002156 .rmdir = gfs2_unlink,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002157 .mknod = gfs2_mknod,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02002158 .rename = gfs2_rename2,
Al Viroe6305c42008-07-15 21:03:57 -04002159 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002160 .setattr = gfs2_setattr,
2161 .getattr = gfs2_getattr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002162 .listxattr = gfs2_listxattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002163 .fiemap = gfs2_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02002164 .get_acl = gfs2_get_acl,
Christoph Hellwige01580b2013-12-20 05:16:52 -08002165 .set_acl = gfs2_set_acl,
Andreas Gruenbacher82e938b2020-11-25 23:37:18 +01002166 .update_time = gfs2_update_time,
Steven Whitehouse6d4ade92013-06-14 11:17:15 +01002167 .atomic_open = gfs2_atomic_open,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002168};
2169
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002170const struct inode_operations gfs2_symlink_iops = {
Al Viro6b255392015-11-17 10:20:54 -05002171 .get_link = gfs2_get_link,
Al Viroe6305c42008-07-15 21:03:57 -04002172 .permission = gfs2_permission,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002173 .setattr = gfs2_setattr,
2174 .getattr = gfs2_getattr,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002175 .listxattr = gfs2_listxattr,
Steven Whitehousee9079cc2008-10-14 14:43:29 +01002176 .fiemap = gfs2_fiemap,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002177};
2178