blob: edbd5a210df22144ab810a67d88dac5f479b39f7 [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
Eric Sandeen007c61c2007-10-11 17:43:56 +1000113#define spinlock_destroy(lock)
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define NBBY 8 /* number of bits per byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/*
118 * Size of block device i/o is parameterized here.
119 * Currently the system supports page-sized i/o.
120 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300121#define BLKDEV_IOSHIFT PAGE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define BLKDEV_IOSIZE (1<<BLKDEV_IOSHIFT)
123/* number of BB's per block device block */
124#define BLKDEV_BB BTOBB(BLKDEV_IOSIZE)
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#define ENOATTR ENODATA /* Attribute not found */
Nathan Scottda2f4d62006-06-20 13:01:38 +1000127#define EWRONGFS EINVAL /* Mount with wrong filesystem type */
128#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
Eric Sandeenca23f8f2014-02-27 15:21:07 +1100129#define EFSBADCRC EBADMSG /* Bad CRC detected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131#define SYNCHRONIZE() barrier()
132#define __return_address __builtin_return_address(0)
133
Darrick J. Wong52c732e2017-10-17 21:37:33 -0700134/*
135 * Return the address of a label. Use barrier() so that the optimizer
136 * won't reorder code to refactor the error jumpouts into a single
137 * return, which throws off the reported address.
138 */
139#define __this_address ({ __label__ __here; __here: barrier(); &&__here; })
140
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000141#define XFS_PROJID_DEFAULT 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#define howmany(x, y) (((x)+((y)-1))/(y))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Dave Chinnere076b0f2014-10-02 09:18:13 +1000145static inline void delay(long ticks)
146{
147 schedule_timeout_uninterruptible(ticks);
148}
149
Brian Fostera31b1d32014-07-15 08:07:01 +1000150/*
151 * XFS wrapper structure for sysfs support. It depends on external data
152 * structures and is embedded in various internal data structures to implement
153 * the XFS sysfs object heirarchy. Define it here for broad access throughout
154 * the codebase.
155 */
156struct xfs_kobj {
157 struct kobject kobject;
158 struct completion complete;
159};
160
Bill O'Donnell80529c42015-10-12 05:19:45 +1100161struct xstats {
162 struct xfsstats __percpu *xs_stats;
163 struct xfs_kobj xs_kobj;
164};
165
166extern struct xstats xfsstats;
167
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400168/* Kernel uid/gid conversion. These are used to convert to/from the on disk
169 * uid_t/gid_t types to the kuid_t/kgid_t types that the kernel uses internally.
170 * The conversion here is type only, the value will remain the same since we
171 * are converting to the init_user_ns. The uid is later mapped to a particular
172 * user namespace value when crossing the kernel/user boundary.
173 */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700174static inline uint32_t xfs_kuid_to_uid(kuid_t uid)
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400175{
176 return from_kuid(&init_user_ns, uid);
177}
178
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700179static inline kuid_t xfs_uid_to_kuid(uint32_t uid)
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400180{
181 return make_kuid(&init_user_ns, uid);
182}
183
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700184static inline uint32_t xfs_kgid_to_gid(kgid_t gid)
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400185{
186 return from_kgid(&init_user_ns, gid);
187}
188
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700189static inline kgid_t xfs_gid_to_kgid(uint32_t gid)
Dwight Engenc5eeb7e2013-08-15 14:07:58 -0400190{
191 return make_kgid(&init_user_ns, gid);
192}
193
Christoph Hellwig274e0a12017-11-20 08:56:52 -0800194static inline dev_t xfs_to_linux_dev_t(xfs_dev_t dev)
195{
196 return MKDEV(sysv_major(dev) & 0x1ff, sysv_minor(dev));
197}
198
199static inline xfs_dev_t linux_to_xfs_dev_t(dev_t dev)
200{
201 return sysv_encode_dev(dev);
202}
203
Nathan Scottcde410a2005-09-05 11:47:01 +1000204/*
205 * Various platform dependent calls that don't fit anywhere else
206 */
Nathan Scott380b5dc2005-11-02 11:43:18 +1100207#define xfs_sort(a,n,s,fn) sort(a,n,s,fn,NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208#define xfs_stack_trace() dump_stack()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700210static inline uint64_t roundup_64(uint64_t x, uint32_t y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 x += y - 1;
213 do_div(x, y);
Eric Sandeend99831f2014-06-22 15:03:54 +1000214 return x * y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700217static inline uint64_t howmany_64(uint64_t x, uint32_t y)
Nathan Scott68c32712006-09-28 11:03:53 +1000218{
219 x += y - 1;
220 do_div(x, y);
221 return x;
222}
223
Dave Chinner91300902011-03-07 10:09:35 +1100224#define ASSERT_ALWAYS(expr) \
Amir Goldsteinbf46ecc2017-01-17 11:41:41 -0800225 (likely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
Dave Chinner91300902011-03-07 10:09:35 +1100226
Dave Chinner742ae1e2013-04-30 21:39:34 +1000227#ifdef DEBUG
Dave Chinner91300902011-03-07 10:09:35 +1100228#define ASSERT(expr) \
Amir Goldsteinbf46ecc2017-01-17 11:41:41 -0800229 (likely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
Dave Chinner91300902011-03-07 10:09:35 +1100230
Dave Chinner742ae1e2013-04-30 21:39:34 +1000231#else /* !DEBUG */
232
233#ifdef XFS_WARN
234
235#define ASSERT(expr) \
Amir Goldsteinbf46ecc2017-01-17 11:41:41 -0800236 (likely(expr) ? (void)0 : asswarn(#expr, __FILE__, __LINE__))
Dave Chinner742ae1e2013-04-30 21:39:34 +1000237
Dave Chinner742ae1e2013-04-30 21:39:34 +1000238#else /* !DEBUG && !XFS_WARN */
239
240#define ASSERT(expr) ((void)0)
241
Dave Chinner742ae1e2013-04-30 21:39:34 +1000242#endif /* XFS_WARN */
Dave Chinner91300902011-03-07 10:09:35 +1100243#endif /* DEBUG */
244
Christoph Hellwigfc41e2a2017-11-06 11:53:58 -0800245#define STATIC static noinline
246
Christoph Hellwig6d3ebaa2014-11-28 14:24:06 +1100247#ifdef CONFIG_XFS_RT
Richard Wareingb31ff3c2017-09-13 09:09:35 +1000248
249/*
250 * make sure we ignore the inode flag if the filesystem doesn't have a
251 * configured realtime device.
252 */
253#define XFS_IS_REALTIME_INODE(ip) \
254 (((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME) && \
255 (ip)->i_mount->m_rtdev_targp)
Richard Wareinga0158312018-01-08 10:41:33 -0800256#define XFS_IS_REALTIME_MOUNT(mp) ((mp)->m_rtdev_targp ? 1 : 0)
Christoph Hellwig6d3ebaa2014-11-28 14:24:06 +1100257#else
258#define XFS_IS_REALTIME_INODE(ip) (0)
Richard Wareinga0158312018-01-08 10:41:33 -0800259#define XFS_IS_REALTIME_MOUNT(mp) (0)
Christoph Hellwig6d3ebaa2014-11-28 14:24:06 +1100260#endif
261
Darrick J. Wongc9690042018-01-09 12:02:55 -0800262/*
263 * Starting in Linux 4.15, the %p (raw pointer value) printk modifier
264 * prints a hashed version of the pointer to avoid leaking kernel
265 * pointers into dmesg. If we're trying to debug the kernel we want the
266 * raw values, so override this behavior as best we can.
267 */
268#ifdef DEBUG
269# define PTR_FMT "%px"
270#else
271# define PTR_FMT "%p"
272#endif
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274#endif /* __XFS_LINUX__ */