Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Alexey Dobriyan | 8ac773b | 2006-10-19 23:28:32 -0700 | [diff] [blame] | 2 | #ifndef __INCLUDE_LINUX_OOM_H |
| 3 | #define __INCLUDE_LINUX_OOM_H |
| 4 | |
David Rientjes | 5a3135c2 | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 5 | |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 6 | #include <linux/sched/signal.h> |
David Rientjes | 172acf6 | 2007-10-16 23:25:59 -0700 | [diff] [blame] | 7 | #include <linux/types.h> |
KAMEZAWA Hiroyuki | 4365a56 | 2009-12-15 16:45:33 -0800 | [diff] [blame] | 8 | #include <linux/nodemask.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 9 | #include <uapi/linux/oom.h> |
Michal Hocko | 6b31d59 | 2017-08-18 15:16:15 -0700 | [diff] [blame] | 10 | #include <linux/sched/coredump.h> /* MMF_* */ |
| 11 | #include <linux/mm.h> /* VM_FAULT* */ |
David Rientjes | 172acf6 | 2007-10-16 23:25:59 -0700 | [diff] [blame] | 12 | |
| 13 | struct zonelist; |
| 14 | struct notifier_block; |
Andrew Morton | 74bcbf4 | 2010-08-09 17:19:43 -0700 | [diff] [blame] | 15 | struct mem_cgroup; |
| 16 | struct task_struct; |
David Rientjes | 172acf6 | 2007-10-16 23:25:59 -0700 | [diff] [blame] | 17 | |
yuzhoujian | ef8444e | 2018-12-28 00:36:07 -0800 | [diff] [blame] | 18 | enum oom_constraint { |
| 19 | CONSTRAINT_NONE, |
| 20 | CONSTRAINT_CPUSET, |
| 21 | CONSTRAINT_MEMORY_POLICY, |
| 22 | CONSTRAINT_MEMCG, |
| 23 | }; |
| 24 | |
David Rientjes | 8989e4c | 2015-09-08 15:00:44 -0700 | [diff] [blame] | 25 | /* |
| 26 | * Details of the page allocation that triggered the oom killer that are used to |
| 27 | * determine what should be killed. |
| 28 | */ |
David Rientjes | 6e0fc46 | 2015-09-08 15:00:36 -0700 | [diff] [blame] | 29 | struct oom_control { |
David Rientjes | 8989e4c | 2015-09-08 15:00:44 -0700 | [diff] [blame] | 30 | /* Used to determine cpuset */ |
David Rientjes | 6e0fc46 | 2015-09-08 15:00:36 -0700 | [diff] [blame] | 31 | struct zonelist *zonelist; |
David Rientjes | 8989e4c | 2015-09-08 15:00:44 -0700 | [diff] [blame] | 32 | |
| 33 | /* Used to determine mempolicy */ |
| 34 | nodemask_t *nodemask; |
| 35 | |
Vladimir Davydov | 2a966b7 | 2016-07-26 15:22:33 -0700 | [diff] [blame] | 36 | /* Memory cgroup in which oom is invoked, or NULL for global oom */ |
| 37 | struct mem_cgroup *memcg; |
| 38 | |
David Rientjes | 8989e4c | 2015-09-08 15:00:44 -0700 | [diff] [blame] | 39 | /* Used to determine cpuset and node locality requirement */ |
| 40 | const gfp_t gfp_mask; |
| 41 | |
| 42 | /* |
| 43 | * order == -1 means the oom kill is required by sysrq, otherwise only |
| 44 | * for display purposes. |
| 45 | */ |
| 46 | const int order; |
David Rientjes | 6e0fc46 | 2015-09-08 15:00:36 -0700 | [diff] [blame] | 47 | |
Vladimir Davydov | 7c5f64f | 2016-10-07 16:57:23 -0700 | [diff] [blame] | 48 | /* Used by oom implementation, do not set */ |
| 49 | unsigned long totalpages; |
| 50 | struct task_struct *chosen; |
| 51 | unsigned long chosen_points; |
yuzhoujian | ef8444e | 2018-12-28 00:36:07 -0800 | [diff] [blame] | 52 | |
| 53 | /* Used to print the constraint info. */ |
| 54 | enum oom_constraint constraint; |
David Rientjes | 9cbb78b | 2012-07-31 16:43:44 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
Johannes Weiner | dc56401 | 2015-06-24 16:57:19 -0700 | [diff] [blame] | 57 | extern struct mutex oom_lock; |
| 58 | |
David Rientjes | e1e12d2 | 2012-12-11 16:02:56 -0800 | [diff] [blame] | 59 | static inline void set_current_oom_origin(void) |
| 60 | { |
Tetsuo Handa | c96fc2d | 2016-05-23 16:23:57 -0700 | [diff] [blame] | 61 | current->signal->oom_flag_origin = true; |
David Rientjes | e1e12d2 | 2012-12-11 16:02:56 -0800 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | static inline void clear_current_oom_origin(void) |
| 65 | { |
Tetsuo Handa | c96fc2d | 2016-05-23 16:23:57 -0700 | [diff] [blame] | 66 | current->signal->oom_flag_origin = false; |
David Rientjes | e1e12d2 | 2012-12-11 16:02:56 -0800 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | static inline bool oom_task_origin(const struct task_struct *p) |
| 70 | { |
Tetsuo Handa | c96fc2d | 2016-05-23 16:23:57 -0700 | [diff] [blame] | 71 | return p->signal->oom_flag_origin; |
David Rientjes | e1e12d2 | 2012-12-11 16:02:56 -0800 | [diff] [blame] | 72 | } |
David Rientjes | 72788c3 | 2011-05-24 17:11:40 -0700 | [diff] [blame] | 73 | |
Michal Hocko | 862e307 | 2016-10-07 16:58:57 -0700 | [diff] [blame] | 74 | static inline bool tsk_is_oom_victim(struct task_struct * tsk) |
| 75 | { |
| 76 | return tsk->signal->oom_mm; |
| 77 | } |
| 78 | |
Michal Hocko | 6b31d59 | 2017-08-18 15:16:15 -0700 | [diff] [blame] | 79 | /* |
Michal Hocko | 4837fe3 | 2017-12-14 15:33:15 -0800 | [diff] [blame] | 80 | * Use this helper if tsk->mm != mm and the victim mm needs a special |
| 81 | * handling. This is guaranteed to stay true after once set. |
| 82 | */ |
| 83 | static inline bool mm_is_oom_victim(struct mm_struct *mm) |
| 84 | { |
| 85 | return test_bit(MMF_OOM_VICTIM, &mm->flags); |
| 86 | } |
| 87 | |
| 88 | /* |
Michal Hocko | 6b31d59 | 2017-08-18 15:16:15 -0700 | [diff] [blame] | 89 | * Checks whether a page fault on the given mm is still reliable. |
| 90 | * This is no longer true if the oom reaper started to reap the |
| 91 | * address space which is reflected by MMF_UNSTABLE flag set in |
| 92 | * the mm. At that moment any !shared mapping would lose the content |
| 93 | * and could cause a memory corruption (zero pages instead of the |
| 94 | * original content). |
| 95 | * |
| 96 | * User should call this before establishing a page table entry for |
| 97 | * a !shared mapping and under the proper page table lock. |
| 98 | * |
| 99 | * Return 0 when the PF is safe VM_FAULT_SIGBUS otherwise. |
| 100 | */ |
Souptick Joarder | 2b74030 | 2018-08-23 17:01:36 -0700 | [diff] [blame] | 101 | static inline vm_fault_t check_stable_address_space(struct mm_struct *mm) |
Michal Hocko | 6b31d59 | 2017-08-18 15:16:15 -0700 | [diff] [blame] | 102 | { |
| 103 | if (unlikely(test_bit(MMF_UNSTABLE, &mm->flags))) |
| 104 | return VM_FAULT_SIGBUS; |
| 105 | return 0; |
| 106 | } |
| 107 | |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 108 | bool __oom_reap_task_mm(struct mm_struct *mm); |
David Rientjes | 27ae357 | 2018-05-11 16:02:04 -0700 | [diff] [blame] | 109 | |
David Rientjes | a7f638f | 2012-05-29 15:06:47 -0700 | [diff] [blame] | 110 | extern unsigned long oom_badness(struct task_struct *p, |
David Rientjes | a7f638f | 2012-05-29 15:06:47 -0700 | [diff] [blame] | 111 | unsigned long totalpages); |
Michal Hocko | 5695be1 | 2014-10-20 18:12:32 +0200 | [diff] [blame] | 112 | |
David Rientjes | 6e0fc46 | 2015-09-08 15:00:36 -0700 | [diff] [blame] | 113 | extern bool out_of_memory(struct oom_control *oc); |
Johannes Weiner | 16e9519 | 2015-06-24 16:57:07 -0700 | [diff] [blame] | 114 | |
Tetsuo Handa | 3853120 | 2016-10-07 16:59:03 -0700 | [diff] [blame] | 115 | extern void exit_oom_victim(void); |
Johannes Weiner | 16e9519 | 2015-06-24 16:57:07 -0700 | [diff] [blame] | 116 | |
David Rientjes | 5a3135c2 | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 117 | extern int register_oom_notifier(struct notifier_block *nb); |
| 118 | extern int unregister_oom_notifier(struct notifier_block *nb); |
| 119 | |
Michal Hocko | 7d2e7a2 | 2016-10-07 16:59:00 -0700 | [diff] [blame] | 120 | extern bool oom_killer_disable(signed long timeout); |
Michal Hocko | c32b3cb | 2015-02-11 15:26:24 -0800 | [diff] [blame] | 121 | extern void oom_killer_enable(void); |
David Rientjes | 8e4228e | 2010-08-09 17:18:56 -0700 | [diff] [blame] | 122 | |
KAMEZAWA Hiroyuki | 158e0a2 | 2010-08-10 18:03:00 -0700 | [diff] [blame] | 123 | extern struct task_struct *find_lock_task_mm(struct task_struct *p); |
| 124 | |
David Rientjes | 8e4228e | 2010-08-09 17:18:56 -0700 | [diff] [blame] | 125 | /* sysctls */ |
| 126 | extern int sysctl_oom_dump_tasks; |
| 127 | extern int sysctl_oom_kill_allocating_task; |
| 128 | extern int sysctl_panic_on_oom; |
David Rientjes | 5a3135c2 | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 129 | #endif /* _INCLUDE_LINUX_OOM_H */ |