On Tue, 15 Mar 2011 12:42:26 +0200 "Kirill A. Shutemov" <kirill@xxxxxxxxxxxxx> wrote: > On Tue, Mar 15, 2011 at 06:52:42PM +0900, KAMEZAWA Hiroyuki wrote: > > While testing Andrey's case, I confirmed I need to reboot the system by > > power off when I ran a fork-bomb. The speed of fork() is much faster > > than some smart killing as pkill(1) and oom-killer cannot reach the speed. > > > > I wonder it's better to have a fork-bomb killer even if it's a just heuristic > > method. This is a one. This one works fine with Andrey's case and I don't need > > to reboot more. And I confirmed this can kill a case like > > > > while True: > > os.fork() > > > > BTW, does usual man see fork-bomb in a production system ? > > I saw only once which was caused be a shell script. > > > > == > > A fork bomb killer. > > > > When fork-bomb runs, the system exhausts memory and we need to > > reboot the system, in usual. The oom-killer or admin's killall > > is slower than fork-bomb if system memory is exhausted. > > > > So, fork-bomb-killer is appreciated even if it's a just heuristic. > > > > This patch implements a heuristic for fork-bomb. The logic finds > > a fork bomb which > > - has spawned 10+ tasks recently (10 min). > > - aggregate score of bomb is larger than the baddest task's badness. > > > > When fork-bomb found, > > - new fork in the session under where fork bomb is will return -ENOMEM > > for the next 30secs. > > -EAGAIN is more appropiate, I think. At least -EAGAIN returns if > RLIMIT_NPROC resource limit was encountered. > > Will the fork-bomb-killer work, if a fork-bomb calls setsid() before > fork()? > This function just kills "young" children and cannot guarantee the core of fork-bomb will be killed. By limiting fork() in the fork-bomb session by -ENOMEM, I hope careless fork-bomb will die. Then, I selected -ENOMEM rather than -EAGAIN. By -ENOMEM, session leader (and user) can see there was memory shortage. Thanks, -Kame -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxxx For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>