]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Add a resource limit for the total number of kqueues available to the
authorkib <kib@FreeBSD.org>
Mon, 21 Oct 2013 16:44:53 +0000 (16:44 +0000)
committerkib <kib@FreeBSD.org>
Mon, 21 Oct 2013 16:44:53 +0000 (16:44 +0000)
commit80e669df9e8ddb312b35886be11c306ee738b4f1
tree34a18ded32934f0a4679a54dd36c7f1f14b2d63d
parent3764544c53a5b1e50422015f4c2443f1738dac17
Add a resource limit for the total number of kqueues available to the
user.  Kqueue now saves the ucred of the allocating thread, to
correctly decrement the counter on close.

Under some specific and not real-world use scenario for kqueue, it is
possible for the kqueues to consume memory proportional to the square
of the number of the filedescriptors available to the process.  Limit
allows administrator to prevent the abuse.

This is kernel-mode side of the change, with the user-mode enabling
commit following.

Reported and tested by: pho
Discussed with: jmg
Sponsored by: The FreeBSD Foundation
MFC after: 2 weeks
sys/kern/kern_event.c
sys/kern/kern_resource.c
sys/sys/eventvar.h
sys/sys/resource.h
sys/sys/resourcevar.h