blob: 416a30c04fa4270917f6216dd0dce17d1b0a6203 [file] [log] [blame]
Heiko Carstens5b99cd02006-09-27 01:50:01 -07001#ifndef _LINUX_MM_TYPES_H
2#define _LINUX_MM_TYPES_H
3
Olaf Hering4f9a58d2007-10-16 23:30:12 -07004#include <linux/auxvec.h>
Heiko Carstens5b99cd02006-09-27 01:50:01 -07005#include <linux/types.h>
6#include <linux/threads.h>
7#include <linux/list.h>
8#include <linux/spinlock.h>
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -07009#include <linux/rbtree.h>
10#include <linux/rwsem.h>
11#include <linux/completion.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070012#include <linux/cpumask.h>
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +053013#include <linux/uprobes.h>
Peter Zijlstrabbeae5b2013-02-22 16:34:30 -080014#include <linux/page-flags-layout.h>
Michal Hockoec8d7c12016-05-20 16:57:21 -070015#include <linux/workqueue.h>
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -070016#include <asm/page.h>
17#include <asm/mmu.h>
Heiko Carstens5b99cd02006-09-27 01:50:01 -070018
Olaf Hering4f9a58d2007-10-16 23:30:12 -070019#ifndef AT_VECTOR_SIZE_ARCH
20#define AT_VECTOR_SIZE_ARCH 0
21#endif
22#define AT_VECTOR_SIZE (2*(AT_VECTOR_SIZE_ARCH + AT_VECTOR_SIZE_BASE + 1))
23
Heiko Carstens5b99cd02006-09-27 01:50:01 -070024struct address_space;
Johannes Weiner1306a852014-12-10 15:44:52 -080025struct mem_cgroup;
Heiko Carstens5b99cd02006-09-27 01:50:01 -070026
Kirill A. Shutemov57c1ffc2013-11-14 14:30:45 -080027#define USE_SPLIT_PTE_PTLOCKS (NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS)
Kirill A. Shutemove009bb32013-11-14 14:31:07 -080028#define USE_SPLIT_PMD_PTLOCKS (USE_SPLIT_PTE_PTLOCKS && \
29 IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK))
Kirill A. Shutemov597d7952013-12-20 13:35:58 +020030#define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8)
Jeremy Fitzhardingef7d0b922008-09-09 15:43:22 -070031
Heiko Carstens5b99cd02006-09-27 01:50:01 -070032/*
33 * Each physical page in the system has a struct page associated with
34 * it to keep track of whatever it is we are using the page for at the
35 * moment. Note that we have no way to track which tasks are using
36 * a page, though if it is a pagecache page, rmap structures can tell us
37 * who is mapping it.
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -050038 *
39 * The objects in struct page are organized in double word blocks in
40 * order to allows us to use atomic double word operations on portions
41 * of struct page. That is currently only used by slub but the arrangement
42 * allows the use of atomic double word operations on the flags/mapping
43 * and lru list pointers also.
Heiko Carstens5b99cd02006-09-27 01:50:01 -070044 */
45struct page {
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -050046 /* First double word block */
Heiko Carstens5b99cd02006-09-27 01:50:01 -070047 unsigned long flags; /* Atomic flags, some possibly
48 * updated asynchronously */
Joonsoo Kim8456a642013-10-24 10:07:49 +090049 union {
50 struct address_space *mapping; /* If low bit clear, points to
51 * inode address_space, or NULL.
52 * If page mapped as anonymous
53 * memory, low bit is set, and
54 * it points to anon_vma object:
55 * see PAGE_MAPPING_ANON below.
56 */
57 void *s_mem; /* slab first object */
Kirill A. Shutemov53f92632016-01-15 16:53:42 -080058 atomic_t compound_mapcount; /* first tail page */
Kirill A. Shutemov9a982252016-01-15 16:54:17 -080059 /* page_deferred_list().next -- second tail page */
Joonsoo Kim8456a642013-10-24 10:07:49 +090060 };
61
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -050062 /* Second double word */
Vladimir Davydov99691ad2016-07-26 15:24:16 -070063 union {
64 pgoff_t index; /* Our offset within mapping. */
65 void *freelist; /* sl[aou]b first free object */
66 /* page_deferred_list().prev -- second tail page */
67 };
Christoph Lameter013e8962011-07-14 12:48:14 -050068
Vladimir Davydov99691ad2016-07-26 15:24:16 -070069 union {
Pravin B Shelarabca7c42012-06-20 12:52:56 -070070#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
71 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Vladimir Davydov99691ad2016-07-26 15:24:16 -070072 /* Used for cmpxchg_double in slub */
73 unsigned long counters;
Pravin B Shelarabca7c42012-06-20 12:52:56 -070074#else
Vladimir Davydov99691ad2016-07-26 15:24:16 -070075 /*
76 * Keep _refcount separate from slub cmpxchg_double data.
77 * As the rest of the double word is protected by slab_lock
78 * but _refcount is not.
79 */
80 unsigned counters;
Pravin B Shelarabca7c42012-06-20 12:52:56 -070081#endif
Vladimir Davydov99691ad2016-07-26 15:24:16 -070082 struct {
Christoph Lameter013e8962011-07-14 12:48:14 -050083
Vladimir Davydov99691ad2016-07-26 15:24:16 -070084 union {
Joonsoo Kim0139aa72016-05-19 17:10:49 -070085 /*
Vladimir Davydov99691ad2016-07-26 15:24:16 -070086 * Count of ptes mapped in mms, to show when
87 * page is mapped & limit reverse map searches.
Vladimir Davydov632c0a12016-07-26 15:24:18 -070088 *
89 * Extra information about page type may be
90 * stored here for pages that are never mapped,
91 * in which case the value MUST BE <= -2.
92 * See page-flags.h for more details.
Joonsoo Kim0139aa72016-05-19 17:10:49 -070093 */
Vladimir Davydov99691ad2016-07-26 15:24:16 -070094 atomic_t _mapcount;
95
96 unsigned int active; /* SLAB */
97 struct { /* SLUB */
98 unsigned inuse:16;
99 unsigned objects:15;
100 unsigned frozen:1;
101 };
102 int units; /* SLOB */
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500103 };
Vladimir Davydov99691ad2016-07-26 15:24:16 -0700104 /*
105 * Usage count, *USE WRAPPER FUNCTION* when manual
106 * accounting. See page_ref.h
107 */
108 atomic_t _refcount;
Christoph Lameter39b26462008-04-14 19:11:30 +0300109 };
Christoph Lameter81819f02007-05-06 14:49:36 -0700110 };
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500111
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -0800112 /*
113 * Third double word block
114 *
115 * WARNING: bit 0 of the first word encode PageTail(). That means
116 * the rest users of the storage space MUST NOT use the bit to
117 * avoid collision and false-positive PageTail().
118 */
Christoph Lameter49e22582011-08-09 16:12:27 -0500119 union {
120 struct list_head lru; /* Pageout list, eg. active_list
Mel Gormana52633d2016-07-28 15:45:28 -0700121 * protected by zone_lru_lock !
Dave Hansen34bf6ef2014-04-08 13:44:27 -0700122 * Can be used as a generic list
123 * by the page owner.
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500124 */
Dan Williams5c2c2582016-01-15 16:56:49 -0800125 struct dev_pagemap *pgmap; /* ZONE_DEVICE pages are never on an
126 * lru or handled by a slab
127 * allocator, this points to the
128 * hosting device page map.
129 */
Christoph Lameter49e22582011-08-09 16:12:27 -0500130 struct { /* slub per cpu partial pages */
131 struct page *next; /* Next partial slab */
132#ifdef CONFIG_64BIT
133 int pages; /* Nr of partial slabs left */
134 int pobjects; /* Approximate # of objects */
135#else
136 short int pages;
137 short int pobjects;
138#endif
139 };
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500140
Joonsoo Kim68126702013-10-24 10:07:42 +0900141 struct rcu_head rcu_head; /* Used by SLAB
142 * when destroying via RCU
143 */
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -0800144 /* Tail pages of compound page */
Kirill A. Shutemove4b294c2015-02-11 15:24:46 -0800145 struct {
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -0800146 unsigned long compound_head; /* If bit zero is set */
147
148 /* First tail page only */
Kirill A. Shutemov1965c8b2015-11-06 16:30:00 -0800149#ifdef CONFIG_64BIT
150 /*
151 * On 64 bit system we have enough space in struct page
152 * to encode compound_dtor and compound_order with
153 * unsigned int. It can help compiler generate better or
154 * smaller code on some archtectures.
155 */
156 unsigned int compound_dtor;
157 unsigned int compound_order;
158#else
Kirill A. Shutemovf1e61552015-11-06 16:29:50 -0800159 unsigned short int compound_dtor;
160 unsigned short int compound_order;
Kirill A. Shutemov1965c8b2015-11-06 16:30:00 -0800161#endif
Kirill A. Shutemove4b294c2015-02-11 15:24:46 -0800162 };
163
Kirill A. Shutemov7aa555b2013-11-21 14:32:11 -0800164#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -0800165 struct {
166 unsigned long __pad; /* do not overlay pmd_huge_pte
167 * with compound_head to avoid
168 * possible bit 0 collision.
169 */
170 pgtable_t pmd_huge_pte; /* protected by page->ptl */
171 };
Kirill A. Shutemov7aa555b2013-11-21 14:32:11 -0800172#endif
Christoph Lameter49e22582011-08-09 16:12:27 -0500173 };
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500174
175 /* Remainder is not double word aligned */
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700176 union {
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700177 unsigned long private; /* Mapping-private opaque data:
178 * usually used for buffer_heads
179 * if PagePrivate set; used for
180 * swp_entry_t if PageSwapCache;
181 * indicates order in the buddy
182 * system if PG_buddy is set.
183 */
Kirill A. Shutemov57c1ffc2013-11-14 14:30:45 -0800184#if USE_SPLIT_PTE_PTLOCKS
Kirill A. Shutemov597d7952013-12-20 13:35:58 +0200185#if ALLOC_SPLIT_PTLOCKS
Peter Zijlstra539edb52013-11-14 14:31:52 -0800186 spinlock_t *ptl;
187#else
188 spinlock_t ptl;
189#endif
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700190#endif
Glauber Costa1b4f59e32012-10-22 18:05:36 +0400191 struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700192 };
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500193
Johannes Weiner1306a852014-12-10 15:44:52 -0800194#ifdef CONFIG_MEMCG
195 struct mem_cgroup *mem_cgroup;
196#endif
197
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700198 /*
199 * On machines where all RAM is mapped into kernel address space,
200 * we can simply calculate the virtual address. On machines with
201 * highmem some memory is mapped into kernel virtual memory
202 * dynamically, so we need a place to store that address.
203 * Note that this field could be 16 bits on x86 ... ;)
204 *
205 * Architectures with slow multiplication can define
206 * WANT_PAGE_VIRTUAL in asm/page.h
207 */
208#if defined(WANT_PAGE_VIRTUAL)
209 void *virtual; /* Kernel virtual address (NULL if
210 not kmapped, ie. highmem) */
211#endif /* WANT_PAGE_VIRTUAL */
Vegard Nossumdfec0722008-04-04 00:51:41 +0200212
213#ifdef CONFIG_KMEMCHECK
214 /*
215 * kmemcheck wants to track the status of each byte in a page; this
216 * is a pointer to such a status block. NULL if not tracked.
217 */
218 void *shadow;
219#endif
Mel Gorman57e0a032012-11-12 09:06:20 +0000220
Peter Zijlstra90572892013-10-07 11:29:20 +0100221#ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
222 int _last_cpupid;
Mel Gorman57e0a032012-11-12 09:06:20 +0000223#endif
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500224}
225/*
Heiko Carstens43570fd2012-01-12 17:17:27 -0800226 * The struct page can be forced to be double word aligned so that atomic ops
227 * on double words work. The SLUB allocator can make use of such a feature.
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500228 */
Heiko Carstens43570fd2012-01-12 17:17:27 -0800229#ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE
230 __aligned(2 * sizeof(unsigned long))
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500231#endif
232;
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700233
Ian Campbell30d3c122011-10-20 04:58:32 -0400234struct page_frag {
235 struct page *page;
236#if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536)
237 __u32 offset;
238 __u32 size;
239#else
240 __u16 offset;
241 __u16 size;
242#endif
243};
244
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700245#define PAGE_FRAG_CACHE_MAX_SIZE __ALIGN_MASK(32768, ~PAGE_MASK)
246#define PAGE_FRAG_CACHE_MAX_ORDER get_order(PAGE_FRAG_CACHE_MAX_SIZE)
247
248struct page_frag_cache {
249 void * va;
250#if (PAGE_SIZE < PAGE_FRAG_CACHE_MAX_SIZE)
251 __u16 offset;
252 __u16 size;
253#else
254 __u32 offset;
255#endif
256 /* we maintain a pagecount bias, so that we dont dirty cache line
Joonsoo Kim0139aa72016-05-19 17:10:49 -0700257 * containing page->_refcount every time we allocate a fragment.
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700258 */
259 unsigned int pagecnt_bias;
260 bool pfmemalloc;
261};
262
Kirill A. Shutemov64b990d2015-09-08 15:02:15 -0700263typedef unsigned long vm_flags_t;
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900264
Yang Shi967fcde2019-11-05 21:16:30 -0800265static inline atomic_t *compound_mapcount_ptr(struct page *page)
266{
267 return &page[1].compound_mapcount;
268}
269
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700270/*
David Howells8feae132009-01-08 12:04:47 +0000271 * A region containing a mapping of a non-memory backed file under NOMMU
272 * conditions. These are held in a global tree and are pinned by the VMAs that
273 * map parts of them.
274 */
275struct vm_region {
276 struct rb_node vm_rb; /* link in global region tree */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900277 vm_flags_t vm_flags; /* VMA vm_flags */
David Howells8feae132009-01-08 12:04:47 +0000278 unsigned long vm_start; /* start address of region */
279 unsigned long vm_end; /* region initialised to here */
Paul Mundtdd8632a2009-01-08 12:04:47 +0000280 unsigned long vm_top; /* region allocated to here */
David Howells8feae132009-01-08 12:04:47 +0000281 unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */
282 struct file *vm_file; /* the backing file or NULL */
283
David Howells1e2ae592010-01-15 17:01:33 -0800284 int vm_usage; /* region usage count (access under nommu_region_sem) */
Mike Frysingercfe79c02010-01-06 17:23:23 +0000285 bool vm_icache_flushed : 1; /* true if the icache has been flushed for
286 * this region */
David Howells8feae132009-01-08 12:04:47 +0000287};
288
Andrea Arcangeli745f2342015-09-04 15:46:14 -0700289#ifdef CONFIG_USERFAULTFD
290#define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) { NULL, })
291struct vm_userfaultfd_ctx {
292 struct userfaultfd_ctx *ctx;
293};
294#else /* CONFIG_USERFAULTFD */
295#define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) {})
296struct vm_userfaultfd_ctx {};
297#endif /* CONFIG_USERFAULTFD */
298
David Howells8feae132009-01-08 12:04:47 +0000299/*
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700300 * This struct defines a memory VMM memory area. There is one of these
301 * per VM-area/task. A VM area is any part of the process virtual memory
302 * space that has a special rule for the page-fault handlers (ie a shared
303 * library, the executable area etc).
304 */
305struct vm_area_struct {
Rik van Riele4c6bfd2012-12-11 16:01:44 -0800306 /* The first cache line has the info for VMA tree walking. */
307
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700308 unsigned long vm_start; /* Our start address within vm_mm. */
309 unsigned long vm_end; /* The first byte after our end address
310 within vm_mm. */
311
312 /* linked list of VM areas per task, sorted by address */
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700313 struct vm_area_struct *vm_next, *vm_prev;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700314
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700315 struct rb_node vm_rb;
316
317 /*
Michel Lespinassed3737182012-12-11 16:01:38 -0800318 * Largest free memory gap in bytes to the left of this VMA.
319 * Either between this VMA and vma->vm_prev, or between one of the
320 * VMAs below us in the VMA rbtree and its ->vm_prev. This helps
321 * get_unmapped_area find a free area of the right size.
322 */
323 unsigned long rb_subtree_gap;
324
Rik van Riele4c6bfd2012-12-11 16:01:44 -0800325 /* Second cache line starts here. */
326
327 struct mm_struct *vm_mm; /* The address space we belong to. */
328 pgprot_t vm_page_prot; /* Access permissions of this VMA. */
329 unsigned long vm_flags; /* Flags, see mm.h. */
330
Michel Lespinassed3737182012-12-11 16:01:38 -0800331 /*
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700332 * For areas with an address space and backing store,
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800333 * linkage into the address_space->i_mmap interval tree.
Colin Cross3e4578f2015-10-27 16:42:08 -0700334 *
335 * For private anonymous mappings, a pointer to a null terminated string
336 * in the user process containing the name given to the vma, or NULL
337 * if unnamed.
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700338 */
Colin Cross3e4578f2015-10-27 16:42:08 -0700339 union {
340 struct {
341 struct rb_node rb;
342 unsigned long rb_subtree_last;
343 } shared;
344 const char __user *anon_name;
345 };
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700346
347 /*
348 * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma
349 * list, after a COW of one of the file pages. A MAP_SHARED vma
350 * can only be in the i_mmap tree. An anonymous MAP_PRIVATE, stack
351 * or brk vma (with NULL file) can only be in an anon_vma list.
352 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800353 struct list_head anon_vma_chain; /* Serialized by mmap_sem &
354 * page_table_lock */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700355 struct anon_vma *anon_vma; /* Serialized by page_table_lock */
356
357 /* Function pointers to deal with this struct. */
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400358 const struct vm_operations_struct *vm_ops;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700359
360 /* Information about our backing store: */
361 unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300362 units */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700363 struct file * vm_file; /* File we map to (can be NULL). */
364 void * vm_private_data; /* was vm_pte (shared mem) */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700365
366#ifndef CONFIG_MMU
David Howells8feae132009-01-08 12:04:47 +0000367 struct vm_region *vm_region; /* NOMMU mapping region */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700368#endif
369#ifdef CONFIG_NUMA
370 struct mempolicy *vm_policy; /* NUMA policy for the VMA */
371#endif
Andrea Arcangeli745f2342015-09-04 15:46:14 -0700372 struct vm_userfaultfd_ctx vm_userfaultfd_ctx;
Peter Zijlstra365031a2018-04-17 16:33:14 +0200373#ifdef CONFIG_SPECULATIVE_PAGE_FAULT
374 seqcount_t vm_sequence;
Laurent Dufourd8173842018-04-17 16:33:23 +0200375 atomic_t vm_ref_count; /* see vma_get(), vma_put() */
Peter Zijlstra365031a2018-04-17 16:33:14 +0200376#endif
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700377};
378
Oleg Nesterovb564daf2008-07-25 01:47:44 -0700379struct core_thread {
380 struct task_struct *task;
381 struct core_thread *next;
382};
383
Oleg Nesterov32ecb1f2008-07-25 01:47:41 -0700384struct core_state {
Oleg Nesterovc5f1cc82008-07-25 01:47:42 -0700385 atomic_t nr_threads;
Oleg Nesterovb564daf2008-07-25 01:47:44 -0700386 struct core_thread dumper;
Oleg Nesterov32ecb1f2008-07-25 01:47:41 -0700387 struct completion startup;
388};
389
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800390enum {
Jerome Marchandeca56ff2016-01-14 15:19:26 -0800391 MM_FILEPAGES, /* Resident file mapping pages */
392 MM_ANONPAGES, /* Resident anonymous pages */
393 MM_SWAPENTS, /* Anonymous swap entries */
394 MM_SHMEMPAGES, /* Resident shared memory pages */
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800395 NR_MM_COUNTERS
396};
397
Kirill A. Shutemov57c1ffc2013-11-14 14:30:45 -0800398#if USE_SPLIT_PTE_PTLOCKS && defined(CONFIG_MMU)
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800399#define SPLIT_RSS_COUNTING
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800400/* per-thread cached information, */
401struct task_rss_stat {
402 int events; /* for synchronization threshold */
403 int count[NR_MM_COUNTERS];
404};
Kirill A. Shutemov57c1ffc2013-11-14 14:30:45 -0800405#endif /* USE_SPLIT_PTE_PTLOCKS */
Matt Fleming172703b2011-05-24 17:12:36 -0700406
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800407struct mm_rss_stat {
Matt Fleming172703b2011-05-24 17:12:36 -0700408 atomic_long_t count[NR_MM_COUNTERS];
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800409};
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800410
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400411struct kioctx_table;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700412struct mm_struct {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700413 struct vm_area_struct *mmap; /* list of VMAs */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700414 struct rb_root mm_rb;
Laurent Dufourd8173842018-04-17 16:33:23 +0200415#ifdef CONFIG_SPECULATIVE_PAGE_FAULT
416 rwlock_t mm_rb_lock;
417#endif
Linus Torvalds84580562018-09-12 23:57:48 -1000418 u64 vmacache_seqnum; /* per-thread vmacache */
David Howellsefc1a3b2010-01-15 17:01:35 -0800419#ifdef CONFIG_MMU
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700420 unsigned long (*get_unmapped_area) (struct file *filp,
421 unsigned long addr, unsigned long len,
422 unsigned long pgoff, unsigned long flags);
David Howellsefc1a3b2010-01-15 17:01:35 -0800423#endif
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700424 unsigned long mmap_base; /* base of mmap area */
Radu Caragea41aacc12013-08-21 20:55:59 +0300425 unsigned long mmap_legacy_base; /* base of mmap area in bottom-up allocations */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700426 unsigned long task_size; /* size of task vm space */
Michel Lespinassed3737182012-12-11 16:01:38 -0800427 unsigned long highest_vm_end; /* highest vma end address */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700428 pgd_t * pgd;
429 atomic_t mm_users; /* How many users with user space? */
430 atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800431 atomic_long_t nr_ptes; /* PTE page table pages */
Kirill A. Shutemov5a3fbef2015-04-14 15:46:21 -0700432#if CONFIG_PGTABLE_LEVELS > 2
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800433 atomic_long_t nr_pmds; /* PMD page table pages */
Kirill A. Shutemov5a3fbef2015-04-14 15:46:21 -0700434#endif
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700435 int map_count; /* number of VMAs */
Richard Kennedy481b4bb2011-03-22 16:32:50 -0700436
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700437 spinlock_t page_table_lock; /* Protects page tables and some counters */
Richard Kennedy481b4bb2011-03-22 16:32:50 -0700438 struct rw_semaphore mmap_sem;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700439
440 struct list_head mmlist; /* List of maybe swapped mm's. These are globally strung
441 * together off init_mm.mmlist, and are protected
442 * by mmlist_lock
443 */
444
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700445
446 unsigned long hiwater_rss; /* High-watermark of RSS usage */
447 unsigned long hiwater_vm; /* High-water virtual memory usage */
448
Christoph Lametere10d59f2011-10-31 17:07:34 -0700449 unsigned long total_vm; /* Total pages mapped */
450 unsigned long locked_vm; /* Pages that have PG_mlocked set */
451 unsigned long pinned_vm; /* Refcount permanently increased */
Konstantin Khlebnikov30bdbb72016-02-02 16:57:46 -0800452 unsigned long data_vm; /* VM_WRITE & ~VM_SHARED & ~VM_STACK */
453 unsigned long exec_vm; /* VM_EXEC & ~VM_WRITE & ~VM_STACK */
454 unsigned long stack_vm; /* VM_STACK */
Christoph Lametere10d59f2011-10-31 17:07:34 -0700455 unsigned long def_flags;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700456 unsigned long start_code, end_code, start_data, end_data;
457 unsigned long start_brk, brk, start_stack;
458 unsigned long arg_start, arg_end, env_start, env_end;
459
460 unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */
461
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800462 /*
463 * Special counters, in some configurations protected by the
464 * page_table_lock, in other configurations by being atomic.
465 */
466 struct mm_rss_stat rss_stat;
467
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -0700468 struct linux_binfmt *binfmt;
469
Linus Torvalds6345d242011-05-29 11:32:28 -0700470 cpumask_var_t cpu_vm_mask_var;
471
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700472 /* Architecture-specific MM context */
473 mm_context_t context;
474
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700475 unsigned long flags; /* Must use atomic bitops to access the bits */
476
Oleg Nesterova94e2d42008-07-25 01:47:46 -0700477 struct core_state *core_state; /* coredumping support */
Alexey Dobriyan858f0992009-09-23 15:57:32 -0700478#ifdef CONFIG_AIO
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400479 spinlock_t ioctx_lock;
480 struct kioctx_table __rcu *ioctx_table;
Alexey Dobriyan858f0992009-09-23 15:57:32 -0700481#endif
Oleg Nesterovf98bafa2014-06-04 16:07:34 -0700482#ifdef CONFIG_MEMCG
KOSAKI Motohiro4cd1a8f2008-05-12 14:02:31 -0700483 /*
484 * "owner" points to a task that is regarded as the canonical
485 * user/owner of this mm. All of the following must be true in
486 * order for it to be changed:
487 *
488 * current == mm->owner
489 * current->mm != mm
490 * new_owner->mm == mm
491 * new_owner->alloc_lock is held
492 */
Arnd Bergmann4d2deb42010-02-24 20:01:56 +0100493 struct task_struct __rcu *owner;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800494#endif
Eric W. Biederman694a95f2016-10-13 21:23:16 -0500495 struct user_namespace *user_ns;
Matt Helsley925d1c42008-04-29 01:01:36 -0700496
Matt Helsley925d1c42008-04-29 01:01:36 -0700497 /* store ref to file /proc/<pid>/exe symlink points to */
Konstantin Khlebnikov90f31d02015-04-16 12:47:56 -0700498 struct file __rcu *exe_file;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700499#ifdef CONFIG_MMU_NOTIFIER
500 struct mmu_notifier_mm *mmu_notifier_mm;
501#endif
Kirill A. Shutemove009bb32013-11-14 14:31:07 -0800502#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
Andrea Arcangelie7a00c42011-01-13 15:46:45 -0800503 pgtable_t pmd_huge_pte; /* protected by page_table_lock */
504#endif
Linus Torvalds6345d242011-05-29 11:32:28 -0700505#ifdef CONFIG_CPUMASK_OFFSTACK
506 struct cpumask cpumask_allocation;
507#endif
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200508#ifdef CONFIG_NUMA_BALANCING
509 /*
Mel Gorman34f03152013-02-22 16:34:25 -0800510 * numa_next_scan is the next time that the PTEs will be marked
511 * pte_numa. NUMA hinting faults will gather statistics and migrate
512 * pages to new nodes if necessary.
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200513 */
514 unsigned long numa_next_scan;
515
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200516 /* Restart point for scanning and setting pte_numa */
517 unsigned long numa_scan_offset;
518
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200519 /* numa_scan_seq prevents two threads setting pte_numa */
520 int numa_scan_seq;
521#endif
Rik van Riel20841402013-12-18 17:08:44 -0800522#if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
523 /*
524 * An operation with batched TLB flushing is going on. Anything that
525 * can move process memory needs to flush the TLB when moving a
526 * PROT_NONE or PROT_NUMA mapped page.
527 */
528 bool tlb_flush_pending;
529#endif
Mel Gorman5a1eef72017-08-02 13:31:52 -0700530#ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
531 /* See flush_tlb_batched_pending() */
532 bool tlb_flush_batched;
533#endif
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +0530534 struct uprobes_state uprobes_state;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800535#ifdef CONFIG_X86_INTEL_MPX
536 /* address of the bounds directory */
537 void __user *bd_addr;
538#endif
Naoya Horiguchi5d317b22015-11-05 18:47:14 -0800539#ifdef CONFIG_HUGETLB_PAGE
540 atomic_long_t hugetlb_usage;
541#endif
Michal Hockoec8d7c12016-05-20 16:57:21 -0700542 struct work_struct async_put_work;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700543};
544
Linus Torvalds6345d242011-05-29 11:32:28 -0700545static inline void mm_init_cpumask(struct mm_struct *mm)
546{
547#ifdef CONFIG_CPUMASK_OFFSTACK
548 mm->cpu_vm_mask_var = &mm->cpumask_allocation;
549#endif
Vladimir Davydov41f727f2014-08-08 14:21:56 -0700550 cpumask_clear(mm->cpu_vm_mask_var);
Linus Torvalds6345d242011-05-29 11:32:28 -0700551}
552
Rusty Russell45e575a2009-03-12 14:35:44 -0600553/* Future-safe accessor for struct mm_struct's cpu_vm_mask. */
KOSAKI Motohirode03c722011-05-24 17:12:15 -0700554static inline cpumask_t *mm_cpumask(struct mm_struct *mm)
555{
556 return mm->cpu_vm_mask_var;
557}
Rusty Russell45e575a2009-03-12 14:35:44 -0600558
Rik van Riel20841402013-12-18 17:08:44 -0800559#if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
560/*
561 * Memory barriers to keep this state in sync are graciously provided by
562 * the page table locks, outside of which no page table modifications happen.
563 * The barriers below prevent the compiler from re-ordering the instructions
564 * around the memory barriers that are already present in the code.
565 */
566static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
567{
568 barrier();
569 return mm->tlb_flush_pending;
570}
571static inline void set_tlb_flush_pending(struct mm_struct *mm)
572{
573 mm->tlb_flush_pending = true;
Mel Gormanaf2c1402013-12-18 17:08:45 -0800574
575 /*
576 * Guarantee that the tlb_flush_pending store does not leak into the
577 * critical section updating the page tables
578 */
579 smp_mb__before_spinlock();
Rik van Riel20841402013-12-18 17:08:44 -0800580}
581/* Clearing is done after a TLB flush, which also provides a barrier. */
582static inline void clear_tlb_flush_pending(struct mm_struct *mm)
583{
584 barrier();
585 mm->tlb_flush_pending = false;
586}
587#else
588static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
589{
590 return false;
591}
592static inline void set_tlb_flush_pending(struct mm_struct *mm)
593{
594}
595static inline void clear_tlb_flush_pending(struct mm_struct *mm)
596{
597}
598#endif
599
Andy Lutomirskif872f542015-12-29 20:12:19 -0800600struct vm_fault;
601
602struct vm_special_mapping {
603 const char *name; /* The name, e.g. "[vdso]". */
604
605 /*
606 * If .fault is not provided, this points to a
607 * NULL-terminated array of pages that back the special mapping.
608 *
609 * This must not be NULL unless .fault is provided.
610 */
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700611 struct page **pages;
Andy Lutomirskif872f542015-12-29 20:12:19 -0800612
613 /*
614 * If non-NULL, then this is called to resolve page faults
615 * on the special mapping. If used, .pages is not checked.
616 */
617 int (*fault)(const struct vm_special_mapping *sm,
618 struct vm_area_struct *vma,
619 struct vm_fault *vmf);
Dmitry Safonovb059a452016-06-28 14:35:38 +0300620
621 int (*mremap)(const struct vm_special_mapping *sm,
622 struct vm_area_struct *new_vma);
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700623};
624
Dave Hansend17d8f92014-07-31 08:40:59 -0700625enum tlb_flush_reason {
626 TLB_FLUSH_ON_TASK_SWITCH,
627 TLB_REMOTE_SHOOTDOWN,
628 TLB_LOCAL_SHOOTDOWN,
629 TLB_LOCAL_MM_SHOOTDOWN,
Mel Gorman5b742832015-09-04 15:47:29 -0700630 TLB_REMOTE_SEND_IPI,
Dave Hansend17d8f92014-07-31 08:40:59 -0700631 NR_TLB_FLUSH_REASONS,
632};
633
Tejun Heobd6dace2014-12-12 16:55:35 -0800634 /*
635 * A swap entry has to fit into a "unsigned long", as the entry is hidden
636 * in the "index" field of the swapper address space.
637 */
638typedef struct {
639 unsigned long val;
640} swp_entry_t;
641
Colin Cross3e4578f2015-10-27 16:42:08 -0700642/* Return the name for an anonymous mapping or NULL for a file-backed mapping */
643static inline const char __user *vma_get_anon_name(struct vm_area_struct *vma)
644{
645 if (vma->vm_file)
646 return NULL;
647
648 return vma->anon_name;
649}
650
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700651#endif /* _LINUX_MM_TYPES_H */