Bug 559581
| Summary: | missing udev acl rule for firewire (regression from F11) | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | markus.moll |
| Component: | udev | Assignee: | Harald Hoyer <harald> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 12 | CC: | Bert.Deknuydt, harald, jonathan |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | udev-145-19.fc12 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-03-25 22:36:10 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
udev-145-16.fc12 has been submitted as an update for Fedora 12. http://admin.fedoraproject.org/updates/udev-145-16.fc12 udev-145-19.fc12 has been pushed to the Fedora 12 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update udev'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/udev-145-19.fc12 udev-145-19.fc12 has been pushed to the Fedora 12 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: Firewire cameras are not assign a proper ACL when you connect them as the corresponding udev rules are missing. This used to work nicely with Fedora 11, although HAL was used for that purpose there. Version-Release number of selected component (if applicable): udev-145-14 How reproducible: Connect a firewire camera and try to access /dev/fwX Steps to Reproduce: 1. Connect firewire IIDC camera 2. getfacl /dev/fwX 3. Actual results: no ACL is set for /dev/fwX, access rights are 660 root:video Expected results: Currently logged in users should be added to a ACL with rw permissions Additional info: This is a regression from Fedora 11, where the ACLs were properly set. During the transition from HAL to udev, the corresponding HAL functionality was removed from Fedora 12, while udev-145 does not support setting ACLs on firewire devices. The functionality has been added upstream in udev-150. Relevant changes to /lib/udev/rules.d/70-acl.rules are: # IIDC devices: industrial cameras and some webcams SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x00010*", ENV{ACL_MANAGE}="1" # AV/C devices: camcorders, set-top boxes, TV sets, audio devices, and more SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x010001*", ENV{ACL_MANAGE}="1" # old style firewire devices KERNEL=="dv1394-[0-9]*", ENV{ACL_MANAGE}="1" KERNEL=="video1394-[0-9]*", ENV{ACL_MANAGE}="1"