2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-16 15:20:36 -07:00
|
|
|
#ifndef _LINUX_MMAN_H
|
|
|
|
|
#define _LINUX_MMAN_H
|
|
|
|
|
|
2006-04-25 14:18:07 +01:00
|
|
|
#include <linux/mm.h>
|
2009-04-30 15:08:51 -07:00
|
|
|
#include <linux/percpu_counter.h>
|
2006-04-25 14:18:07 +01:00
|
|
|
|
2011-07-26 16:09:06 -07:00
|
|
|
#include <linux/atomic.h>
|
2012-10-13 10:46:48 +01:00
|
|
|
#include <uapi/linux/mman.h>
|
2006-04-25 14:18:07 +01:00
|
|
|
|
2017-11-01 16:36:30 +01:00
|
|
|
/*
|
|
|
|
|
* Arrange for legacy / undefined architecture specific flags to be
|
2017-11-01 16:36:41 +01:00
|
|
|
* ignored by mmap handling code.
|
2017-11-01 16:36:30 +01:00
|
|
|
*/
|
|
|
|
|
#ifndef MAP_32BIT
|
|
|
|
|
#define MAP_32BIT 0
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAP_HUGE_2MB
|
|
|
|
|
#define MAP_HUGE_2MB 0
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAP_HUGE_1GB
|
|
|
|
|
#define MAP_HUGE_1GB 0
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAP_UNINITIALIZED
|
|
|
|
|
#define MAP_UNINITIALIZED 0
|
|
|
|
|
#endif
|
2017-11-01 16:36:41 +01:00
|
|
|
#ifndef MAP_SYNC
|
|
|
|
|
#define MAP_SYNC 0
|
|
|
|
|
#endif
|
2017-11-01 16:36:30 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The historical set of flags that all mmap implementations implicitly
|
|
|
|
|
* support when a ->mmap_validate() op is not provided in file_operations.
|
2021-06-28 19:38:35 -07:00
|
|
|
*
|
2021-04-23 09:38:14 +02:00
|
|
|
* MAP_EXECUTABLE and MAP_DENYWRITE are completely ignored throughout the
|
|
|
|
|
* kernel.
|
2017-11-01 16:36:30 +01:00
|
|
|
*/
|
|
|
|
|
#define LEGACY_MAP_MASK (MAP_SHARED \
|
|
|
|
|
| MAP_PRIVATE \
|
|
|
|
|
| MAP_FIXED \
|
|
|
|
|
| MAP_ANONYMOUS \
|
|
|
|
|
| MAP_DENYWRITE \
|
|
|
|
|
| MAP_EXECUTABLE \
|
|
|
|
|
| MAP_UNINITIALIZED \
|
|
|
|
|
| MAP_GROWSDOWN \
|
|
|
|
|
| MAP_LOCKED \
|
|
|
|
|
| MAP_NORESERVE \
|
|
|
|
|
| MAP_POPULATE \
|
|
|
|
|
| MAP_NONBLOCK \
|
|
|
|
|
| MAP_STACK \
|
|
|
|
|
| MAP_HUGETLB \
|
|
|
|
|
| MAP_32BIT \
|
|
|
|
|
| MAP_HUGE_2MB \
|
|
|
|
|
| MAP_HUGE_1GB)
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
extern int sysctl_overcommit_memory;
|
|
|
|
|
extern int sysctl_overcommit_ratio;
|
2014-01-21 15:49:14 -08:00
|
|
|
extern unsigned long sysctl_overcommit_kbytes;
|
2009-04-30 15:08:51 -07:00
|
|
|
extern struct percpu_counter vm_committed_as;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2013-07-03 15:02:44 -07:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
extern s32 vm_committed_as_batch;
|
2020-08-06 23:23:15 -07:00
|
|
|
extern void mm_compute_batch(int overcommit_policy);
|
2013-07-03 15:02:44 -07:00
|
|
|
#else
|
|
|
|
|
#define vm_committed_as_batch 0
|
2020-08-06 23:23:15 -07:00
|
|
|
static inline void mm_compute_batch(int overcommit_policy)
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-07-03 15:02:44 -07:00
|
|
|
#endif
|
|
|
|
|
|
2012-11-15 14:34:42 -08:00
|
|
|
unsigned long vm_memory_committed(void);
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
static inline void vm_acct_memory(long pages)
|
|
|
|
|
{
|
2017-06-20 21:01:20 +03:00
|
|
|
percpu_counter_add_batch(&vm_committed_as, pages, vm_committed_as_batch);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void vm_unacct_memory(long pages)
|
|
|
|
|
{
|
|
|
|
|
vm_acct_memory(-pages);
|
|
|
|
|
}
|
|
|
|
|
|
2008-07-08 00:28:51 +10:00
|
|
|
/*
|
2019-11-25 17:27:06 +00:00
|
|
|
* Allow architectures to handle additional protection and flag bits. The
|
|
|
|
|
* overriding macros must be defined in the arch-specific asm/mman.h file.
|
2008-07-08 00:28:51 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef arch_calc_vm_prot_bits
|
2016-02-12 13:02:31 -08:00
|
|
|
#define arch_calc_vm_prot_bits(prot, pkey) 0
|
2008-07-08 00:28:51 +10:00
|
|
|
#endif
|
|
|
|
|
|
2019-11-25 17:27:06 +00:00
|
|
|
#ifndef arch_calc_vm_flag_bits
|
|
|
|
|
#define arch_calc_vm_flag_bits(flags) 0
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-07-08 00:28:51 +10:00
|
|
|
#ifndef arch_vm_get_page_prot
|
|
|
|
|
#define arch_vm_get_page_prot(vm_flags) __pgprot(0)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef arch_validate_prot
|
|
|
|
|
/*
|
|
|
|
|
* This is called from mprotect(). PROT_GROWSDOWN and PROT_GROWSUP have
|
|
|
|
|
* already been masked out.
|
|
|
|
|
*
|
|
|
|
|
* Returns true if the prot flags are valid
|
|
|
|
|
*/
|
2018-02-21 10:15:49 -07:00
|
|
|
static inline bool arch_validate_prot(unsigned long prot, unsigned long addr)
|
2008-07-08 00:28:51 +10:00
|
|
|
{
|
|
|
|
|
return (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC | PROT_SEM)) == 0;
|
|
|
|
|
}
|
|
|
|
|
#define arch_validate_prot arch_validate_prot
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-11-25 17:27:06 +00:00
|
|
|
#ifndef arch_validate_flags
|
|
|
|
|
/*
|
|
|
|
|
* This is called from mmap() and mprotect() with the updated vma->vm_flags.
|
|
|
|
|
*
|
|
|
|
|
* Returns true if the VM_* flags are valid.
|
|
|
|
|
*/
|
|
|
|
|
static inline bool arch_validate_flags(unsigned long flags)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
#define arch_validate_flags arch_validate_flags
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
|
|
|
|
* Optimisation macro. It is equivalent to:
|
|
|
|
|
* (x & bit1) ? bit2 : 0
|
|
|
|
|
* but this version is faster.
|
|
|
|
|
* ("bit1" and "bit2" must be single bits)
|
|
|
|
|
*/
|
|
|
|
|
#define _calc_vm_trans(x, bit1, bit2) \
|
2017-11-03 12:21:21 +01:00
|
|
|
((!(bit1) || !(bit2)) ? 0 : \
|
2005-04-16 15:20:36 -07:00
|
|
|
((bit1) <= (bit2) ? ((x) & (bit1)) * ((bit2) / (bit1)) \
|
2017-11-03 12:21:21 +01:00
|
|
|
: ((x) & (bit1)) / ((bit1) / (bit2))))
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Combine the mmap "prot" argument into "vm_flags" used internally.
|
|
|
|
|
*/
|
|
|
|
|
static inline unsigned long
|
2016-02-12 13:02:31 -08:00
|
|
|
calc_vm_prot_bits(unsigned long prot, unsigned long pkey)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
|
|
|
|
return _calc_vm_trans(prot, PROT_READ, VM_READ ) |
|
|
|
|
|
_calc_vm_trans(prot, PROT_WRITE, VM_WRITE) |
|
2008-07-08 00:28:51 +10:00
|
|
|
_calc_vm_trans(prot, PROT_EXEC, VM_EXEC) |
|
2016-02-12 13:02:31 -08:00
|
|
|
arch_calc_vm_prot_bits(prot, pkey);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Combine the mmap "flags" argument into "vm_flags" used internally.
|
|
|
|
|
*/
|
|
|
|
|
static inline unsigned long
|
|
|
|
|
calc_vm_flag_bits(unsigned long flags)
|
|
|
|
|
{
|
|
|
|
|
return _calc_vm_trans(flags, MAP_GROWSDOWN, VM_GROWSDOWN ) |
|
2017-11-01 16:36:41 +01:00
|
|
|
_calc_vm_trans(flags, MAP_LOCKED, VM_LOCKED ) |
|
2019-11-25 17:27:06 +00:00
|
|
|
_calc_vm_trans(flags, MAP_SYNC, VM_SYNC ) |
|
|
|
|
|
arch_calc_vm_flag_bits(flags);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
2013-11-12 15:08:31 -08:00
|
|
|
|
|
|
|
|
unsigned long vm_commit_limit(void);
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif /* _LINUX_MMAN_H */
|