My program is being run with cap_sys_admin,cap_setgid+i
.
Of course, I understand that they are inheritable across execve, but beside that : does they behave the same way as if I don’t have them at all since they are neither effective nor permitted?
Advertisement
Answer
OK so your process is running with some Inheritable capabilities. What does that mean for your process? Pretty much nothing. You can’t call setcap()
to make any of those capabilities Effective, since they’re not in your Permitted set, and with no way to get them in your Effective set your process cannot use the capabilities itself.
However their presence in your Inheritable set may have consequences for other processes you launch. eg. if you were to exec()
a binary whose file had cap_setgid
in both its Effective and Inheritable set, that child process would start with cap_setgid
in its Effective set.
If cap_setgid
was not in your process’s Inheritable set in the above example, then the fact that the file has cap_setgid+ie
becomes irrevelant, and the child process will not have the stated capability.