C function to shutdown linux system
I am developing C function to shutdown my Embedded Linux system (Ubuntu) using the following way.
#include <stdlib.h>
int main()
{
system("shutdown -P now");
return 0;
}
Is this approach is secure?
If not is there any better and secure way I can perform same task?
c embedded-linux
|
show 3 more comments
I am developing C function to shutdown my Embedded Linux system (Ubuntu) using the following way.
#include <stdlib.h>
int main()
{
system("shutdown -P now");
return 0;
}
Is this approach is secure?
If not is there any better and secure way I can perform same task?
c embedded-linux
system()
spawns a child process which is used to execute the command. I'd call reboot() directly. As for security please have a look at the comments to Why should the system() function be avoided in C and C++?
– Swordfish
Nov 21 '18 at 5:43
thanks got it we have to avoid system call.So how can I perform same functionality without system call?@Swordfish
– raj123
Nov 21 '18 at 6:00
I also read about reboot but couldn't getting it how can I use it to shutdown my system.@Swordfish
– raj123
Nov 21 '18 at 6:02
stackoverflow.com/a/31652816/3975177
– Swordfish
Nov 21 '18 at 6:10
It says system("/bin/sh shutdown -P now") also safe to use Is it?@Swordfish
– raj123
Nov 21 '18 at 6:18
|
show 3 more comments
I am developing C function to shutdown my Embedded Linux system (Ubuntu) using the following way.
#include <stdlib.h>
int main()
{
system("shutdown -P now");
return 0;
}
Is this approach is secure?
If not is there any better and secure way I can perform same task?
c embedded-linux
I am developing C function to shutdown my Embedded Linux system (Ubuntu) using the following way.
#include <stdlib.h>
int main()
{
system("shutdown -P now");
return 0;
}
Is this approach is secure?
If not is there any better and secure way I can perform same task?
c embedded-linux
c embedded-linux
edited Nov 21 '18 at 5:46


Swordfish
9,42311436
9,42311436
asked Nov 21 '18 at 5:35
raj123raj123
4916
4916
system()
spawns a child process which is used to execute the command. I'd call reboot() directly. As for security please have a look at the comments to Why should the system() function be avoided in C and C++?
– Swordfish
Nov 21 '18 at 5:43
thanks got it we have to avoid system call.So how can I perform same functionality without system call?@Swordfish
– raj123
Nov 21 '18 at 6:00
I also read about reboot but couldn't getting it how can I use it to shutdown my system.@Swordfish
– raj123
Nov 21 '18 at 6:02
stackoverflow.com/a/31652816/3975177
– Swordfish
Nov 21 '18 at 6:10
It says system("/bin/sh shutdown -P now") also safe to use Is it?@Swordfish
– raj123
Nov 21 '18 at 6:18
|
show 3 more comments
system()
spawns a child process which is used to execute the command. I'd call reboot() directly. As for security please have a look at the comments to Why should the system() function be avoided in C and C++?
– Swordfish
Nov 21 '18 at 5:43
thanks got it we have to avoid system call.So how can I perform same functionality without system call?@Swordfish
– raj123
Nov 21 '18 at 6:00
I also read about reboot but couldn't getting it how can I use it to shutdown my system.@Swordfish
– raj123
Nov 21 '18 at 6:02
stackoverflow.com/a/31652816/3975177
– Swordfish
Nov 21 '18 at 6:10
It says system("/bin/sh shutdown -P now") also safe to use Is it?@Swordfish
– raj123
Nov 21 '18 at 6:18
system()
spawns a child process which is used to execute the command. I'd call reboot() directly. As for security please have a look at the comments to Why should the system() function be avoided in C and C++?– Swordfish
Nov 21 '18 at 5:43
system()
spawns a child process which is used to execute the command. I'd call reboot() directly. As for security please have a look at the comments to Why should the system() function be avoided in C and C++?– Swordfish
Nov 21 '18 at 5:43
thanks got it we have to avoid system call.So how can I perform same functionality without system call?@Swordfish
– raj123
Nov 21 '18 at 6:00
thanks got it we have to avoid system call.So how can I perform same functionality without system call?@Swordfish
– raj123
Nov 21 '18 at 6:00
I also read about reboot but couldn't getting it how can I use it to shutdown my system.@Swordfish
– raj123
Nov 21 '18 at 6:02
I also read about reboot but couldn't getting it how can I use it to shutdown my system.@Swordfish
– raj123
Nov 21 '18 at 6:02
stackoverflow.com/a/31652816/3975177
– Swordfish
Nov 21 '18 at 6:10
stackoverflow.com/a/31652816/3975177
– Swordfish
Nov 21 '18 at 6:10
It says system("/bin/sh shutdown -P now") also safe to use Is it?@Swordfish
– raj123
Nov 21 '18 at 6:18
It says system("/bin/sh shutdown -P now") also safe to use Is it?@Swordfish
– raj123
Nov 21 '18 at 6:18
|
show 3 more comments
1 Answer
1
active
oldest
votes
man reboot(2)
#include <unistd.h>
#include <sys/reboot.h>
int main () {
sync(); // If reboot() not preceded by a sync(), data will be lost.
setuid(0); // set uid to root, the running uid must already have the
// appropriate permissions to do this.
reboot(RB_AUTOBOOT); // note, this reboots the system, it's not as
return(0); // graceful as asking the init system to reboot.
}
Pre-systemd, you could also sometimes get away with:
int main() {
sync();
kill(1, SIGTERM);
return 0;
}
This method was more prevalent on embedded systems where the program is run under a single shell, but killing initd was effective as well. Note that on newer GNU/Linux's that use systemd/upstart, SIGTERM
is ignored by systemd.
got it thanks. but to use this we need have to use setcap cap_sys_boot+ep executabe_file @Cinder Biscuits
– raj123
Dec 20 '18 at 21:56
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405808%2fc-function-to-shutdown-linux-system%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
man reboot(2)
#include <unistd.h>
#include <sys/reboot.h>
int main () {
sync(); // If reboot() not preceded by a sync(), data will be lost.
setuid(0); // set uid to root, the running uid must already have the
// appropriate permissions to do this.
reboot(RB_AUTOBOOT); // note, this reboots the system, it's not as
return(0); // graceful as asking the init system to reboot.
}
Pre-systemd, you could also sometimes get away with:
int main() {
sync();
kill(1, SIGTERM);
return 0;
}
This method was more prevalent on embedded systems where the program is run under a single shell, but killing initd was effective as well. Note that on newer GNU/Linux's that use systemd/upstart, SIGTERM
is ignored by systemd.
got it thanks. but to use this we need have to use setcap cap_sys_boot+ep executabe_file @Cinder Biscuits
– raj123
Dec 20 '18 at 21:56
add a comment |
man reboot(2)
#include <unistd.h>
#include <sys/reboot.h>
int main () {
sync(); // If reboot() not preceded by a sync(), data will be lost.
setuid(0); // set uid to root, the running uid must already have the
// appropriate permissions to do this.
reboot(RB_AUTOBOOT); // note, this reboots the system, it's not as
return(0); // graceful as asking the init system to reboot.
}
Pre-systemd, you could also sometimes get away with:
int main() {
sync();
kill(1, SIGTERM);
return 0;
}
This method was more prevalent on embedded systems where the program is run under a single shell, but killing initd was effective as well. Note that on newer GNU/Linux's that use systemd/upstart, SIGTERM
is ignored by systemd.
got it thanks. but to use this we need have to use setcap cap_sys_boot+ep executabe_file @Cinder Biscuits
– raj123
Dec 20 '18 at 21:56
add a comment |
man reboot(2)
#include <unistd.h>
#include <sys/reboot.h>
int main () {
sync(); // If reboot() not preceded by a sync(), data will be lost.
setuid(0); // set uid to root, the running uid must already have the
// appropriate permissions to do this.
reboot(RB_AUTOBOOT); // note, this reboots the system, it's not as
return(0); // graceful as asking the init system to reboot.
}
Pre-systemd, you could also sometimes get away with:
int main() {
sync();
kill(1, SIGTERM);
return 0;
}
This method was more prevalent on embedded systems where the program is run under a single shell, but killing initd was effective as well. Note that on newer GNU/Linux's that use systemd/upstart, SIGTERM
is ignored by systemd.
man reboot(2)
#include <unistd.h>
#include <sys/reboot.h>
int main () {
sync(); // If reboot() not preceded by a sync(), data will be lost.
setuid(0); // set uid to root, the running uid must already have the
// appropriate permissions to do this.
reboot(RB_AUTOBOOT); // note, this reboots the system, it's not as
return(0); // graceful as asking the init system to reboot.
}
Pre-systemd, you could also sometimes get away with:
int main() {
sync();
kill(1, SIGTERM);
return 0;
}
This method was more prevalent on embedded systems where the program is run under a single shell, but killing initd was effective as well. Note that on newer GNU/Linux's that use systemd/upstart, SIGTERM
is ignored by systemd.
answered Dec 20 '18 at 3:43


Cinder BiscuitsCinder Biscuits
2,3681324
2,3681324
got it thanks. but to use this we need have to use setcap cap_sys_boot+ep executabe_file @Cinder Biscuits
– raj123
Dec 20 '18 at 21:56
add a comment |
got it thanks. but to use this we need have to use setcap cap_sys_boot+ep executabe_file @Cinder Biscuits
– raj123
Dec 20 '18 at 21:56
got it thanks. but to use this we need have to use setcap cap_sys_boot+ep executabe_file @Cinder Biscuits
– raj123
Dec 20 '18 at 21:56
got it thanks. but to use this we need have to use setcap cap_sys_boot+ep executabe_file @Cinder Biscuits
– raj123
Dec 20 '18 at 21:56
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405808%2fc-function-to-shutdown-linux-system%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
system()
spawns a child process which is used to execute the command. I'd call reboot() directly. As for security please have a look at the comments to Why should the system() function be avoided in C and C++?– Swordfish
Nov 21 '18 at 5:43
thanks got it we have to avoid system call.So how can I perform same functionality without system call?@Swordfish
– raj123
Nov 21 '18 at 6:00
I also read about reboot but couldn't getting it how can I use it to shutdown my system.@Swordfish
– raj123
Nov 21 '18 at 6:02
stackoverflow.com/a/31652816/3975177
– Swordfish
Nov 21 '18 at 6:10
It says system("/bin/sh shutdown -P now") also safe to use Is it?@Swordfish
– raj123
Nov 21 '18 at 6:18