]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/mm_types.h
bootmem: avoid freeing to bootmem after bootmem is done
[mirror_ubuntu-zesty-kernel.git] / include / linux / mm_types.h
CommitLineData
5b99cd0e
HC
1#ifndef _LINUX_MM_TYPES_H
2#define _LINUX_MM_TYPES_H
3
4f9a58d7 4#include <linux/auxvec.h>
5b99cd0e
HC
5#include <linux/types.h>
6#include <linux/threads.h>
7#include <linux/list.h>
8#include <linux/spinlock.h>
c92ff1bd
MS
9#include <linux/rbtree.h>
10#include <linux/rwsem.h>
11#include <linux/completion.h>
cddb8a5c 12#include <linux/cpumask.h>
d4b3b638 13#include <linux/uprobes.h>
bbeae5b0 14#include <linux/page-flags-layout.h>
c92ff1bd
MS
15#include <asm/page.h>
16#include <asm/mmu.h>
5b99cd0e 17
4f9a58d7
OH
18#ifndef AT_VECTOR_SIZE_ARCH
19#define AT_VECTOR_SIZE_ARCH 0
20#endif
21#define AT_VECTOR_SIZE (2*(AT_VECTOR_SIZE_ARCH + AT_VECTOR_SIZE_BASE + 1))
22
5b99cd0e 23struct address_space;
1306a85a 24struct mem_cgroup;
5b99cd0e 25
57c1ffce 26#define USE_SPLIT_PTE_PTLOCKS (NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS)
e009bb30
KS
27#define USE_SPLIT_PMD_PTLOCKS (USE_SPLIT_PTE_PTLOCKS && \
28 IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK))
597d795a 29#define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8)
f7d0b926 30
e4b294c2
KS
31typedef void compound_page_dtor(struct page *);
32
5b99cd0e
HC
33/*
34 * Each physical page in the system has a struct page associated with
35 * it to keep track of whatever it is we are using the page for at the
36 * moment. Note that we have no way to track which tasks are using
37 * a page, though if it is a pagecache page, rmap structures can tell us
38 * who is mapping it.
fc9bb8c7
CL
39 *
40 * The objects in struct page are organized in double word blocks in
41 * order to allows us to use atomic double word operations on portions
42 * of struct page. That is currently only used by slub but the arrangement
43 * allows the use of atomic double word operations on the flags/mapping
44 * and lru list pointers also.
5b99cd0e
HC
45 */
46struct page {
fc9bb8c7 47 /* First double word block */
5b99cd0e
HC
48 unsigned long flags; /* Atomic flags, some possibly
49 * updated asynchronously */
8456a648
JK
50 union {
51 struct address_space *mapping; /* If low bit clear, points to
52 * inode address_space, or NULL.
53 * If page mapped as anonymous
54 * memory, low bit is set, and
55 * it points to anon_vma object:
56 * see PAGE_MAPPING_ANON below.
57 */
58 void *s_mem; /* slab first object */
59 };
60
fc9bb8c7 61 /* Second double word */
013e8963
CL
62 struct {
63 union {
fc9bb8c7 64 pgoff_t index; /* Our offset within mapping. */
8456a648 65 void *freelist; /* sl[aou]b first free object */
013e8963
CL
66 };
67
68 union {
abca7c49
PS
69#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
70 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
013e8963
CL
71 /* Used for cmpxchg_double in slub */
72 unsigned long counters;
abca7c49
PS
73#else
74 /*
75 * Keep _count separate from slub cmpxchg_double data.
76 * As the rest of the double word is protected by
77 * slab_lock but _count is not.
78 */
79 unsigned counters;
80#endif
013e8963
CL
81
82 struct {
83
84 union {
70b50f94
AA
85 /*
86 * Count of ptes mapped in
87 * mms, to show when page is
88 * mapped & limit reverse map
89 * searches.
90 *
91 * Used also for tail pages
92 * refcounting instead of
93 * _count. Tail pages cannot
94 * be mapped and keeping the
95 * tail page _count zero at
96 * all times guarantees
97 * get_page_unless_zero() will
98 * never succeed on tail
99 * pages.
100 */
101 atomic_t _mapcount;
fc9bb8c7 102
b8c24c4a 103 struct { /* SLUB */
013e8963
CL
104 unsigned inuse:16;
105 unsigned objects:15;
106 unsigned frozen:1;
107 };
b8c24c4a 108 int units; /* SLOB */
3adf004d 109 };
013e8963 110 atomic_t _count; /* Usage count, see below. */
fc9bb8c7 111 };
8456a648 112 unsigned int active; /* SLAB */
39b26464 113 };
81819f0f 114 };
fc9bb8c7
CL
115
116 /* Third double word block */
49e22585
CL
117 union {
118 struct list_head lru; /* Pageout list, eg. active_list
fc9bb8c7 119 * protected by zone->lru_lock !
34bf6ef9
DH
120 * Can be used as a generic list
121 * by the page owner.
fc9bb8c7 122 */
49e22585
CL
123 struct { /* slub per cpu partial pages */
124 struct page *next; /* Next partial slab */
125#ifdef CONFIG_64BIT
126 int pages; /* Nr of partial slabs left */
127 int pobjects; /* Approximate # of objects */
128#else
129 short int pages;
130 short int pobjects;
131#endif
132 };
b8c24c4a 133
1b4f59e3 134 struct slab *slab_page; /* slab fields */
68126702
JK
135 struct rcu_head rcu_head; /* Used by SLAB
136 * when destroying via RCU
137 */
e4b294c2
KS
138 /* First tail page of compound page */
139 struct {
140 compound_page_dtor *compound_dtor;
141 unsigned long compound_order;
142 };
143
7aa555bf
KS
144#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS
145 pgtable_t pmd_huge_pte; /* protected by page->ptl */
146#endif
49e22585 147 };
fc9bb8c7
CL
148
149 /* Remainder is not double word aligned */
5b99cd0e 150 union {
5b99cd0e
HC
151 unsigned long private; /* Mapping-private opaque data:
152 * usually used for buffer_heads
153 * if PagePrivate set; used for
154 * swp_entry_t if PageSwapCache;
155 * indicates order in the buddy
156 * system if PG_buddy is set.
157 */
57c1ffce 158#if USE_SPLIT_PTE_PTLOCKS
597d795a 159#if ALLOC_SPLIT_PTLOCKS
539edb58
PZ
160 spinlock_t *ptl;
161#else
162 spinlock_t ptl;
163#endif
5b99cd0e 164#endif
1b4f59e3 165 struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */
fc9bb8c7 166 struct page *first_page; /* Compound tail pages */
81819f0f 167 };
fc9bb8c7 168
1306a85a
JW
169#ifdef CONFIG_MEMCG
170 struct mem_cgroup *mem_cgroup;
171#endif
172
5b99cd0e
HC
173 /*
174 * On machines where all RAM is mapped into kernel address space,
175 * we can simply calculate the virtual address. On machines with
176 * highmem some memory is mapped into kernel virtual memory
177 * dynamically, so we need a place to store that address.
178 * Note that this field could be 16 bits on x86 ... ;)
179 *
180 * Architectures with slow multiplication can define
181 * WANT_PAGE_VIRTUAL in asm/page.h
182 */
183#if defined(WANT_PAGE_VIRTUAL)
184 void *virtual; /* Kernel virtual address (NULL if
185 not kmapped, ie. highmem) */
186#endif /* WANT_PAGE_VIRTUAL */
dfec072e
VN
187
188#ifdef CONFIG_KMEMCHECK
189 /*
190 * kmemcheck wants to track the status of each byte in a page; this
191 * is a pointer to such a status block. NULL if not tracked.
192 */
193 void *shadow;
194#endif
57e0a030 195
90572890
PZ
196#ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
197 int _last_cpupid;
57e0a030 198#endif
fc9bb8c7
CL
199}
200/*
43570fd2
HC
201 * The struct page can be forced to be double word aligned so that atomic ops
202 * on double words work. The SLUB allocator can make use of such a feature.
fc9bb8c7 203 */
43570fd2
HC
204#ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE
205 __aligned(2 * sizeof(unsigned long))
fc9bb8c7
CL
206#endif
207;
5b99cd0e 208
30d3c128
IC
209struct page_frag {
210 struct page *page;
211#if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536)
212 __u32 offset;
213 __u32 size;
214#else
215 __u16 offset;
216 __u16 size;
217#endif
218};
219
b63ae8ca
AD
220#define PAGE_FRAG_CACHE_MAX_SIZE __ALIGN_MASK(32768, ~PAGE_MASK)
221#define PAGE_FRAG_CACHE_MAX_ORDER get_order(PAGE_FRAG_CACHE_MAX_SIZE)
222
223struct page_frag_cache {
224 void * va;
225#if (PAGE_SIZE < PAGE_FRAG_CACHE_MAX_SIZE)
226 __u16 offset;
227 __u16 size;
228#else
229 __u32 offset;
230#endif
231 /* we maintain a pagecount bias, so that we dont dirty cache line
232 * containing page->_count every time we allocate a fragment.
233 */
234 unsigned int pagecnt_bias;
235 bool pfmemalloc;
236};
237
ca16d140
KM
238typedef unsigned long __nocast vm_flags_t;
239
8feae131
DH
240/*
241 * A region containing a mapping of a non-memory backed file under NOMMU
242 * conditions. These are held in a global tree and are pinned by the VMAs that
243 * map parts of them.
244 */
245struct vm_region {
246 struct rb_node vm_rb; /* link in global region tree */
ca16d140 247 vm_flags_t vm_flags; /* VMA vm_flags */
8feae131
DH
248 unsigned long vm_start; /* start address of region */
249 unsigned long vm_end; /* region initialised to here */
dd8632a1 250 unsigned long vm_top; /* region allocated to here */
8feae131
DH
251 unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */
252 struct file *vm_file; /* the backing file or NULL */
253
1e2ae599 254 int vm_usage; /* region usage count (access under nommu_region_sem) */
cfe79c00
MF
255 bool vm_icache_flushed : 1; /* true if the icache has been flushed for
256 * this region */
8feae131
DH
257};
258
745f234b
AA
259#ifdef CONFIG_USERFAULTFD
260#define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) { NULL, })
261struct vm_userfaultfd_ctx {
262 struct userfaultfd_ctx *ctx;
263};
264#else /* CONFIG_USERFAULTFD */
265#define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) {})
266struct vm_userfaultfd_ctx {};
267#endif /* CONFIG_USERFAULTFD */
268
c92ff1bd
MS
269/*
270 * This struct defines a memory VMM memory area. There is one of these
271 * per VM-area/task. A VM area is any part of the process virtual memory
272 * space that has a special rule for the page-fault handlers (ie a shared
273 * library, the executable area etc).
274 */
275struct vm_area_struct {
e4c6bfd2
RR
276 /* The first cache line has the info for VMA tree walking. */
277
c92ff1bd
MS
278 unsigned long vm_start; /* Our start address within vm_mm. */
279 unsigned long vm_end; /* The first byte after our end address
280 within vm_mm. */
281
282 /* linked list of VM areas per task, sorted by address */
297c5eee 283 struct vm_area_struct *vm_next, *vm_prev;
c92ff1bd 284
c92ff1bd
MS
285 struct rb_node vm_rb;
286
d3737187
ML
287 /*
288 * Largest free memory gap in bytes to the left of this VMA.
289 * Either between this VMA and vma->vm_prev, or between one of the
290 * VMAs below us in the VMA rbtree and its ->vm_prev. This helps
291 * get_unmapped_area find a free area of the right size.
292 */
293 unsigned long rb_subtree_gap;
294
e4c6bfd2
RR
295 /* Second cache line starts here. */
296
297 struct mm_struct *vm_mm; /* The address space we belong to. */
298 pgprot_t vm_page_prot; /* Access permissions of this VMA. */
299 unsigned long vm_flags; /* Flags, see mm.h. */
300
c92ff1bd
MS
301 /*
302 * For areas with an address space and backing store,
27ba0644 303 * linkage into the address_space->i_mmap interval tree.
c92ff1bd 304 */
ac51b934
KS
305 struct {
306 struct rb_node rb;
307 unsigned long rb_subtree_last;
c92ff1bd
MS
308 } shared;
309
310 /*
311 * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma
312 * list, after a COW of one of the file pages. A MAP_SHARED vma
313 * can only be in the i_mmap tree. An anonymous MAP_PRIVATE, stack
314 * or brk vma (with NULL file) can only be in an anon_vma list.
315 */
5beb4930
RR
316 struct list_head anon_vma_chain; /* Serialized by mmap_sem &
317 * page_table_lock */
c92ff1bd
MS
318 struct anon_vma *anon_vma; /* Serialized by page_table_lock */
319
320 /* Function pointers to deal with this struct. */
f0f37e2f 321 const struct vm_operations_struct *vm_ops;
c92ff1bd
MS
322
323 /* Information about our backing store: */
324 unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
325 units, *not* PAGE_CACHE_SIZE */
326 struct file * vm_file; /* File we map to (can be NULL). */
327 void * vm_private_data; /* was vm_pte (shared mem) */
c92ff1bd
MS
328
329#ifndef CONFIG_MMU
8feae131 330 struct vm_region *vm_region; /* NOMMU mapping region */
c92ff1bd
MS
331#endif
332#ifdef CONFIG_NUMA
333 struct mempolicy *vm_policy; /* NUMA policy for the VMA */
334#endif
745f234b 335 struct vm_userfaultfd_ctx vm_userfaultfd_ctx;
c92ff1bd
MS
336};
337
b564daf8
ON
338struct core_thread {
339 struct task_struct *task;
340 struct core_thread *next;
341};
342
32ecb1f2 343struct core_state {
c5f1cc8c 344 atomic_t nr_threads;
b564daf8 345 struct core_thread dumper;
32ecb1f2
ON
346 struct completion startup;
347};
348
d559db08
KH
349enum {
350 MM_FILEPAGES,
351 MM_ANONPAGES,
b084d435 352 MM_SWAPENTS,
d559db08
KH
353 NR_MM_COUNTERS
354};
355
57c1ffce 356#if USE_SPLIT_PTE_PTLOCKS && defined(CONFIG_MMU)
34e55232 357#define SPLIT_RSS_COUNTING
34e55232
KH
358/* per-thread cached information, */
359struct task_rss_stat {
360 int events; /* for synchronization threshold */
361 int count[NR_MM_COUNTERS];
362};
57c1ffce 363#endif /* USE_SPLIT_PTE_PTLOCKS */
172703b0 364
d559db08 365struct mm_rss_stat {
172703b0 366 atomic_long_t count[NR_MM_COUNTERS];
d559db08 367};
d559db08 368
db446a08 369struct kioctx_table;
c92ff1bd 370struct mm_struct {
615d6e87 371 struct vm_area_struct *mmap; /* list of VMAs */
c92ff1bd 372 struct rb_root mm_rb;
615d6e87 373 u32 vmacache_seqnum; /* per-thread vmacache */
efc1a3b1 374#ifdef CONFIG_MMU
c92ff1bd
MS
375 unsigned long (*get_unmapped_area) (struct file *filp,
376 unsigned long addr, unsigned long len,
377 unsigned long pgoff, unsigned long flags);
efc1a3b1 378#endif
c92ff1bd 379 unsigned long mmap_base; /* base of mmap area */
41aacc1e 380 unsigned long mmap_legacy_base; /* base of mmap area in bottom-up allocations */
c92ff1bd 381 unsigned long task_size; /* size of task vm space */
d3737187 382 unsigned long highest_vm_end; /* highest vma end address */
c92ff1bd
MS
383 pgd_t * pgd;
384 atomic_t mm_users; /* How many users with user space? */
385 atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */
dc6c9a35 386 atomic_long_t nr_ptes; /* PTE page table pages */
5a3fbef3 387#if CONFIG_PGTABLE_LEVELS > 2
dc6c9a35 388 atomic_long_t nr_pmds; /* PMD page table pages */
5a3fbef3 389#endif
c92ff1bd 390 int map_count; /* number of VMAs */
481b4bb5 391
c92ff1bd 392 spinlock_t page_table_lock; /* Protects page tables and some counters */
481b4bb5 393 struct rw_semaphore mmap_sem;
c92ff1bd
MS
394
395 struct list_head mmlist; /* List of maybe swapped mm's. These are globally strung
396 * together off init_mm.mmlist, and are protected
397 * by mmlist_lock
398 */
399
c92ff1bd
MS
400
401 unsigned long hiwater_rss; /* High-watermark of RSS usage */
402 unsigned long hiwater_vm; /* High-water virtual memory usage */
403
e10d59f2
CL
404 unsigned long total_vm; /* Total pages mapped */
405 unsigned long locked_vm; /* Pages that have PG_mlocked set */
406 unsigned long pinned_vm; /* Refcount permanently increased */
407 unsigned long shared_vm; /* Shared pages (files) */
408 unsigned long exec_vm; /* VM_EXEC & ~VM_WRITE */
409 unsigned long stack_vm; /* VM_GROWSUP/DOWN */
e10d59f2 410 unsigned long def_flags;
c92ff1bd
MS
411 unsigned long start_code, end_code, start_data, end_data;
412 unsigned long start_brk, brk, start_stack;
413 unsigned long arg_start, arg_end, env_start, env_end;
414
415 unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */
416
d559db08
KH
417 /*
418 * Special counters, in some configurations protected by the
419 * page_table_lock, in other configurations by being atomic.
420 */
421 struct mm_rss_stat rss_stat;
422
801460d0
HS
423 struct linux_binfmt *binfmt;
424
6345d24d
LT
425 cpumask_var_t cpu_vm_mask_var;
426
c92ff1bd
MS
427 /* Architecture-specific MM context */
428 mm_context_t context;
429
c92ff1bd
MS
430 unsigned long flags; /* Must use atomic bitops to access the bits */
431
a94e2d40 432 struct core_state *core_state; /* coredumping support */
858f0993 433#ifdef CONFIG_AIO
db446a08
BL
434 spinlock_t ioctx_lock;
435 struct kioctx_table __rcu *ioctx_table;
858f0993 436#endif
f98bafa0 437#ifdef CONFIG_MEMCG
4cd1a8fc
KM
438 /*
439 * "owner" points to a task that is regarded as the canonical
440 * user/owner of this mm. All of the following must be true in
441 * order for it to be changed:
442 *
443 * current == mm->owner
444 * current->mm != mm
445 * new_owner->mm == mm
446 * new_owner->alloc_lock is held
447 */
4d2deb40 448 struct task_struct __rcu *owner;
78fb7466 449#endif
925d1c40 450
925d1c40 451 /* store ref to file /proc/<pid>/exe symlink points to */
90f31d0e 452 struct file __rcu *exe_file;
cddb8a5c
AA
453#ifdef CONFIG_MMU_NOTIFIER
454 struct mmu_notifier_mm *mmu_notifier_mm;
e7a00c45 455#endif
e009bb30 456#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
e7a00c45 457 pgtable_t pmd_huge_pte; /* protected by page_table_lock */
cddb8a5c 458#endif
6345d24d
LT
459#ifdef CONFIG_CPUMASK_OFFSTACK
460 struct cpumask cpumask_allocation;
cbee9f88
PZ
461#endif
462#ifdef CONFIG_NUMA_BALANCING
463 /*
34f0315a
MG
464 * numa_next_scan is the next time that the PTEs will be marked
465 * pte_numa. NUMA hinting faults will gather statistics and migrate
466 * pages to new nodes if necessary.
cbee9f88
PZ
467 */
468 unsigned long numa_next_scan;
469
6e5fb223
PZ
470 /* Restart point for scanning and setting pte_numa */
471 unsigned long numa_scan_offset;
472
cbee9f88
PZ
473 /* numa_scan_seq prevents two threads setting pte_numa */
474 int numa_scan_seq;
20841405
RR
475#endif
476#if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
477 /*
478 * An operation with batched TLB flushing is going on. Anything that
479 * can move process memory needs to flush the TLB when moving a
480 * PROT_NONE or PROT_NUMA mapped page.
481 */
482 bool tlb_flush_pending;
6345d24d 483#endif
d4b3b638 484 struct uprobes_state uprobes_state;
fe3d197f
DH
485#ifdef CONFIG_X86_INTEL_MPX
486 /* address of the bounds directory */
487 void __user *bd_addr;
488#endif
c92ff1bd
MS
489};
490
6345d24d
LT
491static inline void mm_init_cpumask(struct mm_struct *mm)
492{
493#ifdef CONFIG_CPUMASK_OFFSTACK
494 mm->cpu_vm_mask_var = &mm->cpumask_allocation;
495#endif
41f727fd 496 cpumask_clear(mm->cpu_vm_mask_var);
6345d24d
LT
497}
498
45e575ab 499/* Future-safe accessor for struct mm_struct's cpu_vm_mask. */
de03c72c
KM
500static inline cpumask_t *mm_cpumask(struct mm_struct *mm)
501{
502 return mm->cpu_vm_mask_var;
503}
45e575ab 504
20841405
RR
505#if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
506/*
507 * Memory barriers to keep this state in sync are graciously provided by
508 * the page table locks, outside of which no page table modifications happen.
509 * The barriers below prevent the compiler from re-ordering the instructions
510 * around the memory barriers that are already present in the code.
511 */
512static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
513{
514 barrier();
515 return mm->tlb_flush_pending;
516}
517static inline void set_tlb_flush_pending(struct mm_struct *mm)
518{
519 mm->tlb_flush_pending = true;
af2c1401
MG
520
521 /*
522 * Guarantee that the tlb_flush_pending store does not leak into the
523 * critical section updating the page tables
524 */
525 smp_mb__before_spinlock();
20841405
RR
526}
527/* Clearing is done after a TLB flush, which also provides a barrier. */
528static inline void clear_tlb_flush_pending(struct mm_struct *mm)
529{
530 barrier();
531 mm->tlb_flush_pending = false;
532}
533#else
534static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
535{
536 return false;
537}
538static inline void set_tlb_flush_pending(struct mm_struct *mm)
539{
540}
541static inline void clear_tlb_flush_pending(struct mm_struct *mm)
542{
543}
544#endif
545
a62c34bd
AL
546struct vm_special_mapping
547{
548 const char *name;
549 struct page **pages;
550};
551
d17d8f9d
DH
552enum tlb_flush_reason {
553 TLB_FLUSH_ON_TASK_SWITCH,
554 TLB_REMOTE_SHOOTDOWN,
555 TLB_LOCAL_SHOOTDOWN,
556 TLB_LOCAL_MM_SHOOTDOWN,
5b74283a 557 TLB_REMOTE_SEND_IPI,
d17d8f9d
DH
558 NR_TLB_FLUSH_REASONS,
559};
560
bd6dace7
TH
561 /*
562 * A swap entry has to fit into a "unsigned long", as the entry is hidden
563 * in the "index" field of the swapper address space.
564 */
565typedef struct {
566 unsigned long val;
567} swp_entry_t;
568
5b99cd0e 569#endif /* _LINUX_MM_TYPES_H */