FS#49752 - [virtualbox-guest-utils] No hardware 3D acceleration in the guest.
Attached to Project:
Community Packages
Opened by Olivier (olive) - Friday, 17 June 2016, 16:10 GMT
Last edited by Toolybird (Toolybird) - Saturday, 01 April 2023, 01:45 GMT
Opened by Olivier (olive) - Friday, 17 June 2016, 16:10 GMT
Last edited by Toolybird (Toolybird) - Saturday, 01 April 2023, 01:45 GMT
|
Details
Description:
By default, there is no hardware 3D acceleration in the guest as can be seen with glxinfo. OpenGL renderer string: Gallium 0.4 on llvmpipe (LLVM 3.8, 256 bits) (hardware 3D accelerated should show "chromium"). This is apparently due to a change in the upstream package and there is a long discussion for what appear to be exactly the same problem here: https://www.virtualbox.org/ticket/12320 . A hack that works (gathered from the previous link) is to add LD_PRELOAD=/lib/VBoxOGL.so in the environment. with "LD_PRELOAD=/lib/VBoxOGL.so glxinfo | grep -i render" ; I get: OpenGL renderer string: Chromium That's it! Apparently upstream has a script that put the VBoxOGL.so library in a directory and refer to this directory in /etc/ld.so.conf.d . This is apparently done at runtime according to a detection of the availability of 3D that I don't fully understand. Anyway, I have had no success trying this trick; further investigation is needed. Note: this was discussed in the forum, see: https://bbs.archlinux.org/viewtopic.php?pid=1635249#p1635249 Additional info: * package version(s) 5.0.20-1 * config and/or log files etc. See in the description. Steps to reproduce: See in the description. |
This task depends upon
Closed by Toolybird (Toolybird)
Saturday, 01 April 2023, 01:45 GMT
Reason for closing: Fixed
Additional comments about closing: Refer recent comments
Saturday, 01 April 2023, 01:45 GMT
Reason for closing: Fixed
Additional comments about closing: Refer recent comments
1) There is working 3D hardware accell in the guest. That's not enabled by default but it's there;
2) The missing part seems to be the overrides of mesa libraries with vbox specific;
3) Selecting Vbox mesa library via LD_PRELOAD cause display issue with a default gnome environment.
4) Installing guest additions with the ISO overrides libEG.so and libELG.so using ld.so.conf.d.
It seems that the iso does the configuration you mention at run time when the service is started (extract the installer and lok at the vboxadd script).
Anyway this 3D should be available if enabled in the Virtualbox GUI, as intended by upstream, so an update of the package is needed.
You need to create a separate directory with the VirtualBox libraries and make symbolic links libEGL.so.1 -> VBoxEGL.so and libGL.so.1 -> VBoxOGL.so. Then you need to put this directory in ld.so.conf. Note that the library VBoxEGL.so is not present in the package (but well in the upstream iso).
Upstream does that at run time only if the check "enable 3D" is made in the VirtualBox GUI. This is checked with "/usr/bin/VBoxClient --check3d". I think that the rationale is that if 3D is unchecked then you don't want to mess around with these potentially buggy libraries. (This is the vboxadd script).
All of this confirm that the 3D part is mispackaged
I'm happy that you finally understand what upstream does and so my point 4.
Also if this is a reason to remove this feature, i don’t agree either since you have the ability to toggle 3D accel in the host vbox settings and therefore decide if you want glitchy accel or none at all.
Currently the feature to toggle overall 3D acceleration is just not present.
Best way to get this fixed is to propose a patch.
What’s wrong with the upstream scripts?
@npfeiler (and @seblu). The toggle is implemented via a simple script. Basically. Put two symlinks libEGL.so.1 -> /opt/VBoxGuestAdditions-5.1.4/lib/VBoxEGL.so and libGL.so.1 -> /opt/VBoxGuestAdditions-5.1.4/lib/VBoxOGL.so in a directory; say following upstream: /var/lib/VBoxGuestAdditions/lib. Keep a file 00vboxvideo.conf (with a single line: /var/lib/VBoxGuestAdditions/lib) in a private directory; say /usr/share/vbox. Then include the following code (untested) in the script that is launched by systemd (before any other actions).
if /usr/bin/VBoxClient --check3d ; then
ln -sf /etc/ld.so.conf.d/00vboxvideo.conf /usr/share/vbox/00vboxvideo.conf
else
rm -f /etc/ld.so.conf.d/00vboxvideo.conf
fi
ldconfig
If problems remains, let's discuss it, but don't just left this doing nothing. What I have seen is that chromium seems incompatible with 3D (windows is white with black strip and nothing else). I have not tested it for Gnome that I don't use. Of course you can always disable the 3D for chromium only by launching it with the --no-gpu command line switch.
In any case, VBoxEGL.so isn't being packaged in virtualbox-guest-utils, despite being built.
The code for it's been around in SVN for about 10 months, though I think it was first released in 5.0.28.
`install -m755 VBoxEGL.so "$pkgdir/usr/lib"` needs to be added to package_virtualbox-guest-utils() in the PKGBUILD, right under where it installs VBoxOGL*.so.
Once that is done I can tackle getting setting up the script and ld.so.conf.
I've attached a patch for the PKGBUILD, but it's quite literally a one-line change.
There may still be bugs – I haven't extensively tested. I would certainly recommend putting it in the testing repository before promoting it to the main community repository.
There are 4 components to this: PKGBUILD changes to install libEGL and the scripts, vboxservice.service changes to enable/disable the links when vboxservice starts up and shuts down, a script to setup the links for ldconfig when 3D is enabled in VirtualBox, and the ldconfig conf file.
Please tell me if there are any problems.
it would be great to have 3D acceleration in Arch when used inside a VirtualBox guest.
Why don't repackage the upstream version? The upstream version works well and the philosophy of ArchLinux is to stay as close as upstream as possible. Rewriting the equivalent of upstream script in a way that may or may not work is not the proper solution IMHO. Is the purpose of a package not simply to ease the installation of upstream software? None of the "fixes" proposed seems to even try to achieve this. Upstream scripts are more complex than the simple 3-line scripts proposed in the patches, so other issues will inevitably arise.
Simply repackaging the upstream version shouldn't be that hard. I agree that upstream installer is meant to be run directly and cannot easily be used to make a package. But we could track which files are exactly installed and copy these files by hand.
If we want to compile from sources then simply replace the compiled files with the compiled version. I don't think upstream scripts are available outside the iso.
Virtualbox version 6 provides 3D acceleration via VMSVGA without the need to package any `VBoxOGL` or `VBoxEGL` that no longer exist.
Should this issue be closed?
Thanks