Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 651316 - [kde overlay] kde-plasma/plasma-workspace-9999 kde-plasma/plasma-desktop-9999 kde-plasma/kdeplasma-addons-9999 sandbox violations, rcc output direct to /usr/share/plasma/.../contents.rcc
Summary: [kde overlay] kde-plasma/plasma-workspace-9999 kde-plasma/plasma-desktop-9999...
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Overlays (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-03-24 05:51 UTC by Duncan
Modified: 2018-03-26 23:36 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Duncan 2018-03-24 05:51:14 UTC
plasma-workspace, plasma-desktop, and kdeplasma-addons all error out with a similar sandbox error so appear to need a similar fix.  The below discusses plasma-workspace, since that's the one I took a closer look at.

According to the upstream changelogs, plasma-workspace is now using an install_bundled macro (from plasma framework) that ultimately generates a bundled-and-compressed plasmoid instead of separate files.

It does this with a call to rcc.  Unfortunately, due to some cmake-configuration logic I don't understand, rcc is called with --binary -o /usr/share/plasma/... instead of the image dir, so it wants to write the output direct to the live filesystem and of course sandbox steps in and says no-you-don't!

The error is in the src_install phase and looks like this:

...

-- Installing: /tmp/portage/kde-plasma/plasma-workspace-9999/image/usr/share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.json
-- Installing: /tmp/portage/kde-plasma/plasma-workspace-9999/image/usr/share/metainfo/org.kde.plasma.activitybar.appdata.xml
-- Generating: /usr/share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc
 * ACCESS DENIED:  open_wr:      /usr/share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc
CMake Error at applets/cmake_install.cmake:61 (message):
  failed to generating rcc 1: Unable to open
  /usr/share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc for
  writing: Permission denied

Call Stack (most recent call first):
  cmake_install.cmake:122 (include)


make: *** [Makefile:86: install] Error 1
 * ERROR: kde-plasma/plasma-workspace-9999::kde failed (install phase):
 *   emake failed

...

 * --------------------------- ACCESS VIOLATION SUMMARY ---------------------------
 * LOG FILE: "/var/log/sandbox/sandbox-638.log"
 * 
VERSION 1.0
FORMAT: F - Function called
FORMAT: S - Access Status
FORMAT: P - Path as passed to function
FORMAT: A - Absolute Path (not canonical)
FORMAT: R - Canonical Path
FORMAT: C - Command Line

F: open_wr
S: deny
P: /usr/share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc
A: /usr/share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc
R: /share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc
C: /usr/lib64/qt5/bin/rcc /tmp/portage/kde-plasma/plasma-workspace-9999/work/plasma-workspace-9999_build/applets/org.kde.plasma.activitybar.qrc --binary -o /usr/share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc 
 * --------------------------------------------------------------------------------


The if/endif at the mentioned applets/cmake_install.cmake:61 looks like this:

if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xplasma-workspacex" OR NOT CMAKE_INSTALL_COMPONENT)

        set(metadatajson /tmp/portage/kde-plasma/plasma-workspace-9999/work/plasma-workspace-9999_build/applets/org.kde.plasma.activitybar-plasmoids-metadata.json)
        set(root plasmoids)
        set(install_dir plasma)
        set(BINARYDIR /tmp/portage/kde-plasma/plasma-workspace-9999/work/plasma-workspace-9999_build/applets)
        set(DIRECTORY "/tmp/portage/kde-plasma/plasma-workspace-9999/work/plasma-workspace-9999/applets/activitybar")
        set(OUTPUTFILE "/tmp/portage/kde-plasma/plasma-workspace-9999/work/plasma-workspace-9999_build/applets/org.kde.plasma.activitybar.qrc")
        set(component org.kde.plasma.activitybar)
        include(/usr/lib64/cmake/KF5Package/qrc.cmake)
        message(STATUS "Generating: /usr/share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc")
        execute_process(COMMAND /usr/sbin/rcc /tmp/portage/kde-plasma/plasma-workspace-9999/work/plasma-workspace-9999_build/applets/org.kde.plasma.activitybar.qrc --binary -o /usr/share/plasma/plasmoids/org.kde.plasma.activitybar/contents.rcc ERROR_VARIABLE errors RESULT_VARIABLE code)
        if (code)
            message(FATAL_ERROR "failed to generating rcc ${code}: ${errors}")
        endif()
....
endif()


Obviously that call to rcc with --binary -o /usr/share/plasma/... should be pointing to the temporary-install-image dir for its output instead, but at that point it becomes deep cmake wizardry to me and I haven't a clue.

FWIW I did try with sandbox disabled but failed on some other error, so there may be more too it than that, but for all I know properly fixing the first problem will fix the further errors as well.  However, based on the unowned *.rcc listing I have after that sandboxless attempt, plasma-workspace now bundle-installs several plasmoids as *.rcc files (and from their sandbox errors plasma-desktop and kdeplasma-addons bundle-install more):

activitybar
analogclock
mediacontroller
panelspacer
lock_logout
clipboard
Comment 2 Arfrever Frehtes Taifersar Arahesis 2018-03-26 04:41:23 UTC
plasma_install_package() macro uses kpackage_install_package() macro.
plasma_install_bundled_package() macro uses kpackage_install_bundled_package() macro.

kpackage_install_bundled_package() macro was (partially?) fixed in commit:
https://cgit.kde.org/kpackage.git/commit/?id=b69866996e7ea706bd32fbe5c9ca7007622f0b15
"""
Fix the rcc binary package generation

Summary:
kpackage_install_bundled_package used install(CODE ..) for the
generation and installation of the rcc file. This had multiple flows,

- It didn't respect the DESTDIR variable of install target which made
most of distribution packaging fail as it tried to write to installation
prefix directly.

- It used the execute_process which resulted in the rcc file generation
at time of install instead of the build-time, so it would fail with
permission errors if make install is run as normal user
"""

According to https://phabricator.kde.org/D11642 some problem remains in that currently unused code...
Comment 3 Duncan 2018-03-26 10:24:27 UTC
(In reply to Arfrever Frehtes Taifersar Arahesis from comment #1)
> Commits [h]ave been reverted[...]
> 
> So probably these errors would not occur now...

Indeed.  I have my desktop back again!

If/when they revert the revert this can be reopened/refiled if necessary.

Thanks and (literally) RESOLVED/UPSTREAM. =:^)

Duncan
Comment 5 Arfrever Frehtes Taifersar Arahesis 2018-03-26 23:36:53 UTC
And:
https://cgit.kde.org/kpackage.git/commit/?id=9175214c04d31f91d3e0ee850b5103d0ba6ee084