Custom software as init process (PID 1)











up vote
0
down vote

favorite












I'm making an embedded system and I don't want to use C or C++ for security reasons, and I need lots of RAM, so things like a PIC processor which I've used in the past aren't an option. I'm planning to use an ARM board, such as the Beaglebone Black and a language such as python.



All I need is access to things like GPIO, serial /dev, and I2C, so what I'm wondering is, can I get away with having u-boot call my process directly (something like /usr/bin/python /opt/myprocess.py) and have that run as PID 1? Basically, have my code run as the only process in userspace.



I don't need networking, and I'm even going to have the root file system as read only. Is there something the normal init process does that I'd be missing out on?










share|improve this question


















  • 4




    It's not uboot which should call your init; but the kernel. And you could easily give it a try by giving the path as the init= argument on the kernel's command line: linux ... console=... init=/usr/bin/python /opt/myprocess.py (any extra arguments not handled by the kernel will be passed to the init program). But your using of python script as init instead of a C program for 'security reason' is, of course, absolutely ridiculous.
    – mosvy
    Dec 1 at 0:24












  • Yes, you can do that. However, if your custom software crashes, you'll have to reboot the system. So possibly run a really small monitor process as PID 1 and let it monitor and restart your custom software.
    – dirkt
    Dec 1 at 21:19










  • Mosvy, how could you possibly think C software is as secure, on average, as managed code?
    – Dave
    Dec 2 at 0:54















up vote
0
down vote

favorite












I'm making an embedded system and I don't want to use C or C++ for security reasons, and I need lots of RAM, so things like a PIC processor which I've used in the past aren't an option. I'm planning to use an ARM board, such as the Beaglebone Black and a language such as python.



All I need is access to things like GPIO, serial /dev, and I2C, so what I'm wondering is, can I get away with having u-boot call my process directly (something like /usr/bin/python /opt/myprocess.py) and have that run as PID 1? Basically, have my code run as the only process in userspace.



I don't need networking, and I'm even going to have the root file system as read only. Is there something the normal init process does that I'd be missing out on?










share|improve this question


















  • 4




    It's not uboot which should call your init; but the kernel. And you could easily give it a try by giving the path as the init= argument on the kernel's command line: linux ... console=... init=/usr/bin/python /opt/myprocess.py (any extra arguments not handled by the kernel will be passed to the init program). But your using of python script as init instead of a C program for 'security reason' is, of course, absolutely ridiculous.
    – mosvy
    Dec 1 at 0:24












  • Yes, you can do that. However, if your custom software crashes, you'll have to reboot the system. So possibly run a really small monitor process as PID 1 and let it monitor and restart your custom software.
    – dirkt
    Dec 1 at 21:19










  • Mosvy, how could you possibly think C software is as secure, on average, as managed code?
    – Dave
    Dec 2 at 0:54













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm making an embedded system and I don't want to use C or C++ for security reasons, and I need lots of RAM, so things like a PIC processor which I've used in the past aren't an option. I'm planning to use an ARM board, such as the Beaglebone Black and a language such as python.



All I need is access to things like GPIO, serial /dev, and I2C, so what I'm wondering is, can I get away with having u-boot call my process directly (something like /usr/bin/python /opt/myprocess.py) and have that run as PID 1? Basically, have my code run as the only process in userspace.



I don't need networking, and I'm even going to have the root file system as read only. Is there something the normal init process does that I'd be missing out on?










share|improve this question













I'm making an embedded system and I don't want to use C or C++ for security reasons, and I need lots of RAM, so things like a PIC processor which I've used in the past aren't an option. I'm planning to use an ARM board, such as the Beaglebone Black and a language such as python.



All I need is access to things like GPIO, serial /dev, and I2C, so what I'm wondering is, can I get away with having u-boot call my process directly (something like /usr/bin/python /opt/myprocess.py) and have that run as PID 1? Basically, have my code run as the only process in userspace.



I don't need networking, and I'm even going to have the root file system as read only. Is there something the normal init process does that I'd be missing out on?







boot embedded init u-boot






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 30 at 22:06









Dave

1346




1346








  • 4




    It's not uboot which should call your init; but the kernel. And you could easily give it a try by giving the path as the init= argument on the kernel's command line: linux ... console=... init=/usr/bin/python /opt/myprocess.py (any extra arguments not handled by the kernel will be passed to the init program). But your using of python script as init instead of a C program for 'security reason' is, of course, absolutely ridiculous.
    – mosvy
    Dec 1 at 0:24












  • Yes, you can do that. However, if your custom software crashes, you'll have to reboot the system. So possibly run a really small monitor process as PID 1 and let it monitor and restart your custom software.
    – dirkt
    Dec 1 at 21:19










  • Mosvy, how could you possibly think C software is as secure, on average, as managed code?
    – Dave
    Dec 2 at 0:54














  • 4




    It's not uboot which should call your init; but the kernel. And you could easily give it a try by giving the path as the init= argument on the kernel's command line: linux ... console=... init=/usr/bin/python /opt/myprocess.py (any extra arguments not handled by the kernel will be passed to the init program). But your using of python script as init instead of a C program for 'security reason' is, of course, absolutely ridiculous.
    – mosvy
    Dec 1 at 0:24












  • Yes, you can do that. However, if your custom software crashes, you'll have to reboot the system. So possibly run a really small monitor process as PID 1 and let it monitor and restart your custom software.
    – dirkt
    Dec 1 at 21:19










  • Mosvy, how could you possibly think C software is as secure, on average, as managed code?
    – Dave
    Dec 2 at 0:54








4




4




It's not uboot which should call your init; but the kernel. And you could easily give it a try by giving the path as the init= argument on the kernel's command line: linux ... console=... init=/usr/bin/python /opt/myprocess.py (any extra arguments not handled by the kernel will be passed to the init program). But your using of python script as init instead of a C program for 'security reason' is, of course, absolutely ridiculous.
– mosvy
Dec 1 at 0:24






It's not uboot which should call your init; but the kernel. And you could easily give it a try by giving the path as the init= argument on the kernel's command line: linux ... console=... init=/usr/bin/python /opt/myprocess.py (any extra arguments not handled by the kernel will be passed to the init program). But your using of python script as init instead of a C program for 'security reason' is, of course, absolutely ridiculous.
– mosvy
Dec 1 at 0:24














Yes, you can do that. However, if your custom software crashes, you'll have to reboot the system. So possibly run a really small monitor process as PID 1 and let it monitor and restart your custom software.
– dirkt
Dec 1 at 21:19




Yes, you can do that. However, if your custom software crashes, you'll have to reboot the system. So possibly run a really small monitor process as PID 1 and let it monitor and restart your custom software.
– dirkt
Dec 1 at 21:19












Mosvy, how could you possibly think C software is as secure, on average, as managed code?
– Dave
Dec 2 at 0:54




Mosvy, how could you possibly think C software is as secure, on average, as managed code?
– Dave
Dec 2 at 0:54















active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f485269%2fcustom-software-as-init-process-pid-1%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • 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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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%2funix.stackexchange.com%2fquestions%2f485269%2fcustom-software-as-init-process-pid-1%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

Morgemoulin

Scott Moir

Souastre