I'm running a raspberry pi and would like to create an executable which simply should reboot it after some seconds. (I plan on triggering it via ssh and log out before the actual reboot takes place)
I created an executable with c++ with the content:
#include <cstdlib>
int main () {
system("sleep 5");
system("reboot");
return 0;
}
ls -l of the resulting executable:
---s--x--x 1 root ben 6191 Jan 10 15:42 reboot
The plan of mine was now to use the setuid bit in combination with the root as an owner for the binary so that the reboot command can be executed by any user.
Unfortunately this is not working out and when running the program it gives me:
Failed to issue method call: Access denied
Must be root.
Any explanation on why this is not working?
I know there might be easier ways to do this. This question really aims at understanding why this way is not working.
Thank you in advance and Regards
I've had similar issue with
setuid
bit and some versions ofbash
. In my case the solution was to write the program like this:I hope this will help you too.