Bug 2035106

Summary: Cheese Flatpak is missing camera permissions
Product: [Fedora] Fedora Reporter: ccouzens
Component: cheeseAssignee: Matthias Clasen <mclasen>
Status: CLOSED ERRATA QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: unspecified    
Version: 37CC: amigadave, ccouzens, cglombek, gnome-sig, hdegoede, klember, mclasen, steph, travier
Target Milestone: ---Keywords: Reopened
Target Release: ---   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2023-02-03 00:45:21 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description ccouzens 2021-12-22 22:25:36 UTC
Description of problem:

Cheese as installed through Fedora's official Flatpak repo (https://registry.fedoraproject.org/) is unable to find the attached cameras.


Version-Release number of selected component (if applicable):

```
flatpak info org.gnome.Cheese

Cheese - Take photos and videos with your webcam, with fun graphical effects

          ID: org.gnome.Cheese
         Ref: app/org.gnome.Cheese/x86_64/stable
        Arch: x86_64
      Branch: stable
     Version: 3.38.0
     License: GPL-2.0+
      Origin: fedora
  Collection: 
Installation: system
   Installed: 17.1 MB
     Runtime: org.fedoraproject.Platform/x86_64/f35
         Sdk: org.fedoraproject.Sdk/x86_64/f35

      Commit: a8aee28b51dc608dbe561a5d98d3d22f5750c0bbdb908529cc9cf4238a048e5f
     Subject: Export org.gnome.Cheese
        Date: 2021-11-03 10:05:35 +0000
      Alt-id: 2958e4c952c5de34df7e626d4e9c98a79bfd3b3fab6358c6e546bb172faeaed7
```


How reproducible:

Every time I launch this installation of cheese. Installations through `dnf` and the 3rd party flathub are both fine.


Steps to Reproduce:
1. flatpak remote-add --if-not-exists fedora oci+https://registry.fedoraproject.org
2. flatpak install fedora org.gnome.cheese
3. flatpak run org.gnome.Cheese

Actual results:

Message saying "No device found". No devices listed in the preferences.


Expected results:

Preview image in the main window. Camera devices listed in the preferences. 

Additional info:

Comment 1 Stephane Travostino 2022-06-20 14:35:34 UTC
Still an issue as of today. The version from Flathub works perfectly fine.

Comment 2 Timothée Ravier 2022-06-20 15:53:55 UTC
This has also been discussed in https://discussion.fedoraproject.org/t/debugging-webcam-microphone-in-cheese-flatpak/34189

If the one from Flathub works and the one from Fedora does not then someone should compare the permissions in the manifests:
- https://github.com/flathub/org.gnome.Cheese/blob/master/org.gnome.Cheese.yml
- https://src.fedoraproject.org/flatpaks/cheese

Comment 3 ccouzens 2022-06-20 22:08:47 UTC
I believe the permissions are the same:

flathub's:

```
flatpak info --show-permissions org.gnome.Cheese
[Context]
shared=ipc;
sockets=x11;wayland;pulseaudio;fallback-x11;
devices=all;
filesystems=xdg-pictures;xdg-videos;
```

Fedora's:
```
flatpak info --show-permissions org.gnome.Cheese
[Context]
shared=ipc;
sockets=x11;wayland;pulseaudio;fallback-x11;
devices=all;
filesystems=xdg-pictures;xdg-videos;
```

Assuming I'm reading the manifest correctly they are also the same there:
https://github.com/flathub/org.gnome.Cheese/blob/master/org.gnome.Cheese.yml#L7-L14
https://src.fedoraproject.org/flatpaks/cheese/blob/stable/f/container.yaml#_9-16

I confirm the flathub version still shows the webcam feed, and the fedora-flatpak version still shows the "No device found" message.

I can get bash inside the cheese flatpak. If you tell me what to look for inside the container I can report back the difference.

Comment 4 Timothée Ravier 2022-06-21 16:23:26 UTC
I don't really know how Cheese works but removing access from a working Flatpak until it breaks will get you started.
Maybe the Runtime permissions are different between the Fedora Platform one and the Flatpak GNOME one?

Comment 5 Ben Cotton 2022-11-29 17:32:17 UTC
This message is a reminder that Fedora Linux 35 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 35 on 2022-12-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '35'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, change the 'version' 
to a later Fedora Linux version.

Thank you for reporting this issue and we are sorry that we were not 
able to fix it before Fedora Linux 35 is end of life. If you would still like 
to see this bug fixed and are able to reproduce it against a later version 
of Fedora Linux, you are encouraged to change the 'version' to a later version
prior to this bug being closed.

Comment 6 Ben Cotton 2022-12-13 16:10:28 UTC
Fedora Linux 35 entered end-of-life (EOL) status on 2022-12-13.

Fedora Linux 35 is no longer maintained, which means that it
will not receive any further security or bug fix updates. As a result we
are closing this bug.

If you can reproduce this bug against a currently maintained version of Fedora Linux
please feel free to reopen this bug against that version. Note that the version
field may be hidden. Click the "Show advanced fields" button if you do not see
the version field.

If you are unable to reopen this bug, please file a new report against an
active release.

Thank you for reporting this bug and we are sorry it could not be fixed.

Comment 7 Kalev Lember 2023-01-31 22:16:12 UTC
I tracked this one down and it should be fixed with https://bodhi.fedoraproject.org/updates/FEDORA-FLATPAK-2023-1e9ccabe66 flatpak runtime update.

It turned out that the way gstreamer1-plugins-good was built didn't work for v4l2 detection and the fix was to build it with v4l2-gudev=disabled for flatpak. https://src.fedoraproject.org/rpms/gstreamer1-plugins-good/c/5a0d15ca6153c68276933c9595ce6d653d865ac3?branch=rawhide

Comment 8 Fedora Update System 2023-01-31 22:16:35 UTC
FEDORA-FLATPAK-2023-1e9ccabe66 has been submitted as an update to Fedora 37 Flatpaks. https://bodhi.fedoraproject.org/updates/FEDORA-FLATPAK-2023-1e9ccabe66

Comment 9 Fedora Update System 2023-02-01 02:23:31 UTC
FEDORA-FLATPAK-2023-1e9ccabe66 has been pushed to the Fedora 37 Flatpaks testing repository.

You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-FLATPAK-2023-1e9ccabe66

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.

Comment 10 Fedora Update System 2023-02-03 00:45:21 UTC
FEDORA-FLATPAK-2023-1e9ccabe66 has been pushed to the Fedora 37 Flatpaks stable repository.
If problem still persists, please make note of it in this bug report.