blob: ca15105681cacb7c3677b2397baf729ca846d47c [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6#ifndef __XFS_LINUX__
7#define __XFS_LINUX__
8
9#include <linux/types.h>
Christoph Hellwigb1f359f2017-05-05 09:53:09 +020010#include <linux/uuid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12/*
Dave Chinner4f3d71f2013-08-12 20:49:54 +100013 * Kernel specific type declarations for XFS
14 */
Dave Chinner4f3d71f2013-08-12 20:49:54 +100015
Dave Chinner4f3d71f2013-08-12 20:49:54 +100016typedef __s64 xfs_off_t; /* <file offset> type */
17typedef unsigned long long xfs_ino_t; /* <inode> type */
18typedef __s64 xfs_daddr_t; /* <disk address> type */
Dave Chinner4f3d71f2013-08-12 20:49:54 +100019typedef __u32 xfs_dev_t;
20typedef __u32 xfs_nlink_t;
21
Alex Elder06f8e2d2011-08-12 13:57:55 -050022#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Alex Elder06f8e2d2011-08-12 13:57:55 -050024#include "kmem.h"
25#include "mrlock.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
David Chinnerab4a9b02008-08-13 16:42:10 +100027#include <linux/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mm.h>
Dave Chinner4a2d01b2018-06-07 07:46:42 -070029#include <linux/sched/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/blkdev.h>
32#include <linux/slab.h>
Christoph Hellwigbc02e862012-11-16 09:20:37 +110033#include <linux/crc32c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
Christoph Hellwiga0b0b8a2009-03-29 09:51:00 +020035#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/file.h>
37#include <linux/swap.h>
38#include <linux/errno.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010039#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/bitops.h>
41#include <linux/major.h>
42#include <linux/pagemap.h>
43#include <linux/vfs.h>
44#include <linux/seq_file.h>
45#include <linux/init.h>
46#include <linux/list.h>
47#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/sort.h>
David Chinnere8234a62006-03-14 13:23:52 +110049#include <linux/cpu.h>
50#include <linux/notifier.h>
David Chinner01e1b692006-03-14 13:29:16 +110051#include <linux/delay.h>
Eric Sandeenaf3a2e82007-08-16 16:25:23 +100052#include <linux/log2.h>
Eric Sandeen007c61c2007-10-11 17:43:56 +100053#include <linux/spinlock.h>
David Chinner64275ea2008-04-30 17:11:16 +100054#include <linux/random.h>
Barry Naujok189f4bf2008-05-21 16:58:55 +100055#include <linux/ctype.h>
David Chinner6bfb3d02008-10-30 18:32:43 +110056#include <linux/writeback.h>
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +000057#include <linux/capability.h>
Christoph Hellwig00308072011-10-11 11:14:10 -040058#include <linux/kthread.h>
59#include <linux/freezer.h>
Christoph Hellwig8a072a42011-04-24 19:06:17 +000060#include <linux/list_sort.h>
Rich Johnston3d6e0362013-03-27 09:26:49 -050061#include <linux/ratelimit.h>
Lucas Stach6031e732016-12-07 17:36:36 +110062#include <linux/rhashtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#include <asm/page.h>
65#include <asm/div64.h>
66#include <asm/param.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080067#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <asm/byteorder.h>
69#include <asm/unaligned.h>
70
Dave Chinnerb92cc59f62014-08-04 13:28:20 +100071#include "xfs_fs.h"
Alex Elder06f8e2d2011-08-12 13:57:55 -050072#include "xfs_stats.h"
73#include "xfs_sysctl.h"
74#include "xfs_iops.h"
75#include "xfs_aops.h"
76#include "xfs_super.h"
Eric Sandeen51582172014-02-27 15:17:27 +110077#include "xfs_cksum.h"
Alex Elder06f8e2d2011-08-12 13:57:55 -050078#include "xfs_buf.h"
79#include "xfs_message.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Christoph Hellwig218106a2011-07-08 14:35:58 +020081#ifdef __BIG_ENDIAN
82#define XFS_NATIVE_HOST 1
83#else
84#undef XFS_NATIVE_HOST
85#endif
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define irix_sgid_inherit xfs_params.sgid_inherit.val
88#define irix_symlink_mode xfs_params.symlink_mode.val
89#define xfs_panic_mask xfs_params.panic_mask.val
90#define xfs_error_level xfs_params.error_level.val
91#define xfs_syncd_centisecs xfs_params.syncd_timer.val
92#define xfs_stats_clear xfs_params.stats_clear.val
93#define xfs_inherit_sync xfs_params.inherit_sync.val
94#define xfs_inherit_nodump xfs_params.inherit_nodump.val
95#define xfs_inherit_noatime xfs_params.inherit_noatim.val
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#define xfs_inherit_nosymlinks xfs_params.inherit_nosym.val
97#define xfs_rotorstep xfs_params.rotorstep.val
Barry Naujokd3446ea2006-06-09 14:54:19 +100098#define xfs_inherit_nodefrag xfs_params.inherit_nodfrg.val
David Chinner2a82b8b2007-07-11 11:09:12 +100099#define xfs_fstrm_centisecs xfs_params.fstrm_timer.val
Brian Foster579b62f2012-11-06 09:50:47 -0500100#define xfs_eofb_secs xfs_params.eofb_timer.val
Darrick J. Wong83104d42016-10-03 09:11:46 -0700101#define xfs_cowb_secs xfs_params.cowb_timer.val
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Nathan Scott59c1b082006-06-09 14:59:13 +1000103#define current_cpu() (raw_smp_processor_id())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define current_pid() (current->pid)
Nathan Scott59c1b082006-06-09 14:59:13 +1000105#define current_test_flags(f) (current->flags & (f))
Nathan Scott59c1b082006-06-09 14:59:13 +1000106#define current_set_flags_nested(sp, f) \
107 (*(sp) = current->flags, current->flags |= (f))
108#define current_clear_flags_nested(sp, f) \
109 (*(sp) = current->flags, current->flags &= ~(f))
110#define current_restore_flags_nested(sp, f) \
111 (current->flags = ((current->flags & ~(f)) | (*(sp) & (f))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define NBBY 8 /* number of bits per byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115/*
116 * Size of block device i/o is parameterized here.
117 * Currently the system supports page-sized i/o.
118 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300119#define BLKDEV_IOSHIFT PAGE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#define BLKDEV_IOSIZE (1<<BLKDEV_IOSHIFT)
121/* number of BB's per block device block */
122#define BLKDEV_BB BTOBB(BLKDEV_IOSIZE)
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define ENOATTR ENODATA /* Attribute not found */
Nathan Scottda2f4d62006-06-20 13:01:38 +1000125#define EWRONGFS EINVAL /* Mount with wrong filesystem type */
126#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
Eric Sandeenca23f8f2014-02-27 15:21:07 +1100127#define EFSBADCRC EBADMSG /* Bad CRC detected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129#define SYNCHRONIZE() barrier()
130#define __return_address __builtin_return_address(0)
131
Darrick J. Wong52c732e2017-10-17 21:37:33 -0700132/*
133 * Return the address of a label. Use barrier() so that the optimizer
134 * won't reorder code to refactor the error jumpouts into a single
135 * return, which throws off the reported address.
136 */
137#define __this_address ({ __label__ __here; __here: barrier(); &&__here; })
138
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000139#define XFS_PROJID_DEFAULT 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#define howmany(x, y) (((x)+((y)-1))/(y))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Dave Chinnere076b0f2014-10-02 09:18:13 +1000143static inline void delay(long ticks)
144{
145 schedule_timeout_uninterruptible(ticks);
146}
147
Brian Fostera31b1d32014-07-15 08:07:01 +1000148/*
149 * XFS wrapper structure for sysfs support. It depends on external data
150 * structures and is embedded in various internal data structures to implement
151 * the XFS sysfs object heirarchy. Define it here for broad access throughout
152 * the codebase.
153 */
154struct xfs_kobj {
155 struct kobject kobject;
156 struct completion complete;
157};
158
Bill O'Donnell80529c42015-10-12 05:19:45 +1100159struct xstats {
160 struct xfsstats __percpu *xs_stats;
161 struct xfs_kobj xs_kobj;
162};
163
164extern struct xstats xfsstats;
165
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400166/* Kernel uid/gid conversion. These are used to convert to/from the on disk
167 * uid_t/gid_t types to the kuid_t/kgid_t types that the kernel uses internally.
168 * The conversion here is type only, the value will remain the same since we
169 * are converting to the init_user_ns. The uid is later mapped to a particular
170 * user namespace value when crossing the kernel/user boundary.
171 */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700172static inline uint32_t xfs_kuid_to_uid(kuid_t uid)
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400173{
174 return from_kuid(&init_user_ns, uid);
175}
176
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700177static inline kuid_t xfs_uid_to_kuid(uint32_t uid)
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400178{
179 return make_kuid(&init_user_ns, uid);
180}
181
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700182static inline uint32_t xfs_kgid_to_gid(kgid_t gid)
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400183{
184 return from_kgid(&init_user_ns, gid);
185}
186
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700187static inline kgid_t xfs_gid_to_kgid(uint32_t gid)
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400188{
189 return make_kgid(&init_user_ns, gid);
190}
191
Christoph Hellwig274e0a12017-11-20 08:56:52 -0800192static inline dev_t xfs_to_linux_dev_t(xfs_dev_t dev)
193{
194 return MKDEV(sysv_major(dev) & 0x1ff, sysv_minor(dev));
195}
196
197static inline xfs_dev_t linux_to_xfs_dev_t(dev_t dev)
198{
199 return sysv_encode_dev(dev);
200}
201
Nathan Scottcde410a2005-09-05 11:47:01 +1000202/*
203 * Various platform dependent calls that don't fit anywhere else
204 */
Nathan Scott380b5dc2005-11-02 11:43:18 +1100205#define xfs_sort(a,n,s,fn) sort(a,n,s,fn,NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#define xfs_stack_trace() dump_stack()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700208static inline uint64_t roundup_64(uint64_t x, uint32_t y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 x += y - 1;
211 do_div(x, y);
Eric Sandeend99831f2014-06-22 15:03:54 +1000212 return x * y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700215static inline uint64_t howmany_64(uint64_t x, uint32_t y)
Nathan Scott68c32712006-09-28 11:03:53 +1000216{
217 x += y - 1;
218 do_div(x, y);
219 return x;
220}
221
Christoph Hellwig6ad5b322019-06-28 19:27:26 -0700222int xfs_rw_bdev(struct block_device *bdev, sector_t sector, unsigned int count,
223 char *data, unsigned int op);
224
Dave Chinner91300902011-03-07 10:09:35 +1100225#define ASSERT_ALWAYS(expr) \
Amir Goldsteinbf46ecc2017-01-17 11:41:41 -0800226 (likely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
Dave Chinner91300902011-03-07 10:09:35 +1100227
Dave Chinner742ae1e2013-04-30 21:39:34 +1000228#ifdef DEBUG
Dave Chinner91300902011-03-07 10:09:35 +1100229#define ASSERT(expr) \
Amir Goldsteinbf46ecc2017-01-17 11:41:41 -0800230 (likely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
Dave Chinner91300902011-03-07 10:09:35 +1100231
Dave Chinner742ae1e2013-04-30 21:39:34 +1000232#else /* !DEBUG */
233
234#ifdef XFS_WARN
235
236#define ASSERT(expr) \
Amir Goldsteinbf46ecc2017-01-17 11:41:41 -0800237 (likely(expr) ? (void)0 : asswarn(#expr, __FILE__, __LINE__))
Dave Chinner742ae1e2013-04-30 21:39:34 +1000238
Dave Chinner742ae1e2013-04-30 21:39:34 +1000239#else /* !DEBUG && !XFS_WARN */
240
241#define ASSERT(expr) ((void)0)
242
Dave Chinner742ae1e2013-04-30 21:39:34 +1000243#endif /* XFS_WARN */
Dave Chinner91300902011-03-07 10:09:35 +1100244#endif /* DEBUG */
245
Christoph Hellwigfc41e2a2017-11-06 11:53:58 -0800246#define STATIC static noinline
247
Christoph Hellwig6d3ebaa2014-11-28 14:24:06 +1100248#ifdef CONFIG_XFS_RT
Richard Wareingb31ff3c2017-09-13 09:09:35 +1000249
250/*
251 * make sure we ignore the inode flag if the filesystem doesn't have a
252 * configured realtime device.
253 */
254#define XFS_IS_REALTIME_INODE(ip) \
255 (((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME) && \
256 (ip)->i_mount->m_rtdev_targp)
Richard Wareinga0158312018-01-08 10:41:33 -0800257#define XFS_IS_REALTIME_MOUNT(mp) ((mp)->m_rtdev_targp ? 1 : 0)
Christoph Hellwig6d3ebaa2014-11-28 14:24:06 +1100258#else
259#define XFS_IS_REALTIME_INODE(ip) (0)
Richard Wareinga0158312018-01-08 10:41:33 -0800260#define XFS_IS_REALTIME_MOUNT(mp) (0)
Christoph Hellwig6d3ebaa2014-11-28 14:24:06 +1100261#endif
262
Darrick J. Wongc9690042018-01-09 12:02:55 -0800263/*
264 * Starting in Linux 4.15, the %p (raw pointer value) printk modifier
265 * prints a hashed version of the pointer to avoid leaking kernel
266 * pointers into dmesg. If we're trying to debug the kernel we want the
267 * raw values, so override this behavior as best we can.
268 */
269#ifdef DEBUG
270# define PTR_FMT "%px"
271#else
272# define PTR_FMT "%p"
273#endif
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#endif /* __XFS_LINUX__ */