C function to shutdown linux system












4















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?










share|improve this question

























  • 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
















4















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?










share|improve this question

























  • 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














4












4








4








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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












1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer
























  • 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











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
});


}
});














draft saved

draft discarded


















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









1














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.






share|improve this answer
























  • 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
















1














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.






share|improve this answer
























  • 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














1












1








1







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.






share|improve this answer













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.







share|improve this answer












share|improve this answer



share|improve this answer










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



















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith