Add changes from the Linux-2.6 tree.
[linux-2.6.git] / mm / oom_kill.c
1 /*
2  *  linux/mm/oom_kill.c
3  * 
4  *  Copyright (C)  1998,2000  Rik van Riel
5  *      Thanks go out to Claus Fischer for some serious inspiration and
6  *      for goading me into coding this file...
7  *
8  *  The routines in this file are used to kill a process when
9  *  we're seriously out of memory. This gets called from __alloc_pages()
10  *  in mm/page_alloc.c when we really run out of memory.
11  *
12  *  Since we won't call these routines often (on a well-configured
13  *  machine) this file will double as a 'coding guide' and a signpost
14  *  for newbie kernel hackers. It features several pointers to major
15  *  kernel subsystems and hints as to where to find out what things do.
16  */
17
18 #include <linux/oom.h>
19 #include <linux/mm.h>
20 #include <linux/sched.h>
21 #include <linux/swap.h>
22 #include <linux/timex.h>
23 #include <linux/jiffies.h>
24 #include <linux/cpuset.h>
25 #include <linux/module.h>
26 #include <linux/notifier.h>
27 #include <linux/vs_memory.h>
28
29 int sysctl_panic_on_oom;
30 /* #define DEBUG */
31
32 /**
33  * badness - calculate a numeric value for how bad this task has been
34  * @p: task struct of which task we should calculate
35  * @uptime: current uptime in seconds
36  *
37  * The formula used is relatively simple and documented inline in the
38  * function. The main rationale is that we want to select a good task
39  * to kill when we run out of memory.
40  *
41  * Good in this context means that:
42  * 1) we lose the minimum amount of work done
43  * 2) we recover a large amount of memory
44  * 3) we don't kill anything innocent of eating tons of memory
45  * 4) we want to kill the minimum amount of processes (one)
46  * 5) we try to kill the process the user expects us to kill, this
47  *    algorithm has been meticulously tuned to meet the principle
48  *    of least surprise ... (be careful when you change it)
49  */
50
51 unsigned long badness(struct task_struct *p, unsigned long uptime)
52 {
53         unsigned long points, cpu_time, run_time, s;
54         struct mm_struct *mm;
55         struct task_struct *child;
56
57         task_lock(p);
58         mm = p->mm;
59         if (!mm) {
60                 task_unlock(p);
61                 return 0;
62         }
63
64         /*
65          * The memory size of the process is the basis for the badness.
66          */
67         points = mm->total_vm;
68
69         /*
70          * add points for context badness
71          */
72
73         points += vx_badness(p, mm);
74
75         /*
76          * After this unlock we can no longer dereference local variable `mm'
77          */
78         task_unlock(p);
79
80         /*
81          * swapoff can easily use up all memory, so kill those first.
82          */
83         if (p->flags & PF_SWAPOFF)
84                 return ULONG_MAX;
85
86         /*
87          * Processes which fork a lot of child processes are likely
88          * a good choice. We add half the vmsize of the children if they
89          * have an own mm. This prevents forking servers to flood the
90          * machine with an endless amount of children. In case a single
91          * child is eating the vast majority of memory, adding only half
92          * to the parents will make the child our kill candidate of choice.
93          */
94         list_for_each_entry(child, &p->children, sibling) {
95                 task_lock(child);
96                 if (child->mm != mm && child->mm)
97                         points += child->mm->total_vm/2 + 1;
98                 task_unlock(child);
99         }
100
101         /*
102          * CPU time is in tens of seconds and run time is in thousands
103          * of seconds. There is no particular reason for this other than
104          * that it turned out to work very well in practice.
105          */
106         cpu_time = (cputime_to_jiffies(p->utime) + cputime_to_jiffies(p->stime))
107                 >> (SHIFT_HZ + 3);
108
109         if (uptime >= p->start_time.tv_sec)
110                 run_time = (uptime - p->start_time.tv_sec) >> 10;
111         else
112                 run_time = 0;
113
114         s = int_sqrt(cpu_time);
115         if (s)
116                 points /= s;
117         s = int_sqrt(int_sqrt(run_time));
118         if (s)
119                 points /= s;
120
121         /*
122          * Niced processes are most likely less important, so double
123          * their badness points.
124          */
125         if (task_nice(p) > 0)
126                 points *= 2;
127
128         /*
129          * Superuser processes are usually more important, so we make it
130          * less likely that we kill those.
131          */
132         if (cap_t(p->cap_effective) & CAP_TO_MASK(CAP_SYS_ADMIN) ||
133                                 p->uid == 0 || p->euid == 0)
134                 points /= 4;
135
136         /*
137          * We don't want to kill a process with direct hardware access.
138          * Not only could that mess up the hardware, but usually users
139          * tend to only have this flag set on applications they think
140          * of as important.
141          */
142         if (cap_t(p->cap_effective) & CAP_TO_MASK(CAP_SYS_RAWIO))
143                 points /= 4;
144
145         /*
146          * If p's nodes don't overlap ours, it may still help to kill p
147          * because p may have allocated or otherwise mapped memory on
148          * this node before. However it will be less likely.
149          */
150         if (!cpuset_excl_nodes_overlap(p))
151                 points /= 8;
152
153         /*
154          * Adjust the score by oomkilladj.
155          */
156         if (p->oomkilladj) {
157                 if (p->oomkilladj > 0)
158                         points <<= p->oomkilladj;
159                 else
160                         points >>= -(p->oomkilladj);
161         }
162
163 #ifdef DEBUG
164         printk(KERN_DEBUG "OOMkill: task %d:#%u (%s) got %d points\n",
165                 p->pid, p->xid, p->comm, points);
166 #endif
167         return points;
168 }
169
170 #if defined(CONFIG_OOM_PANIC) && defined(CONFIG_OOM_KILLER)
171 #warning Only define OOM_PANIC or OOM_KILLER; not both
172 #endif
173
174 #ifdef CONFIG_OOM_KILLER
175 /*
176  * Types of limitations to the nodes from which allocations may occur
177  */
178 #define CONSTRAINT_NONE 1
179 #define CONSTRAINT_MEMORY_POLICY 2
180 #define CONSTRAINT_CPUSET 3
181
182 /*
183  * Determine the type of allocation constraint.
184  */
185 static inline int constrained_alloc(struct zonelist *zonelist, gfp_t gfp_mask)
186 {
187 #ifdef CONFIG_NUMA
188         struct zone **z;
189         nodemask_t nodes;
190         int node;
191
192         nodes_clear(nodes);
193         /* node has memory ? */
194         for_each_online_node(node)
195                 if (NODE_DATA(node)->node_present_pages)
196                         node_set(node, nodes);
197
198         for (z = zonelist->zones; *z; z++)
199                 if (cpuset_zone_allowed_softwall(*z, gfp_mask))
200                         node_clear(zone_to_nid(*z), nodes);
201                 else
202                         return CONSTRAINT_CPUSET;
203
204         if (!nodes_empty(nodes))
205                 return CONSTRAINT_MEMORY_POLICY;
206 #endif
207
208         return CONSTRAINT_NONE;
209 }
210
211 /*
212  * Simple selection loop. We chose the process with the highest
213  * number of 'points'. We expect the caller will lock the tasklist.
214  *
215  * (not docbooked, we don't want this one cluttering up the manual)
216  */
217 static struct task_struct *select_bad_process(unsigned long *ppoints)
218 {
219         struct task_struct *g, *p;
220         struct task_struct *chosen = NULL;
221         struct timespec uptime;
222         *ppoints = 0;
223
224         do_posix_clock_monotonic_gettime(&uptime);
225         do_each_thread(g, p) {
226                 unsigned long points;
227
228                 /*
229                  * skip kernel threads and tasks which have already released
230                  * their mm.
231                  */
232                 if (!p->mm)
233                         continue;
234                 /* skip the init task */
235                 if (is_init(p))
236                         continue;
237
238                 /*
239                  * This task already has access to memory reserves and is
240                  * being killed. Don't allow any other task access to the
241                  * memory reserve.
242                  *
243                  * Note: this may have a chance of deadlock if it gets
244                  * blocked waiting for another task which itself is waiting
245                  * for memory. Is there a better alternative?
246                  */
247                 if (test_tsk_thread_flag(p, TIF_MEMDIE))
248                         return ERR_PTR(-1UL);
249
250                 /*
251                  * This is in the process of releasing memory so wait for it
252                  * to finish before killing some other task by mistake.
253                  *
254                  * However, if p is the current task, we allow the 'kill' to
255                  * go ahead if it is exiting: this will simply set TIF_MEMDIE,
256                  * which will allow it to gain access to memory reserves in
257                  * the process of exiting and releasing its resources.
258                  * Otherwise we could get an easy OOM deadlock.
259                  */
260                 if (p->flags & PF_EXITING) {
261                         if (p != current)
262                                 return ERR_PTR(-1UL);
263
264                         chosen = p;
265                         *ppoints = ULONG_MAX;
266                 }
267
268                 if (p->oomkilladj == OOM_DISABLE)
269                         continue;
270
271                 points = badness(p, uptime.tv_sec);
272                 if (points > *ppoints || !chosen) {
273                         chosen = p;
274                         *ppoints = points;
275                 }
276         } while_each_thread(g, p);
277
278         return chosen;
279 }
280
281 /**
282  * Send SIGKILL to the selected  process irrespective of  CAP_SYS_RAW_IO
283  * flag though it's unlikely that  we select a process with CAP_SYS_RAW_IO
284  * set.
285  */
286 static void __oom_kill_task(struct task_struct *p, int verbose)
287 {
288         if (is_init(p)) {
289                 WARN_ON(1);
290                 printk(KERN_WARNING "tried to kill init!\n");
291                 return;
292         }
293
294         if (!p->mm) {
295                 WARN_ON(1);
296                 printk(KERN_WARNING "tried to kill an mm-less task!\n");
297                 return;
298         }
299
300         if (verbose)
301                 printk(KERN_ERR "Killed process %d:#%u (%s)\n",
302                                 p->pid, p->xid, p->comm);
303
304         /*
305          * We give our sacrificial lamb high priority and access to
306          * all the memory it needs. That way it should be able to
307          * exit() and clear out its resources quickly...
308          */
309         p->time_slice = HZ;
310         set_tsk_thread_flag(p, TIF_MEMDIE);
311
312         force_sig(SIGKILL, p);
313 }
314
315 static int oom_kill_task(struct task_struct *p)
316 {
317         struct mm_struct *mm;
318         struct task_struct *g, *q;
319
320         mm = p->mm;
321
322         /* WARNING: mm may not be dereferenced since we did not obtain its
323          * value from get_task_mm(p).  This is OK since all we need to do is
324          * compare mm to q->mm below.
325          *
326          * Furthermore, even if mm contains a non-NULL value, p->mm may
327          * change to NULL at any time since we do not hold task_lock(p).
328          * However, this is of no concern to us.
329          */
330
331         if (mm == NULL)
332                 return 1;
333
334         /*
335          * Don't kill the process if any threads are set to OOM_DISABLE
336          */
337         do_each_thread(g, q) {
338                 if (q->mm == mm && q->oomkilladj == OOM_DISABLE)
339                         return 1;
340         } while_each_thread(g, q);
341
342         __oom_kill_task(p, 1);
343
344         /*
345          * kill all processes that share the ->mm (i.e. all threads),
346          * but are in a different thread group. Don't let them have access
347          * to memory reserves though, otherwise we might deplete all memory.
348          */
349         do_each_thread(g, q) {
350                 if (q->mm == mm && q->tgid != p->tgid)
351                         force_sig(SIGKILL, q);
352         } while_each_thread(g, q);
353
354         return 0;
355 }
356
357 static int oom_kill_process(struct task_struct *p, unsigned long points,
358                 const char *message)
359 {
360         struct task_struct *c;
361         struct list_head *tsk;
362
363         /*
364          * If the task is already exiting, don't alarm the sysadmin or kill
365          * its children or threads, just set TIF_MEMDIE so it can die quickly
366          */
367         if (p->flags & PF_EXITING) {
368                 __oom_kill_task(p, 0);
369                 return 0;
370         }
371
372         printk(KERN_ERR "%s: kill process %d:#%u (%s) score %li or a child\n",
373                                 message, p->pid, p->xid, p->comm, points);
374
375         /* Try to kill a child first */
376         list_for_each(tsk, &p->children) {
377                 c = list_entry(tsk, struct task_struct, sibling);
378                 if (c->mm == p->mm)
379                         continue;
380                 if (!oom_kill_task(c))
381                         return 0;
382         }
383         return oom_kill_task(p);
384 }
385
386 static BLOCKING_NOTIFIER_HEAD(oom_notify_list);
387
388 int register_oom_notifier(struct notifier_block *nb)
389 {
390         return blocking_notifier_chain_register(&oom_notify_list, nb);
391 }
392 EXPORT_SYMBOL_GPL(register_oom_notifier);
393
394 int unregister_oom_notifier(struct notifier_block *nb)
395 {
396         return blocking_notifier_chain_unregister(&oom_notify_list, nb);
397 }
398 EXPORT_SYMBOL_GPL(unregister_oom_notifier);
399
400 /**
401  * out_of_memory - kill the "best" process when we run out of memory
402  *
403  * If we run out of memory, we have the choice between either
404  * killing a random task (bad), letting the system crash (worse)
405  * OR try to be smart about which process to kill. Note that we
406  * don't have to be perfect here, we just have to be good.
407  */
408 void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order)
409 {
410         struct task_struct *p;
411         unsigned long points = 0;
412         unsigned long freed = 0;
413
414         blocking_notifier_call_chain(&oom_notify_list, 0, &freed);
415         if (freed > 0)
416                 /* Got some memory back in the last second. */
417                 return;
418
419         if (printk_ratelimit()) {
420                 printk(KERN_WARNING "%s invoked oom-killer: "
421                         "gfp_mask=0x%x, order=%d, oomkilladj=%d\n",
422                         current->comm, gfp_mask, order, current->oomkilladj);
423                 dump_stack();
424                 show_mem();
425         }
426
427         cpuset_lock();
428         read_lock(&tasklist_lock);
429
430         /*
431          * Check if there were limitations on the allocation (only relevant for
432          * NUMA) that may require different handling.
433          */
434         switch (constrained_alloc(zonelist, gfp_mask)) {
435         case CONSTRAINT_MEMORY_POLICY:
436                 oom_kill_process(current, points,
437                                 "No available memory (MPOL_BIND)");
438                 break;
439
440         case CONSTRAINT_CPUSET:
441                 oom_kill_process(current, points,
442                                 "No available memory in cpuset");
443                 break;
444
445         case CONSTRAINT_NONE:
446                 if (sysctl_panic_on_oom)
447                         panic("out of memory. panic_on_oom is selected\n");
448 retry:
449                 /*
450                  * Rambo mode: Shoot down a process and hope it solves whatever
451                  * issues we may have.
452                  */
453                 p = select_bad_process(&points);
454
455                 if (PTR_ERR(p) == -1UL)
456                         goto out;
457
458                 /* Found nothing?!?! Either we hang forever, or we panic. */
459                 if (!p) {
460                         read_unlock(&tasklist_lock);
461                         cpuset_unlock();
462                         panic("Out of memory and no killable processes...\n");
463                 }
464
465                 if (oom_kill_process(p, points, "Out of memory"))
466                         goto retry;
467
468                 break;
469         }
470
471 out:
472         read_unlock(&tasklist_lock);
473         cpuset_unlock();
474
475         /*
476          * Give "p" a good chance of killing itself before we
477          * retry to allocate memory unless "p" is current
478          */
479         if (!test_thread_flag(TIF_MEMDIE))
480                 schedule_timeout_uninterruptible(1);
481 }
482 #endif /* CONFIG_OOM_KILLER */
483
484 #ifdef CONFIG_OOM_PANIC
485 /**
486  * out_of_memory - panic if the system out of memory?
487  */
488 void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order)
489 {
490         /*
491          * oom_lock protects out_of_memory()'s static variables.
492          * It's a global lock; this is not performance-critical.
493          */
494         static spinlock_t oom_lock = SPIN_LOCK_UNLOCKED;
495         static unsigned long count;
496
497         spin_lock(&oom_lock);
498
499         /*
500          * If we have gotten only a few failures,
501          * we're not really oom. 
502          */
503         if (++count >= 10) {
504                 /*
505                  * Ok, really out of memory. Panic.
506                  */
507
508                 printk("oom-killer: gfp_mask=0x%x\n", gfp_mask);
509                 show_free_areas();
510
511                 panic("Out Of Memory");
512         }
513         spin_unlock(&oom_lock);
514 }
515 #endif /*  CONFIG_OOM_PANIC */