2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

remove CAP_SYS_RESOURCE

This commit is contained in:
Bob Halley
2000-02-01 20:17:32 +00:00
parent 54e587cfac
commit 5e4b7294d8

View File

@@ -76,14 +76,16 @@ linux_initialprivs(void) {
/*
* Drop all privileges except the abilities to bind() to privileged
* ports, set resource limits, and chroot().
* ports and chroot().
*/
caps = 0;
caps |= (1 << CAP_NET_BIND_SERVICE);
caps |= (1 << CAP_SYS_RESOURCE);
caps |= (1 << CAP_SYS_CHROOT);
/*
* XXX We might want to add CAP_SYS_RESOURCE, though it's not
* clear it would work right given the way linuxthreads work.
*/
linux_setcaps(caps);
}
@@ -93,12 +95,11 @@ linux_minprivs(void) {
/*
* Drop all privileges except the abilities to bind() to privileged
* ports and set resource limits.
* ports.
*/
caps = 0;
caps |= (1 << CAP_NET_BIND_SERVICE);
caps |= (1 << CAP_SYS_RESOURCE);
linux_setcaps(caps);
}