blob: 2db9a1432511286d1b10d9185c935a89253371bc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07002#ifndef __INCLUDE_LINUX_OOM_H
3#define __INCLUDE_LINUX_OOM_H
4
David Rientjes5a3135c22007-10-16 23:25:53 -07005
Ingo Molnar3f07c012017-02-08 18:51:30 +01006#include <linux/sched/signal.h>
David Rientjes172acf62007-10-16 23:25:59 -07007#include <linux/types.h>
KAMEZAWA Hiroyuki4365a562009-12-15 16:45:33 -08008#include <linux/nodemask.h>
David Howells607ca462012-10-13 10:46:48 +01009#include <uapi/linux/oom.h>
Michal Hocko6b31d592017-08-18 15:16:15 -070010#include <linux/sched/coredump.h> /* MMF_* */
11#include <linux/mm.h> /* VM_FAULT* */
David Rientjes172acf62007-10-16 23:25:59 -070012
13struct zonelist;
14struct notifier_block;
Andrew Morton74bcbf42010-08-09 17:19:43 -070015struct mem_cgroup;
16struct task_struct;
David Rientjes172acf62007-10-16 23:25:59 -070017
yuzhoujianef8444e2018-12-28 00:36:07 -080018enum oom_constraint {
19 CONSTRAINT_NONE,
20 CONSTRAINT_CPUSET,
21 CONSTRAINT_MEMORY_POLICY,
22 CONSTRAINT_MEMCG,
23};
24
David Rientjes8989e4c2015-09-08 15:00:44 -070025/*
26 * Details of the page allocation that triggered the oom killer that are used to
27 * determine what should be killed.
28 */
David Rientjes6e0fc462015-09-08 15:00:36 -070029struct oom_control {
David Rientjes8989e4c2015-09-08 15:00:44 -070030 /* Used to determine cpuset */
David Rientjes6e0fc462015-09-08 15:00:36 -070031 struct zonelist *zonelist;
David Rientjes8989e4c2015-09-08 15:00:44 -070032
33 /* Used to determine mempolicy */
34 nodemask_t *nodemask;
35
Vladimir Davydov2a966b72016-07-26 15:22:33 -070036 /* Memory cgroup in which oom is invoked, or NULL for global oom */
37 struct mem_cgroup *memcg;
38
David Rientjes8989e4c2015-09-08 15:00:44 -070039 /* 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 Rientjes6e0fc462015-09-08 15:00:36 -070047
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -070048 /* Used by oom implementation, do not set */
49 unsigned long totalpages;
50 struct task_struct *chosen;
Yafang Shao9066e5c2020-08-11 18:31:22 -070051 long chosen_points;
yuzhoujianef8444e2018-12-28 00:36:07 -080052
53 /* Used to print the constraint info. */
54 enum oom_constraint constraint;
David Rientjes9cbb78b2012-07-31 16:43:44 -070055};
56
Johannes Weinerdc564012015-06-24 16:57:19 -070057extern struct mutex oom_lock;
Suren Baghdasaryan67197a42020-10-13 16:58:35 -070058extern struct mutex oom_adj_mutex;
Johannes Weinerdc564012015-06-24 16:57:19 -070059
David Rientjese1e12d22012-12-11 16:02:56 -080060static inline void set_current_oom_origin(void)
61{
Tetsuo Handac96fc2d2016-05-23 16:23:57 -070062 current->signal->oom_flag_origin = true;
David Rientjese1e12d22012-12-11 16:02:56 -080063}
64
65static inline void clear_current_oom_origin(void)
66{
Tetsuo Handac96fc2d2016-05-23 16:23:57 -070067 current->signal->oom_flag_origin = false;
David Rientjese1e12d22012-12-11 16:02:56 -080068}
69
70static inline bool oom_task_origin(const struct task_struct *p)
71{
Tetsuo Handac96fc2d2016-05-23 16:23:57 -070072 return p->signal->oom_flag_origin;
David Rientjese1e12d22012-12-11 16:02:56 -080073}
David Rientjes72788c32011-05-24 17:11:40 -070074
Michal Hocko862e3072016-10-07 16:58:57 -070075static inline bool tsk_is_oom_victim(struct task_struct * tsk)
76{
77 return tsk->signal->oom_mm;
78}
79
Michal Hocko6b31d592017-08-18 15:16:15 -070080/*
Michal Hocko4837fe32017-12-14 15:33:15 -080081 * Use this helper if tsk->mm != mm and the victim mm needs a special
82 * handling. This is guaranteed to stay true after once set.
83 */
84static inline bool mm_is_oom_victim(struct mm_struct *mm)
85{
86 return test_bit(MMF_OOM_VICTIM, &mm->flags);
87}
88
89/*
Michal Hocko6b31d592017-08-18 15:16:15 -070090 * Checks whether a page fault on the given mm is still reliable.
91 * This is no longer true if the oom reaper started to reap the
92 * address space which is reflected by MMF_UNSTABLE flag set in
93 * the mm. At that moment any !shared mapping would lose the content
94 * and could cause a memory corruption (zero pages instead of the
95 * original content).
96 *
97 * User should call this before establishing a page table entry for
98 * a !shared mapping and under the proper page table lock.
99 *
100 * Return 0 when the PF is safe VM_FAULT_SIGBUS otherwise.
101 */
Souptick Joarder2b740302018-08-23 17:01:36 -0700102static inline vm_fault_t check_stable_address_space(struct mm_struct *mm)
Michal Hocko6b31d592017-08-18 15:16:15 -0700103{
104 if (unlikely(test_bit(MMF_UNSTABLE, &mm->flags)))
105 return VM_FAULT_SIGBUS;
106 return 0;
107}
108
Michal Hocko93065ac2018-08-21 21:52:33 -0700109bool __oom_reap_task_mm(struct mm_struct *mm);
David Rientjes27ae3572018-05-11 16:02:04 -0700110
Yafang Shao9066e5c2020-08-11 18:31:22 -0700111long oom_badness(struct task_struct *p,
David Rientjesa7f638f2012-05-29 15:06:47 -0700112 unsigned long totalpages);
Michal Hocko5695be12014-10-20 18:12:32 +0200113
David Rientjes6e0fc462015-09-08 15:00:36 -0700114extern bool out_of_memory(struct oom_control *oc);
Johannes Weiner16e95192015-06-24 16:57:07 -0700115
Tetsuo Handa38531202016-10-07 16:59:03 -0700116extern void exit_oom_victim(void);
Johannes Weiner16e95192015-06-24 16:57:07 -0700117
David Rientjes5a3135c22007-10-16 23:25:53 -0700118extern int register_oom_notifier(struct notifier_block *nb);
119extern int unregister_oom_notifier(struct notifier_block *nb);
120
Michal Hocko7d2e7a22016-10-07 16:59:00 -0700121extern bool oom_killer_disable(signed long timeout);
Michal Hockoc32b3cb2015-02-11 15:26:24 -0800122extern void oom_killer_enable(void);
David Rientjes8e4228e2010-08-09 17:18:56 -0700123
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -0700124extern struct task_struct *find_lock_task_mm(struct task_struct *p);
125
David Rientjes8e4228e2010-08-09 17:18:56 -0700126/* sysctls */
127extern int sysctl_oom_dump_tasks;
128extern int sysctl_oom_kill_allocating_task;
129extern int sysctl_panic_on_oom;
David Rientjes5a3135c22007-10-16 23:25:53 -0700130#endif /* _INCLUDE_LINUX_OOM_H */