Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
+++ This bug was initially created as a clone of Bug #820448 +++
Using a test systemd service unit with
Type=notify
and using a test script that contains
systemd-notify --ready
the notify is sometimes successfull and sometimes it fails with the following message in /var/log/messages
May 10 00:37:31 laptop systemd[1]: Cannot find unit for notify message of PID 3495.
when the command is successfull
> sudo systemctl start test1.service
returns almost immediately, when it fails it times out after 90 seconds
below are the files I am using along package versions
$ rpm -qa | grep -i -e systemd
systemd-units-37-19.fc16.x86_64
systemd-37-19.fc16.x86_64
systemd-sysv-37-19.fc16.x86_64
$ getenforce
Permissive
$ cat /lib/systemd/system/test1.service
[Unit]
Description=Tests
[Service]
User=derekh
Type=notify
ExecStart=/tmp/testservice
NotifyAccess=all
$ cat /tmp/testservice
#!/bin/bash
sleep 1
systemd-notify --ready
echo Sleeping
sleep 300
echo Done
--- Additional comment from Michal Schmidt on 2012-05-10 04:36:44 EDT ---
(In reply to comment #0)
> May 10 00:37:31 laptop systemd[1]: Cannot find unit for notify message of PID
> 3495.
systemd-notify sends a message to $NOTIFY_SOCKET and then exits.
When systemd receives the notification, the systemd-notify process may have already exited and been reaped by bash.
Ideally the cgroups membership information would be delivered with the message over the socket.
From http://0pointer.de/blog/projects/plumbers-wishlist-3.html:
AF_UNIX:
* An auxiliary meta data message for AF_UNIX called SCM_CGROUPS (or something like that), i.e. a way to attach sender cgroup membership to messages sent via AF_UNIX. This is useful in case services such as syslog shall be shared among various containers (or service cgroups), and the syslog implementation needs to be able to distinguish the sending cgroup in order to separate the logs on disk. Of course stm SCM_CREDENTIALS can be used to look up the PID of the sender followed by a check in /proc/$PID/cgroup, but that is necessarily racy, and actually a very real race in real life.
As an alternative fix, the notification could be made synchronous.
--- Additional comment from Alan Pevec on 2012-06-27 13:41:54 EDT ---
(In reply to comment #1)
> systemd-notify sends a message to $NOTIFY_SOCKET and then exits.
>
> When systemd receives the notification, the systemd-notify process may have
> already exited and been reaped by bash.
So, as a work-around, daemon process itself should send READY=1 to $NOTIFY_SOCKET
instead of forking "systemd-notify" command.
We need this for openstack daemons, here's _untested_ code in Python
(after sd_notify implementation in sd-daemon.c):
import socket
import os
s = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
e = os.getenv('NOTIFY_SOCKET')
s.connect(e)
s.sendall("READY=1")
s.close()
--- Additional comment from Alan Pevec on 2012-09-18 10:43:15 EDT ---
Script in comment 2 doesn't work with systemd-188-3.fc18 where NOTIFY_SOCKET is abstract namespace socket:
http://cgit.freedesktop.org/systemd/systemd/commit/?id=29252e9e5bad3b0bcfc45d9bc761aee4b0ece1da
It needs special handling if notification socket starts with @: convert to bytes and replace '@' with 0.
--- Additional comment from Alan Pevec on 2012-09-18 18:36:01 EDT ---
Patch for example script in comment 2:
e = os.getenv('NOTIFY_SOCKET')
+if e.startswith('@'):
+ # abstract namespace socket
+ e = '\0%s' % e[1:]
s.connect(e)
--- Additional comment from Fedora End Of Life on 2013-04-03 13:44:40 EDT ---
This bug appears to have been reported against 'rawhide' during the Fedora 19 development cycle.
Changing version to '19'.
(As we did not run this process for some time, it could affect also pre-Fedora 19 development
cycle bugs. We are very sorry. It will help us with cleanup during Fedora 19 End Of Life. Thank you.)
More information and reason for this action is here:
https://fedoraproject.org/wiki/BugZappers/HouseKeeping/Fedora19
Comment 4RHEL Program Management
2014-03-24 05:51:25 UTC
This request was not resolved in time for the current release.
Red Hat invites you to ask your support representative to
propose this request, if still desired, for consideration in
the next release of Red Hat Enterprise Linux.