Why is execve so monolitic?
Hi, I have a tought "why stuff is'nt that way question" that just got closed on SO. I am really lost on where to find someone able to answer me. If you thinks it's not the place, please let me know. Basically I don't understand why no interface exists that separate the loading phase from the execution one. To me its just a matter of code organization and should have been done long ago. So I suspect to something be wrong in my representation.
Original Question
https://stackoverflow.com/questions/64336459/why-execve-is-so-monolitic
I have a C project where I pass most of the time executing the same small external process (Always the same but chosen by user, that run with different arguments). The external process is really short and fast, and I measured that the fork/execve call is taking an overwhelming time of the operation.
It just strike me how there is just no way to save the whole loading phase. For each execution you need the OS to go from a path to the whole process image again just to change argv, and I pay the price millions of times. This involve opening the executable file, detecting format/shebang, parsing the format, for ELF resolving dynamic libraries calls by calling ld-linux, creating kernels structures to monitor process...
My dreams execution interface would expose two functions:
1.A function that from a path create a C structure representing some sort of ready to execute process image which would use the already existing first part of execve code. This image would have an empty stack.
2.And another one that map that image where it need to be executed, taking care to set up the stack so it would match given argv and envp.
It would obviously not change anything in regard to the execve interface which would just call internally the two functions in a row.
Not to mention the fact that this would probably also facilitate the implementation of software willing to copy there current state to disk for later continuation.
Clearly there is something that I don't understand and would like someone that know well about this subject explaining what is preventing the execution to work like that? Is it some kind of security problem? Or have I a wrong representation on how process are loaded and this could not work maybe? In that case can someone point me toward where is my misconception?
Thanks for the attention.
What can I do?
Also, the original question got closed as unfocused on SO because I also asked for suggestion to diminish the overhead of execution. I think this website must probably be more open than SO in this regard. So if you have any idea, experience in this subject, I will take it.
What I planned to do (I would like your feed back on thoses as well):
1- Use posix_spawn.
2- Create a ram file copy of the exe and run posix_spawn on it unstead of disk file.
3- Use prelink on the exe beforehand.
Thanks!
Categories
- All Categories
- 175 LFX Mentorship
- 175 LFX Mentorship: Linux Kernel
- 745 Linux Foundation IT Professional Programs
- 372 Cloud Engineer IT Professional Program
- 168 Advanced Cloud Engineer IT Professional Program
- 73 DevOps IT Professional Program - Discontinued
- 3 DevOps & GitOps IT Professional Program
- 98 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- AI & ML Training
- Blockchain & Decentralized Identity Training
- 1 Cloud & Containers Training
- Cybersecurity Training
- DevOps & Site-Reliability Training
- Linux Kernel Development Training
- Networking Training
- Open Source Best Practice Training
- System Administration Training
- System Engineering Training
- Web & Application Development Training
- 2 LFD103-JP クラス フォーラム
- 4 LFD210-CN Class Forum
- 764 LFD259 Class Forum
- 681 LFS101 Class Forum
- 2 LFS158-JP クラス フォーラム
- 162 LFS207 Class Forum
- 3 LFS207-DE-Klassenforum
- 4 LFS207-JP クラス フォーラム
- 61 LFS241 Class Forum
- 52 LFS242 Class Forum
- 42 LFS243 Class Forum
- 19 LFS244 Class Forum
- 4 LFS250-JP クラス フォーラム
- 166 LFS253 Class Forum
- 1.4K LFS258 Class Forum
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 768 Linux Distributions
- 81 Debian
- 67 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 106 Mobile Computing
- 18 Android
- 73 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 946 Programming and Development
- 310 Kernel Development
- 618 Software Development
- 979 Software
- 371 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)