• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
4  * Copyright (C) 2004-2011 Red Hat, Inc.  All rights reserved.
5  */
6 
7 #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>
12 #include <linux/mm.h>
13 #include <linux/cred.h>
14 #include <linux/xattr.h>
15 #include <linux/posix_acl.h>
16 #include <linux/gfs2_ondisk.h>
17 #include <linux/crc32.h>
18 #include <linux/iomap.h>
19 #include <linux/security.h>
20 #include <linux/fiemap.h>
21 #include <linux/uaccess.h>
22 
23 #include "gfs2.h"
24 #include "incore.h"
25 #include "acl.h"
26 #include "bmap.h"
27 #include "dir.h"
28 #include "xattr.h"
29 #include "glock.h"
30 #include "inode.h"
31 #include "meta_io.h"
32 #include "quota.h"
33 #include "rgrp.h"
34 #include "trans.h"
35 #include "util.h"
36 #include "super.h"
37 #include "glops.h"
38 
39 static const struct inode_operations gfs2_file_iops;
40 static const struct inode_operations gfs2_dir_iops;
41 static const struct inode_operations gfs2_symlink_iops;
42 
43 /**
44  * gfs2_set_iop - Sets inode operations
45  * @inode: The inode with correct i_mode filled in
46  *
47  * GFS2 lookup code fills in vfs inode contents based on info obtained
48  * from directory entry inside gfs2_inode_lookup().
49  */
50 
gfs2_set_iop(struct inode * inode)51 static void gfs2_set_iop(struct inode *inode)
52 {
53 	struct gfs2_sbd *sdp = GFS2_SB(inode);
54 	umode_t mode = inode->i_mode;
55 
56 	if (S_ISREG(mode)) {
57 		inode->i_op = &gfs2_file_iops;
58 		if (gfs2_localflocks(sdp))
59 			inode->i_fop = &gfs2_file_fops_nolock;
60 		else
61 			inode->i_fop = &gfs2_file_fops;
62 	} else if (S_ISDIR(mode)) {
63 		inode->i_op = &gfs2_dir_iops;
64 		if (gfs2_localflocks(sdp))
65 			inode->i_fop = &gfs2_dir_fops_nolock;
66 		else
67 			inode->i_fop = &gfs2_dir_fops;
68 	} else if (S_ISLNK(mode)) {
69 		inode->i_op = &gfs2_symlink_iops;
70 	} else {
71 		inode->i_op = &gfs2_file_iops;
72 		init_special_inode(inode, inode->i_mode, inode->i_rdev);
73 	}
74 }
75 
iget_test(struct inode * inode,void * opaque)76 static int iget_test(struct inode *inode, void *opaque)
77 {
78 	u64 no_addr = *(u64 *)opaque;
79 
80 	return GFS2_I(inode)->i_no_addr == no_addr;
81 }
82 
iget_set(struct inode * inode,void * opaque)83 static int iget_set(struct inode *inode, void *opaque)
84 {
85 	u64 no_addr = *(u64 *)opaque;
86 
87 	GFS2_I(inode)->i_no_addr = no_addr;
88 	inode->i_ino = no_addr;
89 	return 0;
90 }
91 
92 /**
93  * gfs2_inode_lookup - Lookup an inode
94  * @sb: The super block
95  * @type: The type of the inode
96  * @no_addr: The inode number
97  * @no_formal_ino: The inode generation number
98  * @blktype: Requested block type (GFS2_BLKST_DINODE or GFS2_BLKST_UNLINKED;
99  *           GFS2_BLKST_FREE to indicate not to verify)
100  *
101  * If @type is DT_UNKNOWN, the inode type is fetched from disk.
102  *
103  * If @blktype is anything other than GFS2_BLKST_FREE (which is used as a
104  * placeholder because it doesn't otherwise make sense), the on-disk block type
105  * is verified to be @blktype.
106  *
107  * When @no_formal_ino is non-zero, this function will return ERR_PTR(-ESTALE)
108  * if it detects that @no_formal_ino doesn't match the actual inode generation
109  * number.  However, it doesn't always know unless @type is DT_UNKNOWN.
110  *
111  * Returns: A VFS inode, or an error
112  */
113 
gfs2_inode_lookup(struct super_block * sb,unsigned int type,u64 no_addr,u64 no_formal_ino,unsigned int blktype)114 struct inode *gfs2_inode_lookup(struct super_block *sb, unsigned int type,
115 				u64 no_addr, u64 no_formal_ino,
116 				unsigned int blktype)
117 {
118 	struct inode *inode;
119 	struct gfs2_inode *ip;
120 	struct gfs2_holder i_gh;
121 	int error;
122 
123 	gfs2_holder_mark_uninitialized(&i_gh);
124 	inode = iget5_locked(sb, no_addr, iget_test, iget_set, &no_addr);
125 	if (!inode)
126 		return ERR_PTR(-ENOMEM);
127 
128 	ip = GFS2_I(inode);
129 
130 	if (inode->i_state & I_NEW) {
131 		struct gfs2_sbd *sdp = GFS2_SB(inode);
132 		struct gfs2_glock *io_gl;
133 		int extra_flags = 0;
134 
135 		error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE,
136 				       &ip->i_gl);
137 		if (unlikely(error))
138 			goto fail;
139 
140 		error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE,
141 				       &io_gl);
142 		if (unlikely(error))
143 			goto fail;
144 
145 		/*
146 		 * The only caller that sets @blktype to GFS2_BLKST_UNLINKED is
147 		 * delete_work_func().  Make sure not to cancel the delete work
148 		 * from within itself here.
149 		 */
150 		if (blktype == GFS2_BLKST_UNLINKED)
151 			extra_flags |= LM_FLAG_TRY;
152 		else
153 			gfs2_cancel_delete_work(io_gl);
154 		error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED,
155 					   GL_EXACT | GL_NOPID | extra_flags,
156 					   &ip->i_iopen_gh);
157 		gfs2_glock_put(io_gl);
158 		if (unlikely(error))
159 			goto fail;
160 
161 		if (type == DT_UNKNOWN || blktype != GFS2_BLKST_FREE) {
162 			/*
163 			 * The GL_SKIP flag indicates to skip reading the inode
164 			 * block.  We read the inode when instantiating it
165 			 * after possibly checking the block type.
166 			 */
167 			error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE,
168 						   GL_SKIP, &i_gh);
169 			if (error)
170 				goto fail;
171 
172 			error = -ESTALE;
173 			if (no_formal_ino &&
174 			    gfs2_inode_already_deleted(ip->i_gl, no_formal_ino))
175 				goto fail;
176 
177 			if (blktype != GFS2_BLKST_FREE) {
178 				error = gfs2_check_blk_type(sdp, no_addr,
179 							    blktype);
180 				if (error)
181 					goto fail;
182 			}
183 		}
184 
185 		set_bit(GLF_INSTANTIATE_NEEDED, &ip->i_gl->gl_flags);
186 
187 		/* Lowest possible timestamp; will be overwritten in gfs2_dinode_in. */
188 		inode_set_atime(inode,
189 				1LL << (8 * sizeof(inode_get_atime_sec(inode)) - 1),
190 				0);
191 
192 		glock_set_object(ip->i_gl, ip);
193 
194 		if (type == DT_UNKNOWN) {
195 			/* Inode glock must be locked already */
196 			error = gfs2_instantiate(&i_gh);
197 			if (error) {
198 				glock_clear_object(ip->i_gl, ip);
199 				goto fail;
200 			}
201 		} else {
202 			ip->i_no_formal_ino = no_formal_ino;
203 			inode->i_mode = DT2IF(type);
204 		}
205 
206 		if (gfs2_holder_initialized(&i_gh))
207 			gfs2_glock_dq_uninit(&i_gh);
208 		glock_set_object(ip->i_iopen_gh.gh_gl, ip);
209 
210 		gfs2_set_iop(inode);
211 		unlock_new_inode(inode);
212 	}
213 
214 	if (no_formal_ino && ip->i_no_formal_ino &&
215 	    no_formal_ino != ip->i_no_formal_ino) {
216 		iput(inode);
217 		return ERR_PTR(-ESTALE);
218 	}
219 
220 	return inode;
221 
222 fail:
223 	if (error == GLR_TRYFAILED)
224 		error = -EAGAIN;
225 	if (gfs2_holder_initialized(&ip->i_iopen_gh))
226 		gfs2_glock_dq_uninit(&ip->i_iopen_gh);
227 	if (gfs2_holder_initialized(&i_gh))
228 		gfs2_glock_dq_uninit(&i_gh);
229 	if (ip->i_gl) {
230 		gfs2_glock_put(ip->i_gl);
231 		ip->i_gl = NULL;
232 	}
233 	iget_failed(inode);
234 	return ERR_PTR(error);
235 }
236 
237 /**
238  * gfs2_lookup_by_inum - look up an inode by inode number
239  * @sdp: The super block
240  * @no_addr: The inode number
241  * @no_formal_ino: The inode generation number (0 for any)
242  * @blktype: Requested block type (see gfs2_inode_lookup)
243  */
gfs2_lookup_by_inum(struct gfs2_sbd * sdp,u64 no_addr,u64 no_formal_ino,unsigned int blktype)244 struct inode *gfs2_lookup_by_inum(struct gfs2_sbd *sdp, u64 no_addr,
245 				  u64 no_formal_ino, unsigned int blktype)
246 {
247 	struct super_block *sb = sdp->sd_vfs;
248 	struct inode *inode;
249 	int error;
250 
251 	inode = gfs2_inode_lookup(sb, DT_UNKNOWN, no_addr, no_formal_ino,
252 				  blktype);
253 	if (IS_ERR(inode))
254 		return inode;
255 
256 	if (no_formal_ino) {
257 		error = -EIO;
258 		if (GFS2_I(inode)->i_diskflags & GFS2_DIF_SYSTEM)
259 			goto fail_iput;
260 	}
261 	return inode;
262 
263 fail_iput:
264 	iput(inode);
265 	return ERR_PTR(error);
266 }
267 
268 
269 /**
270  * gfs2_lookup_meta - Look up an inode in a metadata directory
271  * @dip: The directory
272  * @name: The name of the inode
273  */
gfs2_lookup_meta(struct inode * dip,const char * name)274 struct inode *gfs2_lookup_meta(struct inode *dip, const char *name)
275 {
276 	struct qstr qstr;
277 	struct inode *inode;
278 
279 	gfs2_str2qstr(&qstr, name);
280 	inode = gfs2_lookupi(dip, &qstr, 1);
281 	if (IS_ERR_OR_NULL(inode))
282 		return inode ? inode : ERR_PTR(-ENOENT);
283 
284 	/*
285 	 * Must not call back into the filesystem when allocating
286 	 * pages in the metadata inode's address space.
287 	 */
288 	mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
289 
290 	return inode;
291 }
292 
293 
294 /**
295  * gfs2_lookupi - Look up a filename in a directory and return its inode
296  * @dir: The inode of the directory containing the inode to look-up
297  * @name: The name of the inode to look for
298  * @is_root: If 1, ignore the caller's permissions
299  *
300  * This can be called via the VFS filldir function when NFS is doing
301  * a readdirplus and the inode which its intending to stat isn't
302  * already in cache. In this case we must not take the directory glock
303  * again, since the readdir call will have already taken that lock.
304  *
305  * Returns: errno
306  */
307 
gfs2_lookupi(struct inode * dir,const struct qstr * name,int is_root)308 struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
309 			   int is_root)
310 {
311 	struct super_block *sb = dir->i_sb;
312 	struct gfs2_inode *dip = GFS2_I(dir);
313 	struct gfs2_holder d_gh;
314 	int error = 0;
315 	struct inode *inode = NULL;
316 
317 	gfs2_holder_mark_uninitialized(&d_gh);
318 	if (!name->len || name->len > GFS2_FNAMESIZE)
319 		return ERR_PTR(-ENAMETOOLONG);
320 
321 	if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
322 	    (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
323 	     dir == d_inode(sb->s_root))) {
324 		igrab(dir);
325 		return dir;
326 	}
327 
328 	if (gfs2_glock_is_locked_by_me(dip->i_gl) == NULL) {
329 		error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
330 		if (error)
331 			return ERR_PTR(error);
332 	}
333 
334 	if (!is_root) {
335 		error = gfs2_permission(&nop_mnt_idmap, dir, MAY_EXEC);
336 		if (error)
337 			goto out;
338 	}
339 
340 	inode = gfs2_dir_search(dir, name, false);
341 	if (IS_ERR(inode))
342 		error = PTR_ERR(inode);
343 out:
344 	if (gfs2_holder_initialized(&d_gh))
345 		gfs2_glock_dq_uninit(&d_gh);
346 	if (error == -ENOENT)
347 		return NULL;
348 	return inode ? inode : ERR_PTR(error);
349 }
350 
351 /**
352  * create_ok - OK to create a new on-disk inode here?
353  * @dip:  Directory in which dinode is to be created
354  * @name:  Name of new dinode
355  * @mode:
356  *
357  * Returns: errno
358  */
359 
create_ok(struct gfs2_inode * dip,const struct qstr * name,umode_t mode)360 static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
361 		     umode_t mode)
362 {
363 	int error;
364 
365 	error = gfs2_permission(&nop_mnt_idmap, &dip->i_inode,
366 				MAY_WRITE | MAY_EXEC);
367 	if (error)
368 		return error;
369 
370 	/*  Don't create entries in an unlinked directory  */
371 	if (!dip->i_inode.i_nlink)
372 		return -ENOENT;
373 
374 	if (dip->i_entries == (u32)-1)
375 		return -EFBIG;
376 	if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
377 		return -EMLINK;
378 
379 	return 0;
380 }
381 
munge_mode_uid_gid(const struct gfs2_inode * dip,struct inode * inode)382 static void munge_mode_uid_gid(const struct gfs2_inode *dip,
383 			       struct inode *inode)
384 {
385 	if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
386 	    (dip->i_inode.i_mode & S_ISUID) &&
387 	    !uid_eq(dip->i_inode.i_uid, GLOBAL_ROOT_UID)) {
388 		if (S_ISDIR(inode->i_mode))
389 			inode->i_mode |= S_ISUID;
390 		else if (!uid_eq(dip->i_inode.i_uid, current_fsuid()))
391 			inode->i_mode &= ~07111;
392 		inode->i_uid = dip->i_inode.i_uid;
393 	} else
394 		inode->i_uid = current_fsuid();
395 
396 	if (dip->i_inode.i_mode & S_ISGID) {
397 		if (S_ISDIR(inode->i_mode))
398 			inode->i_mode |= S_ISGID;
399 		inode->i_gid = dip->i_inode.i_gid;
400 	} else
401 		inode->i_gid = current_fsgid();
402 }
403 
alloc_dinode(struct gfs2_inode * ip,u32 flags,unsigned * dblocks)404 static int alloc_dinode(struct gfs2_inode *ip, u32 flags, unsigned *dblocks)
405 {
406 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
407 	struct gfs2_alloc_parms ap = { .target = *dblocks, .aflags = flags, };
408 	int error;
409 
410 	error = gfs2_quota_lock_check(ip, &ap);
411 	if (error)
412 		goto out;
413 
414 	error = gfs2_inplace_reserve(ip, &ap);
415 	if (error)
416 		goto out_quota;
417 
418 	error = gfs2_trans_begin(sdp, (*dblocks * RES_RG_BIT) + RES_STATFS + RES_QUOTA, 0);
419 	if (error)
420 		goto out_ipreserv;
421 
422 	error = gfs2_alloc_blocks(ip, &ip->i_no_addr, dblocks, 1);
423 	if (error)
424 		goto out_trans_end;
425 
426 	ip->i_no_formal_ino = ip->i_generation;
427 	ip->i_inode.i_ino = ip->i_no_addr;
428 	ip->i_goal = ip->i_no_addr;
429 	if (*dblocks > 1)
430 		ip->i_eattr = ip->i_no_addr + 1;
431 
432 out_trans_end:
433 	gfs2_trans_end(sdp);
434 out_ipreserv:
435 	gfs2_inplace_release(ip);
436 out_quota:
437 	gfs2_quota_unlock(ip);
438 out:
439 	return error;
440 }
441 
gfs2_final_release_pages(struct gfs2_inode * ip)442 static void gfs2_final_release_pages(struct gfs2_inode *ip)
443 {
444 	struct inode *inode = &ip->i_inode;
445 	struct gfs2_glock *gl = ip->i_gl;
446 
447 	if (unlikely(!gl)) {
448 		/* This can only happen during incomplete inode creation. */
449 		BUG_ON(!test_bit(GIF_ALLOC_FAILED, &ip->i_flags));
450 		return;
451 	}
452 
453 	truncate_inode_pages(gfs2_glock2aspace(gl), 0);
454 	truncate_inode_pages(&inode->i_data, 0);
455 
456 	if (atomic_read(&gl->gl_revokes) == 0) {
457 		clear_bit(GLF_LFLUSH, &gl->gl_flags);
458 		clear_bit(GLF_DIRTY, &gl->gl_flags);
459 	}
460 }
461 
gfs2_dinode_dealloc(struct gfs2_inode * ip)462 int gfs2_dinode_dealloc(struct gfs2_inode *ip)
463 {
464 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
465 	struct gfs2_rgrpd *rgd;
466 	struct gfs2_holder gh;
467 	int error;
468 
469 	if (gfs2_get_inode_blocks(&ip->i_inode) != 1) {
470 		gfs2_consist_inode(ip);
471 		return -EIO;
472 	}
473 
474 	gfs2_rindex_update(sdp);
475 
476 	error = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
477 	if (error)
478 		return error;
479 
480 	rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
481 	if (!rgd) {
482 		gfs2_consist_inode(ip);
483 		error = -EIO;
484 		goto out_qs;
485 	}
486 
487 	error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE,
488 				   LM_FLAG_NODE_SCOPE, &gh);
489 	if (error)
490 		goto out_qs;
491 
492 	error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA,
493 				 sdp->sd_jdesc->jd_blocks);
494 	if (error)
495 		goto out_rg_gunlock;
496 
497 	gfs2_free_di(rgd, ip);
498 
499 	gfs2_final_release_pages(ip);
500 
501 	gfs2_trans_end(sdp);
502 
503 out_rg_gunlock:
504 	gfs2_glock_dq_uninit(&gh);
505 out_qs:
506 	gfs2_quota_unhold(ip);
507 	return error;
508 }
509 
gfs2_init_dir(struct buffer_head * dibh,const struct gfs2_inode * parent)510 static void gfs2_init_dir(struct buffer_head *dibh,
511 			  const struct gfs2_inode *parent)
512 {
513 	struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
514 	struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
515 
516 	gfs2_qstr2dirent(&gfs2_qdot, GFS2_DIRENT_SIZE(gfs2_qdot.len), dent);
517 	dent->de_inum = di->di_num; /* already GFS2 endian */
518 	dent->de_type = cpu_to_be16(DT_DIR);
519 
520 	dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
521 	gfs2_qstr2dirent(&gfs2_qdotdot, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
522 	gfs2_inum_out(parent, dent);
523 	dent->de_type = cpu_to_be16(DT_DIR);
524 
525 }
526 
527 /**
528  * gfs2_init_xattr - Initialise an xattr block for a new inode
529  * @ip: The inode in question
530  *
531  * This sets up an empty xattr block for a new inode, ready to
532  * take any ACLs, LSM xattrs, etc.
533  */
534 
gfs2_init_xattr(struct gfs2_inode * ip)535 static void gfs2_init_xattr(struct gfs2_inode *ip)
536 {
537 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
538 	struct buffer_head *bh;
539 	struct gfs2_ea_header *ea;
540 
541 	bh = gfs2_meta_new(ip->i_gl, ip->i_eattr);
542 	gfs2_trans_add_meta(ip->i_gl, bh);
543 	gfs2_metatype_set(bh, GFS2_METATYPE_EA, GFS2_FORMAT_EA);
544 	gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
545 
546 	ea = GFS2_EA_BH2FIRST(bh);
547 	ea->ea_rec_len = cpu_to_be32(sdp->sd_jbsize);
548 	ea->ea_type = GFS2_EATYPE_UNUSED;
549 	ea->ea_flags = GFS2_EAFLAG_LAST;
550 
551 	brelse(bh);
552 }
553 
554 /**
555  * init_dinode - Fill in a new dinode structure
556  * @dip: The directory this inode is being created in
557  * @ip: The inode
558  * @symname: The symlink destination (if a symlink)
559  *
560  */
561 
init_dinode(struct gfs2_inode * dip,struct gfs2_inode * ip,const char * symname)562 static void init_dinode(struct gfs2_inode *dip, struct gfs2_inode *ip,
563 			const char *symname)
564 {
565 	struct gfs2_dinode *di;
566 	struct buffer_head *dibh;
567 
568 	dibh = gfs2_meta_new(ip->i_gl, ip->i_no_addr);
569 	gfs2_trans_add_meta(ip->i_gl, dibh);
570 	di = (struct gfs2_dinode *)dibh->b_data;
571 	gfs2_dinode_out(ip, di);
572 
573 	di->di_major = cpu_to_be32(imajor(&ip->i_inode));
574 	di->di_minor = cpu_to_be32(iminor(&ip->i_inode));
575 	di->__pad1 = 0;
576 	di->__pad2 = 0;
577 	di->__pad3 = 0;
578 	memset(&di->__pad4, 0, sizeof(di->__pad4));
579 	memset(&di->di_reserved, 0, sizeof(di->di_reserved));
580 	gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
581 
582 	switch(ip->i_inode.i_mode & S_IFMT) {
583 	case S_IFDIR:
584 		gfs2_init_dir(dibh, dip);
585 		break;
586 	case S_IFLNK:
587 		memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname, ip->i_inode.i_size);
588 		break;
589 	}
590 
591 	set_buffer_uptodate(dibh);
592 	brelse(dibh);
593 }
594 
595 /**
596  * gfs2_trans_da_blks - Calculate number of blocks to link inode
597  * @dip: The directory we are linking into
598  * @da: The dir add information
599  * @nr_inodes: The number of inodes involved
600  *
601  * This calculate the number of blocks we need to reserve in a
602  * transaction to link @nr_inodes into a directory. In most cases
603  * @nr_inodes will be 2 (the directory plus the inode being linked in)
604  * but in case of rename, 4 may be required.
605  *
606  * Returns: Number of blocks
607  */
608 
gfs2_trans_da_blks(const struct gfs2_inode * dip,const struct gfs2_diradd * da,unsigned nr_inodes)609 static unsigned gfs2_trans_da_blks(const struct gfs2_inode *dip,
610 				   const struct gfs2_diradd *da,
611 				   unsigned nr_inodes)
612 {
613 	return da->nr_blocks + gfs2_rg_blocks(dip, da->nr_blocks) +
614 	       (nr_inodes * RES_DINODE) + RES_QUOTA + RES_STATFS;
615 }
616 
link_dinode(struct gfs2_inode * dip,const struct qstr * name,struct gfs2_inode * ip,struct gfs2_diradd * da)617 static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
618 		       struct gfs2_inode *ip, struct gfs2_diradd *da)
619 {
620 	struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
621 	struct gfs2_alloc_parms ap = { .target = da->nr_blocks, };
622 	int error;
623 
624 	if (da->nr_blocks) {
625 		error = gfs2_quota_lock_check(dip, &ap);
626 		if (error)
627 			goto fail_quota_locks;
628 
629 		error = gfs2_inplace_reserve(dip, &ap);
630 		if (error)
631 			goto fail_quota_locks;
632 
633 		error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(dip, da, 2), 0);
634 		if (error)
635 			goto fail_ipreserv;
636 	} else {
637 		error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
638 		if (error)
639 			goto fail_quota_locks;
640 	}
641 
642 	error = gfs2_dir_add(&dip->i_inode, name, ip, da);
643 
644 	gfs2_trans_end(sdp);
645 fail_ipreserv:
646 	gfs2_inplace_release(dip);
647 fail_quota_locks:
648 	gfs2_quota_unlock(dip);
649 	return error;
650 }
651 
gfs2_initxattrs(struct inode * inode,const struct xattr * xattr_array,void * fs_info)652 static int gfs2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
653 		    void *fs_info)
654 {
655 	const struct xattr *xattr;
656 	int err = 0;
657 
658 	for (xattr = xattr_array; xattr->name != NULL; xattr++) {
659 		err = __gfs2_xattr_set(inode, xattr->name, xattr->value,
660 				       xattr->value_len, 0,
661 				       GFS2_EATYPE_SECURITY);
662 		if (err < 0)
663 			break;
664 	}
665 	return err;
666 }
667 
668 /**
669  * gfs2_create_inode - Create a new inode
670  * @dir: The parent directory
671  * @dentry: The new dentry
672  * @file: If non-NULL, the file which is being opened
673  * @mode: The permissions on the new inode
674  * @dev: For device nodes, this is the device number
675  * @symname: For symlinks, this is the link destination
676  * @size: The initial size of the inode (ignored for directories)
677  * @excl: Force fail if inode exists
678  *
679  * FIXME: Change to allocate the disk blocks and write them out in the same
680  * transaction.  That way, we can no longer end up in a situation in which an
681  * inode is allocated, the node crashes, and the block looks like a valid
682  * inode.  (With atomic creates in place, we will also no longer need to zero
683  * the link count and dirty the inode here on failure.)
684  *
685  * Returns: 0 on success, or error code
686  */
687 
gfs2_create_inode(struct inode * dir,struct dentry * dentry,struct file * file,umode_t mode,dev_t dev,const char * symname,unsigned int size,int excl)688 static int gfs2_create_inode(struct inode *dir, struct dentry *dentry,
689 			     struct file *file,
690 			     umode_t mode, dev_t dev, const char *symname,
691 			     unsigned int size, int excl)
692 {
693 	const struct qstr *name = &dentry->d_name;
694 	struct posix_acl *default_acl, *acl;
695 	struct gfs2_holder d_gh, gh;
696 	struct inode *inode = NULL;
697 	struct gfs2_inode *dip = GFS2_I(dir), *ip;
698 	struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
699 	struct gfs2_glock *io_gl;
700 	int error, dealloc_error;
701 	u32 aflags = 0;
702 	unsigned blocks = 1;
703 	struct gfs2_diradd da = { .bh = NULL, .save_loc = 1, };
704 	bool xattr_initialized = false;
705 
706 	if (!name->len || name->len > GFS2_FNAMESIZE)
707 		return -ENAMETOOLONG;
708 
709 	error = gfs2_qa_get(dip);
710 	if (error)
711 		return error;
712 
713 	error = gfs2_rindex_update(sdp);
714 	if (error)
715 		goto fail;
716 
717 	error = gfs2_glock_nq_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, &d_gh);
718 	if (error)
719 		goto fail;
720 	gfs2_holder_mark_uninitialized(&gh);
721 
722 	error = create_ok(dip, name, mode);
723 	if (error)
724 		goto fail_gunlock;
725 
726 	inode = gfs2_dir_search(dir, &dentry->d_name, !S_ISREG(mode) || excl);
727 	error = PTR_ERR(inode);
728 	if (!IS_ERR(inode)) {
729 		if (S_ISDIR(inode->i_mode)) {
730 			iput(inode);
731 			inode = NULL;
732 			error = -EISDIR;
733 			goto fail_gunlock;
734 		}
735 		d_instantiate(dentry, inode);
736 		error = 0;
737 		if (file) {
738 			if (S_ISREG(inode->i_mode))
739 				error = finish_open(file, dentry, gfs2_open_common);
740 			else
741 				error = finish_no_open(file, NULL);
742 		}
743 		gfs2_glock_dq_uninit(&d_gh);
744 		goto fail;
745 	} else if (error != -ENOENT) {
746 		goto fail_gunlock;
747 	}
748 
749 	error = gfs2_diradd_alloc_required(dir, name, &da);
750 	if (error < 0)
751 		goto fail_gunlock;
752 
753 	inode = new_inode(sdp->sd_vfs);
754 	error = -ENOMEM;
755 	if (!inode)
756 		goto fail_gunlock;
757 	ip = GFS2_I(inode);
758 
759 	error = posix_acl_create(dir, &mode, &default_acl, &acl);
760 	if (error)
761 		goto fail_gunlock;
762 
763 	error = gfs2_qa_get(ip);
764 	if (error)
765 		goto fail_free_acls;
766 
767 	inode->i_mode = mode;
768 	set_nlink(inode, S_ISDIR(mode) ? 2 : 1);
769 	inode->i_rdev = dev;
770 	inode->i_size = size;
771 	simple_inode_init_ts(inode);
772 	munge_mode_uid_gid(dip, inode);
773 	check_and_update_goal(dip);
774 	ip->i_goal = dip->i_goal;
775 	ip->i_diskflags = 0;
776 	ip->i_eattr = 0;
777 	ip->i_height = 0;
778 	ip->i_depth = 0;
779 	ip->i_entries = 0;
780 	ip->i_no_addr = 0; /* Temporarily zero until real addr is assigned */
781 
782 	switch(mode & S_IFMT) {
783 	case S_IFREG:
784 		if ((dip->i_diskflags & GFS2_DIF_INHERIT_JDATA) ||
785 		    gfs2_tune_get(sdp, gt_new_files_jdata))
786 			ip->i_diskflags |= GFS2_DIF_JDATA;
787 		gfs2_set_aops(inode);
788 		break;
789 	case S_IFDIR:
790 		ip->i_diskflags |= (dip->i_diskflags & GFS2_DIF_INHERIT_JDATA);
791 		ip->i_diskflags |= GFS2_DIF_JDATA;
792 		ip->i_entries = 2;
793 		break;
794 	}
795 
796 	/* Force SYSTEM flag on all files and subdirs of a SYSTEM directory */
797 	if (dip->i_diskflags & GFS2_DIF_SYSTEM)
798 		ip->i_diskflags |= GFS2_DIF_SYSTEM;
799 
800 	gfs2_set_inode_flags(inode);
801 
802 	if ((GFS2_I(d_inode(sdp->sd_root_dir)) == dip) ||
803 	    (dip->i_diskflags & GFS2_DIF_TOPDIR))
804 		aflags |= GFS2_AF_ORLOV;
805 
806 	if (default_acl || acl)
807 		blocks++;
808 
809 	error = alloc_dinode(ip, aflags, &blocks);
810 	if (error)
811 		goto fail_free_inode;
812 
813 	gfs2_set_inode_blocks(inode, blocks);
814 
815 	error = gfs2_glock_get(sdp, ip->i_no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
816 	if (error)
817 		goto fail_dealloc_inode;
818 
819 	error = gfs2_glock_get(sdp, ip->i_no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
820 	if (error)
821 		goto fail_dealloc_inode;
822 	gfs2_cancel_delete_work(io_gl);
823 	io_gl->gl_no_formal_ino = ip->i_no_formal_ino;
824 
825 retry:
826 	error = insert_inode_locked4(inode, ip->i_no_addr, iget_test, &ip->i_no_addr);
827 	if (error == -EBUSY)
828 		goto retry;
829 	if (error)
830 		goto fail_gunlock2;
831 
832 	error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT | GL_NOPID,
833 				   &ip->i_iopen_gh);
834 	if (error)
835 		goto fail_gunlock2;
836 
837 	error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, &gh);
838 	if (error)
839 		goto fail_gunlock3;
840 
841 	error = gfs2_trans_begin(sdp, blocks, 0);
842 	if (error)
843 		goto fail_gunlock3;
844 
845 	if (blocks > 1) {
846 		gfs2_init_xattr(ip);
847 		xattr_initialized = true;
848 	}
849 	init_dinode(dip, ip, symname);
850 	gfs2_trans_end(sdp);
851 
852 	glock_set_object(ip->i_gl, ip);
853 	glock_set_object(io_gl, ip);
854 	gfs2_set_iop(inode);
855 
856 	if (default_acl) {
857 		error = __gfs2_set_acl(inode, default_acl, ACL_TYPE_DEFAULT);
858 		if (error)
859 			goto fail_gunlock4;
860 		posix_acl_release(default_acl);
861 		default_acl = NULL;
862 	}
863 	if (acl) {
864 		error = __gfs2_set_acl(inode, acl, ACL_TYPE_ACCESS);
865 		if (error)
866 			goto fail_gunlock4;
867 		posix_acl_release(acl);
868 		acl = NULL;
869 	}
870 
871 	error = security_inode_init_security(&ip->i_inode, &dip->i_inode, name,
872 					     &gfs2_initxattrs, NULL);
873 	if (error)
874 		goto fail_gunlock4;
875 
876 	error = link_dinode(dip, name, ip, &da);
877 	if (error)
878 		goto fail_gunlock4;
879 
880 	mark_inode_dirty(inode);
881 	d_instantiate(dentry, inode);
882 	/* After instantiate, errors should result in evict which will destroy
883 	 * both inode and iopen glocks properly. */
884 	if (file) {
885 		file->f_mode |= FMODE_CREATED;
886 		error = finish_open(file, dentry, gfs2_open_common);
887 	}
888 	gfs2_glock_dq_uninit(&d_gh);
889 	gfs2_qa_put(ip);
890 	gfs2_glock_dq_uninit(&gh);
891 	gfs2_glock_put(io_gl);
892 	gfs2_qa_put(dip);
893 	unlock_new_inode(inode);
894 	return error;
895 
896 fail_gunlock4:
897 	glock_clear_object(ip->i_gl, ip);
898 	glock_clear_object(io_gl, ip);
899 fail_gunlock3:
900 	gfs2_glock_dq_uninit(&ip->i_iopen_gh);
901 fail_gunlock2:
902 	gfs2_glock_put(io_gl);
903 fail_dealloc_inode:
904 	set_bit(GIF_ALLOC_FAILED, &ip->i_flags);
905 	dealloc_error = 0;
906 	if (ip->i_eattr)
907 		dealloc_error = gfs2_ea_dealloc(ip, xattr_initialized);
908 	clear_nlink(inode);
909 	mark_inode_dirty(inode);
910 	if (!dealloc_error)
911 		dealloc_error = gfs2_dinode_dealloc(ip);
912 	if (dealloc_error)
913 		fs_warn(sdp, "%s: %d\n", __func__, dealloc_error);
914 	ip->i_no_addr = 0;
915 fail_free_inode:
916 	if (ip->i_gl) {
917 		gfs2_glock_put(ip->i_gl);
918 		ip->i_gl = NULL;
919 	}
920 	gfs2_rs_deltree(&ip->i_res);
921 	gfs2_qa_put(ip);
922 fail_free_acls:
923 	posix_acl_release(default_acl);
924 	posix_acl_release(acl);
925 fail_gunlock:
926 	gfs2_dir_no_add(&da);
927 	gfs2_glock_dq_uninit(&d_gh);
928 	if (!IS_ERR_OR_NULL(inode)) {
929 		if (inode->i_state & I_NEW)
930 			iget_failed(inode);
931 		else
932 			iput(inode);
933 	}
934 	if (gfs2_holder_initialized(&gh))
935 		gfs2_glock_dq_uninit(&gh);
936 fail:
937 	gfs2_qa_put(dip);
938 	return error;
939 }
940 
941 /**
942  * gfs2_create - Create a file
943  * @idmap: idmap of the mount the inode was found from
944  * @dir: The directory in which to create the file
945  * @dentry: The dentry of the new file
946  * @mode: The mode of the new file
947  * @excl: Force fail if inode exists
948  *
949  * Returns: errno
950  */
951 
gfs2_create(struct mnt_idmap * idmap,struct inode * dir,struct dentry * dentry,umode_t mode,bool excl)952 static int gfs2_create(struct mnt_idmap *idmap, struct inode *dir,
953 		       struct dentry *dentry, umode_t mode, bool excl)
954 {
955 	return gfs2_create_inode(dir, dentry, NULL, S_IFREG | mode, 0, NULL, 0, excl);
956 }
957 
958 /**
959  * __gfs2_lookup - Look up a filename in a directory and return its inode
960  * @dir: The directory inode
961  * @dentry: The dentry of the new inode
962  * @file: File to be opened
963  *
964  *
965  * Returns: errno
966  */
967 
__gfs2_lookup(struct inode * dir,struct dentry * dentry,struct file * file)968 static struct dentry *__gfs2_lookup(struct inode *dir, struct dentry *dentry,
969 				    struct file *file)
970 {
971 	struct inode *inode;
972 	struct dentry *d;
973 	struct gfs2_holder gh;
974 	struct gfs2_glock *gl;
975 	int error;
976 
977 	inode = gfs2_lookupi(dir, &dentry->d_name, 0);
978 	if (inode == NULL) {
979 		d_add(dentry, NULL);
980 		return NULL;
981 	}
982 	if (IS_ERR(inode))
983 		return ERR_CAST(inode);
984 
985 	gl = GFS2_I(inode)->i_gl;
986 	error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
987 	if (error) {
988 		iput(inode);
989 		return ERR_PTR(error);
990 	}
991 
992 	d = d_splice_alias(inode, dentry);
993 	if (IS_ERR(d)) {
994 		gfs2_glock_dq_uninit(&gh);
995 		return d;
996 	}
997 	if (file && S_ISREG(inode->i_mode))
998 		error = finish_open(file, dentry, gfs2_open_common);
999 
1000 	gfs2_glock_dq_uninit(&gh);
1001 	if (error) {
1002 		dput(d);
1003 		return ERR_PTR(error);
1004 	}
1005 	return d;
1006 }
1007 
gfs2_lookup(struct inode * dir,struct dentry * dentry,unsigned flags)1008 static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
1009 				  unsigned flags)
1010 {
1011 	return __gfs2_lookup(dir, dentry, NULL);
1012 }
1013 
1014 /**
1015  * gfs2_link - Link to a file
1016  * @old_dentry: The inode to link
1017  * @dir: Add link to this directory
1018  * @dentry: The name of the link
1019  *
1020  * Link the inode in "old_dentry" into the directory "dir" with the
1021  * name in "dentry".
1022  *
1023  * Returns: errno
1024  */
1025 
gfs2_link(struct dentry * old_dentry,struct inode * dir,struct dentry * dentry)1026 static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
1027 		     struct dentry *dentry)
1028 {
1029 	struct gfs2_inode *dip = GFS2_I(dir);
1030 	struct gfs2_sbd *sdp = GFS2_SB(dir);
1031 	struct inode *inode = d_inode(old_dentry);
1032 	struct gfs2_inode *ip = GFS2_I(inode);
1033 	struct gfs2_holder d_gh, gh;
1034 	struct buffer_head *dibh;
1035 	struct gfs2_diradd da = { .bh = NULL, .save_loc = 1, };
1036 	int error;
1037 
1038 	if (S_ISDIR(inode->i_mode))
1039 		return -EPERM;
1040 
1041 	error = gfs2_qa_get(dip);
1042 	if (error)
1043 		return error;
1044 
1045 	gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, &d_gh);
1046 	gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
1047 
1048 	error = gfs2_glock_nq(&d_gh);
1049 	if (error)
1050 		goto out_parent;
1051 
1052 	error = gfs2_glock_nq(&gh);
1053 	if (error)
1054 		goto out_child;
1055 
1056 	error = -ENOENT;
1057 	if (inode->i_nlink == 0)
1058 		goto out_gunlock;
1059 
1060 	error = gfs2_permission(&nop_mnt_idmap, dir, MAY_WRITE | MAY_EXEC);
1061 	if (error)
1062 		goto out_gunlock;
1063 
1064 	error = gfs2_dir_check(dir, &dentry->d_name, NULL);
1065 	switch (error) {
1066 	case -ENOENT:
1067 		break;
1068 	case 0:
1069 		error = -EEXIST;
1070 		goto out_gunlock;
1071 	default:
1072 		goto out_gunlock;
1073 	}
1074 
1075 	error = -EINVAL;
1076 	if (!dip->i_inode.i_nlink)
1077 		goto out_gunlock;
1078 	error = -EFBIG;
1079 	if (dip->i_entries == (u32)-1)
1080 		goto out_gunlock;
1081 	error = -EPERM;
1082 	if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1083 		goto out_gunlock;
1084 	error = -EMLINK;
1085 	if (ip->i_inode.i_nlink == (u32)-1)
1086 		goto out_gunlock;
1087 
1088 	error = gfs2_diradd_alloc_required(dir, &dentry->d_name, &da);
1089 	if (error < 0)
1090 		goto out_gunlock;
1091 
1092 	if (da.nr_blocks) {
1093 		struct gfs2_alloc_parms ap = { .target = da.nr_blocks, };
1094 		error = gfs2_quota_lock_check(dip, &ap);
1095 		if (error)
1096 			goto out_gunlock;
1097 
1098 		error = gfs2_inplace_reserve(dip, &ap);
1099 		if (error)
1100 			goto out_gunlock_q;
1101 
1102 		error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(dip, &da, 2), 0);
1103 		if (error)
1104 			goto out_ipres;
1105 	} else {
1106 		error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
1107 		if (error)
1108 			goto out_ipres;
1109 	}
1110 
1111 	error = gfs2_meta_inode_buffer(ip, &dibh);
1112 	if (error)
1113 		goto out_end_trans;
1114 
1115 	error = gfs2_dir_add(dir, &dentry->d_name, ip, &da);
1116 	if (error)
1117 		goto out_brelse;
1118 
1119 	gfs2_trans_add_meta(ip->i_gl, dibh);
1120 	inc_nlink(&ip->i_inode);
1121 	inode_set_ctime_current(&ip->i_inode);
1122 	ihold(inode);
1123 	d_instantiate(dentry, inode);
1124 	mark_inode_dirty(inode);
1125 
1126 out_brelse:
1127 	brelse(dibh);
1128 out_end_trans:
1129 	gfs2_trans_end(sdp);
1130 out_ipres:
1131 	if (da.nr_blocks)
1132 		gfs2_inplace_release(dip);
1133 out_gunlock_q:
1134 	if (da.nr_blocks)
1135 		gfs2_quota_unlock(dip);
1136 out_gunlock:
1137 	gfs2_dir_no_add(&da);
1138 	gfs2_glock_dq(&gh);
1139 out_child:
1140 	gfs2_glock_dq(&d_gh);
1141 out_parent:
1142 	gfs2_qa_put(dip);
1143 	gfs2_holder_uninit(&d_gh);
1144 	gfs2_holder_uninit(&gh);
1145 	return error;
1146 }
1147 
1148 /*
1149  * gfs2_unlink_ok - check to see that a inode is still in a directory
1150  * @dip: the directory
1151  * @name: the name of the file
1152  * @ip: the inode
1153  *
1154  * Assumes that the lock on (at least) @dip is held.
1155  *
1156  * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1157  */
1158 
gfs2_unlink_ok(struct gfs2_inode * dip,const struct qstr * name,const struct gfs2_inode * ip)1159 static int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
1160 			  const struct gfs2_inode *ip)
1161 {
1162 	int error;
1163 
1164 	if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
1165 		return -EPERM;
1166 
1167 	if ((dip->i_inode.i_mode & S_ISVTX) &&
1168 	    !uid_eq(dip->i_inode.i_uid, current_fsuid()) &&
1169 	    !uid_eq(ip->i_inode.i_uid, current_fsuid()) && !capable(CAP_FOWNER))
1170 		return -EPERM;
1171 
1172 	if (IS_APPEND(&dip->i_inode))
1173 		return -EPERM;
1174 
1175 	error = gfs2_permission(&nop_mnt_idmap, &dip->i_inode,
1176 				MAY_WRITE | MAY_EXEC);
1177 	if (error)
1178 		return error;
1179 
1180 	return gfs2_dir_check(&dip->i_inode, name, ip);
1181 }
1182 
1183 /**
1184  * gfs2_unlink_inode - Removes an inode from its parent dir and unlinks it
1185  * @dip: The parent directory
1186  * @dentry: The dentry to unlink
1187  *
1188  * Called with all the locks and in a transaction. This will only be
1189  * called for a directory after it has been checked to ensure it is empty.
1190  *
1191  * Returns: 0 on success, or an error
1192  */
1193 
gfs2_unlink_inode(struct gfs2_inode * dip,const struct dentry * dentry)1194 static int gfs2_unlink_inode(struct gfs2_inode *dip,
1195 			     const struct dentry *dentry)
1196 {
1197 	struct inode *inode = d_inode(dentry);
1198 	struct gfs2_inode *ip = GFS2_I(inode);
1199 	int error;
1200 
1201 	error = gfs2_dir_del(dip, dentry);
1202 	if (error)
1203 		return error;
1204 
1205 	ip->i_entries = 0;
1206 	inode_set_ctime_current(inode);
1207 	if (S_ISDIR(inode->i_mode))
1208 		clear_nlink(inode);
1209 	else
1210 		drop_nlink(inode);
1211 	mark_inode_dirty(inode);
1212 	if (inode->i_nlink == 0)
1213 		gfs2_unlink_di(inode);
1214 	return 0;
1215 }
1216 
1217 
1218 /**
1219  * gfs2_unlink - Unlink an inode (this does rmdir as well)
1220  * @dir: The inode of the directory containing the inode to unlink
1221  * @dentry: The file itself
1222  *
1223  * This routine uses the type of the inode as a flag to figure out
1224  * whether this is an unlink or an rmdir.
1225  *
1226  * Returns: errno
1227  */
1228 
gfs2_unlink(struct inode * dir,struct dentry * dentry)1229 static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
1230 {
1231 	struct gfs2_inode *dip = GFS2_I(dir);
1232 	struct gfs2_sbd *sdp = GFS2_SB(dir);
1233 	struct inode *inode = d_inode(dentry);
1234 	struct gfs2_inode *ip = GFS2_I(inode);
1235 	struct gfs2_holder d_gh, r_gh, gh;
1236 	struct gfs2_rgrpd *rgd;
1237 	int error;
1238 
1239 	error = gfs2_rindex_update(sdp);
1240 	if (error)
1241 		return error;
1242 
1243 	error = -EROFS;
1244 
1245 	gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, &d_gh);
1246 	gfs2_holder_init(ip->i_gl,  LM_ST_EXCLUSIVE, 0, &gh);
1247 
1248 	rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
1249 	if (!rgd)
1250 		goto out_inodes;
1251 
1252 	gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, LM_FLAG_NODE_SCOPE, &r_gh);
1253 
1254 
1255 	error = gfs2_glock_nq(&d_gh);
1256 	if (error)
1257 		goto out_parent;
1258 
1259 	error = gfs2_glock_nq(&gh);
1260 	if (error)
1261 		goto out_child;
1262 
1263 	error = -ENOENT;
1264 	if (inode->i_nlink == 0)
1265 		goto out_rgrp;
1266 
1267 	if (S_ISDIR(inode->i_mode)) {
1268 		error = -ENOTEMPTY;
1269 		if (ip->i_entries > 2 || inode->i_nlink > 2)
1270 			goto out_rgrp;
1271 	}
1272 
1273 	error = gfs2_glock_nq(&r_gh); /* rgrp */
1274 	if (error)
1275 		goto out_rgrp;
1276 
1277 	error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
1278 	if (error)
1279 		goto out_gunlock;
1280 
1281 	error = gfs2_trans_begin(sdp, 2*RES_DINODE + 3*RES_LEAF + RES_RG_BIT, 0);
1282 	if (error)
1283 		goto out_gunlock;
1284 
1285 	error = gfs2_unlink_inode(dip, dentry);
1286 	gfs2_trans_end(sdp);
1287 
1288 out_gunlock:
1289 	gfs2_glock_dq(&r_gh);
1290 out_rgrp:
1291 	gfs2_glock_dq(&gh);
1292 out_child:
1293 	gfs2_glock_dq(&d_gh);
1294 out_parent:
1295 	gfs2_holder_uninit(&r_gh);
1296 out_inodes:
1297 	gfs2_holder_uninit(&gh);
1298 	gfs2_holder_uninit(&d_gh);
1299 	return error;
1300 }
1301 
1302 /**
1303  * gfs2_symlink - Create a symlink
1304  * @idmap: idmap of the mount the inode was found from
1305  * @dir: The directory to create the symlink in
1306  * @dentry: The dentry to put the symlink in
1307  * @symname: The thing which the link points to
1308  *
1309  * Returns: errno
1310  */
1311 
gfs2_symlink(struct mnt_idmap * idmap,struct inode * dir,struct dentry * dentry,const char * symname)1312 static int gfs2_symlink(struct mnt_idmap *idmap, struct inode *dir,
1313 			struct dentry *dentry, const char *symname)
1314 {
1315 	unsigned int size;
1316 
1317 	size = strlen(symname);
1318 	if (size >= gfs2_max_stuffed_size(GFS2_I(dir)))
1319 		return -ENAMETOOLONG;
1320 
1321 	return gfs2_create_inode(dir, dentry, NULL, S_IFLNK | S_IRWXUGO, 0, symname, size, 0);
1322 }
1323 
1324 /**
1325  * gfs2_mkdir - Make a directory
1326  * @idmap: idmap of the mount the inode was found from
1327  * @dir: The parent directory of the new one
1328  * @dentry: The dentry of the new directory
1329  * @mode: The mode of the new directory
1330  *
1331  * Returns: errno
1332  */
1333 
gfs2_mkdir(struct mnt_idmap * idmap,struct inode * dir,struct dentry * dentry,umode_t mode)1334 static int gfs2_mkdir(struct mnt_idmap *idmap, struct inode *dir,
1335 		      struct dentry *dentry, umode_t mode)
1336 {
1337 	unsigned dsize = gfs2_max_stuffed_size(GFS2_I(dir));
1338 	return gfs2_create_inode(dir, dentry, NULL, S_IFDIR | mode, 0, NULL, dsize, 0);
1339 }
1340 
1341 /**
1342  * gfs2_mknod - Make a special file
1343  * @idmap: idmap of the mount the inode was found from
1344  * @dir: The directory in which the special file will reside
1345  * @dentry: The dentry of the special file
1346  * @mode: The mode of the special file
1347  * @dev: The device specification of the special file
1348  *
1349  */
1350 
gfs2_mknod(struct mnt_idmap * idmap,struct inode * dir,struct dentry * dentry,umode_t mode,dev_t dev)1351 static int gfs2_mknod(struct mnt_idmap *idmap, struct inode *dir,
1352 		      struct dentry *dentry, umode_t mode, dev_t dev)
1353 {
1354 	return gfs2_create_inode(dir, dentry, NULL, mode, dev, NULL, 0, 0);
1355 }
1356 
1357 /**
1358  * gfs2_atomic_open - Atomically open a file
1359  * @dir: The directory
1360  * @dentry: The proposed new entry
1361  * @file: The proposed new struct file
1362  * @flags: open flags
1363  * @mode: File mode
1364  *
1365  * Returns: error code or 0 for success
1366  */
1367 
gfs2_atomic_open(struct inode * dir,struct dentry * dentry,struct file * file,unsigned flags,umode_t mode)1368 static int gfs2_atomic_open(struct inode *dir, struct dentry *dentry,
1369 			    struct file *file, unsigned flags,
1370 			    umode_t mode)
1371 {
1372 	struct dentry *d;
1373 	bool excl = !!(flags & O_EXCL);
1374 
1375 	if (!d_in_lookup(dentry))
1376 		goto skip_lookup;
1377 
1378 	d = __gfs2_lookup(dir, dentry, file);
1379 	if (IS_ERR(d))
1380 		return PTR_ERR(d);
1381 	if (d != NULL)
1382 		dentry = d;
1383 	if (d_really_is_positive(dentry)) {
1384 		if (!(file->f_mode & FMODE_OPENED))
1385 			return finish_no_open(file, d);
1386 		dput(d);
1387 		return excl && (flags & O_CREAT) ? -EEXIST : 0;
1388 	}
1389 
1390 	BUG_ON(d != NULL);
1391 
1392 skip_lookup:
1393 	if (!(flags & O_CREAT))
1394 		return -ENOENT;
1395 
1396 	return gfs2_create_inode(dir, dentry, file, S_IFREG | mode, 0, NULL, 0, excl);
1397 }
1398 
1399 /*
1400  * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1401  * @this: move this
1402  * @to: to here
1403  *
1404  * Follow @to back to the root and make sure we don't encounter @this
1405  * Assumes we already hold the rename lock.
1406  *
1407  * Returns: errno
1408  */
1409 
gfs2_ok_to_move(struct gfs2_inode * this,struct gfs2_inode * to)1410 static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1411 {
1412 	struct inode *dir = &to->i_inode;
1413 	struct super_block *sb = dir->i_sb;
1414 	struct inode *tmp;
1415 	int error = 0;
1416 
1417 	igrab(dir);
1418 
1419 	for (;;) {
1420 		if (dir == &this->i_inode) {
1421 			error = -EINVAL;
1422 			break;
1423 		}
1424 		if (dir == d_inode(sb->s_root)) {
1425 			error = 0;
1426 			break;
1427 		}
1428 
1429 		tmp = gfs2_lookupi(dir, &gfs2_qdotdot, 1);
1430 		if (!tmp) {
1431 			error = -ENOENT;
1432 			break;
1433 		}
1434 		if (IS_ERR(tmp)) {
1435 			error = PTR_ERR(tmp);
1436 			break;
1437 		}
1438 
1439 		iput(dir);
1440 		dir = tmp;
1441 	}
1442 
1443 	iput(dir);
1444 
1445 	return error;
1446 }
1447 
1448 /**
1449  * update_moved_ino - Update an inode that's being moved
1450  * @ip: The inode being moved
1451  * @ndip: The parent directory of the new filename
1452  * @dir_rename: True of ip is a directory
1453  *
1454  * Returns: errno
1455  */
1456 
update_moved_ino(struct gfs2_inode * ip,struct gfs2_inode * ndip,int dir_rename)1457 static int update_moved_ino(struct gfs2_inode *ip, struct gfs2_inode *ndip,
1458 			    int dir_rename)
1459 {
1460 	if (dir_rename)
1461 		return gfs2_dir_mvino(ip, &gfs2_qdotdot, ndip, DT_DIR);
1462 
1463 	inode_set_ctime_current(&ip->i_inode);
1464 	mark_inode_dirty_sync(&ip->i_inode);
1465 	return 0;
1466 }
1467 
1468 
1469 /**
1470  * gfs2_rename - Rename a file
1471  * @odir: Parent directory of old file name
1472  * @odentry: The old dentry of the file
1473  * @ndir: Parent directory of new file name
1474  * @ndentry: The new dentry of the file
1475  *
1476  * Returns: errno
1477  */
1478 
gfs2_rename(struct inode * odir,struct dentry * odentry,struct inode * ndir,struct dentry * ndentry)1479 static int gfs2_rename(struct inode *odir, struct dentry *odentry,
1480 		       struct inode *ndir, struct dentry *ndentry)
1481 {
1482 	struct gfs2_inode *odip = GFS2_I(odir);
1483 	struct gfs2_inode *ndip = GFS2_I(ndir);
1484 	struct gfs2_inode *ip = GFS2_I(d_inode(odentry));
1485 	struct gfs2_inode *nip = NULL;
1486 	struct gfs2_sbd *sdp = GFS2_SB(odir);
1487 	struct gfs2_holder ghs[4], r_gh, rd_gh;
1488 	struct gfs2_rgrpd *nrgd;
1489 	unsigned int num_gh;
1490 	int dir_rename = 0;
1491 	struct gfs2_diradd da = { .nr_blocks = 0, .save_loc = 0, };
1492 	unsigned int x;
1493 	int error;
1494 
1495 	gfs2_holder_mark_uninitialized(&r_gh);
1496 	gfs2_holder_mark_uninitialized(&rd_gh);
1497 	if (d_really_is_positive(ndentry)) {
1498 		nip = GFS2_I(d_inode(ndentry));
1499 		if (ip == nip)
1500 			return 0;
1501 	}
1502 
1503 	error = gfs2_rindex_update(sdp);
1504 	if (error)
1505 		return error;
1506 
1507 	error = gfs2_qa_get(ndip);
1508 	if (error)
1509 		return error;
1510 
1511 	if (odip != ndip) {
1512 		error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
1513 					   0, &r_gh);
1514 		if (error)
1515 			goto out;
1516 
1517 		if (S_ISDIR(ip->i_inode.i_mode)) {
1518 			dir_rename = 1;
1519 			/* don't move a directory into its subdir */
1520 			error = gfs2_ok_to_move(ip, ndip);
1521 			if (error)
1522 				goto out_gunlock_r;
1523 		}
1524 	}
1525 
1526 	num_gh = 1;
1527 	gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs);
1528 	if (odip != ndip) {
1529 		gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE,GL_ASYNC,
1530 				 ghs + num_gh);
1531 		num_gh++;
1532 	}
1533 	gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs + num_gh);
1534 	num_gh++;
1535 
1536 	if (nip) {
1537 		gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC,
1538 				 ghs + num_gh);
1539 		num_gh++;
1540 	}
1541 
1542 	for (x = 0; x < num_gh; x++) {
1543 		error = gfs2_glock_nq(ghs + x);
1544 		if (error)
1545 			goto out_gunlock;
1546 	}
1547 	error = gfs2_glock_async_wait(num_gh, ghs);
1548 	if (error)
1549 		goto out_gunlock;
1550 
1551 	if (nip) {
1552 		/* Grab the resource group glock for unlink flag twiddling.
1553 		 * This is the case where the target dinode already exists
1554 		 * so we unlink before doing the rename.
1555 		 */
1556 		nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr, 1);
1557 		if (!nrgd) {
1558 			error = -ENOENT;
1559 			goto out_gunlock;
1560 		}
1561 		error = gfs2_glock_nq_init(nrgd->rd_gl, LM_ST_EXCLUSIVE,
1562 					   LM_FLAG_NODE_SCOPE, &rd_gh);
1563 		if (error)
1564 			goto out_gunlock;
1565 	}
1566 
1567 	error = -ENOENT;
1568 	if (ip->i_inode.i_nlink == 0)
1569 		goto out_gunlock;
1570 
1571 	/* Check out the old directory */
1572 
1573 	error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
1574 	if (error)
1575 		goto out_gunlock;
1576 
1577 	/* Check out the new directory */
1578 
1579 	if (nip) {
1580 		error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
1581 		if (error)
1582 			goto out_gunlock;
1583 
1584 		if (nip->i_inode.i_nlink == 0) {
1585 			error = -EAGAIN;
1586 			goto out_gunlock;
1587 		}
1588 
1589 		if (S_ISDIR(nip->i_inode.i_mode)) {
1590 			if (nip->i_entries < 2) {
1591 				gfs2_consist_inode(nip);
1592 				error = -EIO;
1593 				goto out_gunlock;
1594 			}
1595 			if (nip->i_entries > 2) {
1596 				error = -ENOTEMPTY;
1597 				goto out_gunlock;
1598 			}
1599 		}
1600 	} else {
1601 		error = gfs2_permission(&nop_mnt_idmap, ndir,
1602 					MAY_WRITE | MAY_EXEC);
1603 		if (error)
1604 			goto out_gunlock;
1605 
1606 		error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
1607 		switch (error) {
1608 		case -ENOENT:
1609 			error = 0;
1610 			break;
1611 		case 0:
1612 			error = -EEXIST;
1613 			goto out_gunlock;
1614 		default:
1615 			goto out_gunlock;
1616 		}
1617 
1618 		if (odip != ndip) {
1619 			if (!ndip->i_inode.i_nlink) {
1620 				error = -ENOENT;
1621 				goto out_gunlock;
1622 			}
1623 			if (ndip->i_entries == (u32)-1) {
1624 				error = -EFBIG;
1625 				goto out_gunlock;
1626 			}
1627 			if (S_ISDIR(ip->i_inode.i_mode) &&
1628 			    ndip->i_inode.i_nlink == (u32)-1) {
1629 				error = -EMLINK;
1630 				goto out_gunlock;
1631 			}
1632 		}
1633 	}
1634 
1635 	/* Check out the dir to be renamed */
1636 
1637 	if (dir_rename) {
1638 		error = gfs2_permission(&nop_mnt_idmap, d_inode(odentry),
1639 					MAY_WRITE);
1640 		if (error)
1641 			goto out_gunlock;
1642 	}
1643 
1644 	if (nip == NULL) {
1645 		error = gfs2_diradd_alloc_required(ndir, &ndentry->d_name, &da);
1646 		if (error)
1647 			goto out_gunlock;
1648 	}
1649 
1650 	if (da.nr_blocks) {
1651 		struct gfs2_alloc_parms ap = { .target = da.nr_blocks, };
1652 		error = gfs2_quota_lock_check(ndip, &ap);
1653 		if (error)
1654 			goto out_gunlock;
1655 
1656 		error = gfs2_inplace_reserve(ndip, &ap);
1657 		if (error)
1658 			goto out_gunlock_q;
1659 
1660 		error = gfs2_trans_begin(sdp, gfs2_trans_da_blks(ndip, &da, 4) +
1661 					 4 * RES_LEAF + 4, 0);
1662 		if (error)
1663 			goto out_ipreserv;
1664 	} else {
1665 		error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
1666 					 5 * RES_LEAF + 4, 0);
1667 		if (error)
1668 			goto out_gunlock;
1669 	}
1670 
1671 	/* Remove the target file, if it exists */
1672 
1673 	if (nip)
1674 		error = gfs2_unlink_inode(ndip, ndentry);
1675 
1676 	error = update_moved_ino(ip, ndip, dir_rename);
1677 	if (error)
1678 		goto out_end_trans;
1679 
1680 	error = gfs2_dir_del(odip, odentry);
1681 	if (error)
1682 		goto out_end_trans;
1683 
1684 	error = gfs2_dir_add(ndir, &ndentry->d_name, ip, &da);
1685 	if (error)
1686 		goto out_end_trans;
1687 
1688 out_end_trans:
1689 	gfs2_trans_end(sdp);
1690 out_ipreserv:
1691 	if (da.nr_blocks)
1692 		gfs2_inplace_release(ndip);
1693 out_gunlock_q:
1694 	if (da.nr_blocks)
1695 		gfs2_quota_unlock(ndip);
1696 out_gunlock:
1697 	gfs2_dir_no_add(&da);
1698 	if (gfs2_holder_initialized(&rd_gh))
1699 		gfs2_glock_dq_uninit(&rd_gh);
1700 
1701 	while (x--) {
1702 		if (gfs2_holder_queued(ghs + x))
1703 			gfs2_glock_dq(ghs + x);
1704 		gfs2_holder_uninit(ghs + x);
1705 	}
1706 out_gunlock_r:
1707 	if (gfs2_holder_initialized(&r_gh))
1708 		gfs2_glock_dq_uninit(&r_gh);
1709 out:
1710 	gfs2_qa_put(ndip);
1711 	return error;
1712 }
1713 
1714 /**
1715  * gfs2_exchange - exchange two files
1716  * @odir: Parent directory of old file name
1717  * @odentry: The old dentry of the file
1718  * @ndir: Parent directory of new file name
1719  * @ndentry: The new dentry of the file
1720  * @flags: The rename flags
1721  *
1722  * Returns: errno
1723  */
1724 
gfs2_exchange(struct inode * odir,struct dentry * odentry,struct inode * ndir,struct dentry * ndentry,unsigned int flags)1725 static int gfs2_exchange(struct inode *odir, struct dentry *odentry,
1726 			 struct inode *ndir, struct dentry *ndentry,
1727 			 unsigned int flags)
1728 {
1729 	struct gfs2_inode *odip = GFS2_I(odir);
1730 	struct gfs2_inode *ndip = GFS2_I(ndir);
1731 	struct gfs2_inode *oip = GFS2_I(odentry->d_inode);
1732 	struct gfs2_inode *nip = GFS2_I(ndentry->d_inode);
1733 	struct gfs2_sbd *sdp = GFS2_SB(odir);
1734 	struct gfs2_holder ghs[4], r_gh;
1735 	unsigned int num_gh;
1736 	unsigned int x;
1737 	umode_t old_mode = oip->i_inode.i_mode;
1738 	umode_t new_mode = nip->i_inode.i_mode;
1739 	int error;
1740 
1741 	gfs2_holder_mark_uninitialized(&r_gh);
1742 	error = gfs2_rindex_update(sdp);
1743 	if (error)
1744 		return error;
1745 
1746 	if (odip != ndip) {
1747 		error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
1748 					   0, &r_gh);
1749 		if (error)
1750 			goto out;
1751 
1752 		if (S_ISDIR(old_mode)) {
1753 			/* don't move a directory into its subdir */
1754 			error = gfs2_ok_to_move(oip, ndip);
1755 			if (error)
1756 				goto out_gunlock_r;
1757 		}
1758 
1759 		if (S_ISDIR(new_mode)) {
1760 			/* don't move a directory into its subdir */
1761 			error = gfs2_ok_to_move(nip, odip);
1762 			if (error)
1763 				goto out_gunlock_r;
1764 		}
1765 	}
1766 
1767 	num_gh = 1;
1768 	gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs);
1769 	if (odip != ndip) {
1770 		gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC,
1771 				 ghs + num_gh);
1772 		num_gh++;
1773 	}
1774 	gfs2_holder_init(oip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs + num_gh);
1775 	num_gh++;
1776 
1777 	gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, GL_ASYNC, ghs + num_gh);
1778 	num_gh++;
1779 
1780 	for (x = 0; x < num_gh; x++) {
1781 		error = gfs2_glock_nq(ghs + x);
1782 		if (error)
1783 			goto out_gunlock;
1784 	}
1785 
1786 	error = gfs2_glock_async_wait(num_gh, ghs);
1787 	if (error)
1788 		goto out_gunlock;
1789 
1790 	error = -ENOENT;
1791 	if (oip->i_inode.i_nlink == 0 || nip->i_inode.i_nlink == 0)
1792 		goto out_gunlock;
1793 
1794 	error = gfs2_unlink_ok(odip, &odentry->d_name, oip);
1795 	if (error)
1796 		goto out_gunlock;
1797 	error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
1798 	if (error)
1799 		goto out_gunlock;
1800 
1801 	if (S_ISDIR(old_mode)) {
1802 		error = gfs2_permission(&nop_mnt_idmap, odentry->d_inode,
1803 					MAY_WRITE);
1804 		if (error)
1805 			goto out_gunlock;
1806 	}
1807 	if (S_ISDIR(new_mode)) {
1808 		error = gfs2_permission(&nop_mnt_idmap, ndentry->d_inode,
1809 					MAY_WRITE);
1810 		if (error)
1811 			goto out_gunlock;
1812 	}
1813 	error = gfs2_trans_begin(sdp, 4 * RES_DINODE + 4 * RES_LEAF, 0);
1814 	if (error)
1815 		goto out_gunlock;
1816 
1817 	error = update_moved_ino(oip, ndip, S_ISDIR(old_mode));
1818 	if (error)
1819 		goto out_end_trans;
1820 
1821 	error = update_moved_ino(nip, odip, S_ISDIR(new_mode));
1822 	if (error)
1823 		goto out_end_trans;
1824 
1825 	error = gfs2_dir_mvino(ndip, &ndentry->d_name, oip,
1826 			       IF2DT(old_mode));
1827 	if (error)
1828 		goto out_end_trans;
1829 
1830 	error = gfs2_dir_mvino(odip, &odentry->d_name, nip,
1831 			       IF2DT(new_mode));
1832 	if (error)
1833 		goto out_end_trans;
1834 
1835 	if (odip != ndip) {
1836 		if (S_ISDIR(new_mode) && !S_ISDIR(old_mode)) {
1837 			inc_nlink(&odip->i_inode);
1838 			drop_nlink(&ndip->i_inode);
1839 		} else if (S_ISDIR(old_mode) && !S_ISDIR(new_mode)) {
1840 			inc_nlink(&ndip->i_inode);
1841 			drop_nlink(&odip->i_inode);
1842 		}
1843 	}
1844 	mark_inode_dirty(&ndip->i_inode);
1845 	if (odip != ndip)
1846 		mark_inode_dirty(&odip->i_inode);
1847 
1848 out_end_trans:
1849 	gfs2_trans_end(sdp);
1850 out_gunlock:
1851 	while (x--) {
1852 		if (gfs2_holder_queued(ghs + x))
1853 			gfs2_glock_dq(ghs + x);
1854 		gfs2_holder_uninit(ghs + x);
1855 	}
1856 out_gunlock_r:
1857 	if (gfs2_holder_initialized(&r_gh))
1858 		gfs2_glock_dq_uninit(&r_gh);
1859 out:
1860 	return error;
1861 }
1862 
gfs2_rename2(struct mnt_idmap * idmap,struct inode * odir,struct dentry * odentry,struct inode * ndir,struct dentry * ndentry,unsigned int flags)1863 static int gfs2_rename2(struct mnt_idmap *idmap, struct inode *odir,
1864 			struct dentry *odentry, struct inode *ndir,
1865 			struct dentry *ndentry, unsigned int flags)
1866 {
1867 	flags &= ~RENAME_NOREPLACE;
1868 
1869 	if (flags & ~RENAME_EXCHANGE)
1870 		return -EINVAL;
1871 
1872 	if (flags & RENAME_EXCHANGE)
1873 		return gfs2_exchange(odir, odentry, ndir, ndentry, flags);
1874 
1875 	return gfs2_rename(odir, odentry, ndir, ndentry);
1876 }
1877 
1878 /**
1879  * gfs2_get_link - Follow a symbolic link
1880  * @dentry: The dentry of the link
1881  * @inode: The inode of the link
1882  * @done: destructor for return value
1883  *
1884  * This can handle symlinks of any size.
1885  *
1886  * Returns: 0 on success or error code
1887  */
1888 
gfs2_get_link(struct dentry * dentry,struct inode * inode,struct delayed_call * done)1889 static const char *gfs2_get_link(struct dentry *dentry,
1890 				 struct inode *inode,
1891 				 struct delayed_call *done)
1892 {
1893 	struct gfs2_inode *ip = GFS2_I(inode);
1894 	struct gfs2_holder i_gh;
1895 	struct buffer_head *dibh;
1896 	unsigned int size;
1897 	char *buf;
1898 	int error;
1899 
1900 	if (!dentry)
1901 		return ERR_PTR(-ECHILD);
1902 
1903 	gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
1904 	error = gfs2_glock_nq(&i_gh);
1905 	if (error) {
1906 		gfs2_holder_uninit(&i_gh);
1907 		return ERR_PTR(error);
1908 	}
1909 
1910 	size = (unsigned int)i_size_read(&ip->i_inode);
1911 	if (size == 0) {
1912 		gfs2_consist_inode(ip);
1913 		buf = ERR_PTR(-EIO);
1914 		goto out;
1915 	}
1916 
1917 	error = gfs2_meta_inode_buffer(ip, &dibh);
1918 	if (error) {
1919 		buf = ERR_PTR(error);
1920 		goto out;
1921 	}
1922 
1923 	buf = kzalloc(size + 1, GFP_NOFS);
1924 	if (!buf)
1925 		buf = ERR_PTR(-ENOMEM);
1926 	else
1927 		memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
1928 	brelse(dibh);
1929 out:
1930 	gfs2_glock_dq_uninit(&i_gh);
1931 	if (!IS_ERR(buf))
1932 		set_delayed_call(done, kfree_link, buf);
1933 	return buf;
1934 }
1935 
1936 /**
1937  * gfs2_permission
1938  * @idmap: idmap of the mount the inode was found from
1939  * @inode: The inode
1940  * @mask: The mask to be tested
1941  *
1942  * This may be called from the VFS directly, or from within GFS2 with the
1943  * inode locked, so we look to see if the glock is already locked and only
1944  * lock the glock if its not already been done.
1945  *
1946  * Returns: errno
1947  */
1948 
gfs2_permission(struct mnt_idmap * idmap,struct inode * inode,int mask)1949 int gfs2_permission(struct mnt_idmap *idmap, struct inode *inode,
1950 		    int mask)
1951 {
1952 	int may_not_block = mask & MAY_NOT_BLOCK;
1953 	struct gfs2_inode *ip;
1954 	struct gfs2_holder i_gh;
1955 	struct gfs2_glock *gl;
1956 	int error;
1957 
1958 	gfs2_holder_mark_uninitialized(&i_gh);
1959 	ip = GFS2_I(inode);
1960 	gl = rcu_dereference_check(ip->i_gl, !may_not_block);
1961 	if (unlikely(!gl)) {
1962 		/* inode is getting torn down, must be RCU mode */
1963 		WARN_ON_ONCE(!may_not_block);
1964 		return -ECHILD;
1965         }
1966 	if (gfs2_glock_is_locked_by_me(gl) == NULL) {
1967 		if (may_not_block)
1968 			return -ECHILD;
1969 		error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
1970 		if (error)
1971 			return error;
1972 	}
1973 
1974 	if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
1975 		error = -EPERM;
1976 	else
1977 		error = generic_permission(&nop_mnt_idmap, inode, mask);
1978 	if (gfs2_holder_initialized(&i_gh))
1979 		gfs2_glock_dq_uninit(&i_gh);
1980 
1981 	return error;
1982 }
1983 
__gfs2_setattr_simple(struct inode * inode,struct iattr * attr)1984 static int __gfs2_setattr_simple(struct inode *inode, struct iattr *attr)
1985 {
1986 	setattr_copy(&nop_mnt_idmap, inode, attr);
1987 	mark_inode_dirty(inode);
1988 	return 0;
1989 }
1990 
gfs2_setattr_simple(struct inode * inode,struct iattr * attr)1991 static int gfs2_setattr_simple(struct inode *inode, struct iattr *attr)
1992 {
1993 	int error;
1994 
1995 	if (current->journal_info)
1996 		return __gfs2_setattr_simple(inode, attr);
1997 
1998 	error = gfs2_trans_begin(GFS2_SB(inode), RES_DINODE, 0);
1999 	if (error)
2000 		return error;
2001 
2002 	error = __gfs2_setattr_simple(inode, attr);
2003 	gfs2_trans_end(GFS2_SB(inode));
2004 	return error;
2005 }
2006 
setattr_chown(struct inode * inode,struct iattr * attr)2007 static int setattr_chown(struct inode *inode, struct iattr *attr)
2008 {
2009 	struct gfs2_inode *ip = GFS2_I(inode);
2010 	struct gfs2_sbd *sdp = GFS2_SB(inode);
2011 	kuid_t ouid, nuid;
2012 	kgid_t ogid, ngid;
2013 	int error;
2014 	struct gfs2_alloc_parms ap = {};
2015 
2016 	ouid = inode->i_uid;
2017 	ogid = inode->i_gid;
2018 	nuid = attr->ia_uid;
2019 	ngid = attr->ia_gid;
2020 
2021 	if (!(attr->ia_valid & ATTR_UID) || uid_eq(ouid, nuid))
2022 		ouid = nuid = NO_UID_QUOTA_CHANGE;
2023 	if (!(attr->ia_valid & ATTR_GID) || gid_eq(ogid, ngid))
2024 		ogid = ngid = NO_GID_QUOTA_CHANGE;
2025 	error = gfs2_qa_get(ip);
2026 	if (error)
2027 		return error;
2028 
2029 	error = gfs2_rindex_update(sdp);
2030 	if (error)
2031 		goto out;
2032 
2033 	error = gfs2_quota_lock(ip, nuid, ngid);
2034 	if (error)
2035 		goto out;
2036 
2037 	ap.target = gfs2_get_inode_blocks(&ip->i_inode);
2038 
2039 	if (!uid_eq(ouid, NO_UID_QUOTA_CHANGE) ||
2040 	    !gid_eq(ogid, NO_GID_QUOTA_CHANGE)) {
2041 		error = gfs2_quota_check(ip, nuid, ngid, &ap);
2042 		if (error)
2043 			goto out_gunlock_q;
2044 	}
2045 
2046 	error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
2047 	if (error)
2048 		goto out_gunlock_q;
2049 
2050 	error = gfs2_setattr_simple(inode, attr);
2051 	if (error)
2052 		goto out_end_trans;
2053 
2054 	if (!uid_eq(ouid, NO_UID_QUOTA_CHANGE) ||
2055 	    !gid_eq(ogid, NO_GID_QUOTA_CHANGE)) {
2056 		gfs2_quota_change(ip, -(s64)ap.target, ouid, ogid);
2057 		gfs2_quota_change(ip, ap.target, nuid, ngid);
2058 	}
2059 
2060 out_end_trans:
2061 	gfs2_trans_end(sdp);
2062 out_gunlock_q:
2063 	gfs2_quota_unlock(ip);
2064 out:
2065 	gfs2_qa_put(ip);
2066 	return error;
2067 }
2068 
2069 /**
2070  * gfs2_setattr - Change attributes on an inode
2071  * @idmap: idmap of the mount the inode was found from
2072  * @dentry: The dentry which is changing
2073  * @attr: The structure describing the change
2074  *
2075  * The VFS layer wants to change one or more of an inodes attributes.  Write
2076  * that change out to disk.
2077  *
2078  * Returns: errno
2079  */
2080 
gfs2_setattr(struct mnt_idmap * idmap,struct dentry * dentry,struct iattr * attr)2081 static int gfs2_setattr(struct mnt_idmap *idmap,
2082 			struct dentry *dentry, struct iattr *attr)
2083 {
2084 	struct inode *inode = d_inode(dentry);
2085 	struct gfs2_inode *ip = GFS2_I(inode);
2086 	struct gfs2_holder i_gh;
2087 	int error;
2088 
2089 	error = gfs2_qa_get(ip);
2090 	if (error)
2091 		return error;
2092 
2093 	error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
2094 	if (error)
2095 		goto out;
2096 
2097 	error = may_setattr(&nop_mnt_idmap, inode, attr->ia_valid);
2098 	if (error)
2099 		goto error;
2100 
2101 	error = setattr_prepare(&nop_mnt_idmap, dentry, attr);
2102 	if (error)
2103 		goto error;
2104 
2105 	if (attr->ia_valid & ATTR_SIZE)
2106 		error = gfs2_setattr_size(inode, attr->ia_size);
2107 	else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
2108 		error = setattr_chown(inode, attr);
2109 	else {
2110 		error = gfs2_setattr_simple(inode, attr);
2111 		if (!error && attr->ia_valid & ATTR_MODE)
2112 			error = posix_acl_chmod(&nop_mnt_idmap, dentry,
2113 						inode->i_mode);
2114 	}
2115 
2116 error:
2117 	if (!error)
2118 		mark_inode_dirty(inode);
2119 	gfs2_glock_dq_uninit(&i_gh);
2120 out:
2121 	gfs2_qa_put(ip);
2122 	return error;
2123 }
2124 
2125 /**
2126  * gfs2_getattr - Read out an inode's attributes
2127  * @idmap: idmap of the mount the inode was found from
2128  * @path: Object to query
2129  * @stat: The inode's stats
2130  * @request_mask: Mask of STATX_xxx flags indicating the caller's interests
2131  * @flags: AT_STATX_xxx setting
2132  *
2133  * This may be called from the VFS directly, or from within GFS2 with the
2134  * inode locked, so we look to see if the glock is already locked and only
2135  * lock the glock if its not already been done. Note that its the NFS
2136  * readdirplus operation which causes this to be called (from filldir)
2137  * with the glock already held.
2138  *
2139  * Returns: errno
2140  */
2141 
gfs2_getattr(struct mnt_idmap * idmap,const struct path * path,struct kstat * stat,u32 request_mask,unsigned int flags)2142 static int gfs2_getattr(struct mnt_idmap *idmap,
2143 			const struct path *path, struct kstat *stat,
2144 			u32 request_mask, unsigned int flags)
2145 {
2146 	struct inode *inode = d_inode(path->dentry);
2147 	struct gfs2_inode *ip = GFS2_I(inode);
2148 	struct gfs2_holder gh;
2149 	u32 gfsflags;
2150 	int error;
2151 
2152 	gfs2_holder_mark_uninitialized(&gh);
2153 	if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
2154 		error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
2155 		if (error)
2156 			return error;
2157 	}
2158 
2159 	gfsflags = ip->i_diskflags;
2160 	if (gfsflags & GFS2_DIF_APPENDONLY)
2161 		stat->attributes |= STATX_ATTR_APPEND;
2162 	if (gfsflags & GFS2_DIF_IMMUTABLE)
2163 		stat->attributes |= STATX_ATTR_IMMUTABLE;
2164 
2165 	stat->attributes_mask |= (STATX_ATTR_APPEND |
2166 				  STATX_ATTR_COMPRESSED |
2167 				  STATX_ATTR_ENCRYPTED |
2168 				  STATX_ATTR_IMMUTABLE |
2169 				  STATX_ATTR_NODUMP);
2170 
2171 	generic_fillattr(&nop_mnt_idmap, request_mask, inode, stat);
2172 
2173 	if (gfs2_holder_initialized(&gh))
2174 		gfs2_glock_dq_uninit(&gh);
2175 
2176 	return 0;
2177 }
2178 
gfs2_fiemap(struct inode * inode,struct fiemap_extent_info * fieinfo,u64 start,u64 len)2179 static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
2180 		       u64 start, u64 len)
2181 {
2182 	struct gfs2_inode *ip = GFS2_I(inode);
2183 	struct gfs2_holder gh;
2184 	int ret;
2185 
2186 	inode_lock_shared(inode);
2187 
2188 	ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
2189 	if (ret)
2190 		goto out;
2191 
2192 	ret = iomap_fiemap(inode, fieinfo, start, len, &gfs2_iomap_ops);
2193 
2194 	gfs2_glock_dq_uninit(&gh);
2195 
2196 out:
2197 	inode_unlock_shared(inode);
2198 	return ret;
2199 }
2200 
gfs2_seek_data(struct file * file,loff_t offset)2201 loff_t gfs2_seek_data(struct file *file, loff_t offset)
2202 {
2203 	struct inode *inode = file->f_mapping->host;
2204 	struct gfs2_inode *ip = GFS2_I(inode);
2205 	struct gfs2_holder gh;
2206 	loff_t ret;
2207 
2208 	inode_lock_shared(inode);
2209 	ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
2210 	if (!ret)
2211 		ret = iomap_seek_data(inode, offset, &gfs2_iomap_ops);
2212 	gfs2_glock_dq_uninit(&gh);
2213 	inode_unlock_shared(inode);
2214 
2215 	if (ret < 0)
2216 		return ret;
2217 	return vfs_setpos(file, ret, inode->i_sb->s_maxbytes);
2218 }
2219 
gfs2_seek_hole(struct file * file,loff_t offset)2220 loff_t gfs2_seek_hole(struct file *file, loff_t offset)
2221 {
2222 	struct inode *inode = file->f_mapping->host;
2223 	struct gfs2_inode *ip = GFS2_I(inode);
2224 	struct gfs2_holder gh;
2225 	loff_t ret;
2226 
2227 	inode_lock_shared(inode);
2228 	ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
2229 	if (!ret)
2230 		ret = iomap_seek_hole(inode, offset, &gfs2_iomap_ops);
2231 	gfs2_glock_dq_uninit(&gh);
2232 	inode_unlock_shared(inode);
2233 
2234 	if (ret < 0)
2235 		return ret;
2236 	return vfs_setpos(file, ret, inode->i_sb->s_maxbytes);
2237 }
2238 
gfs2_update_time(struct inode * inode,int flags)2239 static int gfs2_update_time(struct inode *inode, int flags)
2240 {
2241 	struct gfs2_inode *ip = GFS2_I(inode);
2242 	struct gfs2_glock *gl = ip->i_gl;
2243 	struct gfs2_holder *gh;
2244 	int error;
2245 
2246 	gh = gfs2_glock_is_locked_by_me(gl);
2247 	if (gh && gl->gl_state != LM_ST_EXCLUSIVE) {
2248 		gfs2_glock_dq(gh);
2249 		gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, gh);
2250 		error = gfs2_glock_nq(gh);
2251 		if (error)
2252 			return error;
2253 	}
2254 	generic_update_time(inode, flags);
2255 	return 0;
2256 }
2257 
2258 static const struct inode_operations gfs2_file_iops = {
2259 	.permission = gfs2_permission,
2260 	.setattr = gfs2_setattr,
2261 	.getattr = gfs2_getattr,
2262 	.listxattr = gfs2_listxattr,
2263 	.fiemap = gfs2_fiemap,
2264 	.get_inode_acl = gfs2_get_acl,
2265 	.set_acl = gfs2_set_acl,
2266 	.update_time = gfs2_update_time,
2267 	.fileattr_get = gfs2_fileattr_get,
2268 	.fileattr_set = gfs2_fileattr_set,
2269 };
2270 
2271 static const struct inode_operations gfs2_dir_iops = {
2272 	.create = gfs2_create,
2273 	.lookup = gfs2_lookup,
2274 	.link = gfs2_link,
2275 	.unlink = gfs2_unlink,
2276 	.symlink = gfs2_symlink,
2277 	.mkdir = gfs2_mkdir,
2278 	.rmdir = gfs2_unlink,
2279 	.mknod = gfs2_mknod,
2280 	.rename = gfs2_rename2,
2281 	.permission = gfs2_permission,
2282 	.setattr = gfs2_setattr,
2283 	.getattr = gfs2_getattr,
2284 	.listxattr = gfs2_listxattr,
2285 	.fiemap = gfs2_fiemap,
2286 	.get_inode_acl = gfs2_get_acl,
2287 	.set_acl = gfs2_set_acl,
2288 	.update_time = gfs2_update_time,
2289 	.atomic_open = gfs2_atomic_open,
2290 	.fileattr_get = gfs2_fileattr_get,
2291 	.fileattr_set = gfs2_fileattr_set,
2292 };
2293 
2294 static const struct inode_operations gfs2_symlink_iops = {
2295 	.get_link = gfs2_get_link,
2296 	.permission = gfs2_permission,
2297 	.setattr = gfs2_setattr,
2298 	.getattr = gfs2_getattr,
2299 	.listxattr = gfs2_listxattr,
2300 	.fiemap = gfs2_fiemap,
2301 };
2302 
2303