Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grub bootloader with shared library support

I'd like to load a shared library (closed-source binary user-space library) at boot stage with grub boot-loader. Are there any chances for this or I must write a custom-elf-loader (grub module) to do it?


  • 29/08/2014: For more detail, this is a programming problem in which I want to customize or add some new features to Grub boot-loader project. Thank you for your all supporting!
like image 561
tuantm Avatar asked Aug 20 '14 04:08

tuantm


1 Answers

So, you don't make it crystal clear what you are trying to do, but:

Loading a userspace (assuming Linux SysV ELF type) shared library straight into GRUB is not possible. GRUB modules are indeed in ELF format, but they contain additional headers. Among the information contained in that header is an explicit license statement - GRUB will refuse to load any modules that are not explicitly GPLv2+, GPLv3 or GPLv3+.

It should be possible to write an ELF loader, but an easier way might be to write a tool to convert a userspace library to a GRUB module. There would of course be several restrictions here:

  • You would need to ensure the userspace library performed no system calls - GRUB would have nothing in place to handle them.
  • You would need to abide by the licensing rules (so only above three licenses would be acceptable).
  • You would need to ensure these libraries were not dependent on a global offset table being set up by glibc for them.

If recompiling is an option, GRUB also provides a POSIX emulation layer - add CPPFLAGS_POSIX to your CPPFLAGS, and use core standard POSIX header files. Have a look at the gcrypt support for an example.

like image 127
unixsmurf Avatar answered Oct 09 '22 18:10

unixsmurf