summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelog2
1 files changed, 1 insertions, 1 deletions
diff --git a/changelog b/changelog
index cd57ec7..5e161ff 100644
--- a/changelog
+++ b/changelog
@@ -1,4 +1,4 @@
-inotail 0.1
+inotail 0.2
* Support for the -n/-c +<num> options (tail relative to start of file)
* Copyright and license cleanup
ext.git/tree/?id=9915672d41273f5b77f1b3c29b391ffb7732b84b'>191dbf657535e49265be7664755890630e69e329 /net/unix/garbage.c parentcf41a51db89850033efc11c18a5257de810b5417 (diff)
af_unix: limit unix_tot_inflight
Vegard Nossum found a unix socket OOM was possible, posting an exploit program. My analysis is we can eat all LOWMEM memory before unix_gc() being called from unix_release_sock(). Moreover, the thread blocked in unix_gc() can consume huge amount of time to perform cleanup because of huge working set. One way to handle this is to have a sensible limit on unix_tot_inflight, tested from wait_for_unix_gc() and to force a call to unix_gc() if this limit is hit. This solves the OOM and also reduce overall latencies, and should not slowdown normal workloads. Reported-by: Vegard Nossum <vegard.nossum@gmail.com> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/unix/garbage.c')